* gnus-art.el: Fix up compiler warnings
[gnus] / lisp / ChangeLog
1 2014-12-18  Teodor Zlatanov  <tzz@lifelogs.com>
2
3         * registry.el (registry-db): Fix default registry-db max-size.
4
5 2014-12-18  Stefan Monnier  <monnier@iro.umontreal.ca>
6
7         * mm-util.el (mm-with-unibyte-current-buffer): Mark obsolete and
8         add warning.
9
10         * gnus-art.el: Fix up compiler warnings.
11         (article-display-face, article-display-x-face): Remove unused `face'.
12         (gnus-article-browse-html-save-cid-content): Remove unused var `type'.
13         (article-date-ut): Remove unused var `first'.
14         (gnus-article-prepare): Remove unused var `gnus-article'.
15         (gnus-mime-save-part-and-strip): Remove unused var `param'.
16         (gnus-mime-inline-part): Remove unused vars `charset', `contents', and
17         `coding-system' along with corresponding dead code.
18         (gnus-mime-view-part-externally): Remove unused var
19         `mm-user-display-methods'.
20         (gnus-insert-mime-button): Let-bind gnus-tmp-id explicitly.
21         (gnus-display-mime): Remove unused var `handle'.
22         (gnus-mime-display-alternative): Remove unused var `props'.
23         (gnus-article-read-summary-keys): Remove unused var `up-to-top'.
24         (gnus-article-edit-done): Remove unused var `p'.
25         (gnus-url-mailto): Remove unused var `to'.
26         (gnus-treat-article): Let-bind gnus-treat-condition, part-number,
27         total-parts, and gnus-treat-type explicitly.  Remove unused var `elem'.
28
29 2014-12-18  Eric Abrahamsen  <eric@ericabrahamsen.net>
30
31         * registry.el (registry-db): Consolidate the :max-hard and :max-soft
32         slots into a :max-size slot.
33         (registry-db-version): Add new variable for database version number.
34         (registry-prune): Use :max-size slot. Accept and use a sort-function
35         argument.
36         (registry-collect-prune-candidates): Add new function for finding
37         non-precious pruning candidates.
38         (registry-prune-hard-candidates, registry-prune-soft-candidates):
39         Remove obsolete functions.
40         (initialize-instance): Upgrade registry version when starting.
41
42         * gnus-registry.el (gnus-registry-prune-factor): Add new variable.
43         (gnus-registry-max-pruned-entries): Remove obsolete variable.
44         (gnus-registry-cache-file): Change default
45         filename extension to "eieio".
46         (gnus-registry-read): Add new function, split out from
47         `gnus-registry-load', that does the actual object reading.
48         (gnus-registry-load): Use it. Add condition case handler to check for
49         old filename extension and rename to the new one.
50         (gnus-registry-default-sort-function): New variable to specify a sort
51         function to use when pruning.
52         (gnus-registry-save, gnus-registry-insert): Use it.
53         (gnus-registry-sort-by-creation-time): Define a default sort function.
54
55         * tests/gnustest-registry.el (gnustest-registry-make-testable-db):
56         Adjust test for new object signature.
57         (gnustest-registry-pruning-test): Add new pruning test.
58         (gnustest-registry-sort-function): Default sort function for testing.
59         (gnustest-registry-pruning-sort-test): New test for sorting.
60
61 2014-12-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
62
63         * gnus-art.el (gnus-article-mime-handles): Refactored out into own
64         function for reuse.
65         (gnus-mime-buttonize-attachments-in-header): Adjusted.
66
67 2014-12-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
68
69         * message.el (message-change-subject): Really check whether the subject
70         changed.
71
72 2014-12-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
73
74         * mailcap.el (mailcap-mime-data): Add doc-view-mode as a viewer for
75         PDFs.
76         (mailcap-view-mime): New function.
77
78 2014-12-01  Glenn Morris  <rgm@gnu.org>
79
80         * gnus-cloud.el (gnus-cloud): Add :version tag.
81
82 2014-11-27  Katsumi Yamaoka  <yamaoka@jpl.org>
83
84         * gnus-art.el (gnus-use-idna):
85         * gnus-sum.el (gnus-summary-idna-message):
86         * message.el (message-use-idna):
87         Protect against nil value for idna-program.
88
89         * message.el (message-use-idna): Load Mule-UCS for XEmacs 21.4.
90
91 2014-11-26  John Mastro  <john.b.mastro@gmail.com>  (tiny change)
92
93         * auth-source.el (auth-source-macos-keychain-search-items): Return
94         result of `auth-source-macos-keychain-result-append' (bug#19074).
95
96 2014-11-25  Glenn Morris  <rgm@gnu.org>
97
98         * gnus-start.el (gnus-save-newsrc-file-check-timestamp):
99         Add :version tag.
100
101 2014-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
102
103         * pop3.el (pop3-open-server): Warn unless encrypted.
104
105         * nnimap.el (nnimap-open-connection-1): Warn unless encrypted.
106
107 2014-11-18  Paul Eggert  <eggert@cs.ucla.edu>
108
109         Port new time stamp handling to Emacs 23.2.
110         This fix is for Gnus.  Problem reported by Katsumi Yamaoka.
111         * time-date.el (time-add, time-subtract, time-less-p):
112         Use eval-and-compile, not eval-when-compile.
113
114 2014-11-17  Albert Krewinkel  <albert@zeitkraut.de>
115
116         * message.el (message-valid-fqdn-regexp): Add non-internaional new
117         TLDs.
118
119 2014-11-17  Paul Eggert  <eggert@cs.ucla.edu>
120
121         Port new time stamp handling to old Emacs and to XEmacs.
122         This is needed for Gnus, which copies time-date.el and which
123         runs on older Emacs implementations.
124         * time-date.el (with-decoded-time-value):
125         Handle 'nil' and floating-point arg more compatibly with new Emacs.
126         (encode-time-value, with-decoded-time-value):
127         Obsolete only if new Emacs.
128         (time-add, time-subtract, time-less-p): Define if not new Emacs.
129
130         Improve time stamp handling, and be more consistent about it.
131         This implements a suggestion made in:
132         http://lists.gnu.org/archive/html/emacs-devel/2014-10/msg00587.html
133         Among other things, this means timer.el no longer needs to
134         autoload the time-date module.
135         * time-date.el (seconds-to-time, days-to-time, time-since)
136         (with-decoded-time-value):
137         Treat 'nil' as current time.  This is mostly for XEmacs.
138         (encode-time-value, with-decoded-time-value): Obsolete.
139         (time-add, time-subtract, time-less-p): Use no-op autoloads, for
140         XEmacs.  Define only if XEmacs, as they're now C builtins in Emacs.
141
142 2014-11-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
143
144         * gnus-sum.el (gnus-summary-exit-no-update): Don't query about
145         discarding changes in ephemeral groups.
146
147         * ietf-drums.el (ietf-drums-parse-address): Don't issue warnings about
148         things the user isn't interested in.
149
150 2014-11-13  Julien Danjou  <jd@abydos>
151
152         * gnus-notifications.el (gnus-notifications-notify): Provide both
153         app-icon and image-path.
154
155 2014-11-10  Kenjiro NAKAYAMA  <nakayamakenjiro@gmail.com>
156
157         * mm-url.el (mm-url-encode-multipart-form-data):
158         Restore to handle "multipart/form-data" by eww.
159
160 2014-11-07  Tassilo Horn  <tsdh@gnu.org>
161
162         * gnus-start.el (gnus-activate-group): Fix typo reported by Tim
163         Landscheidt.
164
165 2014-10-29  Paul Eggert  <eggert@cs.ucla.edu>
166
167         Simplify use of current-time and friends.
168         * gnus-delay.el (gnus-delay-article):
169         * gnus-sum.el (gnus-summary-read-document):
170         * gnus-util.el (gnus-seconds-today, gnus-seconds-month):
171         * message.el (message-make-expires-date):
172         Omit unnecessary call to current-time.
173         * gnus-util.el (gnus-float-time): Simplify to an alias because
174         time-to-seconds now behaves like float-time with respect to nil arg.
175         (gnus-seconds-year): Don't call current-time twice to get the current
176         time stamp, as this can lead to inconsistent results.
177         * time-date.el (time-to-seconds) [!float-time]:
178         Use current time if arg is nil, to be compatible with float-time.
179         (time-date--day-in-year): New function, with most of the guts of
180         the old time-to-day-in-year.
181         (time-to-day-in-year): Use it.
182         (time-to-days): Use it, to avoid decoding the same time stamp twice.
183
184 2014-10-27  Katsumi Yamaoka  <yamaoka@jpl.org>
185
186         * gnus.el (gnus-mode-line-buffer-identification):
187         Don't add image data for a non-graphic display (bug#18813).
188
189 2014-10-24  Katsumi Yamaoka  <yamaoka@jpl.org>
190
191         * gnus.el (gnus-mode-line-buffer-identification): Don't shadow
192         load-path, it blocks autoloading of find-image (bug#18813).
193
194 2014-10-24  enami tsugutomo  <tsugutomo.enami@jp.sony.com>
195
196         * nnimap.el (nnimap-wait-for-response): Ignore NOOP response requested
197         to keep connection open (bug#18728).
198
199 2014-10-20  Glenn Morris  <rgm@gnu.org>
200
201         * Merge in all changes up to 24.4 release.
202
203 2014-10-15  Jorge A. Alfaro-Murillo  <jorge.alfaro-murillo@yale.edu>  (tiny change)
204
205         * message.el (message-insert-signature): Use `newline' instead of
206         inserting explicit "\n".
207
208 2014-10-15  Sylvain Chouleur  <sylvain.chouleur@gmail.com>
209
210         * gnus-icalendar.el: Support vcal format timezones.
211         (gnus-icalendar-event--decode-datefield): Use icalendar functions to
212         compute dates with associated timezone.
213         (gnus-icalendar-event-from-ical): Compute all timezones.
214
215 2014-10-14  Teodor Zlatanov  <tzz@lifelogs.com>
216
217         * gnus-start.el (gnus-save-newsrc-file-check-timestamp): New option to
218         check the newsrc.eld file's timestamp before saving it.
219         (gnus-save-newsrc-file): Use it, with a prompt when the newsrc.eld
220         timestamp has changed to be newer.
221
222 2014-10-06  Jan Tatarik  <jan.tatarik@gmail.com>
223
224         * gnus-icalendar.el (gnus-icalendar-identities):
225         Include message-alternative-emails.
226
227 2014-10-05  Katsumi Yamaoka  <yamaoka@jpl.org>
228
229         * ntlm.el (ntlm-string-make-unibyte, ntlm-secure-hash):
230         New compatibility functions.
231         (ntlm-build-auth-response): Use them.
232
233 2014-10-04  Thomas Fitzsimmons  <fitzsim@fitzsim.org>
234
235         * ntlm.el (ntlm-build-auth-request):
236         Add NTLM2 Session support.  (Bug#15603)
237
238 2014-10-04  Alan Schmitt  <alan.schmitt@polytechnique.org>  (tiny change)
239
240         * nnimap.el (nnimap-process-expiry-targets): Reverse the list of
241         expired messages only when it was built in reverse order.
242
243 2014-10-04  Peter Münster  <pmlists@free.fr>  (tiny change)
244
245         * gnus-delay.el (gnus-delay-send-queue): Remove `gnus-delay-header'
246         last so it can be used in `message-send-hook'.
247
248 2014-09-29  Daiki Ueno  <ueno@gnu.org>
249
250         * mml.el (mml-parse-1): Error out if unknown mode is specified in
251         <#secure> tag (bug#18513).
252
253 2014-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
254
255         * parse-time.el: Require cl when compiling.
256
257 2014-09-26  Katsumi Yamaoka  <yamaoka@jpl.org>
258
259         Use cl-lib as much as possible following the 2014-09-26 change
260         in the Emacs trunk.
261         * parse-time.el: Try requiring cl-lib.
262         (parse-time-incf): Alias to cl-incf or incf.
263         (digit-char-p): Remove.
264         (parse-time-integer): Alias to cl-parse-integer or the one defined.
265         (parse-integer): Rename to parse-time-integer.
266         (parse-time-tokenize, parse-time-rules, parse-time-string)
267         Use parse-time-incf and parse-time-integer.
268
269 2014-09-11  Paul Eggert  <eggert@cs.ucla.edu>
270
271         * gnus-cloud.el (gnus-cloud-parse-version-1): Fix misspelling
272         of ":delete".
273
274 2014-08-26  Katsumi Yamaoka  <yamaoka@jpl.org>
275
276         * gnus-art.el (gnus-article-browse-html-save-cid-content)
277         (gnus-article-browse-html-parts):
278         Revert last change that breaks links other than cid contents.
279
280 2014-08-26  Katsumi Yamaoka  <yamaoka@jpl.org>
281
282         * gnus-art.el (gnus-article-browse-html-save-cid-content)
283         (gnus-article-browse-html-parts): Make cid file names relative.
284
285 2014-08-21  Katsumi Yamaoka  <yamaoka@jpl.org>
286
287         * mm-view.el (mm-display-inline-fontify): Make the working buffer
288         temporarily displayed when running a mode function (at least org-mode
289         requires it).
290
291 2014-08-14  Alan Schmitt  <alan.schmitt@polytechnique.org>
292
293         * gnus-sum.el (gnus-summary-expire-articles): Functions registered to
294         the gnus-summary-article-expire-hook should be told where the function
295         is going. In particular, the Gnus registry might want to know.
296
297 2014-08-12  Stefan Monnier  <monnier@iro.umontreal.ca>
298
299         * gnus-art.el (gnus-hidden-properties): Drop the evil `intangible'.
300
301 2014-08-06  Katsumi Yamaoka  <yamaoka@jpl.org>
302
303         * gnus-sum.el (gnus-summary-expire-articles): Revert.
304
305 2014-08-05  Eric Abrahamsen  <eric@ericabrahamsen.net>
306
307         * gnus-sum.el (gnus-summary-expire-articles): Functions registered to
308         the gnus-summary-article-expire-hook should be told where the function
309         is going. In particular, the Gnus registry might want to know.
310
311 2014-08-03  Paul Eggert  <eggert@cs.ucla.edu>
312
313         Don't mishandle year-9999 dates (Bug#18176).
314         * parse-time.el (parse-time-rules):
315         Allow years up to most-positive-fixnum.
316         * time-date.el (date-to-time):
317         Pass "Specified time is not representable" errors through.
318
319 2014-07-31  Tassilo Horn  <tsdh@gnu.org>
320
321         * gnus-msg.el (gnus-inews-insert-gcc): Allow `gcc-self' to be a list of
322         groups and t.
323
324 2014-07-22  Katsumi Yamaoka  <yamaoka@jpl.org>
325
326         * gnus-utils.el (gnus-recursive-directory-files):
327         Unify hard or symbolic links (bug#18063).
328
329 2013-07-17  Albert Krewinkel  <albert@zeitkraut.de>
330
331         * gnus-msg.el (gnus-configure-posting-style):
332         Allow string replacements in values when matching against a header.
333
334 2014-07-07  Katsumi Yamaoka  <yamaoka@jpl.org>
335
336         * gnus-start.el (gnus-dribble-read-file): Don't stop the auto-saving of
337         the dribble buffer even when it is shrunk a lot.
338         <http://thread.gmane.org/gmane.emacs.gnus.user/16923>
339
340 2014-06-26  Glenn Morris  <rgm@gnu.org>
341
342         * mm-util.el (help-function-arglist): Remove outdated declaration.
343
344 2014-06-24  Andreas Schwab  <schwab@linux-m68k.org>
345
346         * html2text.el (html2text-get-attr): Rewrite to handle spaces in quoted
347         attribute values.  (Bug#17834)
348
349 2013-06-22  Dmitry Antipov  <dmantipov@yandex.ru>
350
351         * gnus-sum.el (gnus-summary-edit-article-done):
352         Prefer point-marker to copy-marker of point.
353
354 2014-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
355
356         * Makefile.in (install-el, install-el-elc): Compress .el files.
357         (uninstall): Remove compressed .el files.
358
359 2014-06-05  Katsumi Yamaoka  <yamaoka@jpl.org>
360
361         * gnus-art.el (gnus-article-edit-part): Don't modifiy markers.
362         (gnus-article-read-summary-keys):
363         Don't bug out when there is no article in the summary buffer.
364         (gnus-mime-buttonize-attachments-in-header):
365         Improve criterion that finds parts to display.
366
367         * gnus-art.el (gnus-mm-display-part):
368         * mm-decode.el (mm-shr):
369         * mm-view.el (mm-inline-text-html-render-with-w3m, mm-inline-text)
370         (mm-insert-inline): Revert last changes.
371
372 2014-06-05  Katsumi Yamaoka  <yamaoka@jpl.org>
373
374         * gnus-art.el (gnus-mm-display-part):
375         * mm-decode.el (mm-shr):
376         * mm-view.el (mm-inline-text-html-render-with-w3m, mm-inline-text)
377         (mm-insert-inline): Set insertion type of end-marker, not only
378         start-marker, of undisplayer so as to stay after inserted text.
379
380 2014-06-02  Andreas Schwab  <schwab@linux-m68k.org>
381
382         * html2text.el (html2text-get-attr): Fix typo when splitting value from
383         attribute. (Bug#17613)
384
385 2014-05-29  Stefan Monnier  <monnier@iro.umontreal.ca>
386
387         * mm-view.el (mm-display-inline-fontify): Use font-lock-ensure.
388         * gnus-cite.el (gnus-message-citation-mode): Use font-lock-flush.
389
390 2014-05-15  Katsumi Yamaoka  <yamaoka@jpl.org>
391
392         * gnus-art.el (gnus-mime-inline-part, gnus-mm-display-part): Don't
393         delete next part button; keep spacing between buttons.
394
395 2014-05-14  Katsumi Yamaoka  <yamaoka@jpl.org>
396
397         * gnus-art.el (gnus-mime-inline-part, gnus-mm-display-part):
398         Work for the last MIME part in an article.
399         (gnus-mime-display-single): Suppress excessive newlines between parts.
400
401         * mm-uu.el (mm-uu-dissect): Assume that separators may be accompanied
402         by leading or trailing newline.
403
404 2014-05-12  Sam Steingold  <sds@gnu.org>
405
406         * time-date.el (seconds-to-string): New function to pretty print time
407         delay in seconds.
408
409 2014-05-09  Katsumi Yamaoka  <yamaoka@jpl.org>
410
411         * gnus-art.el (gnus-mm-display-part): Don't put article out of sight
412         while prompting a user for a file name, etc.
413         (gnus-mime-display-single): Display part with a common appearance no
414         matter whether MIME button is omitted or not; don't add duplicate entry
415         to gnus-article-mime-handle-alist.
416         (gnus-mime-buttonize-attachments-in-header): Use copied buttons.
417
418 2014-05-08  Adam Sjøgren  <asjo@koldfront.dk>
419
420         * mml2015.el (mml2015-display-key-image): New variable.
421
422 2014-05-08  Glenn Morris  <rgm@gnu.org>
423
424         * gnus-fun.el (gnus-grab-cam-face):
425         Do not use predictable temp-file name.  (http://bugs.debian.org/747100)
426         This is CVE-2014-3421.
427
428 2014-05-04  Glenn Morris  <rgm@gnu.org>
429
430         * gnus-registry.el (gnus-registry-install-p): Doc fix.
431
432 2014-05-02  Katsumi Yamaoka  <yamaoka@jpl.org>
433
434         * gnus-art.el (gnus-mime-inline-part): Redisplay a button so as to show
435         the displaying state of a part.
436         (gnus-mm-display-part): Don't insert a newline in the beginning of
437         a part like gnus-mime-inline-part doesn't; work for XEmacs.
438
439         * mm-decode.el (mm-display-part): Don't insert a newline in the top.
440         (mm-shr): Make undisplayer unbreakable.
441
442         * mm-view.el (mm-inline-image-emacs, mm-inline-image-xemacs): Don't
443         insert excessive newline.
444         (mm-inline-text-html-render-with-w3m, mm-inline-text)
445         (mm-insert-inline): Make undisplayer unbreakable.
446
447 2014-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
448
449         * gnus.el: Ma Gnus v0.11 is released.
450
451 2014-05-01  Katsumi Yamaoka  <yamaoka@jpl.org>
452
453         * gnus-art.el (gnus-mm-display-part):
454         Highlight header attachment buttons.
455
456 2014-04-30  Katsumi Yamaoka  <yamaoka@jpl.org>
457
458         * gnus-art.el (gnus-mm-display-part): Don't move point while toggling
459         a part; redisplay a button (enbugged in 2014-02-05).
460
461 2014-04-27  Teodor Zlatanov  <tzz@lifelogs.com>
462
463         * auth-source.el (auth-source-search, auth-source-search-backends):
464         Treat :max 0 as an indicator that a boolean return is wanted, as
465         documented. Reported by Joe Bloggs.
466
467 2014-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
468
469         * gnus-icalendar.el: Require gnus-art.
470
471 2014-04-20  Jan Tatarik  <jan.tatarik@gmail.com>
472
473         * gnus-icalendar.el (gnus-icalendar-event->org-entry)
474         (gnus-icalendar--update-org-event): put event timestamp in
475         the org entry body instead of the drawer.
476         (gnus-icalendar-event--get-attendee-names): list of participants should
477         contain even attendees without common name attribute.
478         (gnus-icalendar--update-org-event): don't generate duplicates of empty
479         property tags in org drawers.
480
481 2014-04-15  Katsumi Yamaoka  <yamaoka@jpl.org>
482
483         * gmm-utils.el (gmm-format-time-string): New function.
484
485         * message.el (message-insert-formatted-citation-line): Use the original
486         author's time zone to express a date string.
487
488 2014-04-06  Stefan Monnier  <monnier@iro.umontreal.ca>
489
490         * gnus-srvr.el (gnus-tmp-how, gnus-tmp-name, gnus-tmp-where)
491         (gnus-tmp-status, gnus-tmp-agent, gnus-tmp-cloud)
492         (gnus-tmp-news-server, gnus-tmp-news-method, gnus-tmp-user-defined):
493         Silence compiler warnings.
494         (gnus-server-insert-server-line): Don't use dyn-bind var as argument.
495
496 2014-03-24  Katsumi Yamaoka  <yamaoka@jpl.org>
497
498         * mml.el: Require url when compiling.
499
500         * gnus-cloud.el (gnus-cloud-parse-version-1):
501         Use plist-get rather than CL's getf.
502         (gnus-activate-group, gnus-subscribe-group): Declare.
503
504         * gnus-sum.el (gnus-mime-buttonize-attachments-in-header): Declare.
505
506 2014-03-14  Katsumi Yamaoka  <yamaoka@jpl.org>
507
508         * gnus-sum.el (gnus-summary-toggle-header): Display header attachment
509         buttons when toggling the header off.
510
511 2014-03-14  Juanma Barranquero  <lekktu@gmail.com>
512
513         * tls.el (tls-program): Reflow docstring.
514
515 2014-03-07  Lars Ingebrigtsen  <larsi@gnus.org>
516
517         * nnimap.el (nnimap-request-accept-article): Make respooling to nnimap
518         groups work again.
519
520 2014-03-07  George McNinch  <gmcninch@gmail.com>  (tiny change)
521
522         * nnir.el (nnir-run-namazu): Parse namazu results that are larger than
523         999 correctly (i.e. "1,342").
524
525 2014-03-07  Lars Ingebrigtsen  <larsi@gnus.org>
526
527         * gnus-agent.el (gnus-agent-update-files-total-fetched-for): Don't bug
528         out if the directory doesn't exist.
529
530 2014-03-07  Daiki Ueno  <ueno@gnu.org>
531
532         * mml2015.el (mml2015-use): Don't check the availability of GnuPG
533         commands here; instead, only check if epg-config.el is available.
534
535 2014-03-06  Lars Ingebrigtsen  <larsi@gnus.org>
536
537         * mml.el (mml-expand-html-into-multipart-related): Allow sending HTML
538         messages with embedded images.
539         (mml-generate-mime): Don't bug out if you don't have libxml.
540
541 2014-03-06  Lars Ingebrigtsen  <larsi@gnus.org>
542
543         * message.el (message-make-html-message-with-image-files): New command.
544
545 2014-03-05  Lars Ingebrigtsen  <larsi@gnus.org>
546
547         * gnus-group.el (gnus-group-make-group): Clarify prompt.
548
549         * mml.el (mml-insert-mime-headers): Allow `recipient-filename'.
550
551 2014-02-23  David Engster  <deng@randomsample.de>
552
553         * auth-source.el (auth-source-netrc-saver): Do not depend on `cl-lib'
554         to stay compatible with older Emacsen, so replace `cl-loop' with
555         `loop'.
556
557 2014-02-22  Daniel Colascione  <dancol@dancol.org>
558
559         * auth-source.el (auth-source-secrets-listify-pattern): New function.
560         (auth-source-secrets-search): Don't pass invalid patterns to secrets.el;
561         instead, build list of patterns.
562
563 2014-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
564
565         * gnus-art.el (gnus-article-prepare, gnus-article-prepare-display):
566         Display header attachment buttons by gnus-article-prepare-display
567         rather than gnus-article-prepare so as to view in mml-preview as well.
568
569 2014-02-13  Teodor Zlatanov  <tzz@lifelogs.com>
570
571         * auth-source.el (auth-sources): Add pointer to what the .gpg extension
572         in `auth-sources' means and link to EPA docs.
573
574 2014-02-12  Lars Ingebrigtsen  <larsi@gnus.org>
575
576         * nnmail.el (nnmail-expand-newtext): Further sub-match fixups
577         (bug#12375).
578
579 2014-02-10  Katsumi Yamaoka  <yamaoka@jpl.org>
580
581         * gnus-art.el (gnus-article-goto-part): Find a button in the body first.
582         (gnus-mime-buttonize-attachments-in-header): Number hidden buttons.
583
584 2014-02-09  Lars Ingebrigtsen  <larsi@gnus.org>
585
586         * message.el (message-tab): Mention what happens on normal tabs
587         (bug#11297).
588
589 2014-02-08  Glenn Morris  <rgm@gnu.org>
590
591         * auth-source.el (auth-sources): Doc fix.  (Bug#16642)
592
593 2014-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
594
595         * gnus-art.el (gnus-mime-buttonize-attachments-in-header): Display
596         buttons that are hidden in unselected alternative part as well.
597         (gnus-mime-display-alternative): Redraw attachment buttons in header.
598
599         * gmm-utils.el (gmm-flet, gmm-labels): Add edebug spec.
600
601 2014-02-07  Lars Ingebrigtsen  <larsi@gnus.org>
602
603         * gnus-srvr.el (gnus-server-toggle-cloud-server): New command and
604         keystroke.
605         (gnus-server-toggle-cloud-server): Only allow clouding applicable
606         types.
607
608         * ietf-drums.el (ietf-drums-parse-address): Don't bug out when called
609         with an empty string.
610
611 2014-02-06  Lars Ingebrigtsen  <larsi@gnus.org>
612
613         * gnus-msg.el (gnus-summary-cancel-article): `user-mail-address' is
614         buffer-local in some buffers, so bind it explicitly in the buffer we're
615         trying to cancel the article in (bug#10808).
616
617 2014-02-05  Katsumi Yamaoka  <yamaoka@jpl.org>
618
619         * gnus.el, gnus-xmas.el (gnus-copy-overlay, gnus-overlays-at):
620         New functions.
621
622         * gnus-art.el (gnus-mime-display-attachment-buttons-in-header):
623         New user option.
624         (gnus-mime-buttonize-attachments-in-header): New function.
625         (gnus-article-prepare): Use it.
626         (gnus-mime-inline-part): Suppress extra newline.
627         (gnus-mm-display-part): Save excursion;
628         remove useless deleting and adding of buttons.
629         (gnus-insert-mime-button): Allow insertion in the middle of a line.
630
631         * gnus-sum.el (gnus-summary-wash-mime-map, gnus-summary-article-menu):
632         Add gnus-mime-buttonize-attachments-in-header.
633
634 2014-02-05  Lars Ingebrigtsen  <larsi@gnus.org>
635
636         * nnimap.el (nnimap-request-articles): New command to download several
637         articles at once.
638
639         * gnus.el (gnus-variable-list): Save Cloud variables.
640
641         * gnus-int.el (gnus-request-accept-article): Doc fix.
642
643 2014-02-04  Lars Ingebrigtsen  <larsi@gnus.org>
644
645         * parse-time.el (parse-time-iso8601-regexp)
646         (parse-iso8601-time-string): Copied from `url-dav' so that we can use
647         it more generally.
648
649 2014-02-01  Lars Ingebrigtsen  <larsi@gnus.org>
650
651         * gnus-cloud.el: New file to provide the Emacs Cloud.
652
653         * dgnushack.el: Silence XEmacs w3 warning.
654
655         * gravatar.el (gravatar-retrieve-synchronously): XEmacs also has
656         `url-retrieve-synchronously', apparently.
657
658         * dgnushack.el: Silence XEmacs dns.el warning.
659
660         * gnus-compat.el (gnus-compat): Declare `declare-function' only here
661         instead of in all files.
662
663         * dns.el (network-interface-list): Define for XEmacs.
664
665         * gnus-notifications.el (gravatar-retrieve-synchronously): Declare for
666         XEmacs.
667
668         * nnrss.el (libxml-parse-html-region): Silence compilation error.
669
670 2014-02-01  Daniel Dehennin  <daniel.dehennin@baby-gnu.org>
671
672         * gnus-mlspl.el (gnus-group-split-fancy): Use `gnus-parameters' in
673         `gnus-group-split-fancy'.
674
675 2014-02-01  Lars Ingebrigtsen  <larsi@gnus.org>
676
677         * message.el (message-remove-header): Doc fix.
678         (message-forward-included-headers): New variable.
679         (message-remove-ignored-headers): Use it.
680
681 2014-02-01  Lars Ingebrigtsen  <larsi@gnus.org>
682
683         * nnir.el (nnir-request-update-mark): Don't try to update the source
684         group if we can't find it (bug#16611).
685
686 2014-01-31  Dave Abrahams  <dave@boostpro.com>
687
688         * gnus-sum.el (gnus-summary-open-group-with-article): New command.
689
690 2014-01-31  Magnus Henoch  <magnus.henoch@gmail.com>
691
692         * dns.el (dns-servers-up-to-date-p): New function to see whether the
693         network interfaces changed.
694         (dns-query): Use it to flush the data.
695
696 2013-09-04  Rasmus Pank Roulund  <emacs@pank.eu>
697
698         * gnus-fun.el (gnus-x-face-omit-files): Regexp to omit matched results
699         from random face commands.
700         (gnus-face-directory): Like `gnus-x-face-directory` for png files and
701         Face.
702         (gnus-face-omit-files): Like `gnus-x-face-omit-files` for Face.
703         (gnus--random-face-with-type): Generic function returning a face-type
704         as a string.
705         (gnus--insert-random-face-with-type): Generic function inserting a face
706         in a message buffer header.
707         (gnus-random-x-face): Rewritten to use `gnus--random-face-with-type`.
708         (gnus-insert-random-x-face-header): Rewritten to use
709         `gnus--insert-random-face-with-type`.
710         (gnus-random-face): Return random (png) Face as string.
711         (nus-insert-random-face-header): Insert random (png) Face in a message
712         buffer.
713
714 2014-01-31  Lars Ingebrigtsen  <larsi@gnus.org>
715
716         * mm-url.el: Remove all usage of w3.
717
718         * nnrss.el: Ditto.
719
720         * mm-decode.el: Ditto.
721
722         * mm-view.el: Ditto.
723
724         * dgnushack.el: Remove mentions of urldir and w3-dir, since w3 is
725         outdated and all Emacsen have url.el built-in.
726
727         * gnus-setup.el: Remove outdated file.
728
729 2014-01-31  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
730
731         * gnus.el: Ma Gnus v0.9 is released.
732
733 2014-01-31  Lars Ingebrigtsen  <larsi@gnus.org>
734
735         * nnimap.el (nnimap-transform-headers): Fix Davmail header parsing.
736
737 2014-01-31  Dave Abrahams  <dave@boostpro.com>
738
739         * gnus-salt.el (gnus-tree-highlight-article): Don't move point around
740         in the summary buffer (bug#13769).
741
742 2014-01-31  Lars Ingebrigtsen  <larsi@gnus.org>
743
744         * gnus-art.el (gnus-article-setup-buffer): Refresh the summary buffer
745         name if we're using a single article buffer.  Otherwise, it may point
746         to a killed buffer (bug#13756).
747
748 2014-01-30  Lars Ingebrigtsen  <larsi@gnus.org>
749
750         * nnmail.el (nnmail-split-it): Instead of redoing the search to restore
751         the match data, just save and restore it explictly (bug#12375).
752
753         * gnus-sum.el (gnus-summary-read-group-1): Initialize the spam code if
754         that's needed.
755
756         * spam.el (spam-initialize): Allow calling repeatedly, but only run the
757         the code once (bug#9069).
758
759 2014-01-18  Steinar Bang  <sb@dod.no>
760
761         * gnus-setup.el (gnus-use-sendmail): We never use sendmail for mail
762         reading.
763
764 2014-01-09  Ken Olum  <kdo@cosmos.phy.tufts.edu>  (tiny change)
765
766         * message.el (message-bury): Call bury-buffer with no argument
767         in the message-return-action case too.
768
769 2014-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
770
771         * gnus-sum.el (gnus-article-stop-animations): Declare it before using.
772         (nnimap-split-fancy, nnimap-split-methods): Declare.
773
774         * mm-util.el (help-function-arglist): Declare.
775
776 2013-12-28  Glenn Morris  <rgm@gnu.org>
777
778         * gnus-sieve.el (gnus-sieve-select-method):
779         * gravatar.el (gravatar-automatic-caching, gravatar-cache-ttl)
780         (gravatar-rating, gravatar-size):
781         * message.el (message-minibuffer-local-map):
782         * sieve-manage.el (sieve-manage-authenticators)
783         (sieve-manage-authenticator-alist): Specify custom types.
784
785         * hashcash.el (hashcash-program): Rename from hashcash-path.
786         Update callers.
787
788         * gnus-icalendar.el (gnus-icalendar-org, gnus-icalendar):
789         * gnus-sum.el (gnus-subthread-sort-functions): Add version.
790         * gnus-sync.el (gnus-sync-file-encrypt-to): Add type and version.
791
792         * auth-source.el (auth-sources):
793         * nnmairix.el (nnmairix-propagate-marks-upon-close):
794         Fix custom types.
795
796         * tls.el (tls-certtool-program): Fix default value.
797
798 2013-12-26  Lars Ingebrigtsen  <larsi@gnus.org>
799
800         * gnus-sum.el (gnus-summary-respool-query): Special-case nnimap so that
801         we get proper traces there, too.
802
803 2013-12-26  Sean Connor  <sconnor005@allyinics.org>  (tiny change)
804
805         * gnus-sum.el (gnus-summary-enter-digest-group): Don't discard previous
806         value of the parameters if the current article has a Reply-To or From
807         field.
808
809 2013-12-26  Lars Ingebrigtsen  <larsi@gnus.org>
810
811         * gnus.el (gnus-group-buffer): Remove duplicate definition.
812
813 2013-12-25  Lars Ingebrigtsen  <larsi@gnus.org>
814
815         * gnus-sum.el (gnus-summary-exit): Stop animations.
816
817 2013-12-19  Juri Linkov  <juri@jurta.org>
818
819         * gnus.el (gnus-suppress-keymap):
820         * gnus-art.el (gnus-article-mode-map):
821         * gnus-group.el (gnus-group-mode-map):
822         * gnus-sum.el (gnus-summary-mode-map, gnus-summary-backend-map):
823         Remove [backspace] key binding because it shadows DEL (bug#16035).
824
825         * mm-decode.el (mm-viewer-completion-map): Remove duplicate definition.
826
827 2013-12-19  Katsumi Yamaoka  <yamaoka@jpl.org>
828
829         * gnus-uu.el (gnus-uu-decode-binhex, gnus-uu-decode-binhex-view):
830         Make sure work directory exists.
831         (gnus-uu-digest-mail-forward): Store temporary files in work directory
832         rather than tmp directory.
833         (gnus-summary-prepare-exit-hook): Replace gnus-exit-group-hook, that is
834         not necessarily always run, with it.
835
836 2013-12-18  Jan Tatarik  <jan.tatarik@gmail.com>
837
838         * gnus-icalendar.el (gnus-icalendar-identities): Make changing the
839         value of gnus-icalendar-additional-identities work without restart.
840
841 2013-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
842
843         * mm-util.el (mm-make-temp-file):
844         Alias to make-temp-file for modern Emacsen.
845
846 2013-12-08  Katsumi Yamaoka  <yamaoka@jpl.org>
847
848         * gnus-msg.el (gnus-setup-message): Fix the type of argument passed to
849         nnir-article-number and nnir-article-group.
850
851 2013-12-03  Vitalie Spinu  <spinuvit@gmail.com>
852
853         * message.el (message-send-mail-with-sendmail):
854         Don't kill error buffer if sending fails.
855
856 2013-11-28  Jan Tatarik  <jan.tatarik@gmail.com>
857
858         * gnus-icalendar.el (gnus-icalendar-event-from-ical)
859         (gnus-icalendar-event->org-entry)
860         (gnus-icalendar--update-org-event)
861         (gnus-icalendar-event->gnus-calendar): Distinguish between
862         required/optional/non-participant attendee status.  Fix bug causing
863         the first required event participant to be omitted.
864
865 2013-11-27  Katsumi Yamaoka  <yamaoka@jpl.org>
866
867         * gnus-art.el (article-de-quoted-unreadable)
868         (article-de-base64-unreadable, gnus-mime-copy-part)
869         * gnus-html.el (gnus-article-html)
870         * mm-view.el (mm-inline-text-html-render-with-w3)
871         (mm-inline-text-html-render-with-w3m-standalone)
872         * rfc2231.el (rfc2231-decode-encoded-string):
873         Allow overriding charset by mm-charset-override-alist.
874
875         * gnus-art.el (gnus-article-browse-html-parts):
876         Replace LWSPs with `&nbsp;'s in header.
877
878         Work for broken Chinese articles.
879
880         * gnus-art.el (gnus-article-browse-html-save-cid-content):
881         Exclude broken handles that gnus-summary-enter-digest-group may create.
882         (gnus-article-browse-html-parts):
883         Allow overriding charset by mm-charset-override-alist.
884
885 2013-11-21  Jan Tatarik  <jan.tatarik@gmail.com>
886
887         * gnus-icalendar.el (gnus-icalendar-additional-identities): New.
888         (gnus-icalendar-identities): Support additional-identities.
889
890 2013-11-21  Jan Tatarik  <jan.tatarik@gmail.com>
891
892         * gnus-icalendar.el (gnus-icalendar-event:org-timestamp): Fix
893         org-timestamp for events ending at midnight.
894
895 2013-11-21  Ivan Shmakov  <ivan@siamics.net>
896
897         * nndoc.el (nndoc-type-alist, nndoc-debbugs-db-type-p): Support debbugs
898         .log files.
899
900 2013-11-20  David Engster  <deng@randomsample.de>
901
902         * lpath.el: Fix XEmacs warning for `beginning-of-visual-line'.
903
904 2013-11-20  Dave Goldberg  <david.goldberg6@verizon.net>
905
906         * message.el (message-beginning-of-line):
907         Use beginning-of-visual-line when visual-line-mode is turned on.
908
909 2013-11-15  Jan Tatarik  <jan.tatarik@gmail.com>
910
911         * gnus-icalendar.el (gnus-icalendar-event->gnus-calendar)
912         (gnus-icalendar-event-from-ical)
913         (gnus-icalendar-event->org-entry)
914         (gnus-icalendar--update-org-event): Required/optional participation,
915         list of attendees synced to org.
916
917 2013-11-13  Jan Tatarik  <jan.tatarik@gmail.com>
918
919         * gnus-icalendar.el (gnus-icalendar-event:sync-to-org)
920         (gnus-icalendar-event:inline-org-buttons): Allow for appointment
921         cancellations to be synced to org if the original appt has an org
922         outline.
923
924 2013-11-13  Jan Tatarik  <jan.tatarik@gmail.com>
925
926         * gnus-icalendar.el (gnus-icalendar--format-summary-line)
927         (gnus-icalendar-event->org-entry)
928         (gnus-icalendar--update-org-event)
929         (gnus-icalendar-event->gnus-calendar): Fix empty location handling.
930
931 2013-11-12  Jan Tatarik  <jan.tatarik@gmail.com>
932
933         * gnus-icalendar.el (gnus-icalendar-event-from-ical):
934         Fix timezone handling in gnus-icalendar export to org.
935
936 2013-11-06  Katsumi Yamaoka  <yamaoka@jpl.org>
937
938         * gnus-salt.el (gnus--let-eval): Silence the Buildbot.
939
940 2013-11-05  Katsumi Yamaoka  <yamaoka@jpl.org>
941
942         * gnus-cite.el (gnus-cite-add-face): Make non-sticky overlays.
943
944 2013-10-30  Glenn Morris  <rgm@gnu.org>
945
946         * gnus-group.el (gnus-group-browse-foreign-server):
947         * gnus-int.el (gnus-start-news-server):
948         Silence compiler obsolescence warning.
949
950 2013-10-29  Teodor Zlatanov  <tzz@lifelogs.com>
951
952         * nnimap.el (nnimap-open-connection-1): `auth-source-search' for the
953         `nnoo-current-server' first, then for the actual `nnimap-address' to
954         allow netrc entries for the nnoo server to coexist with netrc entries
955         for the `nnimap-address'.
956
957 2013-10-23  Katsumi Yamaoka  <yamaoka@jpl.org>
958
959         * mm-decode.el (mm-dissect-buffer): Revert last change.
960         * nndoc.el (nndoc-dissect-mime-parts-sub): Ditto.
961         The problem that motivated those changes was attributed to a broken
962         mail sender, and has been fixed.
963
964 2013-10-22  Katsumi Yamaoka  <yamaoka@jpl.org>
965
966         * mm-decode.el (mm-dissect-buffer): Guess content-type if the first
967         token is missing in the Content-Type header.
968
969         * nndoc.el (nndoc-dissect-mime-parts-sub): Ditto.
970
971 2013-09-18  Glenn Morris  <rgm@gnu.org>
972
973         * gnus-util.el (image-size): Declare.
974
975 2013-09-17  Katsumi Yamaoka  <yamaoka@jpl.org>
976
977         * gnus-icalendar.el (gnus-icalendar-event--find-attendee)
978         (gnus-icalendar-event-from-ical)
979         (gnus-icalendar-event--build-reply-event-body)
980         (gnus-icalendar-event-reply-from-buffer)
981         (gnus-icalendar-find-org-event-file)
982         (gnus-icalendar-event->gnus-calendar, gnus-icalendar-reply)
983         (gnus-icalendar-mm-inline): Use gmm-labels instead of labels or flet.
984
985         * mm-util.el (mm-special-display-p): Isolate XEmacs stuff.
986
987 2013-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
988
989         * gnus-salt.el (gnus-tree-mode): Use define-derived-mode.
990         Use save-current-buffer.
991         (gnus-tree-mode-map): Initialize in the declaration.
992         (gnus-pick-mouse-pick-region): Remove unused var `fun'.
993         (scroll-in-place): Defvar it.
994         (gnus-tmp-*): Defvar them.
995         (gnus-get-tree-buffer): Use derived-mode-p.
996         (gnus--let-eval): New macro.
997         (gnus-tree-highlight-node): Use it to avoid dynamic binding of
998         non-prefixed variables.
999         (gnus-tree-open, gnus-tree-close): Remove unused arg `group'.
1000
1001         * gnus-sum.el (gnus-summary-highlight): Remove `below' from the list of
1002         vars since it doesn't seem to be available.
1003         (gnus-set-global-variables, gnus-summary-read-group-1)
1004         (gnus-select-newsgroup, gnus-handle-ephemeral-exit)
1005         (gnus-summary-display-article, gnus-summary-select-article)
1006         (gnus-summary-next-article, gnus-offer-save-summaries)
1007         (gnus-summary-generic-mark): Use derived-mode-p.
1008         (gnus-summary-read-group-1, gnus-summary-exit)
1009         (gnus-summary-exit-no-update, gnus-kill-or-deaden-summary):
1010         Adjust calls to gnus-tree-close and gnus-tree-open.
1011
1012         * gnus-eform.el (gnus-edit-form-mode): Use define-derived-mode.
1013
1014         * gnus-agent.el (gnus-category-mode): Use define-derived-mode.
1015         (gnus-agent-mode): Use derived-mode-p.
1016         (gnus-agent-rename-group, gnus-agent-delete-group): Don't bind
1017         gnus-command-method and *-command-method to nil, but bind
1018         gnus-command-method to *-command-method instead!
1019         (gnus-agent-fetch-articles): Remove unused var `id'.
1020         (gnus-agent-fetch-headers): Remove unused arg `force'.
1021         (gnus-agent-braid-nov): Remove unused arg `group'.  Adjust callers.
1022         (gnus-agent-save-alist, gnus-agent-save-local): Remove unused `item'.
1023         (gnus-agent-short-article, gnus-agent-long-article)
1024         (gnus-agent-low-score, gnus-agent-high-score): Move declaration before
1025         first use.
1026         (gnus-agent-fetch-group-1): Remove unused vars `arts', `category',
1027         `score-param'.
1028         (gnus-tmp-name, gnus-tmp-groups): Defvar them.
1029         (gnus-get-predicate): Push in front of the cache, rather than end.
1030         (gnus-agent-expire-current-dirs, gnus-agent-expire-stats): Defvar them.
1031         (gnus-agent-expire-group-1): Use push.  Don't abuse dyn-binding.
1032         (gnus-agent-expire-unagentized-dirs): Don't rebind
1033         gnus-agent-expire-current-dirs since the defvar silences the warning.
1034         (gnus-agent-retrieve-headers): Remove unused var `cached-articles'.
1035         (gnus-agent-regenerate-group): Remove unused vars `point' and `dl'.
1036         (gnus-agent-regenerate): Simplify interactive spec and doc.
1037
1038 2013-09-17  Katsumi Yamaoka  <yamaoka@jpl.org>
1039
1040         * gnus-int.el (gnus-open-server): Silence compiler.
1041
1042         * mm-decode.el (mm-add-meta-html-tag): Fix regexp matching meta tag.
1043
1044         * message.el (message-display-completion-list): Abolish.
1045         (message-completion-in-region): Use display-completion-list.
1046
1047 2013-09-17  Glenn Morris  <rgm@gnu.org>
1048
1049         * gnus-util.el (gnus-message-with-timestamp-1):
1050         Use `messages-buffer' function if available.  Ignore read-only.
1051
1052 2013-09-16  Katsumi Yamaoka  <yamaoka@jpl.org>
1053
1054         * message.el (message-expand-group, message-completion-in-region):
1055         Correct the order of start and end of a region.
1056
1057 2013-09-13  Glenn Morris  <rgm@gnu.org>
1058
1059         * mml2015.el (gnus-create-image): Autoload it.
1060
1061         * gnus-spec.el (gnus-xmas-format): Fix weird error call.
1062
1063         * gnus-html.el (declare-function): Add compat stub for ancient Emacs.
1064         (image-size): Declare.
1065
1066 2013-09-12  Glenn Morris  <rgm@gnu.org>
1067
1068         * gnus-icalendar.el (gnus-icalendar-event--build-reply-event-body):
1069         Avoid using `find', which i) might not be defined at runtime;
1070         ii) does not work, since its default test is eql, not equal.
1071         (gnus-mime-action-alist): Declare.
1072
1073 2013-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
1074
1075         * score-mode.el (gnus-score-mode-map): Move initialization
1076         into declaration.
1077         (gnus-score-mode): Use define-derived-mode.
1078         * gnus-srvr.el (gnus-browse-mode): Use define-derived-mode.
1079         * gnus-kill.el (gnus-kill-file-mode-map): Move initialization
1080         into declaration.
1081         (gnus-kill-file-mode): Use define-derived-mode.
1082         (gnus-kill-file-edit-file, gnus-kill-file-enter-kill, gnus-kill):
1083         Use derived-mode-p.
1084         * gnus-group.el (gnus-group-mode): Use define-derived-mode.
1085         (gnus-group-setup-buffer, gnus-group-name-at-point)
1086         (gnus-group-make-web-group, gnus-group-enter-directory)
1087         (gnus-group-suspend): Use derived-mode-p.
1088         * gnus-cus.el (gnus-custom-mode): Use define-derived-mode.
1089         * gnus-bookmark.el (gnus-bookmark-bmenu-mode): Use define-derived-mode.
1090         * gnus-art.el (gnus-article-mode): Use define-derived-mode.
1091         (gnus-article-setup-buffer, gnus-article-prepare)
1092         (gnus-article-prepare-display, gnus-sticky-article)
1093         (gnus-kill-sticky-article-buffer, gnus-kill-sticky-article-buffers)
1094         (gnus-bind-safe-url-regexp, gnus-article-check-buffer)
1095         (gnus-article-read-summary-keys): Use derived-mode-p.
1096
1097 2013-08-28  Katsumi Yamaoka  <yamaoka@jpl.org>
1098
1099         * mm-decode.el (mm-temp-files-delete): Fix file deletion logic.
1100
1101 2013-08-19  Katsumi Yamaoka  <yamaoka@jpl.org>
1102
1103         * mm-util.el (mm-coding-system-priorities): Exclude iso-2022-jp-2 and
1104         shift_jis from the default value set for Japanese users.
1105
1106 2013-08-13  Glenn Morris  <rgm@gnu.org>
1107
1108         * gnus-icalendar.el (gnus-icalendar-org-capture-file): Fix type.
1109
1110         * gnus.el (gnus-valid-select-methods): Fix type.
1111
1112         * nnimap.el (nnimap-request-articles-find-limit): Fix type, version.
1113
1114 2013-08-12  Katsumi Yamaoka  <yamaoka@jpl.org>
1115
1116         * mm-decode.el (mm-display-external): Run a timer for the temp files
1117         deletion after a viewer exits; add a deletion timer for the needsterm
1118         case, too.
1119
1120         * mm-decode.el (mm-display-external): Try to delete temporary files by
1121         using a 1-min. timer.
1122
1123 2013-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
1124
1125         * mm-decode.el (mm-temp-files-to-be-deleted, mm-temp-files-cache-file):
1126         New internal variables.
1127         (mm-temp-files-delete): New function; add it to gnus-exit-gnus-hook.
1128         (mm-display-external): Use it to delete temporary files instead of
1129         using timers.
1130
1131 2013-08-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1132
1133         * dgnushack.el (dgnushack-compile): Allow building on Emacs 23.
1134
1135 2013-08-06  Jan Tatarik  <jan.tatarik@gmail.com>
1136
1137         * gnus-icalendar.el (gnus-icalendar-event-from-ical): Replace pcase
1138         with cond for backwards compatability.
1139
1140 2013-08-06  Katsumi Yamaoka  <yamaoka@jpl.org>
1141
1142         * mm-decode.el (mm-display-external): Bind process-connection-type to
1143         nil; don't delete a temp file immediately even if a viewer finishes,
1144         since it may be a shell script, like xdg-open, that launches a real
1145         viewer program belatedly.
1146
1147 2013-08-05  Dave Abrahams  <dave@boostpro.com>
1148
1149         * gnus-int.el (gnus-warp-to-article): Allow warping in all groups so
1150         that we can create nndoc groups that excerpt other groups.
1151
1152 2013-08-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1153
1154         * gnus-delay.el (gnus-delay-article): Fix typo.
1155
1156         * gnus-group.el (gnus-group-delete-articles): Allow deleting only "old"
1157         articles.
1158
1159         * gnus-delay.el (gnus-delay-article): Run `message-send-hook' so that
1160         we can get spell-checking etc.
1161
1162 2013-08-02  Katsumi Yamaoka  <yamaoka@jpl.org>
1163
1164         * rfc2047.el (rfc2047-encode-message-header): Unify charsets into
1165         a single one used for encoding the whole text in a header.
1166
1167 2013-08-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1168
1169         * dgnushack.el (dgnushack-compile): `icalendar--decode-isodatetime'
1170         doesn't work properly on XEmacs.
1171
1172 2013-08-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1173
1174         * message.el (message-ignored-news-headers): Delete X-Gnus-Delayed
1175         before sending.
1176
1177         * dgnushack.el (dgnushack-compile): Add a temporary check for
1178         gnus-icalendar.
1179
1180         * mm-decode.el (mm-command-output): New face.
1181         (mm-display-external): Use it.
1182
1183 2013-08-01  Kan-Ru Chen (陳侃如)  <kanru@kanru.info>  (tiny change)
1184
1185         * nnmbox.el (nnmbox-request-article): Don't change point.
1186
1187 2013-08-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1188
1189         * gnus-icalendar.el (gnus-icalendar-event:inline-reply-buttons):
1190         Include `handle' parameter.
1191
1192 2013-08-01  Jan Tatarik  <jan.tatarik@gmail.com>
1193
1194         * gnus-icalendar.el: New file.
1195
1196 2013-08-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1197
1198         * gnus-int.el (gnus-warp-to-article): Mention that warp means jump.
1199
1200         * gnus-uu.el (gnus-uu-mark-thread, gnus-uu-unmark-thread): Work with
1201         dummy roots, too.
1202
1203 2013-08-01  David Edmondson  <dme@dme.org>
1204
1205         * mml2015.el (mml2015-epg-key-image-to-string): Protect against bugging
1206         out on ttys.
1207
1208 2013-08-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1209
1210         * gnus-start.el (gnus-dribble-save): Only save the dribble file if it's
1211         not empty.
1212
1213         * nnrss.el (nnrss-discover-feed): Indent.
1214
1215 2013-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
1216
1217         * gnus-util.el (gnus-emacs-completing-read): Isolate XEmacs stuff.
1218
1219 2013-07-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1220
1221         * gnus-start.el (gnus-read-active-for-groups): Always mark the data as
1222         dirty to ensure nnimap data being saved.
1223
1224 2013-07-30  Tassilo Horn  <tsdh@gnu.org>
1225
1226         * gnus-sum.el (gnus-summary-make-menu-bar): Add "Current thread score"
1227         menu entry.
1228
1229         * gnus-score.el (gnus-summary-current-score): Use prefix arg to show
1230         the current thread's total score instead of the current article's
1231         score.
1232
1233         * gnus-sum.el (gnus-subthread-sort-functions): New defcustom.
1234         (gnus-sort-threads-recursively): Delete defcustom.
1235         (gnus-sort-threads-recursive): Adapt accordingly.
1236
1237 2013-07-30  Tassilo Horn  <tsdh@gnu.org>
1238
1239         * gnus-sum.el (gnus-sort-subthreads-recursive): New function.
1240         (gnus-sort-threads-recursive): Use it.
1241         (gnus-sort-threads): Unconditionally call `gnus-sort-threads-recursive'
1242         again.  Now that determines how to sort subthreads.
1243
1244 2013-07-26  Tassilo Horn  <tsdh@gnu.org>
1245
1246         * gnus-sum.el (gnus-sort-threads-recursively): New defcustom.
1247         (gnus-sort-threads): Use it.
1248
1249 2013-07-25  Andreas Schwab  <schwab@linux-m68k.org>
1250
1251         * gnus-art.el (gnus-button-url-regexp): Make it match url in which
1252         punctuation characters follow parentheses (bug#14950).
1253
1254 2013-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
1255
1256         * gnus.el (gnus-continuum-version):
1257         * gnus-msg.el (gnus-extended-version): Simplify.
1258
1259         * gnus.el (gnus-continuum-version-1): Remove.
1260         * gnus-msg.el (gnus-bug): Revert.
1261
1262         Calculate gnus-version correctly on Cygwin.
1263
1264         * gnus.el (gnus-continuum-version): Do main calculations in integers.
1265         (gnus-continuum-version-1): New function, return a string.
1266
1267         * gnus-msg.el (gnus-extended-version, gnus-bug):
1268         Use gnus-continuum-version-1 instead of gnus-continuum-version.
1269
1270 2013-07-19  Geoff Kuenning  <geoff@cs.hmc.edu>  (tiny change)
1271
1272         * gnus-art.el (gnus-treat-predicate): Allow functions as predicates
1273         (bug#13384).
1274
1275 2013-07-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1276
1277         * gnus-start.el (gnus-clean-old-newsrc): Remove the newsrc cleanups
1278         that were only relevant in a development version a long time ago.
1279
1280 2013-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
1281
1282         * gnus-art.el (gnus-shr-put-image): Make it work as well for shr.el's
1283         that the old Emacs 24s bundle.
1284
1285 2013-07-10  David Engster  <deng@randomsample.de>
1286
1287         * gnus-start.el (gnus-clean-old-newsrc): Always remove 'unexist' marks
1288         if `gnus-newsrc-file-version' does not match `gnus-version'.  This
1289         fixes a bug in Emacs trunk where the 'unexist' marks were always
1290         removed at startup because "Gnus v5.13" was considered smaller than "Ma
1291         Gnus v0.03".
1292
1293 2013-07-10  Tassilo Horn  <tsdh@gnu.org>
1294
1295         * gnus.el (gnus-summary-line-format): Reference
1296         `gnus-user-date-format-alist' for the &user-date; format, not
1297         `gnus-summary-user-date-format-alist'.
1298
1299 2013-07-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1300
1301         * nnml.el (nnml-request-compact-group): Don't bug out if we can't
1302         delete files (bug#13481).
1303
1304 2013-07-08  Tassilo Horn  <tsdh@gnu.org>
1305
1306         * gnus-registry.el (gnus-registry-remove-extra-data): New function.
1307
1308 2013-07-06  Lars Ingebrigtsen  <larsi@gnus.org>
1309
1310         * gnus-art.el (gnus-block-private-groups): Allow `global' methods to
1311         display images.
1312
1313         * gnus.el (gnus-valid-select-methods): Mark nnrss as global.
1314
1315         * message.el (message-cancel-news): According to
1316         <mailman.216.1372942181.12400.help-gnu-emacs@gnu.org>, "cancel" is
1317         preferred over "cmsg cancel" in the Subject.
1318
1319         * nnir.el (nnir-engines): Note that the group specs are regexps
1320         (bug#13238).
1321
1322         * gnus-msg.el (gnus-copy-article-buffer): If the article buffer has
1323         gotten read-only text properties, ensure that those aren't heeded when
1324         copying stuff over (bug#13434).
1325
1326         * mm-view.el (mm-inline-text-html): Don't bug out on multipart messages
1327         (bug#13762).
1328
1329 2013-07-05  David Kastrup  <dak@gnu.org>
1330
1331         * auth-source.el (auth-source-netrc-parse-one): Allow empty strings in
1332         authinfo file again (important for blank passwords).  This had been
1333         broken with 2013-06-15 change.
1334
1335 2013-07-03  Katsumi Yamaoka  <yamaoka@jpl.org>
1336
1337         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups):
1338         Revert 2013-01-14 change.
1339
1340 2013-07-02  Daiki Ueno  <ueno@gnu.org>
1341
1342         * mml2015.el (mml2015-epg-key-image): Use 'gnus-create-image' instead
1343         of 'create-image' for XEmacs compatibility; check errors when decoding
1344         image.  Reported by Uwe Brauer.
1345
1346 2013-06-28  Katsumi Yamaoka  <yamaoka@jpl.org>
1347
1348         * gnus-art.el (gnus-article-extend-url-button): Make it work again with
1349         gnus-button-push revised at 2011-01-19.
1350
1351 2013-06-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1352
1353         * eww.el, shr.el, shr-color.el: Removed from the Gnus repository.  They
1354         now live in the lisp/net Emacs 24 repository.
1355
1356 2013-06-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1357
1358         * eww.el (eww-update-header-line-format): Quote % characters.
1359
1360 2013-06-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1361
1362         * eww.el (eww-process-text-input): Display passwords as asterisks.
1363
1364         * shr.el (shr-make-table-1): Protect against invalid column-spans.
1365
1366 2013-06-19  Tom Tromey  <tromey@redhat.com>
1367
1368         * eww.el (eww-top-url): Remove.
1369         (eww-home-url, eww-start-url, eww-contents-url): New defvars.
1370         (eww-render): Set new variables.  Don't set eww-top-url.
1371         (eww-handle-link): Handle "prev", "home", and "contents".
1372         Downcase the rel text.
1373         (eww-top-url): Choose best top URL.
1374
1375 2013-06-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1376
1377         * eww.el: Rewrite to implement form elements "by hand" instead of
1378         relying in widget.el.  Using widget.el leads to too many
1379         user interface inconsistencies.
1380         (eww-self-insert): Implement entering commands in text fields.
1381         (eww-process-text-input): New function to make text input field editing
1382         work.
1383         (eww-submit): Rewrite to use the new-style form methods.
1384         (eww-select-display): Display the correct selected item.
1385         (eww-change-select): Implement changing the select value.
1386         (eww-toggle-checkbox): Implement radio/checkboxes.
1387         (eww-update-field): Fix compilation error.
1388         (eww-tag-textarea): Implement <textarea>.
1389
1390         * shr.el (shr-urlify): Use `keymap' instead of `local-map' so that we
1391         don't shadow mode-specific bindings.
1392
1393         * eww.el (eww-browse-url): Don't push stuff onto history if there's
1394         nothing to push.
1395
1396         * shr.el (shr-map): Bind [down-mouse-1] to browse URLs.
1397
1398 2013-06-19  Glenn Morris  <rgm@gnu.org>
1399
1400         * gnus-group.el (gnus-mark-article-as-read): Fix declaration.
1401
1402 2013-06-18  Teodor Zlatanov  <tzz@lifelogs.com>
1403
1404         * auth-source.el (auth-source-netrc-parse-entries): Remove debugging.
1405
1406 2013-06-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1407
1408         * shr.el (shr-make-table-1): Implement <td rowspan>.
1409         (shr-table-horizontal-line): Allow nil as a value, and change the
1410         default.
1411         (shr-insert-table-ruler): Respect the nil value.
1412
1413 2013-06-18  Tom Tromey  <tromey@barimba>
1414
1415         * eww.el (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
1416         New defvars.
1417         (eww-open-file): New defun.
1418         (eww-render): Initialize new variables.
1419         (eww-display-html): Handle "link" and "a".
1420         (eww-handle-link, eww-tag-link, eww-tag-a): New defuns.
1421         (eww-mode-map): Move "p" to "l".  Bind "p", "n", "t", and "u".
1422         (eww-back-url): Rename from eww-previous-url.
1423         (eww-next-url, eww-previous-url, eww-up-url, eww-top-url): New
1424         defuns.
1425
1426 2013-06-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1427
1428         * shr.el (shr-tag-table): Insert the images after the table, so that
1429         they're not covered by the table colourisation, which often looked
1430         awkward.
1431         (shr-tag-dl, shr-tag-dt, shr-tag-dd): Add support for <dl>, <dt> and
1432         <dd>.
1433         (shr-make-table-1): Implement <td colspan=> support.
1434         (shr-insert-document): Use one less than window width if `shr-width' is
1435         nil, since otherwise things may get one character too wide.
1436
1437 2013-06-18  Katsumi Yamaoka  <yamaoka@jpl.org>
1438
1439         * eww.el (eww-detect-charset): Improve regexp; move backward.
1440
1441 2013-06-18  Glenn Morris  <rgm@gnu.org>
1442
1443         * mm-decode.el (widget-convert-button): Autoload.
1444
1445         * sieve-manage.el (mm-enable-multibyte): Autoload.
1446
1447         * shr.el (libxml-parse-html-region): Declare.
1448         (shr-render-buffer): Explicit error if no libxml2 support.
1449
1450 2013-06-17  Teodor Zlatanov  <tzz@lifelogs.com>
1451
1452         * auth-source.el (auth-source-current-line): New function.
1453         (auth-source-netrc-parse-entries): When a data token is "machine",
1454         assume we're in the wrong place and abort parsing the current line.
1455
1456 2013-06-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1457
1458         * eww.el (eww-tag-select): Don't render totally empty <select> forms.
1459         (eww-convert-widgets): Don't bug out if the first widget starts at the
1460         beginning of the buffer.
1461         (eww-convert-widgets): Fix last patch.
1462         (eww-tag-input): Support <input type=image>.
1463
1464         * shr.el (shr-insert-table): Respect border-collapse: collapse.
1465         (shr-tag-base): Protect against base specs that are degenerate.
1466         (shr-ensure-paragraph): Don't delete empty lines that have text
1467         properties, because these may be input fields.
1468
1469         * eww.el (eww-convert-widgets): Put `help-echo' on input fields so that
1470         we can navigate to them.
1471
1472         * shr.el (shr-colorize-region): Put the colours over the entire region.
1473         (shr-inhibit-decoration): New variable.
1474         (shr-add-font): Use it to inhibit text property decorations while doing
1475         preliminary table renderings.  This speeds up typical Wikipedia page
1476         renderings by 15%.
1477         (shr-tag-span): Don't respect the <title>, because that overwrites the
1478         help-echo from links inside the spans.
1479         (shr-next-link): Use `help-echo' for navigation, so that we can
1480         navigate to form elements, too.
1481
1482         * eww.el (eww-button): New face.
1483         (eww-convert-widgets): Use it to make submit buttons more button-like.
1484
1485         * mm-decode.el (mm-convert-shr-links): Override the shr local map, so
1486         that Gnus commands work.
1487
1488         * shr.el (shr-render-td): Support horizontal alignment.
1489
1490         * eww.el (eww-put-color): Removed.
1491         (eww-colorize-region): Use `add-face-text-property'.
1492
1493         * shr.el (shr-add-font): Append face data, so that we get the correct
1494         precedence: The innermost value (which is applied first) wins.
1495         (shr-make-overlay): Obsolete function.
1496
1497         * mm-decode.el (mm-convert-shr-links): New function to convert
1498         new-style shr URL links into widgets.
1499         (mm-shr): Use it.
1500
1501         * eww.el (eww-mode-map): Use `shr-next-link' (etc) instead of the
1502         widget commands, since we're no longer using widgets for links.
1503
1504         * shr.el (shr-next-link): New command.
1505         (shr-previous-link): New command.
1506         (shr-urlify): Don't use `widget-convert', because that's slow.
1507         (shr-put-color-1): Use `add-face-text-property' instead of overlays,
1508         because collecting the overlays and reapplying them when generating
1509         tables is slow.
1510         (shr-insert-table): Ditto.
1511
1512 2013-06-17  Stefan Monnier  <monnier@iro.umontreal.ca>
1513
1514         * sieve.el (sieve-edit-script): Avoid beginning-of-buffer.
1515         * shr.el (browse-url): Require `url'.
1516         * eww.el (url): Require format-spec.
1517
1518 2013-06-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1519
1520         * eww.el (eww-display-html): Default to using the entire window width.
1521         (eww-browse-url): Don't add a User-Agent header (twice), because that
1522         makes Bing refuse connection.
1523
1524         * shr.el (shr-make-table): Cache the table rendering at the table
1525         level, and not the <td> level.  This is a bit faster.
1526
1527         * eww.el (eww-render): Go to the correct ID when given URLs ending with
1528         #id.
1529
1530         * shr.el (shr-tag-li): Don't require a new paragraph, since other
1531         browsers don't.
1532         (shr-expand-url): Respect #anchor links.
1533         (shr-parse-base): Chop off the anchor before using.
1534         (shr-descend): Respect display: none.
1535         (shr-descend): Allow marking elements that have certain IDs.
1536
1537         * eww.el (eww-tag-textarea): Use `text' instead of `editable-field'.
1538
1539         * shr.el (shr-expand-url): Don't bug out on zero-length links.
1540
1541         * eww.el (eww-tag-textarea): Support <textarea>.
1542
1543 2013-06-16  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
1544
1545         * shr.el (shr-dom-to-xml): Fixed function call.
1546
1547         * eww.el (eww): New group.
1548         (eww-header-line-format): New custom variable.
1549         (eww-current-title): New variable.
1550         (eww-display-html): Update header and handle title tag.
1551         (eww-update-header-line-format): New function.
1552         (eww-tag-title): New function.
1553
1554         * shr.el (shr-dom-to-xml): New function.
1555         (shr-tag-svg): Add support for the SVG tag.
1556         (shr-bullet): New custom variable.
1557         (shr-tag-li): Support custom bullet in unordered lists.
1558
1559 2013-06-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1560
1561         * shr.el (shr-expand-url): Respect // URLs.
1562
1563         * eww.el (eww-tag-body): Override the shr body rendering so that we can
1564         put a background colour onto the entire buffer.
1565         (eww-render): When being redirected, use the redirect URL as the new
1566         base URL.
1567
1568         * shr.el (shr-parse-base): Fix parsing error.
1569
1570         * eww.el (eww-submit): Pass the base in to `shr-expand-url'.
1571
1572         * shr.el (shr-parse-base): New function.
1573         (shr-expand-url): Use it to expand relative URLs reliably.
1574
1575 2013-06-15  Teodor Zlatanov  <tzz@lifelogs.com>
1576
1577         * auth-source.el (auth-source-search-collection): Fix docstring.
1578         (auth-source-netrc-parse): Refactor and improve netrc parser to support
1579         single-quoted strings and multiline entries.
1580         (auth-source-netrc-parse-next-interesting)
1581         (auth-source-netrc-parse-one, auth-source-netrc-parse-entries): New
1582         functions to support parser.
1583
1584 2013-06-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1585
1586         * eww.el (eww-submit): Get submit button logic right when hitting RET
1587         on non-submit buttons.
1588
1589         * shr.el: Remove shr-preliminary-table-render, since that can't really
1590         be used for anything in practice.
1591
1592 2013-06-13  Albert Krewinkel  <tarleb@moltkeplatz.de>
1593
1594         * sieve.el: Rebind q to (sieve-bury-buffer), bind Q to
1595         (sieve-manage-quit).
1596
1597 2013-06-14  Glenn Morris  <rgm@gnu.org>
1598
1599         * mml2015.el (mml2015-maximum-key-image-dimension): Add :version.
1600
1601 2013-06-14  David Edmondson  <dme@dme.org>  (tiny change)
1602
1603         * mml2015.el (mml2015-maximum-key-image-dimension): New user option to
1604         control the maximum size of photo ID image.
1605         (mml2015-epg-key-image-to-string): Respect it.
1606
1607 2013-06-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1608
1609         * shr.el (shr-tag-table-1): Mark the preliminary table renderings
1610         instead of the final one so that we can more easily distinguish them.
1611
1612         * eww.el (eww-submit): Compute the submission URL correctly.
1613
1614 2013-06-13  Stefan Monnier  <monnier@iro.umontreal.ca>
1615
1616         * sieve-manage.el (sieve-manage-open-server): Don't quote lambda.
1617         Use plist-get rather than CL's getf.
1618         (sieve-manage-parse-capability): Avoid CL's remove-if.
1619
1620 2013-06-13  Albert Krewinkel  <tarleb@moltkeplatz.de>
1621
1622         * sieve.el: Rebind q to (sieve-bury-buffer), bind Q to
1623         (sieve-manage-quit).
1624
1625 2013-06-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1626
1627         * shr.el (shr-expand-url): Expansion should chop off the bits after the
1628         last slash.
1629
1630         * eww.el (eww-tag-select): Use the first value as the default value.
1631
1632 2013-06-13  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
1633
1634         * eww.el (eww): Prepend urls with http:// if scheme is missing.
1635         (eww-mode): Use `define-derived-mode'.
1636         (eww-parse-headers): Parse headers from beginning of buffer so that
1637         file:// links work.
1638
1639 2013-06-13  Katsumi Yamaoka  <yamaoka@jpl.org>
1640
1641         * eww.el (eww-detect-charset): Detect charset from the <meta> tag.
1642
1643 2013-06-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1644
1645         * shr.el (shr-tag-svg): Ignore SVG elements, because we don't know how
1646         to handle them at all.
1647
1648 2013-06-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1649
1650         * eww.el (eww-convert-widgets): Make widgets from non-tabular layouts
1651         work, too.
1652         (eww-tag-select): Implement <select>.
1653
1654 2013-06-10  Albert Krewinkel  <krewinkel@moltkeplatz.de>
1655
1656         * sieve-manage.el (sieve-manage-open): work with STARTTLS: shorten
1657         stream managing functions by using open-protocol-stream to do most of
1658         the work.  Has the nice benefit of enabling STARTTLS.
1659         Wait for capabilities after STARTTLS: following RFC5804, the server
1660         sends new capabilities after successfully establishing a TLS connection
1661         with the client.  The client should update the cached list of
1662         capabilities, but we just ignore the answer for now.
1663         (sieve-manage-network-p, sieve-manage-network-open)
1664         (sieve-manage-starttls-p, sieve-manage-starttls-open)
1665         (sieve-manage-forward, sieve-manage-streams)
1666         (sieve-manage-stream-alist): Remove unneeded functions neither in the
1667         API, nor called by any other function.
1668         Enable Multibyte for SieveManage buffers: The parser won't properly
1669         handle umlauts and line endings unless multibyte is turned on in the
1670         process buffer.
1671
1672 2013-06-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1673
1674         * eww.el (eww-tag-input): Support password fields.
1675         (eww-submit): Support POST.
1676
1677 2013-06-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1678
1679         * eww.el (eww-tag-form): Protect against degenerate forms.
1680
1681         * shr.el (shr-expand-url): Expand URLs that start with a slash
1682         correctly.
1683
1684         * eww.el (eww-submit): Get submit button logic right.
1685
1686         * shr.el (shr-final-table-render): New variable to signal when we're
1687         doing the final table rendering so that we can collect more data at
1688         that point.
1689
1690         * eww.el (eww-submit): Make form submission work.
1691         (eww-tag-input): Implement submit buttons.
1692         (eww-click-radio): Implement radio and checkboxes.
1693         (eww-submit): Handle hidden elements.
1694
1695         * shr.el (shr-descend): Allow other packages to override (or provide)
1696         rendering of elements.
1697         (shr-expand-url): Strip query strings from URLs before expanding them.
1698
1699         * eww.el: Don't require cl-lib.
1700         (eww-tag-form): Start form support.
1701
1702         * dgnushack.el (dgnushack-compile): Ignore eww on XEmacs.
1703
1704         * eww.el: Start writing a new, tiny web browser.
1705         (eww-previous-url): New command.
1706         (eww-quit): New command.
1707
1708 2013-06-10  Albert Krewinkel  <krewinkel@moltkeplatz.de>
1709
1710         * sieve.el: Put point at beginning of buffer when viewing a script.
1711         (sieve-open-server): Respect the PORT parameter.  Show the correct port
1712         number in sieve-buffer's header.  Fixed code to also work with a string
1713         as port specifier.  Properly close the connection on pressing 'q'.  Make
1714         sieve-manage-quit close the connection and process buffer.  Also, remove
1715         duplicate keybinding for 'q'.
1716
1717 2013-06-10  Roy Hashimoto  <roy.hashimoto@gmail.com>  (tiny change)
1718
1719         * mm-view.el (mm-pkcs7-signed-magic): Allow newline in the regexp and
1720         make it easier to read.
1721         (mm-pkcs7-enveloped-magic): Ditto.
1722
1723 2013-06-06  Teodor Zlatanov  <tzz@lifelogs.com>
1724
1725         * gnus-ems.el (gnus-image-type-available-p): Test `display-images-p'
1726         before `image-type-available-p' to avoid loading the image libraries
1727         needlessly.
1728
1729 2013-06-05  David Engster  <deng@randomsample.de>
1730
1731         * gnus-sum.el (gnus-update-marks): Do not remove empty 'unexist'
1732         ranges, since `nnimap-retrieve-group-data-early' also uses it as a flag
1733         to see whether the group was synced before.
1734
1735 2013-06-05  Teodor Zlatanov  <tzz@lifelogs.com>
1736
1737         * tls.el (open-tls-stream): Remove unneeded buffer contents up to point
1738         when opening the connection.
1739         Suggested by João Távora <joaotavora@gmail.com> in
1740         <http://lists.gnu.org/archive/html/emacs-devel/2013-05/msg00464.html>.
1741
1742 2013-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
1743
1744         * gnus-art.el (article-date-ut, article-update-date-lapsed): Don't
1745         assume Date header begins with "Date", that may be customized into
1746         something like "X-Sent" using gnus-article-time-format.
1747         (article-transform-date): Allow multi-line Date header.
1748
1749 2013-06-02  David Engster  <deng@randomsample.de>
1750
1751         * registry.el (initialize-instance, registry-lookup)
1752         (registry-lookup-breaks-before-lexbind, registry-lookup-secondary)
1753         (registry-lookup-secondary-value, registry-search, registry-delete)
1754         (registry-insert, registry-reindex, registry-size, registry-prune): Do
1755         not wrap methods in `eval-and-compile'.  This breaks due to latest
1756         changes in EIEIO (introduction of eieio-core.el).
1757
1758 2013-05-30  Glenn Morris  <rgm@gnu.org>
1759
1760         * nnmail.el (nnmail-fancy-expiry-target):
1761         Also bind mail-dont-reply-to-names.
1762
1763         * spam-stat.el (spam-stat-save):
1764         No need to tweak font-lock in temp buffers.
1765
1766         * shr.el (shr-put-image): Silence compiler.
1767
1768 2013-05-29  Glenn Morris  <rgm@gnu.org>
1769
1770         * gnus-ems.el (set-process-plist): Every supported Emacs has this.
1771
1772         * gnus-group.el (gnus-sequence-of-unread-articles)
1773         (gnus-summary-add-mark, gnus-mark-article-as-read)
1774         (gnus-group-make-articles-read): Declare.
1775
1776         * gnus-sum.el (gnus-parameter-list-identifier)
1777         (gnus-article-stop-animations, gnus-stop-downloads)
1778         (gnus-article-only-boring-p, article-goto-body)
1779         (gnus-flush-original-article-buffer, article-narrow-to-head)
1780         (gnus-article-hidden-text-p, gnus-delete-wash-type)
1781         (gnus-summary-save-in-pipe, gnus-article-show-summary): Declare.
1782
1783         * gnus.el: No need to eval-and-compile autoloads.
1784
1785         * gravatar.el (help-function-arglist): Autoload.
1786
1787         * nnimap.el (gnus-refer-thread-use-nnir): Declare.
1788
1789         * nnmail.el (nnmail-fancy-expiry-target): Maybe use mail-dont-reply-to.
1790
1791         * spam.el: No need to load spam-report when compiling.
1792         No need to eval-and-compile autoloads.
1793         (spam-report-resend-to): Declare.
1794         (spam-report-resend-register-routine): Require 'spam-report.
1795
1796 2013-05-24  Julien Danjou  <julien@danjou.info>
1797
1798         * sieve.el (sieve-setup-buffer): Fix default port value in sieve buffer
1799         setup.
1800
1801 2013-05-23  Glenn Morris  <rgm@gnu.org>
1802
1803         * gnus-util.el (rmail-swap-buffers-maybe)
1804         (rmail-maybe-set-message-counters, rmail-count-new-messages)
1805         (rmail-summary-exists, rmail-show-message, rmail-summary-displayed)
1806         (rmail-pop-to-buffer, rmail-maybe-display-summary): Declare.
1807
1808         * mm-decode.el: No need to load term when compiling.
1809         (term-mode, term-char-mode): Declare.
1810
1811         * mm-util.el: No need to load jka-compr when compiling.
1812         (jka-compr-acceptable-retval-list, jka-compr-make-temp-name): Declare.
1813
1814         * nnmaildir.el: Require is automatically eval-and-compile.
1815         (nnmail): Require at run-time too.
1816
1817         * registry.el (registry-size): Move definition before use.
1818
1819 2013-05-22  Daiki Ueno  <ueno@gnu.org>
1820
1821         * mml2015.el (mml2015-epg-sign): Make sure to insert newline after the
1822         signed data to conform the standard.  (Bug#14232)
1823
1824 2013-05-20  Adam Sjøgren  <asjo@koldfront.dk>
1825
1826         * gnus-spec.el (gnus-parse-complex-format): Use unicode escape for left
1827         double angle quotation mark.
1828
1829 2013-05-20  Glenn Morris  <rgm@gnu.org>
1830
1831         * format-spec.el (format-spec): Allow spec chars with nil.  (Bug#14420)
1832
1833 2013-05-19  Adam Sjøgren  <asjo@koldfront.dk>
1834
1835         * message.el (message-insert-formatted-citation-line): handle finding
1836         first/lastname when more than 2 names appear.
1837
1838 2013-05-19  Adam Sjøgren  <asjo@koldfront.dk>
1839
1840         * shr.el (shr-tag-span): New function.
1841
1842 2013-05-18  Glenn Morris  <rgm@gnu.org>
1843
1844         * message.el (message-mode): Use message-mode-abbrev-table,
1845         with text-mode-abbrev-table as parent.  (Bug#14413)
1846
1847 2013-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
1848
1849         * message.el (message-expand-group): Decode group names.
1850
1851 2013-05-16  Julien Danjou  <julien@danjou.info>
1852
1853         * gnus-notifications.el (gnus-notifications-notify): Use photo-file as
1854         app-icon.
1855
1856 2013-05-15  Glenn Morris  <rgm@gnu.org>
1857
1858         * shr-color.el (shr-color-visible-luminance-min)
1859         (shr-color-visible-distance-min): Use shr-color group.
1860
1861 2013-05-11  Glenn Morris  <rgm@gnu.org>
1862
1863         * gnus-vm.el: Make it loadable without VM.
1864         (gnus-vm-make-folder, gnus-summary-save-in-vm): Require 'vm.
1865         (vm-forward-message, vm-reply, vm-mail): Remove unused autoloads.
1866
1867 2013-05-09  Glenn Morris  <rgm@gnu.org>
1868
1869         * mml1991.el: Make it loadable.  (Bug#13456)
1870
1871         * gnus-art.el (gnus-article-date-headers, gnus-blocked-images):
1872         * gnus-async.el (gnus-async-post-fetch-function):
1873         * gnus-gravatar.el (gnus-gravatar-size, gnus-gravatar-properties):
1874         * gnus-html.el (gnus-html-image-cache-ttl):
1875         * gnus-notifications.el (gnus-notifications-timeout):
1876         * gnus-picon.el (gnus-picon-properties):
1877         * gnus-util.el (gnus-completion-styles):
1878         * gnus.el (gnus-other-frame-resume-function):
1879         * message.el (message-user-organization-file)
1880         (message-cite-reply-position):
1881         * nnir.el (nnir-summary-line-format)
1882         (nnir-retrieve-headers-override-function):
1883         * shr-color.el (shr-color-visible-luminance-min):
1884         * shr.el (shr-blocked-images):
1885         * spam-report.el (spam-report-resend-to):
1886         * spam.el (spam-summary-exit-behavior): Fix custom types.
1887
1888         * gnus-salt.el (gnus-selected-tree-face): Fix default.
1889
1890 2013-05-07  Katsumi Yamaoka  <yamaoka@jpl.org>
1891
1892         * gnus-art.el (gnus-article-describe-bindings): Require help-mode
1893         because of let-binding help-xref-following.  (Bug#14356)
1894
1895 2013-05-06  Glenn Morris  <rgm@gnu.org>
1896
1897         * mml2015.el (mml2015-epg-sign): Add name="signature.asc".  (Bug#13465)
1898
1899 2013-05-04  Andrew Cohen  <cohen@bu.edu>
1900
1901         * gnus-sum.el (gnus-read-header): Ensure groups are prefixed when
1902         entering into the registry.
1903
1904 2013-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
1905
1906         * gnus.el: Ma Gnus v0.7 is released.
1907
1908 2013-05-01  Katsumi Yamaoka  <yamaoka@jpl.org>
1909
1910         * gnus-util.el (gnus-emacs-completing-read): Fix a filter for XEmacs.
1911         (Bug#14304)
1912
1913 2013-04-27  Glenn Morris  <rgm@gnu.org>
1914
1915         * gnus.el (gnus-list-debbugs):
1916         Use require rather than autoload.  (Bug#14262)
1917
1918 2013-04-27  Julien Danjou  <julien@danjou.info>
1919
1920         * sieve-manage.el (sieve-manage-authenticator-alist): Update the sieve
1921         port to "sieve" now that it has an official IANA port assigned.
1922
1923 2013-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
1924
1925         * mail-source.el (mail-source-fetch-pop, mail-source-check-pop):
1926         Don't set the MAILHOST environment variable permanently (Bug#14271).
1927
1928 2013-04-26  Glenn Morris  <rgm@gnu.org>
1929
1930         * message.el (message-bury): Revert 2013-03-18 change.  (Bug#14117)
1931
1932 2013-04-25  Andrew Cohen  <cohen@bu.edu>
1933
1934         * gnus-msg.el (gnus-inews-insert-gcc): Re-order conditional to work for
1935         string values of 'gcc-self.  Thanks to Saroj Thirumalai.
1936
1937 2013-04-24  Andrew Cohen  <cohen@bu.edu>
1938
1939         * nnir.el (nnir-close-group): Make sure we are in the right group.
1940
1941         * gnus-sum.el (gnus-summary-insert-articles): Force updates to the
1942         dependency table from all newly retrieved headers.
1943
1944 2013-04-16  David Edmondson  <dme@dme.org>
1945
1946         Support <img src="data:...">.
1947
1948         * shr.el (shr-image-from-data): New function.
1949         (shr-tag-img): Use it.
1950
1951 2013-04-14  Andrew Cohen  <cohen@bu.edu>
1952
1953         * nnir.el (nnir-request-set-mark): Make sure we are in the right
1954         group.
1955
1956 2013-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
1957
1958         * gnus-msg.el (gnus-msg-mail): Make it avoid using posting styles
1959         corresponding to any existing group (Bug#14166).
1960
1961 2013-04-10  Andrew Cohen  <cohen@bu.edu>
1962
1963         * nnir.el (number-sequence): No longer used.
1964         (nnir-request-set-mark): New function.
1965         (nnir-request-update-info): Improve marks updating.
1966         (nnir-request-scan): Don't duplicate marks updating.
1967         (gnus-group-make-nnir-group, nnir-run-imap, nnir-request-create-group):
1968         Use 'assq rather than 'assoc.  Quote anonymous function.
1969         (nnir-request-group, nnir-close-group, gnus-summary-create-nnir-group):
1970         Use 'gnus-group-prefixed-p.
1971         (gnus-summary-create-nnir-group): Make sure server for method is open.
1972
1973 2013-04-04  Andrew Cohen  <cohen@bu.edu>
1974
1975         * nnir.el (gnus-nnir-group-p): New function.
1976         (nnir-possibly-change-group): Use it.
1977
1978         * gnus-msg.el (gnus-setup-message): Use it.
1979
1980 2013-04-04  Katsumi Yamaoka  <yamaoka@jpl.org>
1981
1982         * mml.el (mml-minibuffer-read-description): Use `default' insted of
1983         `initial-input' for the argument name.
1984         Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
1985
1986 2013-04-03  Kevin Layer  <layer@known.net>  (tiny change)
1987
1988         * mml.el (mml-minibuffer-read-description): Allow passing in a prefix
1989         (used by MH-E).
1990
1991 2013-04-01  Andrew Cohen  <cohen@bu.edu>
1992
1993         * nnir.el (nnir-request-update-mark): Improve mark updating in original
1994         group.
1995
1996         * gnus-msg.el (nnir-article-number, nnir-article-group): Autoload to
1997         fix compilation.
1998
1999 2013-03-31  Andrew Cohen  <cohen@bu.edu>
2000
2001         * nnir.el (nnir-method-default-engines): And another typo.
2002
2003 2013-03-30  Andrew Cohen  <cohen@bu.edu>
2004
2005         * nnir.el (nnir-method-default-engines): Fix typo.
2006
2007 2013-03-29  Andrew Cohen  <cohen@bu.edu>
2008
2009         * nnir.el: Define 'number-sequence for xemacs.
2010         (gnus-summary-create-nnir-group): New function to create an nnir group
2011         from an nnir summary buffer based on the current query.
2012         (nnir-request-create-group): Update to allow nnir group creation based
2013         on the current query.
2014
2015 2013-03-28  Katsumi Yamaoka  <yamaoka@jpl.org>
2016
2017         * nndraft.el (nndraft-request-expire-articles):
2018         Make expiry target always `delete'.
2019
2020 2013-03-27  Andrew Cohen  <cohen@bu.edu>
2021
2022         * gnus-msg.el (gnus-setup-message): When replying from an nnir summary
2023         buffer use the posting-style and gcc of the original article group.
2024         (gnus-inews-insert-gcc): Don't set gcc-self for virtual groups.
2025
2026         * nnir.el: Fix byte-compile warning.  nnoo-define-skeleton should come
2027         after other deffoos.
2028
2029 2013-03-25  Andrew Cohen  <cohen@bu.edu>
2030
2031         * nnir.el: Major rewrite.  Cleaner separation between searches and group
2032         management.  Marks are now shown in nnir summary buffers.  Rudimentary
2033         support for real (i.e. not ephemeral) nnir groups.
2034         (gnus-summary-make-nnir-group): New function for initiating searches
2035         from a summary buffer.
2036
2037 2013-03-18  Sam Steingold  <sds@gnu.org>
2038
2039         * message.el (message-bury): Minor cleanup.
2040
2041 2013-03-07  Paul Eggert  <eggert@cs.ucla.edu>
2042
2043         * gnus-cite.el: Specify utf-8, not iso-8859-1, for ASCII file.
2044
2045 2013-03-06  Katsumi Yamaoka  <yamaoka@jpl.org>
2046
2047         * nndir.el (nndir-request-list): Remove 2nd argument passed to
2048         nnml-request-list.  (Bug#13873)
2049         (nndir-request-newsgroups): Remove, unused.
2050
2051         * nndraft.el (nndraft-request-newsgroups): Remove, unused.
2052
2053 2013-03-05  Paul Eggert  <eggert@cs.ucla.edu>
2054
2055         * deuglify.el, gnus-delay.el, gnus-spec.el, gnus-sum.el, html2text.el,
2056         message.el, mm-decode.el, mml1991.el, nnir.el, shr.el, utf7.el:
2057         Prefer UTF-8 when the encoding shouldn't matter and changes are small.
2058
2059 2013-03-03  Ted Phelps  <phelps@gnusto.com>
2060
2061         * shr.el: Make all the overlays set the `evaporate' property so that
2062         they're removed properly.
2063
2064 2013-02-25  Adam Sjøgren  <asjo@koldfront.dk>  (tiny change)
2065
2066         * mml2015.el (mml2015-epg-key-image): Wrap epg-gpg-program in
2067         shell-quote-argument.
2068
2069 2013-02-22  David Engster  <deng@randomsample.de>
2070
2071         * gnus-registry.el (gnus-registry-save): Provide class name when
2072         calling `eieio-persistent-read' to avoid "unsafe call" warning.  Use
2073         `condition-case' to stay compatible with older EIEIO versions which
2074         only accept one argument.
2075
2076 2013-02-17  Daiki Ueno  <ueno@gnu.org>
2077
2078         * mml2015.el (epg-key-user-id-list, epg-user-id-string)
2079         (epg-user-id-validity): Autoload.
2080         (mml2015-epg-check-user-id): New function.
2081         (mml2015-epg-check-sub-key): New function split from
2082         mml2015-epg-find-usable-key.
2083         (mml2015-epg-find-usable-key): Accept context, name, usage, and
2084         optional name-is-key-id, to handle the case when user-id is unusable.
2085         Reported by Łukasz Stelmach <stlman@poczta.fm>.
2086
2087 2013-02-17  Glenn Morris  <rgm@gnu.org>
2088
2089         * shr.el (shr-put-image): Use image-multi-frame-p if available.
2090
2091 2013-02-16  Glenn Morris  <rgm@gnu.org>
2092
2093         * shr.el (shr-put-image): Only animate images that specify a delay.
2094         This is consistent with the old image-animated-p behavior.
2095
2096 2013-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
2097
2098         * gnus-util.el (gnus-define-keys): Convert [?\S-\ ] to [(shift space)]
2099         for XEmacs.
2100
2101 2013-02-13  Juri Linkov  <juri@jurta.org>
2102
2103         * gnus-art.el (gnus-article-mode-map):
2104         * gnus-sum.el (gnus-summary-mode-map, gnus-summary-article-map):
2105         Make S-SPC scroll in the opposite sense to SPC.  (Bug#2145)
2106
2107 2013-02-07  Gábor Vida  <gabor.v.vida@ericsson.com>  (tiny change)
2108
2109         * auth-source.el (auth-source-format-prompt): Don't get confused by
2110         any "\" in replacement text.  (Bug#13637)
2111
2112 2013-01-30  Christopher Schmidt  <christopher@ch.ristopher.com>
2113
2114         * gnus-int.el (gnus-backend-trace-elapsed): New variable.
2115         (gnus-backend-trace): Honour gnus-backend-trace.
2116
2117         * mml.el (mml-insert-part): Insert closing tag.
2118
2119         * mm-decode.el (mm-save-part): Handle invalid read-file-name results.
2120
2121 2013-01-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2122
2123         * gnus-sum.el (gnus-summary-read-group-1): Protect against not being
2124         able to find the article, which can happen in debbugs groups,
2125         apparently.
2126
2127 2013-01-16  Glenn Morris  <rgm@gnu.org>
2128
2129         * smiley.el (smiley-style): Make the file loadable in batch mode.
2130
2131 2013-01-15  Stefan Monnier  <monnier@iro.umontreal.ca>
2132
2133         * nnimap.el (nnimap-keepalive): Don't throw an error if there's no more
2134         imap process running.
2135
2136 2013-01-14  Julien Danjou  <julien@danjou.info>
2137
2138         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups):
2139         Compare addresses against addresses, not against the full From field.
2140
2141 2013-01-13  Richard Stallman  <rms@gnu.org>
2142
2143         * message.el (message-forward-make-body-mime): New args BEG, END
2144         specify what part of FORWARD-BUFFER to use.  Do the work directly
2145         instead of calling `mml-insert-buffer'.
2146
2147 2013-01-11  Aaron S. Hawley  <Aaron.Hawley@vtinfo.com>
2148
2149         * gnus-start.el (gnus-check-new-newsgroups): Fix ambiguous doc string
2150         cross-reference(s).
2151
2152         * gnus-sum.el (gnus-summary-newsgroup-prefix): Fix ambiguous doc string
2153         cross-reference(s).
2154
2155 2013-01-11  Dmitry Antipov  <dmantipov@yandex.ru>
2156
2157         * gnus-art.el (gnus-mime-display-security): Use point-min-marker
2158         and point-max-marker.
2159         * gnus-async.el (gnus-async-article-callback): Use point-max-marker.
2160
2161 2013-01-11  Julien Danjou  <julien@danjou.info>
2162
2163         * color.el (color-rgb-to-hsv): Fix conversion computing in case min and
2164         max are almost equal.  Also return the correct value for V which is
2165         already between 0 and 1.
2166
2167 2013-01-10  Uwe Brauer  <oub@mat.ucm.es>  (tiny change)
2168
2169         * mml-smime.el (mml-smime-encrypt-to-self): New user option analogous
2170         to mml2015-encrypt-to-self.
2171         (mml-smime-epg-encrypt): Respect mml-smime-encrypt-to-self.
2172
2173 2013-01-09  Daiki Ueno  <ueno@gnu.org>
2174
2175         * mml-smime.el (epg-sub-key-fingerprint): Autoload for
2176         mml-smime-epg-find-usable-secret-key.
2177
2178 2013-01-08  Glenn Morris  <rgm@gnu.org>
2179
2180         * mml-smime.el (mml-smime-sign-with-sender): Add :version.
2181
2182 2013-01-07  Daiki Ueno  <ueno@gnu.org>
2183
2184         * mml-smime.el: Support signing by sender.
2185         Requested by Uwe Brauer.
2186         (mml-smime-sign-with-sender): New user option analogous
2187         to mml2015-sign-with-sender.
2188         (mml-smime-epg-sign): Respect mml-smime-sign-with-sender.
2189         (mml-smime-epg-find-usable-secret-key): New helper function copied from
2190         mml2015.el.
2191
2192 2012-12-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2193
2194         * gnus-msg.el (gnus-inews-insert-gcc): Don't insert Gcc headers if Gnus
2195         isn't running, because Gnus will probably not know how to handle the
2196         Gcc header (bug#11941).
2197
2198         * nnimap.el (nnimap-update-info): Treat \Deleted articles as \Read
2199         articles.
2200
2201 2012-12-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2202
2203         * nnfolder.el (nnfolder-recursive-directory-files): New function.
2204         (nnfolder-generate-active-file): Make this function work with recursive
2205         folder names.
2206
2207 2012-12-27  Lars Ingebrigtsen  <larsi@gnus.org>
2208
2209         * nntp.el (nntp-open-connection): Use HELP as the capability command
2210         instead of CAPABILITY because Typhoon v2.2.2.503 chokes completely on
2211         unknown commands.  And CAPABILITY is an unknown command (bug#12763).
2212
2213 2012-12-27  Wolfgang Jenkner  <wjenkner@inode.at>
2214
2215         * gnus-spec.el (gnus-face-face-function): Don't use nil as no-op face
2216         place holder since this gives `Invalid face reference: nil' messages.
2217         Use the `default' face instead.  It has the same effect here, even
2218         though it is not no-op.
2219
2220         * gnus-util.el
2221         (gnus-put-text-property-excluding-characters-with-faces): Similarly.
2222
2223 2012-12-27  Lars Ingebrigtsen  <larsi@gnus.org>
2224
2225         * gnus-msg.el (gnus-summary-resend-message): Don't bug out on
2226         non-string posting styles (bug#13285).
2227
2228 2012-12-27  Glenn Morris  <rgm@gnu.org>
2229
2230         * plstore.el (plstore-passphrase-callback-function):
2231         Use plstore-get-file.
2232
2233 2012-12-27  Andreas Schwab  <schwab@linux-m68k.org>
2234
2235         * mml2015.el (mml2015-epg-key-image): Separate attribute stream from
2236         stderr.
2237
2238 2012-12-26  Katsumi Yamaoka  <yamaoka@jpl.org>
2239
2240         * mml2015.el (mml2015-epg-key-image): Use mm-set-buffer-multibyte.
2241
2242         * gnus-compat.el (set-buffer-multibyte): Remove.
2243
2244 2012-12-25  Adam Sjøgren  <asjo@koldfront.dk>
2245
2246         * mml2015.el (mml2015-epg-key-image): Use --attribute-fd rather than
2247         temporary file to get PGP key image.  Pass no-show-photos when
2248         extracting image to avoid having it pop up twice.
2249
2250 2012-12-26  Lars Ingebrigtsen  <larsi@gnus.org>
2251
2252         * gnus-art.el (gnus-article-treat-types): Include text/html as parts
2253         eligible for treatment.
2254
2255         * gnus-util.el (gnus-goto-colon): Move to the beginning of the visual
2256         lines.  This makes summary commands with hidden threads work more
2257         reliably.
2258
2259         * gnus-cite.el (gnus-article-hide-citation-maybe): Leave an expansion
2260         button to mark the hidden citations (bug#9395).
2261
2262 2012-12-26  Daiki Ueno  <ueno@gnu.org>
2263
2264         * mml2015.el (mml2015-epg-signature-to-string): New function.
2265         (mml2015-epg-verify-result-to-string): New function.
2266         (mml2015-epg-decrypt, mml2015-epg-clear-decrypt, mml2015-epg-verify)
2267         (mml2015-epg-clear-verify): Use mml2015-epg-verify-result-to-string
2268         instead of epg-verify-result-to-string.
2269         (epg-signature-key-id, epg-signature-to-string): Autoload.
2270         (epg-verify-result-to-string): Remove autoload.
2271
2272 2012-12-25  Adam Sjøgren  <asjo@koldfront.dk>
2273
2274         * mml2015.el (mml2015-epg-key-image): New function, to retrieve photo
2275         ID image from GPG public key.
2276         (mml2015-epg-key-image-to-string): New function.
2277
2278 2012-12-25  Leo Liu  <sdl.web@gmail.com>
2279
2280         * plstore.el (plstore-passphrase-callback-function): Fix error when
2281         error when plstore-cache-passphrase-for-symmetric-encryption is set
2282         (bug#13264).
2283
2284 2012-12-25  Lars Ingebrigtsen  <larsi@gnus.org>
2285
2286         * gnus-sum.el (gnus-set-global-variables): Don't copy over the summary
2287         buffer to the article buffer here, because that clobbers multiple
2288         article buffers.
2289
2290         * gnus-art.el (gnus-article-setup-buffer): Make sure that the article
2291         buffer always points to the right summary buffer.
2292
2293 2012-12-25  John Wiegley  <jwiegley@gmail.com>
2294
2295         * auth-source.el (auth-source-netrc-parse): Allow using "password" as
2296         the password (bug#12097).
2297
2298 2012-12-25  Lars Ingebrigtsen  <larsi@gnus.org>
2299
2300         * shr.el (shr-tag-a): Don't tagify <A> elements that don't have HREFs
2301         (bug#13263).
2302
2303         * gnus-salt.el (gnus-highlight-selected-tree): Check whether the Tree
2304         buffer exists before using it (bug#12475).
2305
2306         * gnus-agent.el (gnus-agent-fetch-articles): Don't fetch articles from
2307         offline groups (bug#11937).
2308
2309         * message.el (message-yank-original): When using customize to set the
2310         value of `message-cite-style', the variable it set to a symbol that's
2311         the name of the variable, which must then be dereferenced (bug#12616).
2312
2313 2012-09-13  Wolfgang Jenkner  <wjenkner@inode.at>
2314
2315         * lisp/gnus-spec.el (gnus-face-face-function): Initialize the value of
2316         the `face' property with a list whose car is the face specified in the
2317         format string and whose cdr is (nil).
2318         * lisp/gnus-util.el
2319         (gnus-put-text-property-excluding-characters-with-faces):
2320         Change accordingly.
2321         (gnus-get-text-property-excluding-characters-with-faces): New function.
2322         * lisp/gnus-sum.el (gnus-summary-highlight-line):
2323         * lisp/gnus-salt.el (gnus-tree-highlight-node):
2324         * lisp/gnus-group.el (gnus-group-highlight-line): Use it.
2325
2326 2012-12-25  Lars Ingebrigtsen  <larsi@gnus.org>
2327
2328         * nnimap.el (nnimap-authenticator): Expand to allow specifying the
2329         login methods.
2330         (nnimap-login): Respect the `nnimap-authenticator' variable.
2331
2332         * gnus-sum.el (gnus-summary-push-marks-to-backend): Push the complete
2333         mark state when moving articles.  Otherwise unticked articles will get
2334         their ticks back after moving.
2335
2336 2012-12-24  Lars Ingebrigtsen  <larsi@gnus.org>
2337
2338         * gnus-srvr.el (gnus-browse-delete-group): Fix syntax error.
2339
2340         * message.el (message-ignored-news-headers): Always remove
2341         X-Message-SMTP-Method to avoid information leakage if the user
2342         mistakenly inserts the header into news messages.
2343
2344         * gnus-srvr.el (gnus-browse-delete-group): New command and keystroke.
2345
2346         * gnus-sum.el (gnus-summary-hide-thread): If point were further to the
2347         right than four characters, this command would move point to
2348         `point-max'.  Don't do that.
2349
2350         * gnus-group.el (gnus-group-read-ephemeral-group): Set the active data
2351         to nil to allow re-selecting groups that gain articles.
2352         (gnus-bug-group-download-format-alist): Update the URL.
2353
2354 2012-12-23  Andreas Schwab  <schwab@suse.de>
2355
2356         * shr.el (shr-tag-em): Render em as italic, not bold.
2357
2358 2012-12-23  Lars Ingebrigtsen  <larsi@gnus.org>
2359
2360         * gnus-int.el (gnus-backend-trace): Factor out into its own function
2361         for reuse.
2362         (gnus-open-server): Use it to add more tracing.
2363         (gnus-finish-retrieve-group-infos): Add backend tracing.
2364         (gnus-backend-trace): Also note the elapsed seconds.
2365
2366 2012-12-22  Philipp Haselwarter  <philipp@haselwarter.org>
2367
2368         * gnus-sync.el (gnus-sync-file-encrypt-to, gnus-sync-save):
2369         Set epa-file-encrypt-to from variable to avoid querying.
2370
2371 2012-12-14  Akinori MUSHA  <knu@iDaemons.org>  (tiny change)
2372
2373         * sieve-mode.el (sieve-font-lock-keywords):
2374         Keywords should be word delimited.  (Bug#13173)
2375
2376 2012-12-13  Andreas Schwab  <schwab@suse.de>
2377
2378         * tls.el (tls-program): Update customize type.
2379
2380 2012-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
2381
2382         * gnus-art.el (gnus-article-browse-html-parts): Use <div align="left">
2383         instead of <pre> to align message header.
2384
2385 2012-12-12  Sam Steingold  <sds@gnu.org>
2386
2387         * gnus.el (gnus-other-frame-resume-function): Add user option.
2388         (gnus-other-frame): Call `gnus-other-frame-resume-function' on resume.
2389
2390 2012-12-06  Sam Steingold  <sds@gnu.org>
2391
2392         * gnus-start.el (gnus-before-resume-hook): Add.
2393         (gnus-1): Run it when Gnus is alive.
2394
2395 2012-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
2396
2397         * gmm-utils.el (gmm-called-interactively-p): Restore as a macro.
2398         * gnus-art.el (article-unsplit-urls)
2399         * gnus-bookmark.el (gnus-bookmark-bmenu-list)
2400         * gnus-registry.el (gnus-registry-get-article-marks)
2401         * message.el (message-goto-body): Use it.
2402         (message-called-interactively-p): Remove.
2403
2404         * spam-stat.el (spam-stat-called-interactively-p): New macro.
2405         (spam-stat-score-buffer): Use it.
2406
2407         * spam.el: Silence the warnings against BBDB functions when compiling.
2408
2409         * gnus-score.el (gnus-score-decode-text-parts):
2410         Use append+mapcar instead of the cl function mapcan.
2411
2412 2012-12-05  Sam Steingold  <sds@gnu.org>
2413
2414         * gnus.el (gnus-delete-gnus-frame): Extract from `gnus-other-frame'.
2415         (gnus-other-frame): Add `gnus-delete-gnus-frame' to
2416         `gnus-suspend-gnus-hook' in addition to `gnus-exit-gnus-hook'.
2417
2418 2012-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
2419
2420         * gmm-utils.el (gmm-called-interactively-p): Revert.
2421         This seems to cause Emacs to get stuck!
2422         * gnus-art.el (article-unsplit-urls)
2423         * gnus-bookmark.el (gnus-bookmark-bmenu-list)
2424         * gnus-registry.el (gnus-registry-get-article-marks)
2425         * message.el (message-goto-body)
2426         (message-called-interactively-p): Revert.
2427
2428         * gmm-utils.el (gmm-called-interactively-p): New function.
2429         * gnus-art.el (article-unsplit-urls)
2430         * gnus-bookmark.el (gnus-bookmark-bmenu-list)
2431         * gnus-registry.el (gnus-registry-get-article-marks)
2432         * message.el (message-goto-body): Use it.
2433         (message-called-interactively-p): Remove.
2434
2435         * gmm-utils.el (gmm-flet): Restore it using cl-letf.
2436         * gnus-sync.el (gnus-sync-lesync-call)
2437         * message.el (message-read-from-minibuffer): Use it.
2438
2439 2012-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
2440
2441         * gmm-utils.el (gmm-flet): Remove.
2442         * gnus-sync.el (gnus-sync-lesync-call)
2443         * message.el (message-read-from-minibuffer): Don't use it.
2444
2445 2012-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
2446
2447         * gmm-utils.el (gmm-labels): Use cl-labels if available.
2448
2449 2012-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
2450
2451         * gmm-utils.el (gmm-flet, gmm-labels): New macros.
2452
2453         * gnus-sync.el (gnus-sync-lesync-call)
2454         * message.el (message-read-from-minibuffer): Use gmm-flet.
2455
2456         * gnus-score.el (gnus-score-decode-text-parts): Use gmm-labels.
2457
2458         * gnus-util.el (gnus-macroexpand-all): Remove.
2459
2460 2012-12-03  Andreas Schwab  <schwab@linux-m68k.org>
2461
2462         * gnus-sum.el (gnus-summary-mode-map): Bind gnus-summary-widget-forward
2463         to TAB, not [tab].
2464         (gnus-summary-article-map): Likewise.
2465
2466         * gnus-sync.el (gnus-sync-newsrc-offsets): Restore definition.
2467         (gnus-sync-save): Use correct format for gnus-sync-newsrc-loader.
2468
2469 2012-11-21  Paul Eggert  <eggert@cs.ucla.edu>
2470
2471         * time-date.el: Commentary fix.
2472
2473 2012-11-19  Stefan Monnier  <monnier@iro.umontreal.ca>
2474
2475         * color.el: Don't require cl.
2476         (color-complement): `caddr' -> `nth 2'.
2477
2478         * time-date.el (time-to-seconds): De-obsolete.
2479
2480 2012-11-19  Katsumi Yamaoka  <yamaoka@jpl.org>
2481
2482         * message.el (message-get-reply-headers):
2483         Make sure the reply goes to the author if it is a wide reply.
2484
2485 2012-11-16  Jan Tatarik  <jan.tatarik@gmail.com>
2486
2487         * gnus-score.el (gnus-score-body):
2488         * gnus-logic.el (gnus-advanced-body): Don't score by headers when
2489         scoring by body.
2490
2491 2012-11-16  Glenn Morris  <rgm@gnu.org>
2492
2493         * gnus-diary.el (nndiary-request-create-group-functions)
2494         (nndiary-request-update-info-functions)
2495         (gnus-subscribe-newsgroup-functions)
2496         (nndiary-request-accept-article-functions):
2497         Use new names for hooks rather than obsolete aliases.
2498
2499 2012-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
2500
2501         * dgnushack.el (define-obsolete-variable-alias): Simplify.
2502
2503 2012-11-08  Katsumi Yamaoka  <yamaoka@jpl.org>
2504
2505         * gnus-art.el (gnus-article-browse-html-parts): Always replace charset
2506         in meta tag with the one the part specifies in its header.
2507
2508 2012-10-25  Stephen Eglen  <S.J.Eglen@damtp.cam.ac.uk>
2509
2510         * gnus-dired.el (gnus-dired-attach): Attach to last used message buffer
2511         by default.
2512
2513 2012-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
2514
2515         * dgnushack.el (define-compiler-macro): Add autoload for XEmacs 21.4
2516         and SXEmacs.  Suggested by Nelson Ferreira <nelson.ferreira@ieee.org>.
2517
2518 2012-10-24  Katsumi Yamaoka  <yamaoka@jpl.org>
2519
2520         * dgnushack.el (define-obsolete-variable-alias): Add a compiler-marco
2521         and a runtime function for it, of which the XEmacs version takes only
2522         two arguments.
2523
2524 2012-10-23  Stefan Monnier  <monnier@iro.umontreal.ca>
2525
2526         * nndiary.el (nndiary-request-create-group-functions)
2527         (nndiary-request-update-info-functions)
2528         (nndiary-request-accept-article-functions):
2529         * gnus-start.el (gnus-subscribe-newsgroup-functions): Don't use
2530         "-hooks" suffix.
2531
2532 2012-10-19  Julien Danjou  <julien@danjou.info>
2533
2534         * gnus-art.el: Require gnus-util because it uses
2535         `gnus-timer--function'.
2536
2537 2012-10-17  Kazuhiro Ito  <kzhr@d1.dion.ne.jp>  (tiny change)
2538
2539         * starttls.el (starttls-extra-arguments): Doc fix.
2540
2541 2012-10-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2542
2543         * shr.el (shr-insert): \r is also not inserted, so don't try to delete
2544         it.
2545
2546 2012-10-06  Glenn Morris  <rgm@gnu.org>
2547
2548         * gnus-notifications.el (gnus-notifications):
2549         Add missing group :version tag.
2550         * gnus-msg.el (gnus-gcc-pre-body-encode-hook)
2551         (gnus-gcc-post-body-encode-hook):
2552         * gnus-sync.el (gnus-sync-lesync-name)
2553         (gnus-sync-lesync-install-topics): Add missing custom :version tags.
2554
2555 2012-10-06  Julian Scheid  <julians37@gmail.com>  (tiny change)
2556
2557         * color.el (color-hsl-to-rgb): Fix incorrect results for
2558         small and large hue values.  (Bug#12559)
2559
2560 2012-10-05  Katsumi Yamaoka  <yamaoka@jpl.org>
2561
2562         New UIDL implementation.
2563
2564         * mail-source.el (mail-sources, mail-source-keyword-map):
2565         Add :leave as a pop3 keyword.
2566         (mail-source-fetch-pop): Bind pop3-leave-mail-on-server.
2567
2568         * pop3.el (pop3-leave-mail-on-server): Allow number.
2569         (pop3-uidl-file, pop3-uidl-file-backup): New user options.
2570         (pop3-movemail): Add UIDL support.
2571         (pop3-send-streaming-command): Take a list of mail numbers instead of
2572         the number of mails.
2573         (pop3-write-to-file): Add X-UIDL header.
2574         (pop3-uidl-stat, pop3-uidl-dele, pop3-uidl-load, pop3-uidl-save)
2575         (pop3-uidl-add-xheader): New functions.
2576
2577         * message.el (message-ignored-resent-headers):
2578         Add X-Content-Length and X-UIDL headers.
2579
2580 2012-10-05  Glenn Morris  <rgm@gnu.org>
2581
2582         * color.el (color-name-to-rgb, color-rgb-to-hex)
2583         (color-hue-to-rgb, color-hsl-to-rgb, color-rgb-to-hsv)
2584         (color-rgb-to-hsl, color-srgb-to-xyz, color-saturate-hsl)
2585         (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
2586         (color-lighten-name, color-darken-hsl, color-darken-name): Doc fixes.
2587
2588 2012-09-25  Katsumi Yamaoka  <yamaoka@jpl.org>
2589
2590         * gnus-art.el (gnus-article-browse-delete-temp-files): Never ask again
2591         a user about whether to delete temp files if once a user answered as n.
2592
2593 2012-09-25  Chong Yidong  <cyd@gnu.org>
2594
2595         * password-cache.el (password-read-and-add): Use a declare form to mark
2596         this function obsolete.
2597
2598 2012-09-19  Katsumi Yamaoka  <yamaoka@jpl.org>
2599
2600         * lpath.el: Bind mail-encode-mml for old Emacsen.
2601
2602 2012-09-17  Richard Stallman  <rms@gnu.org>
2603
2604         * message.el (message-in-body-p): Don't set mark or modify buffer.
2605
2606         * mml.el (mml-attach-file): Doc fix.
2607         (mml-attach-external, mml-attach-buffer, mml-attach-file):
2608         Set mail-encode-mml when in Mail mode.
2609         Simplify code to set HEAD and move back to HEAD.
2610         (mml-insert-multipart, mml-insert-part):
2611         Set mail-encode-mml when in Mail mode.
2612
2613 2012-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
2614
2615         * gnus-util.el (gnus-timer--function): New function.
2616
2617         * gnus-art.el (gnus-article-stop-animations): Use it.
2618
2619 2012-09-13  Paul Eggert  <eggert@cs.ucla.edu>
2620
2621         Fix glitches caused by addition of psec to timers.
2622         * gnus-art.el (gnus-article-stop-animations): Use timer--function
2623         rather than raw access to timer vector.
2624
2625 2012-09-11  Julien Danjou  <julien@danjou.info>
2626
2627         * gnus-notifications.el (gnus-notifications): Check for nil values in
2628         ignored addresses check.
2629
2630 2012-09-10  Stefan Monnier  <monnier@iro.umontreal.ca>
2631
2632         * qp.el (quoted-printable-decode-region): Inline+CSE+strength-reduction.
2633
2634 2012-09-07  Chong Yidong  <cyd@gnu.org>
2635
2636         * gnus-util.el
2637         (gnus-put-text-property-excluding-characters-with-faces): Restore.
2638
2639         * gnus-salt.el (gnus-tree-highlight-node):
2640         * gnus-sum.el (gnus-summary-highlight-line):
2641         * gnus-group.el (gnus-group-highlight-line): Revert use of add-face.
2642
2643 2012-09-06  Lars Ingebrigtsen  <larsi@gnus.org>
2644
2645         * gnus-util.el: Fix compilation error on XEmacs 21.4.
2646
2647 2012-09-06  Juri Linkov  <juri@jurta.org>
2648
2649         * gnus-group.el (gnus-read-ephemeral-gmane-group): Change the naming
2650         scheme for buffer names to be more consistent with other group and
2651         article buffer names in Gnus.
2652
2653 2012-09-06  Lars Ingebrigtsen  <larsi@gnus.org>
2654
2655         * gnus-util.el
2656         (gnus-put-text-property-excluding-characters-with-faces): Removed.
2657
2658         * gnus-compat.el: Define compat function `add-face' from Wolfgang
2659         Jenkner.
2660
2661         * gnus-group.el (gnus-group-highlight-line): Use combining faces.
2662
2663         * gnus-sum.el (gnus-summary-highlight-line): Ditto.
2664
2665         * gnus-salt.el (gnus-tree-highlight-node): Ditto.
2666
2667 2012-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
2668
2669         * gnus-score.el (gnus-score-decode-text-parts): Use #' for
2670         mm-text-parts used in labels macro to make it work with XEmacs 21.5.
2671
2672         * gnus-util.el (gnus-string-prefix-p): New function, an alias to
2673         string-prefix-p in Emacs >=23.2.
2674
2675         * nnmaildir.el (nnmaildir--ensure-suffix, nnmaildir--add-flag)
2676         (nnmaildir--remove-flag, nnmaildir--scan): Use gnus-string-match-p
2677         instead of string-match-p.
2678         (nnmaildir--scan): Use gnus-string-prefix-p instead of string-prefix-p.
2679
2680 2012-09-06  Kenichi Handa  <handa@gnu.org>
2681
2682         * qp.el (quoted-printable-decode-region): Fix previous change; handle
2683         lowercase a..f.
2684
2685 2012-09-05  Magnus Henoch  <magnus.henoch@gmail.com>
2686
2687         * nnmaildir.el (nnmaildir--article-set-flags): Fix compilation error.
2688
2689 2012-09-05  Martin Stjernholm  <mast@lysator.liu.se>
2690
2691         * nnimap.el (nnimap-request-move-article): Decode the group name when
2692         doing internal moves to avoid charset issues.
2693
2694         * gnus-demon.el (gnus-demon-init): Fixed regression when IDLE is t and
2695         TIME is set.
2696
2697 2012-09-05  Juri Linkov  <juri@jurta.org>
2698
2699         * gnus-group.el (gnus-read-ephemeral-bug-group): Allow opening more
2700         than one group at a time (bug#11961).
2701
2702 2012-09-05  Julien Danjou  <julien@danjou.info>
2703
2704         * gnus-srvr.el (gnus-server-open-server): Don't message on failure:
2705         this hide the real reason with a message giving absolutely no hint.
2706
2707 2012-09-05  Lars Ingebrigtsen  <larsi@gnus.org>
2708
2709         * gnus-group.el (gnus-group-mark-article-read): Propagate the read mark
2710         to the backend (bug#11804).
2711
2712         * message.el (message-insert-newsgroups): Don't insert newsgroup
2713         duplicates (bug#12275).
2714
2715 2012-09-05  John Wiegley  <johnw@newartisans.com>
2716
2717         * gnus.el (gnus-expand-group-parameters): Allow regexp substitutions in
2718         sieve rules.
2719
2720 2012-09-05  Jan Tatarik  <jan.tatarik@gmail.com>
2721
2722         * gnus-score.el (gnus-score-decode-text-parts): Use #' for the local
2723         function.
2724
2725         * gnus-logic.el (gnus-advanced-body): Allow scoring on decoded bodies.
2726
2727         * gnus-score.el (gnus-score-decode-text-parts): Ditto.
2728
2729 2012-09-05  Magnus Henoch  <magnus.henoch@gmail.com>
2730
2731         * nnmaildir.el: Make nnmaildir understand and write maildir flags.
2732         That is, rename files from "unique:2," to "unique:2,S" for "seen", etc.
2733         This should make nnmaildir more usable with offlineimap.
2734
2735 2012-09-05  Julien Danjou  <julien@danjou.info>
2736
2737         * nnimap.el (nnimap-request-list): Revert change that made listing
2738         synchronous.
2739         (nnimap-get-responses): Restore.
2740
2741 2012-09-03  Lars Ingebrigtsen  <larsi@gnus.org>
2742
2743         * dgnushack.el: XEmacs 21.5 compilation fix.
2744
2745         * gnus-notifications.el (gnus-notifications-notify): Use it.
2746
2747         * gnus-fun.el (gnus-funcall-no-warning): New function to silence
2748         warnings on XEmacs.
2749
2750 2012-09-01  Paul Eggert  <eggert@cs.ucla.edu>
2751
2752         Better seeds for (random).
2753         * gnus-sync.el (gnus-sync-lesync-setup):
2754         * message.el (message-canlock-generate, message-unique-id):
2755         Change (random t) to (random), now that the latter is more random.
2756
2757 2012-08-31  Dave Abrahams  <dave@boostpro.com>
2758
2759         * nnimap.el (nnimap-change-group): Document result value
2760
2761         * auth-source.el (auth-sources): Fix macos keychain access.
2762
2763         * gnus-int.el (gnus-request-head): When gnus-override-method is set,
2764         allow the backend `request-head' function to determine the group
2765         name on its own.
2766         (gnus-request-expire-articles): Filter out negative article numbers
2767         during expiry (Bug#11980).
2768
2769         * gnus-range.el (gnus-set-difference): Change gnus-set-difference from
2770         O(N^2) to O(N).  This makes warping into huge groups tolerable.
2771
2772         * gnus-registry.el (gnus-try-warping-via-registry): Don't act as though
2773         you've found the article when you haven't.
2774
2775         * nnimap.el (nnimap-find-article-by-message-id): Account for the fact
2776         that nnimap-change-group can return t.
2777
2778 2012-08-31  Stefan Monnier  <monnier@iro.umontreal.ca>
2779
2780         * gnus-notifications.el (gnus-notifications-action): Avoid CL-ism.
2781
2782 2012-08-30  Julien Danjou  <julien@danjou.info>
2783
2784         * gnus-notifications.el (gnus-notifications-notify): Use timeout from
2785         `gnus-notifications-timeout'.
2786         (gnus-notifications-timeout): Add.
2787         (gnus-notifications-action): New function.
2788         (gnus-notifications-notify): Add :action using
2789         `gnus-notifications-action'.
2790         (gnus-notifications-id-to-msg): New variable.
2791         (gnus-notifications): Use `gnus-notifications-id-to-msg' to map
2792         notifications id to messages.
2793
2794 2012-08-30  Kenichi Handa  <handa@gnu.org>
2795
2796         * qp.el (quoted-printable-decode-region): Decode multiple bytes at
2797         once.
2798
2799 2012-08-29  Julien Danjou  <julien@danjou.info>
2800
2801         * gnus-notifications.el: New file.
2802         (gnus-notifications-notify): New function.
2803         (gnus-notifications): Use `gnus-notifications-notify'.
2804
2805 2012-08-28  Katsumi Yamaoka  <yamaoka@jpl.org>
2806
2807         * gnus-sum.el (gnus-summary-enter-digest-group): Decode content
2808         transfer encoding first; bind gnus-newsgroup-charset to the charset
2809         that the article specifies (Bug#12209).
2810
2811 2012-08-22  Katsumi Yamaoka  <yamaoka@jpl.org>
2812
2813         * gnus-cus.el (gnus-group-customize): Decode values posting-style holds.
2814         (gnus-group-customize-done): Encode values posting-style holds.
2815
2816         * gnus-msg.el (gnus-summary-resend-message)
2817         (gnus-configure-posting-styles): Decode values posting-style group
2818         parameter holds.
2819
2820 2012-08-21  Katsumi Yamaoka  <yamaoka@jpl.org>
2821
2822         * gnus-msg.el (gnus-summary-resend-message): Honor posting-style for
2823         `name' and `address' in Resent-From header.
2824
2825 2012-08-14  Chong Yidong  <cyd@gnu.org>
2826
2827         * gnus-art.el (article-display-face): Handle failure in
2828         gnus-create-image (Bug#11802).
2829
2830 2012-08-10  Stefan Monnier  <monnier@iro.umontreal.ca>
2831
2832         * gnus-agent.el (gnus-agent-cat-defaccessor, gnus-agent-cat-groups):
2833         Use defsetf.
2834
2835 2012-08-10  Daiki Ueno  <ueno@unixuser.org>
2836
2837         * auth-source.el (auth-source-plstore-search)
2838         (auth-source-secrets-search): Ignore :require and :type in search spec.
2839
2840 2012-08-06  Julien Danjou  <julien@danjou.info>
2841
2842         * nnimap.el (nnimap-request-head): Resture to-buffer parameter, used by
2843         `nnimap-request-move-article'.
2844
2845         * gnus-demon.el (gnus-demon-add-handler, gnus-demon-remove-handler):
2846         Remove autoload, already handled by gnus.el.
2847
2848         * nnimap.el (nnimap-request-head): Remove to-buffer argument.
2849
2850         * gnus-int.el (gnus-request-head): Remove to-buffer argument, only
2851         supported by nnimap actually.  Reverts previous change.
2852
2853         * gnus-int.el (gnus-request-head): Add an optional to-buffer parameter
2854         to mimic `gnus-request-article' and enjoy backends the nn*-request-head
2855         to-buffer argument that is already supported.
2856
2857 2012-08-05  Julien Danjou  <julien@danjou.info>
2858
2859         * gnus-demon.el (gnus-demon-add-handler, gnus-demon-remove-handler):
2860         Add autoload.
2861
2862 2012-07-31  Katsumi Yamaoka  <yamaoka@jpl.org>
2863
2864         * gnus.el (gnus-valid-select-methods): Fix custom type.
2865
2866 2012-07-29  Teodor Zlatanov  <tzz@lifelogs.com>
2867
2868         * auth-source.el (auth-sources, auth-source-backend-parse)
2869         (auth-source-macos-keychain-search)
2870         (auth-source-macos-keychain-search-items)
2871         (auth-source-macos-keychain-result-append)
2872         (auth-source-macos-keychain-create): Support Mac OS X Keychains in
2873         auth-source.el through the /usr/bin/security utility.
2874         (auth-sources): Fix syntax error.
2875         (auth-source-macos-keychain-result-append): Fix variable name.
2876         (auth-sources, auth-source-macos-keychain-result-append): More fixes.
2877
2878 2012-07-27  Julien Danjou  <julien@danjou.info>
2879
2880         * message.el (fboundp): Add a defalias on `mail-dont-reply-to' for
2881         Emacs < 24.1
2882
2883 2012-07-27  Katsumi Yamaoka  <yamaoka@jpl.org>
2884
2885         * message.el (message-kill-address): Don't kill last newline.
2886         (message-skip-to-next-address): Don't move to the next header.
2887         (message-fill-field-address): Work properly.
2888
2889 2012-07-25  Julien Danjou  <julien@danjou.info>
2890
2891         * gnus-art.el (gnus-kill-sticky-article-buffers): Reintroduce.
2892
2893 2012-07-24  Julien Danjou  <julien@danjou.info>
2894
2895         * mail-source.el (mail-source-movemail-and-remove): Remove, unused.
2896
2897         * nntp.el (nntp-send-nosy-authinfo, nntp-send-authinfo-from-file)
2898         (nntp-async-timer-handler): Remove, unused.
2899
2900         * nnimap.el (nnimap-get-responses): Remove, unused.
2901
2902         * nnheader.el (mail-header-set-extra): Remove, unused.
2903
2904         * netrc.el (netrc-find-service-number, netrc-store-data): Remove,
2905         unused.
2906
2907         * mm-view.el (mm-view-sound-file): Remove, unused.
2908
2909         * mm-url.el (mm-url-fetch-simple, mm-url-fetch-form)
2910         (mm-url-encode-multipart-form-data): Remove, unused.
2911
2912         * message.el (message-remove-signature, message-make-host-name)
2913         (message-fill-address): Remove, unused.
2914
2915         * gnus.el (gnus-writable-groups, gnus-group-guess-prefixed-name)
2916         (gnus-group-guess-full-name, gnus-group-guess-prefixed-name): Remove,
2917         unused.
2918
2919         * gnus-xmas.el (gnus-xmas-highlight-selected-summary)
2920         (gnus-xmas-call-region): Remove, unused.
2921
2922         * gnus-uu.el (gnus-uu-find-name-in-shar): Remove, unused.
2923
2924         * gnus-util.el (gnus-extract-address-component-name)
2925         (gnus-extract-address-component-email, gnus-sortable-date)
2926         (gnus-alist-to-hashtable, gnus-hashtable-to-alist)
2927         (gnus-process-live-p): Remove, unused.
2928
2929         * gnus-topic.el (gnus-group-parent-topic): Remove, unused.
2930
2931         * gnus-sum.el (gnus-score-set-default, gnus-article-parent-p)
2932         (gnus-article-read-p, gnus-uncompress-marks): Remove, unused.
2933         (gnus-summary-set-current-mark): Remove obsolete, empty and unused
2934         function.
2935
2936         * gnus-start.el (gnus-kill-newsgroup): Remove unused obsolete function.
2937
2938         * gnus-score.el (gnus-summary-score-crossposting)
2939         (gnus-score-regexp-bad-p): Remove, unused.
2940
2941         * gnus-salt.el (gnus-tree-goto-article): Remove, unused.
2942
2943         * gnus-range.el (gnus-sublist-p): Remove, unused.
2944
2945         * gnus-msg.el (gnus-mail-parse-comma-list, gnus-put-message): Remove,
2946         unused.
2947
2948         * gnus-kill.el (gnus-Newsgroup-kill-file): Remove, unused.
2949
2950         * gnus-int.el (gnus-list-active-group, gnus-request-group-articles)
2951         (gnus-request-associate-buffer): Remove, unused.
2952
2953         * gnus-group.el (gnus-group-set-method-info)
2954         (gnus-group-set-params-info): Remove, unused.
2955
2956         * gnus-fun.el (gnus-shell-command-to-string)
2957         (gnus-shell-command-on-region): Remove, unused.
2958
2959         * gnus-cite.el (gnus-cited-line-p): Remove, unused.
2960
2961         * gnus-art.el (gnus-article-text-type-exists-p)
2962         (article-translate-characters, gnus-article-hide-text-of-type)
2963         (gnus-kill-sticky-article-buffers, gnus-article-maybe-highlight):
2964         Remove, unused.
2965
2966 2012-07-22  Andrew Cohen  <cohen@bu.edu>
2967
2968         * nnir.el ("nnir"): Add 'virtual ability to nnir backend.
2969
2970 2012-07-21  Julien Danjou  <julien@danjou.info>
2971
2972         * message.el (message-dont-reply-to-names): Replace deprecated
2973         `rmail-dont-reply-to-names' with `mail-dont-reply-to-names'.
2974         (message-get-reply-headers): Ditto.
2975
2976 2012-07-18  Julien Danjou  <julien@danjou.info>
2977
2978         * sieve-mode.el (sieve-mode-map): Bind C-c C-c to
2979         `sieve-upload-and-kill'.
2980
2981         * sieve.el (sieve-bury-buffer): Remove function.
2982         (sieve-manage-mode-map): Map "q" to `kill-buffer'.
2983         (sieve-upload-and-kill): New function, mapped to C-c C-c.
2984
2985 2012-07-17  Andreas Schwab  <schwab@linux-m68k.org>
2986
2987         * shr.el (shr-expand-url): Handle URL starting with `//'.
2988
2989 2012-07-13  Chong Yidong  <cyd@gnu.org>
2990
2991         * smime.el (smime-certificate-info): Set buffer-read-only directly,
2992         instead of calling toggle-read-only with a (bogus) argument.
2993
2994 2012-07-09  Tassilo Horn  <tassilo@member.fsf.org>
2995
2996         * gnus-sum.el (gnus-summary-limit-to-author): Use default value instead
2997         of initial input when reading the author to restrict the summary to.
2998
2999 2012-07-09  Katsumi Yamaoka  <yamaoka@jpl.org>
3000
3001         * mm-decode.el (mm-shr):
3002         Allow overriding charset by mm-charset-override-alist.
3003
3004 2012-07-03  Katsumi Yamaoka  <yamaoka@jpl.org>
3005
3006         * gnus-art.el (gnus-article-view-part):
3007         Toggle subparts of multipart/alternative part.
3008
3009 2012-06-27  Stefan Monnier  <monnier@iro.umontreal.ca>
3010
3011         * shr.el (shr-render-buffer): New command.
3012         (shr-visit-file): Use it.
3013
3014 2012-06-27  Katsumi Yamaoka  <yamaoka@jpl.org>
3015
3016         * tests/gnustest-nntp.el, tests/gnustest-registry.el:
3017         Set no-byte-compile and no-update-autoloads.
3018
3019 2012-06-26  Katsumi Yamaoka  <yamaoka@jpl.org>
3020
3021         * mm-decode.el: Add coding cookie for a soft hyphen that mm-shr uses.
3022
3023 2012-06-25  Julien Danjou  <julien@danjou.info>
3024
3025         * nnimap.el (nnimap-request-articles-find-limit): Rename from
3026         `nnimap-request-move-articles-find-limit' since we do not use it only
3027         for move operations.
3028         (nnimap-request-accept-article): Use
3029         `nnimap-request-articles-find-limit' to limit search by message-id.
3030
3031 2012-06-22  Paul Eggert  <eggert@cs.ucla.edu>
3032
3033         Support higher-resolution time stamps (Bug#9000).
3034
3035         * time-date.el (with-decoded-time-value): New arg PICO-SYMBOL in
3036         VARLIST.  It's optional, for backward compatibility.
3037         (encode-time-value): New optional arg PICO.  New type 3.
3038         (time-to-seconds) [!float-time]: Support the new picoseconds
3039         component if it's used.
3040         (seconds-to-time, time-subtract, time-add):
3041         Support ps-resolution time stamps as well.
3042
3043 2012-06-19  Julien Danjou  <julien@danjou.info>
3044
3045         * nnir.el (nnir-run-imap): Fix, use `nnimap-change-group'.
3046
3047         * nnimap.el (nnimap-log-buffer): Check that
3048         `window-point-insertion-type' is boundp, since it's not available in
3049         XEmacs.
3050
3051 2012-06-19  Michael Welsh Duggan  <md5i@md5i.com>  (tiny change)
3052
3053         * nnimap.el (nnimap-log-buffer): Add this, setting
3054         `window-point-insertion-type' in the buffer to t.
3055         (nnimap-log-command): Use nnimap-log-buffer.
3056
3057 2012-06-19  Julien Danjou  <julien@danjou.info>
3058
3059         * nnimap.el (nnimap-find-article-by-message-id): Add an optional limit
3060         argument to be able to limit the search.
3061         (nnimap-request-move-article): Use `nnimap-request-move-articles-find-limit'.
3062         (nnimap-request-move-articles-find-limit): Add this to limit the search
3063         by Message-Id after a message move.
3064         (nnimap): Add defgroup.
3065
3066 2012-06-18  Nelson Ferreira  <nelson.ferreira@ieee.org>  (tiny change)
3067
3068         * gnus-win.el (gnus-configure-frame): Pass an arg to window-dedicated-p.
3069
3070 2012-06-15  Julien Danjou  <julien@danjou.info>
3071
3072         * nnimap.el (nnimap-find-article-by-message-id): Use
3073         `nnimap-possibly-change-group' rather than its own EXAMINE call.
3074         (nnimap-possibly-change-group): Add read-only argument.
3075         (nnimap-request-list): Use nnimap-possibly-change-group rather than
3076         issuing EXAMINE manually.
3077         (nnimap-find-article-by-message-id): Use `nnimap-possibly-change-group'
3078         with read-only argument.
3079         (nnimap-change-group): Rename from `nnimap-possibly-change-group'.  We
3080         cannot possibly change because we need to be sure that it's either
3081         read-write or read-only.
3082
3083 2012-06-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3084
3085         * gnus-art.el (gnus-article-read-summary-keys): Protect against the key
3086         being bound to a lambda form.
3087
3088 2012-04-14  Wolfgang Jenkner  <wjenkner@inode.at>
3089
3090         * gnus-agent.el (gnus-agent-retrieve-headers): Recalculate the range of
3091         articles when fetch-old is non-nil (bug#11370).
3092
3093 2012-05-04  Wolfgang Jenkner  <wjenkner@inode.at>
3094
3095         * gnus-picon.el (gnus-picon-properties): New defcustom.
3096         (gnus-picon-create-glyph): Use it.
3097
3098 2012-06-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3099
3100         * gnus-group.el (gnus-group-get-new-news): Respect
3101         `gnus-group-use-permanent-levels', as documented (bug#11638).
3102
3103 2012-06-10  Dave Abrahams  <dave@boostpro.com>
3104
3105         * gnus-int.el (gnus-warp-to-article): Limit registry warping to real
3106         groups (bug#11641).
3107
3108 2012-06-10  Toke Høiland-Jørgensen  <toke@toke.dk>  (tiny change)
3109
3110         * nnmaildir.el (nnmaildir-request-expire-articles): Ensure that `time'
3111         is an integer to avoid later problems.
3112
3113 2012-06-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3114
3115         * shr.el: Add a iso-8859-1 cookie to make stuff work under other
3116         locales.
3117
3118         * mm-decode.el (mm-display-part): Dissect archives when hitting `RET'
3119         on a handle.
3120
3121         * gnus-sum.el (gnus-summary-limit-to-author): Use the current From
3122         address as the default.
3123         (gnus-summary-insert-old-articles): Don't include unexisting messages.
3124
3125         * nnfolder.el (nnfolder-save-buffer): Delete old versions silently.  It
3126         makes no sense to query the user about internal files.
3127
3128         * gnus-spec.el: Remove all the byte-compilation stuff, since
3129         benchmarking shows that it doesn't help when entering large summary
3130         buffers.
3131
3132         * gnus-xmas.el (gnus-xmas-define): Remove.
3133
3134         * gnus-util.el (gnus-byte-code): Remove.
3135
3136         * gnus-spec.el (gnus-update-format-specifications): Remove outdated
3137         grouplens stuff.
3138
3139 2012-06-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3140
3141         * gnus-msg.el (gnus-msg-mail): Warn the user about Gnus not running
3142         (bug#11514).
3143
3144 2012-06-07  Stephen Eglen  <S.J.Eglen@damtp.cam.ac.uk>
3145
3146         * message.el (message-buffers): Return all buffers derived from Message
3147         to make `gnus-dired-attach' work with mu4e.
3148
3149 2012-06-01  Stefan Monnier  <monnier@iro.umontreal.ca>
3150
3151         * nntp.el: Stop the `letf' madness.
3152         (nntp--report-1): New var.
3153         (nntp-report): Merge nntp-report-1 into it.
3154         (nntp-with-open-group-function): Set nntp--report-1 instead of modifying
3155         the nntp-report function.
3156
3157         * auth-source.el: Fix comment-style to follow the convention.
3158
3159 2012-05-28  Daiki Ueno  <ueno@unixuser.org>
3160
3161         * mm-decode.el (mm-inhibit-auto-detect-attachment): New variable.
3162         (mm-dissect-singlepart): Don't guess the MIME type of
3163         application/octet-stream parts if mm-inhibit-auto-detect-attachment is
3164         set.
3165         (mm-dissect-multipart): Bind mm-inhibit-auto-detect-attachment if the
3166         toplevel MIME type is multipart/encrypted.
3167
3168 2012-05-27  Katsumi Yamaoka  <yamaoka@jpl.org>
3169
3170         * gnus-msg.el (gnus-msg-mail): Ensure that gnus-newsgroup-name is
3171         a string so that Gcc works (bug#11514).
3172
3173 2012-05-26  Stefan Monnier  <monnier@iro.umontreal.ca>
3174
3175         * legacy-gnus-agent.el (gnus-agent-unhook-expire-days):
3176         * gnus-demon.el (gnus-demon-init): Don't bother with type-of.
3177
3178 2012-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
3179
3180         * gnus-win.el (gnus-configure-frame): Don't signal an error when
3181         jumping to *Server* from a dedicated *Group* window.
3182         (gnus-configure-frame): CSE.
3183
3184         * gnus-registry.el: Minor style cleanup.
3185         (gnus-registry--set/remove-mark): New function, extracted from
3186         gnus-registry-install-shortcuts.
3187         (gnus-registry-install-shortcuts): Use it.
3188
3189 2012-05-25  Katsumi Yamaoka  <yamaoka@jpl.org>
3190
3191         * nnspool.el (news-path): Use eval-and-compile.
3192
3193 2012-05-24  Glenn Morris  <rgm@gnu.org>
3194
3195         * nnspool.el (news-directory, news-path, news-inews-program):
3196         Move here from paths.el.  Don't see a need for these to be autoloaded.
3197
3198         * gnus.el (gnus-default-nntp-server): Make it a defcustom.
3199         Merge in doc from paths.el version.  Don't see any need for this to be
3200         autoloaded, or for the warning about users not setting it.
3201
3202 2011-12-02  Wolfgang Jenkner  <wjenkner@inode.at>
3203
3204         * gnus-agent.el (gnus-agent-save-active): Deal with the "groups"
3205         format.  In particular, add an optional argument and a docstring.
3206
3207         * gnus-start.el (gnus-groups-to-gnus-format): Use it.
3208
3209         * nntp.el (nntp-finish-retrieve-group-infos): Make `nntp-server-buffer'
3210         current before calling `gnus-groups-to-gnus-format'.
3211         Note that this was already the case for `gnus-active-to-gnus-format'.
3212
3213 2012-05-04  Paul Eggert  <eggert@cs.ucla.edu>
3214
3215         Fix minor Y10k bug.
3216         * nnweb.el (nnweb-google-parse-1): Don't assume years have 4 digits.
3217
3218 2012-05-01  Stefan Monnier  <monnier@iro.umontreal.ca>
3219
3220         * nnimap.el (nnimap-open-connection-1): Don't leave an "opening..."
3221         message once it's actually open.
3222
3223 2012-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
3224
3225         * gnus.el: Ma Gnus v0.5 is released.
3226
3227 2012-04-28  Stefan Monnier  <monnier@iro.umontreal.ca>
3228
3229         * auth-source.el (auth-source--aput-1, auth-source--aput)
3230         (auth-source--aget): New functions and macros.
3231         Use them instead of aput/aget.
3232
3233 2012-04-27  Andreas Schwab  <schwab@linux-m68k.org>
3234
3235         * gnus.el (debbugs-gnu): Don't override existing autoload definition.
3236
3237 2012-04-26  Daiki Ueno  <ueno@unixuser.org>
3238
3239         * plstore.el (plstore-called-interactively-p): New compat macro copied
3240         from message.el.
3241         (plstore-mode): Use it.
3242
3243 2012-04-26  Daiki Ueno  <ueno@unixuser.org>
3244
3245         * plstore.el: Revive the editing feature.
3246         (plstore-mode): New mode to edit plstore file.
3247         (plstore-mode-toggle-display, plstore-mode-original)
3248         (plstore-mode-decoded): New command.
3249         (plstore--encode, plstore--decode, plstore--write-contents-functions)
3250         (plstore--insert-buffer, plstore--make): New function.
3251         (plstore-open, plstore-save): Simplify by using them.
3252
3253 2012-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
3254
3255         * pop3.el (pop3-wait-for-messages): Fix retrieved data size calculation.
3256
3257 2012-04-19  Juanma Barranquero  <lekktu@gmail.com>
3258
3259         * tls.el (open-tls-stream): Remove unused binding.
3260
3261 2012-04-16  Glenn Morris  <rgm@gnu.org>
3262
3263         * nndraft.el (nndraft-request-list): Fix declaration.
3264
3265 2012-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3266
3267         * mm-decode.el (mm-dissect-buffer): Doc fix.
3268
3269         * gnus-msg.el (gnus-inews-insert-gcc): Don't do the alist stuff when we
3270         don't have a current group.
3271
3272         * gnus-sum.el (gnus-handle-ephemeral-exit): Avoid creating the group
3273         buffer if it doesn't exist.
3274
3275         * gnus-group.el (gnus-group-read-ephemeral-group): If no quit-config is
3276         given, mark the group as ephemeral with the current window conf.
3277
3278         * gnus-sum.el (gnus-set-global-variables): Don't assume that the group
3279         buffer exists, which it doesn't if we haven't started Gnus.
3280         (gnus-summary-exit): Allow quitting when we don't have a group buffer.
3281
3282 2012-04-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3283
3284         * mml.el (mml-generate-mime): Allow specifying what the top-level part
3285         type is.
3286
3287         * gnus-start.el (gnus-clean-old-newsrc): Remove totally bogus
3288         `unexists' entries.
3289         (gnus-clean-old-newsrc): Fix last checkin.
3290
3291         * nnimap.el (nnimap-update-info): None of the articles below the active
3292         low-water mark exist.
3293
3294         * dgnushack.el: Get rid of XEmacs compilation warning.
3295
3296         * gnus-msg.el (gnus-summary-cancel-article): See what From header we
3297         would have gotten if we posted to the group, and use that to compare
3298         against the message we want to cancel (bug#10808).
3299
3300         * gnus-sum.el (gnus-auto-center-summary): `scroll-margin' isn't defined
3301         on XEmacs.
3302
3303 2012-04-10  Philipp Haselwarter  <philipp.haselwarter@gmx.de>  (tiny change)
3304
3305         * gnus-sum.el (gnus-auto-center-summary): Set default to respect
3306         `scroll-margin'.
3307
3308 2012-04-10  Elias Oltmanns  <eo@nebensachen.de>  (tiny change)
3309
3310         * gnus-cite.el (gnus-dissect-cited-text): A single line without
3311         citation prefix within a block of cited text should be considered part
3312         of that block *only* if it is a blank line.
3313
3314 2012-04-09  Chong Yidong  <cyd@gnu.org>
3315
3316         * binhex.el, hashcash.el, uudecode.el:
3317         Remove * characters from the front of variable docstrings.
3318
3319 2012-04-02  Katsumi Yamaoka  <yamaoka@jpl.org>
3320
3321         * shr.el (shr-find-fill-point): Remove unused code; don't break a line
3322         before kinsoku-bol characters nor within kinsoku-eol characters.
3323
3324 2012-03-27  Katsumi Yamaoka  <yamaoka@jpl.org>
3325
3326         * gnus-sync.el (gnus-topic-alist, gnus-group-topic)
3327         (gnus-topic-create-topic, gnus-topic-enter-dribble): Silence compiler.
3328         (gnus-sync-read): Use mapc instead of mapcar.
3329
3330         * mm-archive.el: Require mm-decode for some macros.
3331         (gnus-recursive-directory-files, mailcap-extension-to-mime): Silence
3332         the byte compiler.
3333         (mm-archive-decoders): New function that returns the value of
3334         the mm-archive-decoders variable.
3335
3336         * mm-decode.el: Don't require mm-archive; autoload mm-archive functions
3337         instead.
3338         (mm-dissect-singlepart): Use the function mm-archive-decoders.
3339
3340         * nnimap.el (gnus-refer-thread-use-nnir):
3341         * nnmail.el (mail-send-and-exit): Silence the byte compiler.
3342
3343 2012-03-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3344
3345         * gnus-compat.el: Define `bound-and-true-p' for XEmacs.
3346
3347 2012-03-12  Peter Münster  <pmrb@free.fr>
3348
3349         * gnus-demon.el (gnus-demon-timers): Now a plist (function -> timer).
3350         (gnus-demon-cancel): Ditto.
3351         (gnus-demon-run-callback): When function cannot be called due to low
3352         idleness, call it when idleness reaches the expected value, instead of
3353         waiting another timer period.
3354         (gnus-demon-init): Add `time' to arguments of call-back.
3355
3356 2012-03-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3357
3358         * dgnushack.el: Bind `gnus-registry-enabled' for XEmacs.
3359
3360         * gnus.el: Register gnus-registry functions.
3361
3362         * gnus-registry.el (gnus-try-warping-via-registry): Moved here and
3363         indent.
3364
3365         * gnus-int.el (gnus-warp-to-article): Check whether the registry is
3366         enabled before warping.
3367
3368 2012-03-22  Dave Abrahams  <dave@boostpro.com>
3369
3370         * gnus-sum.el (gnus-summary-insert-subject): Record information in the
3371         registry about each article retrieved.
3372
3373         * gnus-int.el (gnus-select-group-with-message-id): New function.
3374         (gnus-try-warping-via-registry): Ditto.
3375         (gnus-warp-to-article): Fall back on the registry.
3376
3377 2012-03-22  Sergio Martínez  <samf0xb58@gmail.com>  (tiny change)
3378
3379         * nnimap.el (nnimap-request-scan): Allow `nnimap-inbox' to be a list of
3380         inboxes.
3381
3382 2012-03-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3383
3384         * nnimap.el (nnimap-fetch-partial-articles): Minor doc string fixup.
3385
3386 2012-03-22  Katsumi Yamaoka  <yamaoka@jpl.org>
3387
3388         * gnus-msg.el (gnus-summary-resend-message-insert-gcc): Assume that
3389         gnus-gcc-self-resent-messages may be a group parameter.
3390         (gnus-summary-resend-message): Don't encode encoded words in header
3391         when Gcc'ing resent message.
3392
3393 2012-03-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3394
3395         * shr.el (shr-insert): Treat non-breaking space just like normal
3396         space.  This seems to produce more pleasing results.
3397         (shr-insert): Only insert a blank line if we're starting from an image.
3398         (shr-tag-br): Allow <br> to end lines or to make a single blank line.
3399         (shr-ensure-paragraph): Consider lines with white space to be blank.
3400
3401 2012-03-15  Elias Pipping  <pipping@lavabit.com>
3402
3403         * Makefile.in: Respect DESTDIR.
3404
3405 2012-03-14  Christopher Schmidt  <christopher@ch.ristopher.com>
3406
3407         * gnus-msg.el (gnus-inews-do-gcc): Add gnus-gcc-pre-body-encode-hook
3408         and gnus-gcc-post-body-encode-hook.
3409
3410 2012-03-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3411
3412         * gnus-group.el (gnus-group-expire-articles-1): Don't try to expire
3413         messages that don't exist.
3414
3415         * gnus-sum.el (gnus-summary-expire-articles): Ditto.
3416
3417 2012-04-11  Katsumi Yamaoka  <yamaoka@jpl.org>
3418
3419         pgg-def.el, pgg-gpg.el, pgg-parse.el, pgg-pgp.el, pgg-pgp5.el, pgg.el:
3420         Remove.
3421
3422         dgnushack.el (pgg-snarf-keys-region): Remove autoload.
3423
3424         lpath.el (pgg-parse-crc24-string, pgg-parse-crc24): Remove declaration.
3425
3426 2012-04-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3427
3428         * gnus-msg.el (gnus-inews-insert-gcc): Protect against when we don't
3429         have a group name.
3430
3431         * gnus-art.el (article-wash-html): Ensure that we insert the HTML into
3432         a multibyte buffer (bug#7410).
3433         (article-wash-html): Parse the original article buffer to get the
3434         unencoded data (bug#7410).
3435
3436         * gnus-start.el (gnus-read-newsrc-el-file): Protect against broken
3437         .newsrc.el files.
3438
3439 2012-04-05  Bastien Guerry  <bzg@altern.org>
3440
3441         * color.el (color-lighten-name): Fix typo.
3442
3443 2012-03-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3444
3445         * auth-source.el (auth-source-netrc-create): Quote tokens that contain
3446         "#" to avoid having them interpreted as comments.
3447
3448 2012-03-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3449
3450         * shr.el (shr-insert): Update the text state properly to avoid
3451         inserting spurious paragraph starts.
3452
3453 2012-03-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3454
3455         * shr.el (shr-table-widths): Divide the extra width more fairly over
3456         the TDs (bug#10973).
3457         (shr-render-td): Don't delete too much padding.
3458         (shr-natural-width): Compute the natural width more correctly.
3459         (shr-insert): Allow the natural width to be computed for tables again.
3460         (shr-tag-table-1): Rework how the natural widths are computed by
3461         rendering the table a third time.
3462         (shr-natural-width): Removed.
3463         (shr-buffer-width): New function.
3464         (shr-expand-newlines): Use it.
3465
3466         * gnus-msg.el (gnus-bug): Don't delete the other windows.  We may be
3467         using a `gnus-use-full-window' setup (bug#11013).
3468
3469 2012-03-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3470
3471         * gnus-int.el (gnus-backend-trace): Flip default to nil before Emacs
3472         24.1 release.
3473
3474 2012-03-10  David Edmondson  <dme@dme.org>
3475
3476         * mm-uu.el (mm-uu-forward-extract): Allow for blank lines between the
3477         'Forwarded Message' header and the start of the message.
3478
3479 2012-03-04  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
3480
3481         * gnus-msg.el (gnus-msg-mail): Call `message-mail' correctly when Gnus
3482         isn't running (bug#10897).
3483
3484 2012-03-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3485
3486         * tls.el (open-tls-stream): Don't set the dont-query-on-exit flag.
3487         This is inconsistent with all the other stream functions, which leave
3488         the setting up to the higher levels (if so wanted) (bug#10931).
3489
3490 2012-02-28  Glenn Morris  <rgm@gnu.org>
3491
3492         * gmm-utils.el, gnus-agent.el, gnus-score.el, messagexmas.el,
3493         mm-decode.el: Standardize possessive apostrophe usage.
3494
3495 2012-02-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3496
3497         * shr.el (shr-column-specs): Protect against TDs with "width: 0%".
3498
3499 2012-02-25  Andreas Schwab  <schwab@linux-m68k.org>
3500
3501         * parse-time.el (parse-time-string): Allow extractor to return nil.
3502
3503 2012-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
3504
3505         * nntp.el (nntp-send-authinfo): Work for secure nntp entry in authinfo.
3506
3507 2012-02-20  Lars Ingebrigtsen  <larsi@gnus.org>
3508
3509         * gnus-start.el (gnus-clean-old-newsrc): Allow a FORCE parameter.
3510
3511 2012-02-20  Lars Ingebrigtsen  <larsi@gnus.org>
3512
3513         * mm-decode.el (mm-shr): Remove "soft hyphens".
3514
3515         * nnimap.el (nnimap-request-list): Return the group names encoded as
3516         utf8.  Otherwise non-European group names don't work.
3517         (nnimap-request-newgroups): Ditto.
3518
3519         * gnus-sum.el (gnus-summary-insert-old-articles): Fix the syntax for
3520         the default in `read-string' (bug#10757).
3521
3522         * gnus-msg.el (gnus-group-post-news): Don't bug out on `C-u a' on
3523         topics (bug#10843).
3524
3525         * nnimap.el (nnimap-log-command): Add the IMAP address to the log
3526         buffer.  Suggested by Herbert Valerio Riedel.
3527         (nnimap-request-move-article): Delete the message from the correct IMAP
3528         server.
3529
3530 2012-02-19  Gábor Vida  <vidagabor@gmail.com>  (tiny change)
3531
3532         * gnus-demon.el (gnus-demon-init): Don't multiply time twice.
3533         Reported by Peter Münster.
3534
3535 2012-02-18  Lars Ingebrigtsen  <larsi@gnus.org>
3536
3537         * shr.el (shr-image-fetched): Make sure we really kill the right
3538         buffer.
3539
3540 2012-02-16  Leo Liu  <sdl.web@gmail.com>
3541
3542         * gnus-start.el (gnus-1): Avoid duplicate entries.
3543
3544 2012-02-15  Lars Ingebrigtsen  <larsi@gnus.org>
3545
3546         * imap.el: Remove.
3547
3548         * nntp.el (nntp-coding-system-for-read): Remove.
3549         (nntp-coding-system-for-write): Ditto.
3550         (nntp-open-connection): Just use `binary' directly.
3551
3552         * gnus-start.el (gnus-clean-old-newsrc): Delete `unexist' from pre-Ma
3553         Gnus 0.3.
3554
3555 2012-02-16  Lars Ingebrigtsen  <larsi@gnus.org>
3556
3557         * mm-decode.el (mm-dissect-singlepart): Guess what the type of
3558         application/octet-stream parts really is.
3559
3560         * gnus-sum.el (gnus-propagate-marks): Remove.
3561
3562 2012-02-15  Paul Eggert  <eggert@cs.ucla.edu>
3563
3564         * shr.el (shr-rescale-image): Undo previous change; see
3565         <http://lists.gnu.org/archive/html/emacs-devel/2012-02/msg00540.html>.
3566
3567 2012-02-15  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
3568
3569         * gnus.el: Ma Gnus v0.3 is released.
3570
3571 2012-02-15  Lars Ingebrigtsen  <larsi@gnus.org>
3572
3573         * gnus-sum.el (gnus-summary-local-variables): Make
3574         `gnus-newsgroup-unexist' into a local variable.
3575
3576 2012-02-14  Teodor Zlatanov  <tzz@lifelogs.com>
3577
3578         * registry.el (registry-usage-test, registry-persistence-test): Move to
3579         tests/gnustest-registry.el.
3580         (registry-make-testable-db, registry-match-test)
3581         (registry-instantiation-test): Move to tests/gnustest-registry.el.
3582
3583         * gnus-registry.el (gnus-registry-misc-test)
3584         (gnus-registry-usage-test): Move to tests/gnustest-registry.el.
3585
3586         * tests/gnustest-registry.el: New file with the registry and
3587         gnus-registry ERT tests.
3588
3589 2012-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
3590
3591         * gnus-msg.el (gnus-summary-resend-message): Make
3592         gnus-summary-resend-message-insert-gcc be last item in
3593         message-header-setup-hook.
3594
3595 2012-02-13  Lars Ingebrigtsen  <larsi@gnus.org>
3596
3597         * nnfolder.el (nnfolder-marks-directory, nnfolder-marks-is-evil)
3598         (nnfolder-marks, nnfolder-marks-file-suffix, nnfolder-marks-modtime):
3599         Remove.
3600         (nnfolder-open-server): Don't use marks.
3601         (nnfolder-request-delete-group): Ditto.
3602         (nnfolder-request-rename-group): Ditto.
3603         (nnfolder-request-set-mark, nnfolder-request-marks)
3604         (nnfolder-group-marks-pathname, nnfolder-marks-changed-p)
3605         (nnfolder-save-marks, nnfolder-open-marks): Remove.
3606
3607         * nnml.el (nnml-marks-is-evil, nnml-marks-file-name, nnml-marks)
3608         (nnml-marks-modtime): Remove.
3609         (nnml-request-delete-group): Don't use marks.
3610         (nnml-request-rename-group): Ditto.
3611         (nnml-request-set-mark, nnml-request-marks, nnml-marks-changed-p)
3612         (nnml-save-marks, nnml-open-marks): Remove.
3613
3614         * nntp.el (nntp-marks-is-evil, nntp-marks-file-name, nntp-marks)
3615         (nntp-marks-modtime, nntp-marks-directory, nntp-request-set-mark)
3616         (nntp-request-marks, nntp-marks-directory, nntp-marks-changed-p)
3617         (nntp-save-marks, nntp-open-marks, nntp-possibly-create-directory)
3618         (nntp-server-to-method-cache): Remove.
3619
3620         * shr.el (shr-rescale-image): Fix wrong merge.
3621
3622 2012-02-15  Lars Ingebrigtsen  <larsi@gnus.org>
3623
3624         * shr.el (shr-remove-trailing-whitespace): Really delete the padding on
3625         too-wide lines.
3626
3627 2012-02-13  Lars Ingebrigtsen  <larsi@gnus.org>
3628
3629         * nnimap.el (nnimap-record-commands): New variable.
3630         (nnimap-log-command): Use it.
3631         (nnimap-make-process-buffer): Add a space to the process buffer.
3632         (nnimap-transform-headers): Don't bug out on header lines containing
3633         stuff that look like IMAP length encodings.
3634
3635         * shr.el (shr-rescale-image): Allow viewing large images.
3636
3637 2012-02-12  Lars Ingebrigtsen  <larsi@gnus.org>
3638
3639         * nnml.el (nnml-request-compact-group): Delete the marks file after
3640         compaction (bug#10800).
3641
3642         * gnus-art.el (gnus-stop-downloads): Stop `url-queue' downloads on
3643         group exit.
3644
3645         * nnimap.el (nnimap-parse-flags): Parse correctly when we have mixed
3646         QRESYNC/FETCH output.
3647
3648 2012-02-11  Glenn Morris  <rgm@gnu.org>
3649
3650         * sieve-manage.el (sieve-manage-default-stream):
3651         * shr.el (shr):
3652         * nnir.el (nnir-ignored-newsgroups, nnir-summary-line-format)
3653         (nnir-retrieve-headers-override-function)
3654         (nnir-imap-default-search-key, nnir-notmuch-program)
3655         (nnir-notmuch-additional-switches, nnir-notmuch-remove-prefix)
3656         (nnir-method-default-engines):
3657         * message.el (message-cite-reply-position):
3658         * gssapi.el (gssapi-program):
3659         * gravatar.el (gravatar):
3660         * gnus-sum.el (gnus-refer-thread-use-nnir):
3661         * gnus-registry.el (gnus-registry-unfollowed-addresses)
3662         (gnus-registry-max-pruned-entries):
3663         * gnus-picon.el (gnus-picon-inhibit-top-level-domains):
3664         * gnus-int.el (gnus-after-set-mark-hook)
3665         (gnus-before-update-mark-hook):
3666         * gnus-async.el (gnus-async-post-fetch-function):
3667         * auth-source.el (auth-source-cache-expiry):
3668         Add missing :version tags to new defcustoms and defgroups.
3669
3670 2012-02-11  Lars Ingebrigtsen  <larsi@gnus.org>
3671
3672         * gnus-sum.el (gnus-adjust-marked-articles): Add to
3673         `gnus-newsgroup-unexist'.
3674
3675         * gnus.el (gnus-article-mark-lists): Add `unexist' to the list of
3676         marks.
3677         (gnus-article-special-mark-lists): Put the `unexist' in the special
3678         marks list instead.
3679
3680         * gnus-sum.el (gnus-articles-to-read): Don't include unexisting
3681         articles in the list of articles to be selected.
3682
3683         * nnimap.el (nnimap-retrieve-group-data-early): Query for unexisting
3684         articles.
3685         (nnimap-update-info): Keep track of unexisting articles.
3686         (nnimap-update-qresync-info): Ditto.
3687
3688 2012-02-10  Lars Ingebrigtsen  <larsi@gnus.org>
3689
3690         * message.el (message-default-send-mail-function): Made into own
3691         function for reuse by emacsbug.el.
3692
3693 2012-02-09  Juanma Barranquero  <lekktu@gmail.com>
3694
3695         * gnus.el (gnus-method-ephemeral-p): Move after declaration of defsubst
3696         `gnus-sloppily-equal-method-parameters' to avoid a warning.
3697
3698 2012-02-09  Lars Ingebrigtsen  <larsi@gnus.org>
3699
3700         * mm-archive.el (mm-archive-dissect-and-inline): New function.
3701         (mm-archive-dissect-and-inline): Fix up the undisplayer.
3702
3703         * gnus-compat.el: Define `timer-set-function'.
3704
3705         * mm-decode.el (mm-display-external): Output the text from the command
3706         in the buffer after the command finished.  This makes text-based
3707         commands behave better.
3708
3709 2012-02-08  Lars Ingebrigtsen  <larsi@gnus.org>
3710
3711         * gnus-compat.el: Add a compat for the old `url-retrieve'.
3712
3713 2012-02-07  Lars Ingebrigtsen  <larsi@gnus.org>
3714
3715         * gnus-compat.el: Make `help-function-arglist' be compatible on Emacs
3716         23.1.
3717
3718 2012-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
3719
3720         * gnus-sum.el (gnus-summary-show-thread): Revert last two changes.
3721
3722 2012-02-07  Lars Ingebrigtsen  <larsi@gnus.org>
3723
3724         * message.el (smtpmail-smtp-user): Silence compiler warning.
3725
3726 2012-02-06  Lars Ingebrigtsen  <larsi@gnus.org>
3727
3728         * message.el (message-multi-smtp-send-mail): Also allow specifying the
3729         SMTP user name.
3730
3731 2012-02-06  Katsumi Yamaoka  <yamaoka@jpl.org>
3732
3733         * gnus-sum.el (gnus-summary-show-thread):
3734         next-single-char-property-change may return nil in XEmacs.
3735         (gnus-summary-article-map): Fix typo.
3736
3737 2012-02-09  Lars Ingebrigtsen  <larsi@gnus.org>
3738
3739         * gnus-msg.el (gnus-msg-mail): Use `message-mail' if Gnus isn't
3740         running.
3741
3742         * nnimap.el (nnimap-wait-for-response): Minor fixup of message string.
3743
3744         * gnus.el (gnus-server-extend-method): Don't add an -address component
3745         if the method already has one (bug#9676).
3746
3747 2012-02-08  Lars Ingebrigtsen  <larsi@gnus.org>
3748
3749         * gnus-sum.el (gnus-summary-insert-old-articles): Use a default instead
3750         of an initial-input for consistency (bug#10757).
3751
3752         * dgnushack.el: Fix XEmacs compilation warning.
3753
3754         * shr.el: Inhibit getting and sending cookies when fetching pictures.
3755
3756         * gnus-html.el (gnus-html-schedule-image-fetching): Ditto.
3757
3758 2012-02-07  Lars Ingebrigtsen  <larsi@gnus.org>
3759
3760         * shr.el (shr-remove-trailing-whitespace): Don't strip whitespace from
3761         lines that are narrower than the window width.  Otherwise background
3762         "blocks" will look less readable.
3763
3764 2012-02-07  Lars Ingebrigtsen  <larsi@gnus.org>
3765
3766         * nnimap.el (nnimap-transform-headers): Remove unused variable.
3767         (nnimap-transform-headers): Fix parsing BODYSTRUCTURE elements that
3768         have newlines within the strings, and where the UID comes after the
3769         BODYSTRUCTURE element (bug#10537).
3770
3771         * shr-color.el (shr-color-set-minimum-interval): Rename to add prefix
3772         (bug#10732).
3773
3774         * shr.el (shr-insert-document): Add doc string.
3775         (shr-visit-file): Ditto.
3776         (shr-remove-trailing-whitespace): New function.
3777         (shr-insert-document): Use it to clean up trailing whitespace as the
3778         final step (bug#10714).
3779
3780 2012-02-06  Lars Ingebrigtsen  <larsi@gnus.org>
3781
3782         * gnus-sum.el (gnus-summary-exit-no-update): Really deaden the summary
3783         buffer if `gnus-kill-summary-on-exit' is nil.
3784
3785 2012-02-06  Lars Ingebrigtsen  <larsi@gnus.org>
3786
3787         * gnus-sum.el (gnus-handle-ephemeral-exit): Allow exiting from Gnus
3788         when just reading a single group from "without" Gnus.
3789
3790 2012-02-06  Chong Yidong  <cyd@gnu.org>
3791
3792         * gnus-sum.el (gnus-summary-show-thread):
3793         next-single-char-property-change never returns nil (Bug#8657).
3794
3795 2012-02-02  Lars Ingebrigtsen  <larsi@gnus.org>
3796
3797         * message.el (message-multi-smtp-send-mail): New function.
3798         (message-multi-smtp-send-mail): Respect the X-Message-SMTP-Method
3799         header to implement multi-SMTP functionality.
3800
3801         * gnus-agent.el (gnus-agent-send-mail-function): Removed.
3802         (gnus-agentize): Don't set it.
3803         (gnus-agent-send-mail): Don't use it.
3804
3805         * gnus-sum.el (gnus-summary-widget-backward): New function and
3806         keystroke.
3807
3808         * gnus-compat.el: More the compat functions more compatible.
3809
3810         * shr.el (shr-put-image): Remove underlines from sliced images.
3811         (shr-zoom-image): Compute the region to be replaced more correctly.
3812
3813 2012-02-02  Katsumi Yamaoka  <yamaoka@jpl.org>
3814
3815         * gnus-msg.el (gnus-gcc-self-resent-messages): New user option.
3816         (gnus-summary-resend-message-insert-gcc): New function.
3817         (gnus-summary-resend-message): Modify message-header-setup-hook and
3818         message-sent-hook to make it work for Gcc.
3819         (gnus-inews-do-gcc): Update the number of unread articles of groups
3820         that messages are Gcc'd to.
3821
3822         * message.el (message-resend): Run message-sent-hook to do Gcc.
3823
3824 2012-02-01  Lars Ingebrigtsen  <larsi@gnus.org>
3825
3826         * lpath.el: Fix an XEmacs compilation warning.
3827
3828         * gnus-compat.el: Require `help-fns' to fix compilation error.
3829
3830         * gnus-registry.el (gnus-registry-fixup-registry): Move the message to
3831         a higher level to silence compilation.
3832
3833         * gnus-art.el (gnus-shr-put-image): Take and pass on a `flags'
3834         parameter to allow controlling the scaling.
3835
3836         * shr.el (shr-zoom-image): New command and keystroke.
3837         (shr-put-image): Take a `size' flag to say how to scale the image.
3838
3839         * gnus-compat.el: Redefine `delete-directory' to provide recursive
3840         deletion unless already defined.
3841
3842         * gnus.el (gnus-compat): Require it.
3843
3844         * gnus-compat.el: New file.
3845
3846         * gnus-start.el (gnus-clean-old-newsrc): New function.
3847         (gnus-read-newsrc-file): Use it.
3848
3849         * mm-archive.el (mm-dissect-archive): Use it to get all file names.
3850         Use recursive deletion.
3851         (mm-dissect-archive): Add support for zip files.
3852
3853         * gnus-util.el (gnus-recursive-directory-files): New function.
3854
3855         * mm-archive.el (mm-archive-list-files): Inline text and image parts.
3856         (mm-archive-decoders): Add tgz support.
3857
3858         * mm-decode.el (mm-shr): Make sure that the HTML ends with a newline.
3859         Otherwise inserting text into the Gnus buffer can look odd.
3860
3861         * gnus-art.el (gnus-mime-inline-part): Slight clean-up.
3862
3863         * mm-archive.el (mm-archive-decoders): Add support for tar.
3864
3865         * gnus.el (gnus-logo-color-alist): Change the colours for Ma Gnus.
3866
3867         * nnmail.el (nnmail-extra-headers): Add Cc to the default.
3868
3869 2012-01-31  Lars Ingebrigtsen  <larsi@gnus.org>
3870
3871         * mm-decode.el (mm-dissect-singlepart): Check that the decoder exists.
3872
3873         * mm-archive.el: New file.
3874
3875         * mm-decode.el (mm-dissect-singlepart): Use it to decode ms-tnef files.
3876
3877         * mm-util.el (mm-find-buffer-file-coding-system): Comment fix.
3878
3879         * message.el (message-goto-*): Make all the `message-goto-*' commands
3880         push the mark before moving point.  This makes it easier to go back to
3881         where you came from after editing whatever you jumped to.
3882
3883 2012-01-31  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
3884
3885         * gnus.el: Ma Gnus v0.1 is released.
3886
3887 2012-02-05  Lars Ingebrigtsen  <larsi@gnus.org>
3888
3889         * nnimap.el (nnimap-open-server): Allow switching the nnoo server
3890         without reconnecting.
3891         (nnimap-possibly-change-group): Ditto.
3892         (nnimap-finish-retrieve-group-infos): Don't reconnect if the server
3893         connection has died before being called.
3894
3895 2012-02-02  Lars Ingebrigtsen  <larsi@gnus.org>
3896
3897         * nnimap.el (nnimap-retrieve-group-data-early): Don't say we're doing
3898         an initial sync unless we're really doing one.
3899
3900         * gnus-group.el (gnus-group-read-ephemeral-group): Don't add a new
3901         address parameter if one already exists (bug#9676).
3902
3903         * gnus-msg.el (gnus-summary-mail-forward): Respect the process marks,
3904         not the prefix, as documented (bug#10689).
3905
3906 2012-02-01  Lars Ingebrigtsen  <larsi@gnus.org>
3907
3908         * gnus.el (gnus-valid-select-methods): nnmaildir also saves marks in
3909         the "server".
3910
3911         * gnus-group.el (gnus-group-get-new-news-this-group): Don't overwrite
3912         the real error message with the useless "previously known to be down".
3913         Which isn't even correct.
3914
3915         * nntp.el (nntp-open-connection): Report the error message if the nntp
3916         server can't be reached.
3917
3918         * nnimap.el (nnimap-retrieve-group-data-early): Keep track of how many
3919         groups we do a total scan for.
3920         (nnimap-wait-for-response): Say that we're doing a total scan, if we're
3921         doing that.
3922
3923 2012-01-31  Jim Meyering  <jim@meyering.net>
3924
3925         * gnus-agent.el (gnus-agent-expire-unagentized-dirs):
3926         Correct a comment (insert "not") and hide nominally-doubled "to".
3927
3928 2012-01-31  Lars Ingebrigtsen  <larsi@gnus.org>
3929
3930         * gnus.el (gnus-version): Change name to "Ma Gnus".
3931
3932 2012-01-30  Philipp Haselwarter  <philipp.haselwarter@gmx.de>  (tiny change)
3933
3934         * gnus-agent.el (gnus-agent-auto-agentize-methods): Point to the Agent
3935         section in the manual.
3936
3937 2012-01-30  Lars Ingebrigtsen  <larsi@gnus.org>
3938
3939         * rfc2047.el (rfc2047-encode-region): Allow not folding the encoded
3940         words.
3941         (rfc2047-encode-string): Ditto.
3942         (rfc2047-encode-parameter): Don't fold parameters.  Some MUAs do not
3943         understand folded filename="..." parameters, for instance.
3944
3945         * nnimap.el (nnimap-wait-for-response): Include the imap server name in
3946         the message for greater debuggability.
3947
3948 2012-01-28  Lars Ingebrigtsen  <larsi@gnus.org>
3949
3950         * mm-view.el (mm-display-inline-fontify): Bind `font-lock-support-mode'
3951         instead of setting it locally, since the latter doesn't seem to have
3952         any effect (most of the time).
3953
3954 2012-01-27  Elias Pipping  <pipping@lavabit.com>  (tiny change)
3955
3956         * shr.el (shr-browse-url): Fix the name of the `browse-url-mail'
3957         function call.
3958
3959 2012-01-27  Gábor Vida  <vidagabor@gmail.com>  (tiny change)
3960
3961         * gnus-demon.el (gnus-demon-run-callback, gnus-demon-init): Convert to
3962         seconds, and make the repeat clause with HH:MM specs work as
3963         documented.
3964
3965 2012-01-27  Lars Ingebrigtsen  <larsi@gnus.org>
3966
3967         * proto-stream.el (proto-stream-capability-open): Fall back on
3968         :end-of-command if :end-of-capability doesn't exist.
3969
3970 2012-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
3971
3972         * gnus-sum.el (gnus-summary-mode): Don't make bidi-paragraph-direction
3973         bound globally in old Emacsen and XEmacsen.
3974
3975 2012-01-27  Lars Ingebrigtsen  <larsi@gnus.org>
3976
3977         * gnus-start.el (gnus-get-unread-articles): Clear out "early" methods
3978         so that previous errors don't prohibit getting new news.
3979
3980         * nnimap.el (nnimap-retrieve-group-data-early): Ditto.
3981
3982         * nntp.el (nntp-retrieve-group-data-early): Ditto.
3983
3984 2012-01-26  Nick Alcock  <nick.alcock@oracle.com>  (tiny change)
3985
3986         * gnus.el (gnus-group-find-parameter): Check for liveness of the
3987         buffer, not of the string which is its name.
3988
3989 2012-01-26  Lars Ingebrigtsen  <larsi@gnus.org>
3990
3991         * proto-stream.el (proto-stream-capability-open): Wait for
3992         :end-of-capability, not :end-of-command.
3993
3994         * gnus-sum.el (gnus-summary-move-article): Don't propagate marks to
3995         non-server-marks groups.
3996         (gnus-group-make-articles-read): Ditto.
3997
3998         * gnus-srvr.el (gnus-server-prepare): Use it to avoid showing ephemeral
3999         methods (bug#9676).
4000
4001         * gnus.el (gnus-method-ephemeral-p): New function.
4002
4003 2012-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
4004
4005         * gnus-sum.el (gnus-summary-mode): Force paragraph direction to be
4006         left-to-right.
4007
4008 2012-01-26  Lars Ingebrigtsen  <larsi@gnus.org>
4009
4010         * nnimap.el (nnir-search-thread): Autoload to avoid a compilation
4011         warning.
4012
4013 2012-01-25  Lars Ingebrigtsen  <larsi@gnus.org>
4014
4015         * gnus-sum.el (gnus-summary-line-format-alist): Don't try to
4016         macroexpand the nnir things, since they haven't been defined yet, and
4017         nnir requires gnus-sum.
4018
4019 2012-01-24  Julien Danjou  <julien@danjou.info>
4020
4021         * color.el (color-rgb-to-hsl): Fix value computing.
4022         (color-hue-to-rgb): New function.
4023         (color-hsl-to-rgb): New function.
4024         (color-clamp, color-saturate-hsl, color-saturate-name)
4025         (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
4026         (color-lighten-name, color-darken-hsl, color-darken-name): New function.
4027
4028 2012-01-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4029
4030         * mm-decode.el (mm-interactively-view-part): Fix prompt.
4031
4032 2012-01-19  Julien Danjou  <julien@danjou.info>
4033
4034         * color.el (color-name-to-rgb): Use the white color to find the max
4035         color component value and return correctly computed values.
4036         (color-name-to-rgb): Add missing float conversion for max value.
4037
4038 2012-01-10  Teodor Zlatanov  <tzz@lifelogs.com>
4039
4040         * nntp.el (nntp-send-authinfo): Query `auth-source-search' with the
4041         logical server name in addition to the actual machine address.
4042
4043         * auth-source.el (auth-source-user-and-password): Add convenience
4044         wrapper to search by just host and optionally user.
4045
4046 2012-01-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4047
4048         * shr.el (shr-visit-file): Move point to the beginning of the buffer
4049         after rendering.
4050
4051 2012-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
4052
4053         * gnus-sync.el (gnus-sync-newsrc-groups): Quote normally.
4054         (gnus-sync-lesync-pre-save-group-entry): Remove invalid invlists.
4055         (gnus-sync-lesync-normalize-group-entry): Ignore a few more keys.
4056
4057 2012-01-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4058
4059         * gnus-sum.el (gnus-summary-read-group): Document more parameters
4060         (bug#9693).
4061         (gnus-summary-setup-buffer): Document return value (bug#9697).
4062
4063         * mm-decode.el (mm-interactively-view-part): Use `completing-read',
4064         since ido doesn't work on symbols (bug#9632).
4065
4066         * gnus.el (gnus-group-fast-parameter): Use the same precedence rules
4067         when getting a single value as when getting all the values.  This means
4068         that atoms like `gcc-self' work cumulatively, like variable settings,
4069         instead of getting the value from the last matching clause.
4070         (gnus-group-find-parameter): Protect against the group buffer not
4071         existing (bug#9585).
4072
4073 2012-01-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4074
4075         * gnus-start.el (gnus-activate-group): Document more parameters
4076         (bug#9694).
4077
4078         * gnus-group.el (gnus-group-read-ephemeral-group): Doc clarification
4079         (bug#9692).
4080
4081         * gnus-agent.el (gnus-agent-store-article): Tell the Agent when the
4082         article was fetched, so that it can be expired later (bug#9958).
4083         (gnus-agent-summary-fetch-series): Add doc string.
4084         (gnus-agent-summary-fetch-group): Don't remove tick and dormant marks
4085         (bug#9517).
4086
4087         * nntp.el (nntp-retrieve-groups): Refuse to do retrieval when an async
4088         retrieval is happening.
4089
4090         * gnus.el (gnus-parameters): Doc fix.
4091
4092 2012-01-06  Dave Abrahams  <dave@boostpro.com>
4093
4094         * gnus-sum.el (gnus-summary-refer-thread): If the subtree is hidden,
4095         show the thread after expansion.
4096
4097 2012-01-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4098
4099         * gnus-art.el (article-narrow-to-head): If the head is completely
4100         empty, narrow to the empty region (bug#9764).
4101
4102         * gnus-sum.el (gnus-summary-mark-article-as-unread): Mark articles as
4103         read, and then mark them as unread only when the unread mark is used.
4104         This makes `C-- T k' actually work, even though it's confusing.
4105
4106         * gnus-win.el (gnus-all-windows-visible-p): Ensure that the buffer is
4107         alive before we try to find its window.
4108
4109 2012-01-06  Brian Sniffen  <bsniffen@akamai.com>  (tiny change)
4110
4111         * mm-decode.el (mm-display-external): Use a longer timeout for the
4112         deletion to allow slow programs to display the file.
4113
4114 2012-01-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4115
4116         * gnus-art.el (gnus-article-browse-delete-temp-files): Fix up the
4117         prompt to be less confusing.
4118
4119         * gnus-msg.el (gnus-summary-reply): Do not give a `switch-to-buffer'
4120         argument to `message-reply'.  This broke `special-display-*' frame
4121         pop-uping (bug#10238).
4122
4123 2012-01-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4124
4125         * starttls.el (starttls-available-p): Return nil on Windows/MS-DOS
4126         systems, since these allegedly don't work there.
4127
4128 2012-01-04  Chris Gray  <chrismgray@gmail.com>  (tiny change)
4129
4130         * mm-decode.el (mm-shr): Check that `gnus-summary-buffer' really is a
4131         live buffer.
4132
4133 2012-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4134
4135         * nnir.el (nnir-retrieve-headers): Protect against the article not
4136         existing on the server (bug#10335).
4137
4138 2012-01-04  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
4139
4140         * gnus-agent.el (gnus-agent-load-local): Recompute
4141         gnus-agent-article-local on changing method.
4142
4143 2012-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4144
4145         * gnus.el (gnus-parameters): Note precedence.
4146
4147 2012-01-04  Leo Liu  <sdl.web@gmail.com>
4148
4149         * nndraft.el (nndraft-update-unread-articles): Don't move point around
4150         in the group buffer.
4151
4152 2012-01-04  Julien Danjou  <julien@danjou.info>
4153
4154         * nnimap.el (nnimap-update-info): Fix an error when all articles UIDs
4155         change.
4156
4157 2012-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4158
4159         * shr.el (shr-rescale-image): Add :ascent 100 to the rescaled picture,
4160         too.
4161
4162         * nntp.el (nntp-retrieve-group-data-early): Use it.
4163
4164 2012-01-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4165
4166         * nntp.el (nntp-retrieval-in-progress): New variable.
4167         (nntp-make-process-buffer): Make it buffer-local.
4168
4169         * gnus-demon.el (gnus-demon-time-to-step): Resurrect function lost in
4170         2010.
4171         (gnus-demon-init): Use it to compute the time if time is on the form
4172         "04:23".
4173
4174         * gnus-topic.el (gnus-topic-history): Define `gnus-topic-history'.
4175
4176         * nnimap.el (nnimap-finish-retrieve-group-infos): Check the connection
4177         status in the correct buffer.
4178
4179 2012-01-03  Leo Liu  <sdl.web@gmail.com>
4180
4181         * gnus-topic.el (gnus-topic-goto-next-group): Don't move point around
4182         when opening topics (bug#10407).
4183
4184 2011-12-30  Paul Eggert  <eggert@cs.ucla.edu>
4185
4186         * gnus-cus.el (gnus-score-customize):
4187         * gnus-sum.el (gnus-sort-gathered-threads):
4188         * message.el (message-shorten-references):
4189         * nnmairix.el (nnmairix-request-group):
4190         * uudecode.el (uudecode-decode-region-internal): Spelling fix.
4191
4192 2011-12-29  Paul Eggert  <eggert@cs.ucla.edu>
4193
4194         * gnus-agent.el (gnus-agent-regenerate-group):
4195         * gnus-int.el (gnus-retrieve-group-data-early):
4196         * mm-util.el (mm-codepage-ibm-list):
4197         * nndiary.el (Commentary, nndiary-get-new-mail):
4198         * nnir.el (nnir):
4199         * pgg-parse.el (pgg-parse-symmetric-key-algorithm-alist): Spelling fix.
4200
4201 2011-12-28  Katsumi Yamaoka  <yamaoka@jpl.org>
4202
4203         * mm-view.el (mm-display-inline-fontify): Add comment.
4204
4205 2011-12-21  Paul Eggert  <eggert@cs.ucla.edu>
4206
4207         * nndiary.el (nndiary-parse-schedule-value, nndiary-parse-schedule):
4208         * ntlm.el (ntlm-smb-dohash): Spelling fix.
4209
4210 2011-12-19  Paul Eggert  <eggert@cs.ucla.edu>
4211
4212         * gnus-art.el (gnus-split-methods):
4213         * gnus-msg.el (gnus-configure-posting-styles):
4214         * gnus-spec.el (gnus-parse-simple-format):
4215         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
4216         * message.el (message-do-actions): Spelling fix.
4217
4218 2011-12-15  Juri Linkov  <juri@jurta.org>
4219
4220         * mm-decode.el (mm-inline-media-tests): Add missing
4221         `mm-handle-media-subtype'.
4222
4223 2011-12-14  Paul Eggert  <eggert@cs.ucla.edu>
4224
4225         * gnus-group.el (gnus-group-tool-bar):
4226         * gnus-sum.el (gnus-summary-tool-bar):
4227         * message.el (message-tool-bar):
4228         * rfc2231.el (rfc2231-parse-string): Spelling fix.
4229
4230 2011-12-12  Paul Eggert  <eggert@cs.ucla.edu>
4231
4232         * plstore.el (plstore--insert-buffer): Spelling fix.
4233
4234 2011-12-09  Tassilo Horn  <tassilo@member.fsf.org>
4235
4236         * message.el (message-valid-fqdn-regexp): Update with newly approved
4237         top-level domain names ".tel" and ".asia".
4238
4239 2011-12-08  Katsumi Yamaoka  <yamaoka@jpl.org>
4240
4241         * gnus-sum.el (gnus-summary-show-article): Don't load shr
4242         unconditionally.
4243
4244 2011-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
4245
4246         * message.el (message-pop-to-buffer): Use pop-to-buffer instead of
4247         pop-to-buffer-same-window for old Emacsen.
4248
4249 2011-12-06  Juanma Barranquero  <lekktu@gmail.com>
4250
4251         * gnus-sum.el (gnus-summary-make-tool-bar): Fix typo.
4252
4253 2011-12-05  Paul Eggert  <eggert@cs.ucla.edu>
4254
4255         * netrc.el (netrc-credentials): Spelling fix.
4256
4257 2011-12-04  Paul Eggert  <eggert@cs.ucla.edu>
4258
4259         * gnus-fun.el (gnus-fun-ppm-change-string):
4260         * gnus-msg.el (gnus-inews-do-gcc):
4261         * gnus-sum.el (gnus-summary-find-for-reselect):
4262         * gnus.el (gnus-summary-cancelled):
4263         * message.el (message-cancel-hook, message-send-news):
4264         * nndiary.el (nndiary-headers, nndiary-parse-schedule-value):
4265         * nnir.el (nnir-run-hyrex):
4266         * nntp.el (nntp-with-open-group-function):
4267         * pgg.el (pgg-pending-timers): Spelling fix.
4268
4269 2011-12-04  Chong Yidong  <cyd@gnu.org>
4270
4271         * message.el (message-pop-to-buffer): Partially revert 2011-11-30
4272         change (Bug#10200).
4273
4274 2011-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
4275
4276         * compface.el (uncompface):
4277         * gnus-art.el (gnus-article-x-face-command): Update the header format
4278         of icon data for the most recent icontopbm program.
4279
4280 2011-12-01  Katsumi Yamaoka  <yamaoka@jpl.org>
4281
4282         * gnus-msg.el (gnus-inews-do-gcc):
4283         * message.el (message-send-mail):
4284         * mml.el (mml-generate-mime): Share the value of the buffer-local
4285         `message-options' variable between a draft buffer and temprary working
4286         buffers.
4287
4288 2011-11-30  Stefan Monnier  <monnier@iro.umontreal.ca>
4289
4290         * message.el (message-pop-to-buffer): Revert 2011-09-11 change.
4291
4292 2011-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
4293
4294         * gnus-art.el (gnus-article-browse-html-parts): Convert link file names
4295         for Cygwin.
4296
4297 2011-11-27  Paul Eggert  <eggert@cs.ucla.edu>
4298
4299         * gnus-group.el (gnus-group-prepare-flat):
4300         * mm-bodies.el (mm-encode-body):
4301         * mml.el (mml-preview):
4302         * nnml.el (nnml-request-compact-group):
4303         * pop3.el (pop3-stream-type): Spelling fix.
4304
4305 2011-11-26  Paul Eggert  <eggert@cs.ucla.edu>
4306
4307         * gnus-start.el (gnus-newsrc-to-gnus-format): Spelling fix.
4308
4309 2011-11-25  Paul Eggert  <eggert@cs.ucla.edu>
4310
4311         * color.el (color-rgb-to-hsl):
4312         * gmm-utils.el (gmm-tool-bar-style):
4313         * gnus-group.el (gnus-group-prepare-flat):
4314         * gnus-topic.el (gnus-topic-prepare-topic):
4315         * mm-decode.el (mm-discouraged-alternatives):
4316         * rfc2047.el (rfc2047-encode-1):
4317         * starttls.el: Spelling fix.
4318
4319 2011-11-24  Glenn Morris  <rgm@gnu.org>
4320
4321         * binhex.el (binhex-begin-line): Give it basic doc-string.
4322
4323         * starttls.el, tls.el: Fix case of "GnuTLS".
4324
4325 2011-11-24  Juanma Barranquero  <lekktu@gmail.com>
4326
4327         * gnus-group.el (gnus-group-highlight): Fix typo.
4328
4329 2011-11-24  Adam W  <adam_w67@yahoo.com>  (tiny change)
4330
4331         * mail-source.el (mail-source-fetch-maildir): Don't expect the return
4332         value of `delete-file', that returns nil for a local file but returns t
4333         for a remote file using ssh.
4334
4335 2011-11-22  Paul Eggert  <eggert@cs.ucla.edu>
4336
4337         * gnus-sum.el (gnus-summary-save-article): Spelling fix.
4338
4339 2011-11-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4340
4341         * shr.el (shr-table-horizontal-line): Use "?\s" instead of "? " to
4342         avoid later breakage.
4343
4344 2011-11-22  Katsumi Yamaoka  <yamaoka@jpl.org>
4345
4346         * gnus-art.el (gnus-article-setup-buffer): Decode group name used for
4347         article buffers' name.
4348
4349 2011-11-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4350
4351         * shr.el (shr-table-horizontal-line): Revert infinite loops introduced
4352         by Paul Eggert's spellfixes two days ago.
4353
4354 2011-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4355
4356         * dgnushack.el (fboundp): Define `with-demoted-errors' for Emacsen that
4357         doesn't have it.
4358
4359         * mm-view.el (mm-display-inline-fontify): Make the font-lock variables
4360         buffer-local instead of binding them to avoid warnings.  Also demote
4361         errors (bug#10063).
4362         (font-lock-mode-hook): Shut up byte compiler.
4363
4364 2011-11-20  Juanma Barranquero  <lekktu@gmail.com>
4365
4366         * mm-util.el (mm-charset-after):
4367         * nnir.el (nnir-run-hyrex):
4368         * ntlm.el (ntlm-build-auth-request, ntlm-build-auth-response)
4369         (ntlm-get-password-hashes, ntlm-md4hash):
4370         * smime.el: Fix typo.
4371
4372 2011-11-20  Paul Eggert  <eggert@cs.ucla.edu>
4373
4374         * gnus-agent.el (gnus-agent-expire-group-1):
4375         * nndiary.el (nndiary-last-occurence):
4376         * nnimap.el (nnimap-request-set-mark):
4377         * nnmairix.el (nnmairix-only-use-registry):
4378         * gnus-group.el (gnus-group-prepare-flat):
4379         * gnus-sum.el (gnus-decode-encoded-word-methods):
4380         * message.el (message-wash-subject):
4381         * nntp.el (nntp-retrieve-headers-with-xover):
4382         * smime.el (smime-certificate-directory): Spelling fix.
4383
4384 2011-11-19  Paul Eggert  <eggert@cs.ucla.edu>
4385
4386         * nnmail.el (nnmail-get-new-mail-1): Remove unused local variables.
4387
4388         * color.el:
4389         * gnus-agent.el (gnus-agent-possibly-alter-active):
4390         * gnus-dired.el (gnus-dired-print):
4391         * mail-parse.el:
4392         * nnmairix.el (nnmairix-request-group):
4393         * shr.el (shr-image-displayer):
4394         * sieve-manage.el:
4395         * spam.el (spam-autodetect-recheck-messages): Spelling fix.
4396
4397 2011-11-18  Paul Eggert  <eggert@cs.ucla.edu>
4398
4399         * gnus-sum.el (gnus-auto-select-subject):
4400         * spam-report.el (spam-report-resend): Spelling fix.
4401
4402 2011-11-17  Paul Eggert  <eggert@cs.ucla.edu>
4403
4404         * gnus-agent.el (gnus-agent-get-undownloaded-list):
4405         * gnus-art.el (gnus-default-article-saver):
4406         * gnus-srvr.el (gnus-server-copy-server):
4407         * gnus.el (gnus-sloppily-equal-method-parameters):
4408         * html2text.el (html2text-format-tag-list):
4409         * message.el (message-narrow-to-head):
4410         * nndiary.el:
4411         * nnmairix.el (nnmairix-determine-original-group-from-registry):
4412         * sieve.el: Spelling fix.
4413
4414 2011-11-16  Juanma Barranquero  <lekktu@gmail.com>
4415
4416         * gnus-agent.el (gnus-agent-expire-unagentized-dirs):
4417         * gnus-sum.el (gnus-summary-make-menu-bar):
4418         * gnus-uu.el (gnus-uu-decode-postscript)
4419         (gnus-uu-decode-postscript-and-save):
4420         * mailcap.el (mailcap-print-command):
4421         * registry.el (registry-lookup, registry-lookup-breaks-before-lexbind):
4422         Fix typos.
4423
4424 2011-11-15  Juanma Barranquero  <lekktu@gmail.com>
4425
4426         * gnus-art.el (gnus-article-part-wrapper):
4427         * html2text.el (html2text-fix-paragraphs):
4428         * mm-decode.el (mm-image-fit-p):
4429         * rfc2047.el (rfc2047-encode-message-header):
4430         * shr-color.el (shr-color-visible-distance-min)
4431         (shr-color-relative-to-absolute, set-minimum-interval)
4432         (shr-color-visible): Fix typos.
4433
4434 2011-11-15  Paul Eggert  <eggert@cs.ucla.edu>
4435
4436         * gmm-utils.el (gmm-tool-bar-item):
4437         * gnus-art.el (gnus-treat-body-boundary):
4438         * gnus-diary.el (gnus-user-format-function-d):
4439         * gnus-start.el (gnus-get-unread-articles):
4440         * pgg-gpg.el (pgg-gpg-update-agent):
4441         * smime.el (smime-cert-by-ldap-1): Spelling fix.
4442
4443 2011-11-14  Paul Eggert  <eggert@cs.ucla.edu>
4444
4445         * gnus-topic.el (gnus-group-prepare-topics):
4446         * gnus-uu.el (gnus-extract-view):
4447         * gnus-win.el (gnus-use-frames-on-any-display): Spelling fix.
4448
4449 2011-11-09  Teodor Zlatanov  <tzz@lifelogs.com>
4450
4451         * spam.el: Move BBDB autoloads.
4452         (spam-exists-in-BBDB-p): New function to do the BBDB search directly in
4453         BBDB 2 and 3.
4454         (spam-check-BBDB): Use it.
4455         (spam-enter-ham-BBDB): Use it.
4456
4457 2011-11-09  Paul Eggert  <eggert@cs.ucla.edu>
4458
4459         * smime.el (smime-draw-buffer): Spelling fix.
4460
4461 2011-10-31  Peter Münster  <pmrb@free.fr>  (tiny change)
4462
4463         * gnus-group.el (gnus-group-get-new-news): New parameter `one-level'
4464         for scanning exactly one level.
4465         * gnus-start.el (gnus-get-unread-articles): Ditto.
4466
4467 2011-11-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4468
4469         * gnus-sum.el (gnus-articles-to-read): Change wording in prompt to be
4470         slightly clearer.
4471
4472 2011-11-03  Teodor Zlatanov  <tzz@lifelogs.com>
4473
4474         * gnus-sync.el: More commentary about setup.
4475
4476 2011-11-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4477
4478         * message.el (message-send-and-exit): Document `arg'.
4479
4480 2011-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
4481
4482         * nnimap.el (nnimap-open-connection-1): Use tcp-keealive if possible.
4483
4484 2011-11-02  Teodor Zlatanov  <tzz@lifelogs.com>
4485
4486         * gnus-sync.el: More commentary about `gnus-sync-read' issues.
4487
4488         * gnus-util.el (gnus-bound-and-true-p): Another comment to explain why
4489         we don't use `bound-and-true-p'.
4490
4491 2011-11-01  Teodor Zlatanov  <tzz@lifelogs.com>
4492
4493         * gnus-util.el (gnus-bound-and-true-p): Remove.
4494         (gnus-bound-and-true-dumber-p): Rename to `gnus-bound-and-true-p'.
4495         * nnir.el: Use it.
4496         * nnmairix.el: Use it.
4497
4498 2011-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
4499
4500         * gnus-sync.el: Improve docs about CouchDB admins.
4501
4502         * gnus-util.el (gnus-bound-and-true-dumber-p): Define new, slower, dumb
4503         function because `gnus-bound-and-true-p' doesn't work well in XEmacs
4504         for reasons unknown.
4505         * nnir.el: Use it.
4506         * nnmairix.el: Use it.
4507
4508         * nnregistry.el: Remove unnecessary `gnus-registry-enabled' defvar.
4509         * nnir.el: Ditto.
4510         * nnmairix.el: Ditto.
4511
4512         * gnus-registry.el (gnus-registry-enabled): Default to nil.
4513
4514 2011-10-29  Teodor Zlatanov  <tzz@lifelogs.com>
4515
4516         * gnus-sync.el (gnus-sync-lesync-setup): Fix salt when user setup is
4517         not needed.  Provide xmlplistread list function to produce XML plist
4518         output for non-Gnus LeSync clients.
4519
4520 2011-10-27  Teodor Zlatanov  <tzz@lifelogs.com>
4521
4522         * gnus-fallback-lib/json.el: Add for XEmacs and Emacs 22 support.
4523
4524         * gnus-sync.el: Add LeSync synchronization backend and logic to read
4525         and save against it.  Group subscriptions, read marks, other marks,
4526         subscription levels, topic names, and topic offsets (the group's
4527         position within the topic) are saved.  This is an experimental backend
4528         and may change significantly.  Load json.el from the gnus-fallback-lib
4529         if it's not available otherwise.
4530         (gnus-sync-save): Don't use `apply-partially' because of XEmacs.
4531
4532 2011-10-26  Stefan Monnier  <monnier@iro.umontreal.ca>
4533
4534         * message.el (message-completion-function): Make sure
4535         message-tab-body-function is not attempted if one of
4536         message-completion-alist fails to find a completion (bug#9158).
4537
4538 2011-10-26  Daiki Ueno  <ueno@unixuser.org>
4539
4540         * mml.el (mml-quote-region): Quote <#secure> tag.
4541         (mml-generate-mime-1): Unquote <#secure> tag.
4542
4543 2011-10-20  Chong Yidong  <cyd@gnu.org>
4544
4545         * gnus-cite.el (gnus-message-citation-mode): Doc fix (in Emacs 24,
4546         calling a minor mode from Lisp with nil arg enables it, so we have to
4547         make the wording a bit ambiguous here).
4548
4549 2011-10-18  Teodor Zlatanov  <tzz@lifelogs.com>
4550
4551         * gnus-util.el (gnus-bound-and-true-p): Macro for XEmacs compatibility.
4552         * nnir.el (nnir-mode): Use it.
4553         * nnmairix.el (nnmairix-determine-original-group-from-registry):
4554         Use it.
4555
4556         * nnir.el (gnus-registry-enabled): Defvar to keep the compiler happy.
4557         * nnmairix.el (gnus-registry-enabled): Ditto.
4558
4559 2011-10-17  Dave Abrahams  <dave@boostpro.com>
4560
4561         * gnus-registry.el (gnus-registry-enabled): Add new variable (Bug#9691).
4562         (gnus-registry-install-shortcuts): Set `gnus-registry-install' to 'ask
4563         only while we need to find out if it should be t or nil.
4564         (gnus-registry-initialize): Don't set `gnus-registry-install' to t.
4565         (gnus-registry-install-hooks): Set `gnus-registry-enabled' to t when
4566         the registry is installed.  Set it to nil when it's unloaded.
4567         (gnus-registry-install-p): Provide user guidance for the initial value
4568         of `gnus-registry-install' when it's 'ask, otherwise return its value.
4569         * nnregistry.el (nnregistry-open-server, nnregistry-server-opened):
4570         Use `gnus-registry-enabled' instead of `gnus-registry-install'.
4571         * nnmairix.el (nnmairix-determine-original-group-from-registry):
4572         Use `gnus-registry-enabled' instead of `gnus-registry-install'.
4573         * nnir.el (nnir-mode): Use `gnus-registry-enabled' instead of
4574         `gnus-registry-install'.
4575
4576 2011-10-17  Daiki Ueno  <ueno@unixuser.org>
4577
4578         * mml2015.el (mml2015-epg-find-usable-key): Add comment about the
4579         previous change.
4580         * mml1991.el (mml1991-epg-find-usable-key): Skip the whole key if the
4581         primary key is marked as disabled.
4582
4583 2011-10-17  Christian von Roques  <roques@mti.ag>  (tiny change)
4584
4585         * mml2015.el (mml2015-epg-find-usable-key): Skip the whole key if the
4586         primary key is marked as disabled.
4587
4588 2011-10-11  Andreas Schwab  <schwab@linux-m68k.org>
4589
4590         * html2text.el (html2text-clean-anchor): Check for quotes around
4591         `href' value.
4592
4593 2011-10-11  Teodor Zlatanov  <tzz@lifelogs.com>
4594
4595         * spam.el (spam-check-BBDB): Simplify and support BBDB 3.x when
4596         searching.  Drop `bbdb-cache'.
4597
4598 2011-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
4599
4600         * message.el (message-signed-or-encrypted-p): Exclude header when
4601         checking if there is signed or encrypted body in text/plain message.
4602
4603 2011-10-09  Andreas Schwab  <schwab@linux-m68k.org>
4604
4605         * html2text.el (html2text-get-attr): Correctly handle attribute values
4606         containing "=".
4607
4608 2011-09-22  Kan-Ru Chen  <kanru@kanru.info>
4609
4610         * ecomplete.el (ecomplete-display-matches): Use a local keymap to
4611         handle bindings.
4612
4613 2011-10-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4614
4615         * gnus-win.el (gnus-configure-windows): Protect against reading
4616         ephemeral groups outside of Gnus.
4617
4618 2011-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
4619
4620         * shr.el (shr-tag-img): Don't get images displayed in tables.
4621
4622 2011-10-03  Glenn Morris  <rgm@gnu.org>
4623
4624         * gnus-group.el (gnus-bug-group-download-format-alist): Once again get
4625         the "maintainer" version of debbugs.gnu.org reports.
4626
4627 2011-10-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4628
4629         * shr.el (shr-tag-img): Add a space at the end of an ALT image text to
4630         make asynchronous adjacent image insertion work better.
4631
4632 2011-09-27  Daiki Ueno  <ueno@unixuser.org>
4633
4634         * plstore.el (plstore-select-keys, plstore-encrypt-to): Clarify
4635         documentation.
4636
4637 2011-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4638
4639         * gnus-uu.el (gnus-uu-grab-articles): Require gnus-async so that
4640         `gnus-asynchronous' isn't shadowed.
4641
4642 2011-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4643
4644         * gnus-xmas.el (gnus-xmas-define): Add `member-ignore-case'.
4645
4646         * nnimap.el (nnimap-wait-for-response): Message less (bug#9540).
4647         (nnimap-insert-partial-structure): The charset parameter isn't
4648         case-sensitive.
4649
4650         * nnheader.el (nnheader-message-maybe): New function.
4651
4652         * shr.el (shr-tag-table): Render totally broken tables better.
4653
4654         * mml.el (mml-generate-mime-1): Don't alter the contents if we're
4655         computing the boundary.
4656
4657 2011-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4658
4659         * pop3.el (pop3-number-of-responses): Remove.
4660         (pop3-wait-for-messages): Rewrite to take linear time instead of
4661         exponential time.
4662
4663 2011-09-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4664
4665         * gnus-sum.el (gnus-summary-show-article): Bind `shr-ignore-cache' to
4666         re-fetch images.
4667
4668         * shr.el (shr-tag-img): Support a new variable `shr-ignore-cache' to
4669         re-fetch images when hitting `g' in Gnus.
4670
4671 2011-09-22  Katsumi Yamaoka  <yamaoka@jpl.org>
4672
4673         * mml.el (mml-inhibit-compute-boundary): New internal variable.
4674         (mml-compute-boundary): Don't check collision if it is non-nil.
4675         (mml-compute-boundary-1): Use mml-generate-mime-1 to encode part
4676         before checking collision.
4677
4678 2011-09-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4679
4680         * message.el (message-indent-citation): Really make sure there's a
4681         newline at the end.
4682
4683         * nnimap.el (nnimap-parse-flags): Make regexp less prone to overflows.
4684         Fix suggested by John Wiegley.
4685
4686         * pop3.el (pop3-open-server): Fix +OK end-of-command regexp.
4687
4688         * gnus-art.el (gnus-treat-hide-citation): Add doc.
4689
4690         * message.el (message-default-send-rename-function): Break out into its
4691         own function.
4692
4693         * ecomplete.el (ecomplete-display-matches): Revert patch since it
4694         doesn't work under XEmacs.
4695
4696         * nnimap.el (nnimap-map-port): New function to connect to 993 instead
4697         of "imaps" to word around Windows problems.
4698         (nnimap-open-connection-1): Use it.
4699
4700         * message.el (message-indent-citation): Revert last change which made
4701         `F' not work.
4702
4703 2011-09-13  Kan-Ru Chen  <kanru@kanru.info>
4704
4705         * ecomplete.el (ecomplete-display-matches): Intercept key sequence from
4706         terminal as well.
4707
4708 2011-09-21  Katsumi Yamaoka  <yamaoka@jpl.org>
4709
4710         * mm-view.el (mm-display-inline-fontify): Don't run doc-view-mode
4711         because it displays images using overlays that aren't easy to copy to
4712         the article buffer.
4713
4714 2011-09-20  Łukasz Stelmach  <lukasz.stelmach@iem.pw.edu.pl>  (tiny change)
4715
4716         * message.el (message-indent-citation): Fix empty line removal at the
4717         end of the citation.
4718
4719 2011-09-20  Julien Danjou  <julien@danjou.info>
4720
4721         * auth-source.el (auth-source-netrc-create): Use default value for
4722         password if specified.  Evaluate default.
4723         (auth-source-plstore-create): Ditto.
4724         (auth-source-plstore-create, auth-source-netrc-create): Fix default
4725         value evaluation.
4726         (auth-source-netrc-create): Typo fix.
4727         (auth-source-plstore-create): Ditto.
4728
4729         * password-cache.el (password-cache-remove): Remove entries even if the
4730         value is nil, so that password with a nil value (negative caching) is
4731         possible to invalidate.
4732
4733         * auth-source.el (auth-source-format-cache-entry): New function.
4734
4735 2011-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
4736
4737         * gnus-fun.el (gnus-convert-image-to-x-face-command): Doc fix.
4738
4739 2011-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4740
4741         * mm-decode.el (mm-inline-media-tests): Fix typo in regexp.
4742
4743 2011-09-19  Julien Danjou  <julien@danjou.info>
4744
4745         * auth-source.el (auth-source-netrc-parse): Use an obfuscation method
4746         which work with things that are not ASCII.
4747
4748 2011-09-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4749
4750         * mm-decode.el (mm-inline-media-tests): Support imagemagick images.
4751
4752 2011-09-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4753
4754         * gnus-sum.el (gnus-summary-read-group-1): Bump the "Retrieving"
4755         message level.
4756
4757 2011-09-15  Katsumi Yamaoka  <yamaoka@jpl.org>
4758
4759         * message.el (message-read-from-minibuffer): Make abbrev expansion work.
4760
4761 2011-09-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4762
4763         * gnus.el (gnus-interactive-exit): Update defcustom spec.
4764
4765 2011-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
4766
4767         * gnus.el (gnus-nntp-server): Move to gnus-int.el to silence bytecomp.
4768         * gnus-int.el (gnus-nntp-server): Move from gnus.el.
4769
4770 2011-09-12  Andrew Cohen  <cohen@andy.bu.edu>
4771
4772         * gnus-group.el (gnus-group-list-limit-map, gnus-group-list-flush-map)
4773         (gnus-group-list-plus-map): Allow limiting, flushing and plusing ticked
4774         articles.
4775
4776 2011-09-11  Chong Yidong  <cyd@stupidchicken.com>
4777
4778         * message.el (message-pop-to-buffer): Default to switch-to-buffer.
4779         (message-mail-other-window, message-mail-other-frame)
4780         (message-news-other-window, message-news-other-frame):
4781         Use switch-to-buffer-other-frame and switch-to-buffer-other-window
4782         instead of setting buffer display varibles.
4783
4784 2011-09-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4785
4786         * gnus-group.el (gnus-group-list-limit): Explain what the command does.
4787
4788         * gnus-sum.el (gnus-fetch-headers): Bump message level.
4789
4790 2011-09-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4791
4792         * gnus-dup.el (gnus-dup-suppress-articles): Move "Suppressing
4793         duplicates" to a higher level.
4794
4795         * gnus-util.el (gnus-verbose): Lower default to 6 to get rid of the
4796         most egregious messages.
4797
4798 2011-09-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4799
4800         * gnus-msg.el (gnus-summary-mail-forward): Minuscule doc fix.
4801
4802 2011-09-10  Tetsuo Tsukamoto  <tt.tetsuo.tsukamoto@gmail.com>  (tiny change)
4803
4804         * nnrss.el (nnrss-retrieve-groups): Decode the charset before looking
4805         up the file (bug#9351).
4806
4807 2011-09-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4808
4809         * nnimap.el: Redo the charset handling.  Let Gnus encode the names, as
4810         it does with all other backends, but decode the names immediately after
4811         getting them.
4812
4813         * gnus-group.el (gnus-group-name-charset): Always return `utf-7' when
4814         decoding nnimap groups.
4815
4816         * gnus.el (gnus-variable-list): Don't save `gnus-format-specs' in the
4817         newsrc file.  It doesn't seem like an important optimization any more.
4818
4819 2011-09-10  Dave Abrahams  <dave@boostpro.com>
4820
4821         * nnimap.el (nnimap-transform-headers): Fix regexp to be less prone to
4822         overflows.
4823
4824 2011-09-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4825
4826         * gnus.el (gnus-article-mark-lists): Remove `recent'.
4827         (gnus-interactive-exit): Extend to `quiet'.
4828
4829         * gnus-sum.el (gnus-offer-save-summaries): Use it.
4830
4831         * gnus-art.el (gnus-treat-hide-citation-maybe): Add more doc to the
4832         string.
4833
4834         * plstore.el (plstore--get-buffer): Silence compiler warnings by
4835         renaming function arguments from `this'.
4836
4837         * gnus-sum.el (gnus-newsgroup-recent): Remove.
4838
4839         * gnus-spec.el (gnus-lrm-string-p): `bidi-string-mark-left-to-right'
4840         has been renamed.
4841         (gnus-lrm-string-p): Include RLM and PDF, too.
4842
4843         * gnus-int.el (gnus-open-server): Make the "denied" message clearer
4844         (bug#9225).
4845
4846 2011-09-10  Eli Zaretskii  <eliz@gnu.org>
4847
4848         Add autoload cookies for functions used by sendmail.el.
4849         * mm-encode.el (mm-default-file-encoding): Add autoload cookie.
4850
4851         * mml.el (mml-to-mime, mml-attach-file): Add autoload cookies.
4852
4853 2011-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
4854
4855         * gnus-art.el (article-date-ut): Work properly even when there are
4856         things like Date header in the body; work for forwarded parts.
4857
4858 2011-09-05  Andrew Cohen  <cohen@andy.bu.edu>
4859
4860         * gnus-sum.el (gnus-summary-exit): Ensure we kill the proper
4861         original-article-buffer.
4862
4863 2011-09-05  Kan-Ru Chen  <kanru@kanru.info>
4864
4865         * nnir.el (nnir-compose-result): Fix matching of server type.
4866         (nnir-run-swish++): Ditto.
4867         (nnir-run-namazu): Ditto.
4868         (nnir-run-notmuch): Ditto.
4869
4870 2011-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4871
4872         * gnus.el (gnus-home-directory): Add warning about setting in .gnus.el
4873         (bug#9405).
4874
4875         * gnus-score.el (gnus-summary-increase-score): Doc clarification
4876         (bug#9421).
4877
4878         * gnus-spec.el (gnus-face-0): Make all the face specs into defcustoms
4879         (bug#9425).
4880
4881         * gnus-art.el (gnus-treatment-function-alist): Remove CRs as the first
4882         thing (bug#9426).
4883
4884 2011-09-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4885
4886         * nnimap.el (nnimap-open-connection-1): Use the correct port number in
4887         the error message.
4888
4889 2011-09-02  Eli Zaretskii  <eliz@gnu.org>
4890
4891         * message.el (message-setup-1): Return t (Bug#9392).
4892
4893 2011-09-01  Andrew Cohen  <cohen@andy.bu.edu>
4894
4895         * gnus-sum.el: When adding article headers to a summary buffer also
4896         update gnus-newsgroup-articles (bug#9386).
4897
4898 2011-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
4899
4900         * auth-source.el: Autoload help-mode.
4901
4902 2011-08-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4903
4904         * gnus-group.el (gnus-group-name-charset): Don't bug out on server
4905         names.
4906
4907 2011-08-27  Daiki Ueno  <ueno@unixuser.org>
4908
4909         * mml-smime.el (mml-smime-epg-verify): Don't use the 4th arg of
4910         mm-replace-in-string for compatibility issues.
4911         * mml2015.el (mml2015-epg-verify): Ditto.
4912
4913 2011-08-26  Katsumi Yamaoka  <yamaoka@jpl.org>
4914
4915         * mailcap.el (mailcap-mime-data): Regexp-quote MIME subtype.
4916
4917         * gnus-msg.el (gnus-setup-message): Remove extra apostrophe.
4918
4919 2011-08-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4920
4921         * nnmail.el (nnmail-get-new-mail-1): If one mail source bugs out,
4922         continue on and do the clean-up phase (bug#9188).
4923
4924         * gnus-sum.el (gnus-summary-expire-articles): When expiring articles,
4925         just ignore groups that can't be opened instead of erroring out
4926         (bug#9225).
4927
4928         * gnus-art.el (gnus-article-update-date-headers): Flip the default to
4929         nil since some many people are fuddy-duddies.
4930
4931         * gnus-html.el (gnus-html-image-fetched): Don't cache zero-length
4932         images.
4933
4934         * nntp.el (nntp-authinfo-file): Mark as obsolete -- use auth-source
4935         instead.
4936
4937         * pop3.el (pop3-wait-for-messages): Don't use Gnus functions here.
4938
4939         * gnus-util.el (gnus-process-live-p): Copy over compat function.
4940
4941         * pop3.el (pop3-wait-for-messages): If the pop3 process dies, stop
4942         processing.
4943
4944         * nntp.el (nntp-kill-buffer): Kill the process before killing the
4945         buffer to avoid warnings.
4946
4947 2011-08-20  Simon Josefsson  <simon@josefsson.org>
4948
4949         * gnus-agent.el (gnus-agent-expire-done-message): Use %.f as format
4950         specified to reduce precision.
4951
4952 2011-08-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4953
4954         * nnimap.el (nnimap-transform-headers): Protect against (NIL ...)
4955         bodystructures (bug#9314).
4956
4957 2011-08-19  Katsumi Yamaoka  <yamaoka@jpl.org>
4958
4959         * gnus-art.el (gnus-insert-mime-button, gnus-mime-display-alternative):
4960         Make button keymap non-sticky after buttons.
4961
4962 2011-08-18  David Engster  <dengste@eml.cc>
4963
4964         * nnmairix.el (nnmairix-request-set-mark)
4965         (nnmairix-goto-original-article): Remove adding of article to registry,
4966         since `gnus-registry-add-group' isn't available anymore.
4967         (nnmairix-determine-original-group-from-registry):
4968         Use `gnus-registry-get-id-key' since `gnus-registry-fetch-groups' isn't
4969         available anymore.
4970
4971 2011-08-12  Simon Josefsson  <simon@josefsson.org>
4972
4973         * starttls.el (starttls-any-program-available): Define as obsolete
4974         function.
4975
4976 2011-08-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4977
4978         * gnus-util.el (gnus-y-or-n-p): Reinstate the message-clearing y-or-n-p
4979         versions which Gnus use when appropriate.
4980
4981         * gnus-group.el (gnus-group-clear-data): Add a y-or-n query, since it's
4982         a pretty destructive command.
4983
4984         * nnmail.el (nnmail-extra-headers): Clarify slightly (bug#9302).
4985
4986 2011-08-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4987
4988         * message.el (message-fix-before-sending): Make a different warning
4989         about NUL characters (bug#9270).
4990
4991         * gnus-sum.el (gnus-auto-select-subject): Allow specifying a function
4992         from custom (bug#9260).
4993
4994         * gnus-spec.el (gnus-lrm-string): Use 8206 instead of ?\x200e to make
4995         things work in Emacs 22 and XEmacs, too.
4996
4997         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): LRM-ify the
4998         default From.
4999
5000         * gnus-spec.el (gnus-lrm-string-p): New macro.
5001         (gnus-lrm-string): New constant.
5002         (gnus-summary-line-format-spec): LRM-ify the from.
5003         (gnus-tilde-max-form): LRM-ify string chopping.
5004
5005         * gnus-ems.el (gnus-string-mark-left-to-right): New function.
5006
5007         * message.el (message-is-yours-p): Allow disabling canlock checking
5008         (bug#9295).
5009         (message-shoot-gnksa-feet): Add `canlock-verify'.
5010         (message-auto-save-directory): Use ~/ as the auto-save directory if the
5011         message directory isn't writable (bug#9304).
5012
5013         * auth-source.el (auth-source-netrc-saver): Make the .authinfo file
5014         non-world-readable.
5015
5016 2011-08-17  Katsumi Yamaoka  <yamaoka@jpl.org>
5017
5018         * nndraft.el (nndraft-update-unread-articles): Don't send delayed
5019         articles.
5020
5021 2011-08-13  Andreas Schwab  <schwab@linux-m68k.org>
5022
5023         * gnus-score.el (gnus-all-score-files): Use copy-sequence instead of
5024         copy-list.
5025
5026 2011-08-12  Sam Steingold  <sds@gnu.org>
5027
5028         * gnus-score.el (gnus-score-find-alist): Keep the score files already
5029         in the reverse order to avoid modifying the cache with `nreverse'.
5030         (gnus-all-score-files): Do not modify the value returned by
5031         `gnus-score-find-alist' because it lives in a cache variable.
5032         (gnus-current-home-score-file): No need to `nreverse' the return value
5033         of `gnus-score-find-alist', it is already in the correct order.
5034
5035 2011-08-11  Andrew Cohen  <cohen@andy.bu.edu>
5036
5037         * nnimap.el (nnimap-transform-headers): BODYSTRUCTURE for messages of
5038         type MESSAGE and subtype RFC822 is slightly different from those of
5039         type TEXT.
5040
5041 2011-08-05  Andrew Cohen  <cohen@andy.bu.edu>
5042
5043         * gnus-sum.el (gnus-summary-refer-article): Warp to article.
5044         This allows article-referral to work from an nnir group.
5045
5046 2011-08-04  Andrew Cohen  <cohen@andy.bu.edu>
5047
5048         * gnus.el (registry-ignore): Add nnir groups to the ignore-list.
5049
5050 2011-08-04  Daiki Ueno  <ueno@unixuser.org>
5051
5052         * mml1991.el (mml1991-epg-find-usable-key)
5053         (mml1991-epg-find-usable-secret-key): New function.
5054         (mml1991-epg-sign): Check if signing key is usable.
5055         (mml1991-epg-encrypt): Check if encrypting key is usable (bug#8955).
5056
5057 2011-08-03  Andrew Cohen  <cohen@andy.bu.edu>
5058
5059         * nnir.el (nnir-read-server-parm): Add an argument to restrict to
5060         server-variables only.  This should fix a bug introduced with commit
5061         e1889675b7f4adf057833c5513c9374134c4e053.
5062         (nnir-run-query): 'nnir-search-engine should not be set from the global
5063         environment.
5064
5065 2011-08-02  Andrew Cohen  <cohen@andy.bu.edu>
5066
5067         * nnir.el (nnir-search-thread): Position point on referring article
5068         line.
5069         (nnir-warp-to-article): Clean up summary buffers.
5070
5071         * nnimap.el (nnimap-request-thread): Whitespace fix.
5072
5073 2011-08-02  Steve Purcell  <steve@sanityinc.com>  (tiny change)
5074
5075         * nnimap.el (nnimap-get-groups): Decode "&" correctly.
5076
5077 2011-08-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5078
5079         * starttls.el (starttls-available-p): Rename from
5080         `starttls-any-program-available' and changed return convention.
5081
5082 2011-07-31  Lars Ingebrigtsen  <larsi@gnus.org>
5083
5084         * nnmaildir.el (nnmaildir-request-accept-article): Don't call
5085         `unix-sync' unless it's defined.
5086
5087 2011-07-31  Marcus Harnisch  <marcus.harnisch@gmx.net>  (tiny change)
5088
5089         * gnus-art.el (gnus-article-stop-animations): Use `elt' instead of
5090         `aref' for XEmacs compatibiltiy.
5091
5092 2011-07-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5093
5094         * spam.el (spam-fetch-field-fast): Rewrite slightly for clarity.
5095
5096 2011-07-31  Dave Abrahams  <dave@boostpro.com>
5097
5098         * gnus-sum.el (gnus-summary-refer-thread): Since lambdas aren't
5099         closures, quote the form properly (bug#9194).
5100
5101 2011-07-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5102
5103         * gnus-sum.el (gnus-summary-insert-new-articles): Clean up slightly.
5104         (gnus-summary-insert-new-articles): Protect against servers that are
5105         down.
5106
5107 2011-07-29  Daniel Dehennin  <daniel.dehennin@baby-gnu.org>
5108
5109         * mm-decode.el (mm-dissect-buffer): Add a default content-disposition
5110         in mm handle if none is specified.
5111
5112 2011-07-24  Andrew Cohen  <cohen@andy.bu.edu>
5113
5114         * nnimap.el (nnimap-make-thread-query): Quote message-ids for gmail.
5115
5116 2011-07-23  Andrew Cohen  <cohen@andy.bu.edu>
5117
5118         * nnir.el (nnir-search-thread): New function to make an nnir group
5119         based on a thread query.
5120
5121         * gnus-sum.el (gnus-refer-thread-use-nnir): New variable to control use
5122         of nnir in thread referral.
5123         (gnus-summary-refer-thread): Use it.
5124
5125         * nnimap.el (nnimap-request-thread): Use it.
5126
5127 2011-07-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5128
5129         * shr.el (shr-tag-comment): Ignore HTML comments.
5130
5131 2011-07-20  Andrew Cohen  <cohen@andy.bu.edu>
5132
5133         * nnir.el (gnus-group-make-nnir-group): Allow optional search query
5134         argument.
5135         (gnus-group-make-nnir-group, nnir-request-group, nnir-run-query):
5136         Use `nnir-address' to handle server info rather than passing an arg.
5137
5138         * nnimap.el (nnimap-make-thread-query): New utility function to format
5139         an imap thread search query.
5140         (nnimap-request-thread): Use it.
5141
5142         * gnus-sum.el (gnus-handle-ephemeral-exit): Ensure we are setting the
5143         right select-method if we are not going back to the group buffer.
5144
5145 2011-07-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5146
5147         * gnus-group.el (gnus-group-read-ephemeral-group): Make sure we don't
5148         enter invalid buffer configurations into the quit form (bug#9107).
5149         (gnus-group-tool-bar-gnome): Replace connect/disconnect with
5150         unplugged/plugged.
5151
5152         * gnus-sum.el (gnus-summary-refer-thread): When inserting new headers,
5153         keep track of which ones are unread (bug#9061).
5154
5155         * gnus.el (gnus-refer-article-method): Allow entering any sexp
5156         (bug#9055).
5157
5158         * gnus-art.el (gnus-article-show-images): Allow working if using w3m
5159         (bug#9041).
5160
5161         * gnus-html.el (mm-util): Require (bug#9073).
5162
5163         * gnus-sum.el (gnus-delete-duplicate-headers): New function.
5164         (gnus-summary-refer-thread): Use it to remove duplicates in the
5165         un-threaded view (bug#9053).
5166         (gnus-summary-insert-subject): Document USE-OLD-HEADER (bug#9070).
5167
5168 2011-07-07  Kan-Ru Chen  <kanru@kanru.info>
5169
5170         * nnir.el (nnir-read-server-parm): Use default value from global
5171         variable.  Without this the default search engine parameters aren't
5172         used at all.
5173
5174 2011-07-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5175
5176         * message.el (message-unique-id): Don't use the undocumented return
5177         value from (random t) (bug#9118).
5178
5179 2011-07-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5180
5181         * message.el (message-auto-save-directory): If the ~/Mail directory
5182         doesn't exist, use ~ as the auto-save directory (bug#4432).
5183
5184         * gnus-group.el (gnus-group-read-ephemeral-group): Start Gnus if it
5185         hasn't already been started.
5186
5187 2011-07-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5188
5189         * gnus.el (debbugs-gnu): Rename from debbugs-emacs.
5190
5191         * message.el (message-reply): Work around mysterious bug where
5192         `message-mode' seems to overwrite the locally bound `subject' variable.
5193
5194 2011-07-14  Andrew Cohen  <cohen@andy.bu.edu>
5195
5196         * nnimap.el (nnimap-request-thread): Ensure search is performed in
5197         correct group.
5198
5199         * gnus-int.el (gnus-request-thread): Add group argument.
5200
5201         * gnus-sum.el (gnus-summary-refer-thread): Use it.
5202
5203 2011-07-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5204
5205         * dgnushack.el (debbugs-gnu-summary-mode): Update compat names, too.
5206
5207         * gnus-group.el (gnus-read-ephemeral-emacs-bug-group): `debbugs-*'
5208         renamed to `debbugs-gnu-*'.
5209
5210 2011-07-08  Daiki Ueno  <ueno@unixuser.org>
5211
5212         * plstore.el: Revert the editing feature since it is not urgent.
5213         (plstore-mode, plstore-mode-toggle-display, plstore-mode-original)
5214         (plstore-mode-decoded): Remove.
5215
5216 2011-07-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5217
5218         * gnus-msg.el (gnus-bug): Don't insert user variables.  It usually
5219         isn't very interesting any more, and it leaks potentially secret data.
5220         (gnus-debug): Remove.
5221
5222         * gnus-art.el (gnus-ignored-headers): Remove obsolete and non-working
5223         use of :custom-show.
5224
5225 2011-07-07  Daiki Ueno  <ueno@unixuser.org>
5226
5227         * plstore.el: Add documentation.
5228         (plstore-mode): New mode to edit plstore file.
5229         (plstore-mode-toggle-display, plstore-mode-original)
5230         (plstore-mode-decoded): New command.
5231         (plstore--encode, plstore--decode, plstore--write-contents-functions)
5232         (plstore--insert-buffer, plstore--make): New function.
5233         (plstore-open, plstore-save): Simplify by using them.
5234
5235 2011-07-06  Glenn Morris  <rgm@gnu.org>
5236
5237         * gnus-group.el (gnus-read-ephemeral-emacs-bug-group): Silence compiler.
5238
5239 2011-07-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5240
5241         * gnus.el (gnus-refer-article-method): Remove mention of nnspool, which
5242         no longer is much used.
5243         (gnus-summary-line-format): Link to "Marking Articles" instead of "Read
5244         Articles".
5245
5246 2011-04-03  Kan-Ru Chen  <kanru@kanru.info>
5247
5248         * nnir.el (nnir-notmuch-program, nnir-notmuch-additional-switches)
5249         (nnir-notmuch-remove-prefix, nnir-engines, nnir-run-notmuch): New nnir
5250         `notmuch' backend.
5251
5252 2011-07-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5253
5254         * mm-decode.el (mm-text-html-renderer): Doc fix.
5255
5256         * gnus-msg.el (gnus-bug): Fix the MML tag.
5257
5258         * pop3.el (pop3-open-server): -ERR is a valid response to CAPA.
5259
5260 2011-07-05  Daiki Ueno  <ueno@unixuser.org>
5261
5262         * gnus-start.el (gnus-get-unread-articles): Don't connect to the
5263         secondary methods if started with `gnus-no-server'.
5264
5265 2011-07-05  Juanma Barranquero  <lekktu@gmail.com>
5266
5267         * message.el (message-return-action): Fix typo in docstring.
5268
5269 2011-07-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5270
5271         * gnus-group.el (gnus-read-ephemeral-bug-group): Allow fetching several
5272         bug reports at once.
5273
5274         * nnimap.el (nnimap-request-scan): Say that splitting has finished.
5275
5276 2011-07-04  Katsumi Yamaoka  <yamaoka@jpl.org>
5277
5278         * nndraft.el: Require gnus-group.
5279         (nndraft-request-list): Declare.
5280
5281         * nndraft.el (nndraft-update-unread-articles): Don't show group having
5282         no unread article unless it matches gnus-permanently-visible-groups.
5283
5284         * nndraft.el (nndraft-update-unread-articles): New function.
5285         (nndraft-request-associate-buffer): Use it to update the number of
5286         unread articles for the nndraft groups in the group buffer when saving
5287         or killing a draft message.
5288
5289 2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5290
5291         * gnus-group.el (gnus-read-ephemeral-bug-group): Bind the coding
5292         systems to binary before writing and reading the mbox files.
5293
5294         * gnus.el (gnus-summary-line-format): Link to the info node for %U
5295         instead of trying to list them all (bug#8978).
5296
5297 2011-07-03  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
5298
5299         * pop3.el (pop3-open-server): Use :end-of-capability.
5300
5301 2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5302
5303         * gnus-group.el (gnus-read-ephemeral-emacs-bug-group): Make sure that
5304         the id is always a number.
5305
5306         * dgnushack.el (debbugs-summary-mode): Shut up compiler about debbugs.
5307
5308         * gnus-group.el (gnus-read-ephemeral-emacs-bug-group): Hook into
5309         debbugs mode, if possible.
5310
5311 2011-07-02  Daiki Ueno  <ueno@unixuser.org>
5312
5313         * auth-source.el (auth-source-token-passphrase-callback-function):
5314         Reindent.
5315         (epg-context-operation): Remove unnecessary autoload.
5316
5317 2011-07-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5318
5319         * gnus.el (gnus-list-debbugs): New command.
5320
5321         * gnus-group.el (gnus-bug-group-download-format-alist): Get the
5322         mboxstat instead of the maintbox, since the stat seems to be fuller.
5323
5324         * gnus-msg.el (gnus-configure-posting-styles): Don't try to select dead
5325         summary buffers.
5326
5327         * message.el (message-get-reply-headers): Delete all duplicates,
5328         instead of the first.
5329         (message-get-reply-headers): Ensure that we have progress while
5330         deleting duplicates.
5331
5332         * gnus-msg.el (gnus-configure-posting-styles): Get the local
5333         gnus-posting-style value from the summary buffer to make it easier to
5334         make that a per-buffer conf.
5335
5336 2011-07-02  Andrew Cohen  <cohen@andy.bu.edu>
5337
5338         * nnir.el (nnir-run-imap): Allow halting a search when an article is
5339         found by setting `shortcut' in 'query.
5340         (nnir-request-article): Use `shortcut' setting when requesting article
5341         by Message-ID.
5342
5343 2011-07-02  Teodor Zlatanov  <tzz@lifelogs.com>
5344
5345         * gnus-msg.el (gnus-bug): Give the Version and Package headers to
5346         debbugs with the X-Debbugs-Package and X-Debbugs-Version headers.
5347         Bring the pseudo-headers back too.
5348
5349 2011-07-01  Daiki Ueno  <ueno@unixuser.org>
5350
5351         * auth-source.el (auth-source-token-passphrase-callback-function):
5352         Simplify and remove EPA dependency.
5353
5354 2011-07-01  Andrew Cohen  <cohen@andy.bu.edu>
5355
5356         * nnir.el (nnir-request-article): Fix error message text.
5357
5358 2011-07-01  Daiki Ueno  <ueno@unixuser.org>
5359
5360         * auth-source.el (plstore-delete): Autoload.
5361         (auth-source-plstore-search): Support delete operation.
5362         * plstore.el (plstore-delete): New function.
5363
5364 2011-07-01  Katsumi Yamaoka  <yamaoka@jpl.org>
5365
5366         * gnus-draft.el (gnus-draft-clear-marks): Revert last change;
5367         mark actually existing articles as unread rather than the ones that
5368         active asserts.
5369
5370 2011-07-01  Paul Eggert  <eggert@cs.ucla.edu>
5371
5372         * nntp.el (nntp-record-command):
5373         * gnus-util.el (gnus-message-with-timestamp-1):
5374         Use format-time-string rather than decoding time stamps by hand.
5375         This is simpler and insulates the code from potential changes to
5376         current-time format.
5377
5378 2011-07-01  Katsumi Yamaoka  <yamaoka@jpl.org>
5379
5380         * gnus-draft.el (gnus-draft-clear-marks): Mark deleted articles as read.
5381
5382 2011-07-01  Daiki Ueno  <ueno@unixuser.org>
5383
5384         * plstore.el (plstore-select-keys, plstore-encrypt-to): New variable.
5385         (plstore-save): Support public key encryption.
5386         (plstore--init-from-buffer): New function.
5387         (plstore-open): Use it; fix error when opening a non-existent file.
5388         (plstore-revert): Use plstore--init-from-buffer.
5389
5390 2011-07-01  Daiki Ueno  <ueno@unixuser.org>
5391
5392         * auth-source.el (auth-source-backend): Fix :initarg for data slot.
5393
5394 2011-06-30  Katsumi Yamaoka  <yamaoka@jpl.org>
5395
5396         * mml2015.el (mml2015-use): Replace string-match-p with string-match
5397         for old Emacsen.
5398
5399 2011-06-30  Daiki Ueno  <ueno@unixuser.org>
5400
5401         * mml2015.el (mml2015-use): Don't try to load PGG on Emacs 24, when EPG
5402         is not fully working.
5403
5404 2011-06-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5405
5406         * dgnushack.el: Autoload sha1 on XEmacs.
5407
5408         * gnus-group.el (gnus-read-ephemeral-emacs-bug-group): Take an optional
5409         quit window configuration.
5410
5411         * auth-source.el (epg-context-set-passphrase-callback):
5412         Remove duplicate autoload.
5413
5414 2011-06-30  Andrew Cohen  <cohen@andy.bu.edu>
5415
5416         * nnir.el (nnir-request-article): Allow requesting articles by
5417         Message-ID with nnimap.
5418
5419         * gnus-sum.el (gnus-refer-article-methods): Allow (nnir) entry to use
5420         current server.
5421
5422 2011-06-30  Teodor Zlatanov  <tzz@lifelogs.com>
5423
5424         * auth-source.el: Autoload EPA/EPG functions.
5425         (auth-source-netrc-use-gpg-tokens): Clarify that it should not be
5426         changed when EPA/EPG is not available.
5427         (auth-source-backend): Rename "arg" member to "data".
5428         (auth-source-backend-parse, auth-source-plstore-search)
5429         (auth-source-plstore-create): Use it.
5430
5431 2011-06-30  Andrew Cohen  <cohen@andy.bu.edu>
5432
5433         * gnus-art.el (gnus-request-article-this-buffer): Use existing function
5434         `gnus-refer-article-methods'.
5435
5436 2011-06-30  Teodor Zlatanov  <tzz@lifelogs.com>
5437
5438         * auth-source.el: Require EPA and EPG.
5439         (auth-source-passphrase-alist): New variable.
5440         (auth-source-passphrase-callback-function)
5441         (auth-source-token-passphrase-callback-function): Callbacks for the
5442         netrc field encryption (GPG tokens).
5443         (auth-source-epa-extract-gpg-token, auth-source-epa-make-gpg-token):
5444         Symmetric encryption and decryption of the netrc GPG tokens.
5445         (auth-source-netrc-normalize): Use them, simplifying the closure.
5446
5447 2011-06-30  Katsumi Yamaoka  <yamaoka@jpl.org>
5448
5449         * dgnushack.el (dgnushack-compile): Don't compile plstore.el unless epg
5450         is available.
5451
5452 2011-06-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5453
5454         * nnimap.el (nnimap-split-incoming-mail): If `nnimap-split-fancy' is
5455         non-nil, and `nnimap-split-methods' is nil, use the former.
5456
5457 2011-06-30  Daiki Ueno  <ueno@unixuser.org>
5458
5459         * plstore.el (plstore-revert): New function.
5460         (plstore-open): Use it; hide the buffer from user.
5461
5462 2011-06-30  Daiki Ueno  <ueno@unixuser.org>
5463
5464         * auth-source.el (auth-source-backend): New member "arg".
5465         (auth-source-backend-parse): Handle new backend 'plstore.
5466         * plstore.el: New file.
5467
5468 2011-06-30  Glenn Morris  <rgm@gnu.org>
5469
5470         * mm-util.el (mm-charset-synonym-alist): Move definition before use.
5471
5472 2011-06-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5473
5474         * nnimap.el (nnimap-process-expiry-targets): Say what target we're
5475         expiring articles to.
5476
5477         * mm-util.el (mm-charset-to-coding-system): Recognize all ANSI.x3.4
5478         variations as ASCII (bug#5458).
5479
5480 2011-06-30  Katsumi Yamaoka  <yamaoka@jpl.org>
5481
5482         * nnmh.el (nnmh-request-list-1): Work on MS Windows.
5483
5484 2011-06-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5485
5486         * message.el (message-point-in-header-p): Tweak the function to default
5487         to saying that we're not in the headers if there is no separator at
5488         all.  This makes it possible to use the Message version of `M-q' in
5489         buffers with no headers (bug#7987).
5490         (message-point-in-header-p): Fix last checkin to work with an empty
5491         mail-header-separator, too.
5492
5493         * auth-source.el (auth-source-netrc-saver): If the user says "don't ask
5494         again, save the choice via customize.
5495
5496 2011-06-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5497
5498         * message.el (message-send-mail-function): Add `sendmail-query-once'.
5499
5500         * nnimap.el (nnimap-finish-retrieve-group-infos): If the server has
5501         ended the connection, bail out before waiting infinitely on a new
5502         connection.
5503
5504 2011-06-28  Teodor Zlatanov  <tzz@lifelogs.com>
5505
5506         * gnus-msg.el (gnus-bug): Add Package and Version pseudo-headers to bug
5507         reports.
5508
5509         * gnus.el (gnus-bug-package): Use "gnus."
5510         (gnus-maintainer): Direct bug reports to submit@debbugs.gnu.org.
5511
5512 2011-06-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5513
5514         * dgnushack.el: Make the timer warning go away on XEmacs.
5515
5516         * gnus-art.el (gnus-article-stop-animations): New function to stop any
5517         animations going on at article exit time.
5518
5519         * gnus-registry.el (gnus-registry-user-format-function-M): Reinstate,
5520         since removing it breaks people upgrading.
5521
5522         * shr.el (shr-put-image): Use the new interface for animating images.
5523         (shr-put-image): Animate for 60 seconds.
5524
5525         * dgnushack.el: Bind `gnutls-available-p' to `ignore' on XEmacs to
5526         avoid compiler warnings.
5527
5528         * auth-source.el (with-auth-source-epa-overrides): Fix compilation
5529         error with `find-file-hooks' on Emacs 22.
5530         (with-auth-source-epa-overrides): Ugly hack to Wrap the
5531         `find-file-hook' things in `symbol-value' to avoid compilation warnings
5532         on all architectures.
5533
5534         * spam.el (spam-stat): Require in a normal fashion without binding
5535         `spam-stat-install-hooks' to avoid compilation warnings.
5536
5537         * spam-stat.el (spam-stat-install-hooks): Remove.
5538         (spam-stat-install-hooks): Don't run automatically.
5539
5540 2011-06-26  Timo Juhani Lindfors  <timo.lindfors@iki.fi>  (tiny change)
5541
5542         * gnus-msg.el (gnus-summary-reply-to-list-with-original): New command
5543         and keystroke.
5544
5545 2011-06-23  Katsumi Yamaoka  <yamaoka@jpl.org>
5546
5547         * auth-source.el (auth-source-netrc-cache): Move forward.
5548
5549 2011-06-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5550
5551         * proto-stream.el (proto-stream-open-starttls): Use
5552         `gnutls-available-p' to see whether we have built-in support.
5553
5554         * auth-source.el (auth-source-netrc-create): Don't query the bits that
5555         we already know.
5556         (auth-source-forget-all-cached): Clear auth-source-netrc-cache, too.
5557         (auth-source-netrc-create): Don't prompt for the stuff we already know.
5558
5559 2011-06-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5560
5561         * auth-source.el (auth-source-netrc-create): Don't print all tokens in
5562         %S format, since that looks odd.
5563         (auth-sources): Prefer the ~/.authinfo file over the ~/.authinfo.gpg
5564         file, especially when saving.
5565
5566 2011-06-21  Andrew Cohen  <cohen@andy.bu.edu>
5567
5568         * nnimap.el (nnimap-find-article-by-message-id): return nil when no
5569         article found.
5570
5571 2011-06-18  Teodor Zlatanov  <tzz@lifelogs.com>
5572
5573         * auth-source.el (auth-source-netrc-use-gpg-tokens): Replace
5574         `auth-source-save-secrets' with a more sensitive alist that can be
5575         configured per file.  Experimental, so defaults to 'never.
5576         (auth-source-netrc-create): Use it.  Still experimental code.
5577         (with-auth-source-epa-overrides): Use `find-file-hooks' if
5578         `find-file-hook' is unbound (XEmacs fix).  Fix backquoting bug.
5579
5580 2011-06-16  Teodor Zlatanov  <tzz@lifelogs.com>
5581
5582         * auth-source.el (auth-source-save-secrets): New variable to control if
5583         secret tokens should be saved encrypted.
5584         (auth-source-netrc-parse, auth-source-netrc-search): Pass the file name
5585         to `auth-source-netrc-normalize'.
5586         (with-auth-source-epa-overrides): Add convenience macro.  Don't depend
5587         on the EPA variables being defined.
5588         (auth-source-epa-make-gpg-token): Convert text to a "gpg:" token.
5589         (auth-source-netrc-normalize): Convert "gpg:" tokens back to text in
5590         the lexical-let closure.
5591         (auth-source-netrc-create): Create "gpg:" tokens according to
5592         `auth-source-save-secrets'.
5593
5594 2011-06-10  Katsumi Yamaoka  <yamaoka@jpl.org>
5595
5596         * gnus-group.el (gnus-group-update-group): Add new argument
5597         `info-unchanged' that stops updating dribble buffer.
5598
5599         * gnus-start.el (gnus-dribble-enter): Add new argument `regexp' that
5600         deletes lines matching to it in dribble buffer.
5601
5602         * gnus-agent.el (gnus-agent-fetch-group-1):
5603         * gnus-group.el (gnus-group-update-group-line, gnus-group-make-group):
5604         * gnus-srvr.el (gnus-server-update-server, gnus-server-set-info):
5605         * gnus-start.el (gnus-group-change-level):
5606         * gnus-sum.el (gnus-summary-move-article): Delete old dribble entry.
5607
5608         * gnus-sum.el (gnus-summary-update-info): Don't update dribble buffer
5609         if newsgroup info is not changed.
5610
5611         * gnus-group.el (gnus-group-get-new-news-this-group):
5612         * gnus-sum.el (gnus-summary-read-group-1, gnus-summary-exit-no-update):
5613         Don't update dribble buffer.
5614
5615 2011-06-01  Teodor Zlatanov  <tzz@lifelogs.com>
5616
5617         * gnus-registry.el (gnus-registry-remove-ignored): New function to
5618         remove entries with groups we ignore.
5619
5620 2011-05-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5621
5622         * shr.el (shr-rescale-image): Add an :ascent of 100 to images so that
5623         the underline comes at the bottom.
5624
5625 2011-05-31  Teodor Zlatanov  <tzz@lifelogs.com>
5626
5627         * gnus-registry.el (gnus-registry-article-marks-to-chars): Rename from
5628         `gnus-registry-user-format-function-M' and declare the latter obsolete.
5629         (gnus-registry-article-marks-to-names): Rename from
5630         `gnus-registry-user-format-function-M2'.
5631
5632 2011-05-31  Katsumi Yamaoka  <yamaoka@jpl.org>
5633
5634         * gnus-sum.el (gnus-summary-exit): Make sure to kill article buffer in
5635         ephemeral group.
5636
5637 2011-05-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5638
5639         * shr.el (shr-browse-image): Copy the URL if called interactively.
5640
5641 2011-05-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5642
5643         * gnus-group.el (gnus-group-mark-article-read): It's possible that we
5644         want to have `gnus-newsgroup-unselected' kept sorted.  If this isn't
5645         done, then unselected articles may be marked as read.
5646
5647         * pop3.el (pop3-open-server): Erase the buffer after the greeting,
5648         since not doing this seems to lead to a race condition in pop3-logon.
5649
5650         * nnvirtual.el (nnvirtual-request-article): Bind `gnus-command-method'
5651         so that the call chain it correct when we call "upwards".
5652
5653         * gnus-sum.el (gnus-select-newsgroup): Auto-expiry doesn't make sense
5654         in read-only groups.
5655
5656         * gnus-group.el (gnus-group-mark-article-read): Ditto.
5657
5658         * message.el (message-cite-reply-position): Doc string fix.
5659
5660         * nnimap.el (nnimap-transform-headers): Simplify regexp to hopefully
5661         avoid regexp overflow.
5662         (nnimap-transform-split-mail): Ditto.
5663
5664         * pop3.el (pop3-retr): Error out if the server closes the connection.
5665
5666 2011-05-30  Stefan Monnier  <monnier@iro.umontreal.ca>
5667
5668         * mml1991.el (mml1991-mailcrypt-encrypt): Remove use of ill-designed
5669         mm-with-unibyte-current-buffer.  The buffer should not contain any
5670         multibyte chars anyway at this stage.
5671
5672 2011-05-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5673
5674         * shr.el (shr-urlify): Use shr-add-font to make underlines be less ugly
5675         at the end of lines.
5676
5677 2011-05-29  Julien Danjou  <julien@danjou.info>
5678
5679         * smiley.el (gnus-smiley-file-types): Add gif as supported file type.
5680
5681 2011-05-27  Glenn Morris  <rgm@gnu.org>
5682
5683         * gnus-group.el (gnus-bug-group-download-format-alist):
5684         Use the "maintainer" version of debian reports as well.
5685
5686 2011-05-26  Glenn Morris  <rgm@gnu.org>
5687
5688         * gnus-group.el (gnus-bug-group-download-format-alist):
5689         Use the "maintainer" version of debbugs.gnu.org reports.
5690
5691 2011-05-24  Katsumi Yamaoka  <yamaoka@jpl.org>
5692
5693         * gnus-art.el (gnus-mime-delete-part): Fix mm-handle-filename usage.
5694
5695 2011-05-23  Stefan Monnier  <monnier@iro.umontreal.ca>
5696
5697         * gnus-cus.el (gnus-agent-customize-category):
5698         * gnus-delay.el (gnus-delay-send-queue):
5699         * gnus.el (gnus-other-frame):
5700         Don't quote lambda expressions with `quote'.
5701
5702 2011-05-20  Teodor Zlatanov  <tzz@lifelogs.com>
5703
5704         * gnus-sum.el (gnus-summary-hide-thread): Fix bug where moving to hide
5705         the thread moves us backwards and so we loop forever.
5706
5707 2011-05-19  Katsumi Yamaoka  <yamaoka@jpl.org>
5708
5709         * mm-bodies.el (mm-decode-content-transfer-encoding): Allow leading
5710         whitespace in base64 data lines.
5711
5712 2011-05-18  Teodor Zlatanov  <tzz@lifelogs.com>
5713
5714         * gnus-registry.el (gnus-registry-user-format-function-M):
5715         Use `mapconcat'.
5716         (gnus-registry-user-format-function-M2): Use to see the full text of
5717         the marks.  Make "," the mark text separator.
5718
5719         * nntp.el (nntp-send-authinfo): Use the "force" token for NNTP
5720         authentication with auth-source.
5721
5722 2011-05-17  Glenn Morris  <rgm@gnu.org>
5723
5724         * gnus-group.el (gnus-import-other-newsrc-file):
5725         Use insert-file-contents.
5726
5727 2011-05-16  Teodor Zlatanov  <tzz@lifelogs.com>
5728
5729         * gnus-sum.el (gnus-summary-hide-all-threads): Add update message every
5730         1000 iterations.
5731
5732 2011-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
5733
5734         * nntp.el (nntp-open-connection): Check if process-type is available.
5735
5736 2011-05-16  Julien Danjou  <julien@danjou.info>
5737
5738         * shr.el (shr-tag-del): Add support for del tag.
5739
5740 2011-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5741
5742         * gnus-html.el (gnus-html-put-image): Register a displayer.
5743
5744         * shr.el (shr-image-displayer): Don't remove text props from alt text.
5745
5746 2011-05-13  Teodor Zlatanov  <tzz@lifelogs.com>
5747
5748         * registry.el (prune-factor): New initialization parameter defaulting
5749         to 0.1.
5750         (registry-prune-hard): Use it.
5751
5752         * gnus-registry.el (gnus-registry-fixup-registry): Set prune-factor to
5753         0.1 expicitly.
5754
5755 2011-05-13  Glenn Morris  <rgm@gnu.org>
5756
5757         * message.el (message-send-mail-with-sendmail): Assume sendmail-program
5758         is bound, since this function requires sendmail.
5759
5760 2011-05-11  Teodor Zlatanov  <tzz@lifelogs.com>
5761
5762         * registry.el (registry-usage-test): Disable pruning test.
5763
5764 2011-05-11  David Engster  <dengste@eml.cc>
5765
5766         * lpath.el: Bind shr-put-image and process-type for Emacs22 and XEmacs.
5767         Bind set-network-process-option for XEmacs.
5768
5769 2011-05-10  Teodor Zlatanov  <tzz@lifelogs.com>
5770
5771         * registry.el (registry-prune-hard-candidates)
5772         (registry-prune-soft-candidates): Helper methods for registry pruning.
5773         (registry-prune): Use them.  Make the sort function optional.
5774
5775 2011-05-10  Jim Meyering  <meyering@redhat.com>
5776
5777         * shr.el (shr-colorize-region): Fix typo "on on -> on".
5778
5779 2011-05-10  Julien Danjou  <julien@danjou.info>
5780
5781         * shr.el (shr-put-color-1): Do not bug out when old-props is a face
5782         symbol and not a list.
5783
5784 2011-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
5785
5786         * gnus-art.el (gnus-article-mode): Move binding of
5787         shr-put-image-function here from gnus-article-prepare-display.
5788
5789         * shr.el (shr-put-image-function): New variable.
5790         (shr-image-fetched, shr-image-displayer, shr-tag-img): Funcall it.
5791         (shr-put-image): Return scaled image.
5792
5793         * gnus-art.el (gnus-shr-put-image): New function.
5794         (gnus-article-prepare-display): Bind shr-put-image-function to it.
5795
5796         * gnus-html.el (gnus-html-wash-images): Register scaled images, not
5797         original ones, as deletable.
5798
5799 2011-05-09  Stefan Monnier  <monnier@iro.umontreal.ca>
5800
5801         * nntp.el (nntp-open-connection): Set TCP keepalive option.
5802
5803 2011-05-09  Teodor Zlatanov  <tzz@lifelogs.com>
5804
5805         * registry.el (registry-full): Add convenience method.  Fix logic.
5806         (registry-insert): Use it.  Fix logic here too.
5807
5808         * gnus-registry.el (gnus-registry-insert): Add wrapper that calls
5809         `registry-prune' if `registry-full' returns t.
5810         (gnus-registry-handle-action)
5811         (gnus-registry-get-or-make-entry, gnus-registry-set-id-key)
5812         (gnus-registry-usage-test): Use it.
5813
5814 2011-05-07  Julien Danjou  <julien@danjou.info>
5815
5816         * shr.el (shr-link): Make shr-link inherit from link by default.
5817
5818 2011-05-06  Teodor Zlatanov  <tzz@lifelogs.com>
5819
5820         * shr.el (shr-urlify, shr-link): Fix shr-link face.
5821
5822 2011-05-05  Teodor Zlatanov  <tzz@lifelogs.com>
5823
5824         * shr.el (shr-urlify, shr-link): Still broken but at least doesn't
5825         error out because the face is not a list.
5826
5827 2011-05-05  Glenn Morris  <rgm@gnu.org>
5828
5829         * proto-stream.el (gnutls-negotiate): Fix declarations.
5830
5831         * gnus-start.el (gnus-propagate-marks): Declare.
5832
5833 2011-05-04  Teodor Zlatanov  <tzz@lifelogs.com>
5834
5835         * registry.el (registry-reindex): Fix percentage message.
5836
5837         * proto-stream.el (network-stream-open-starttls): Adjust to call
5838         `gnutls-negotiate' with :process and :hostname arguments.
5839
5840 2011-05-03  Teodor Zlatanov  <tzz@lifelogs.com>
5841
5842         * shr.el: Add shr-link face for links.
5843         (shr-urlify): Use it.
5844
5845         * registry.el (registry-insert): Make error message more helpful.
5846
5847 2011-05-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5848
5849         * gnus-html.el (gnus-html-schedule-image-fetching):
5850         Use url-queue-retrieve, if it exists.
5851
5852         * shr.el (shr-tag-img): Ditto.
5853
5854         * gnus.el: Autoload more gnus-agent functions.
5855
5856         * gnus-art.el (gnus-request-article-this-buffer): Store articles in the
5857         agent if we haven't already (bug#8502).
5858
5859         * gnus-async.el (gnus-async-article-callback): Put prefetched articles
5860         into the Agent, too.
5861
5862         * gnus-agent.el (gnus-agent-store-article): New function.
5863
5864         * nnheader.el (nnheader-insert-buffer-substring): Rename from nntp-
5865         and moved from that file for reuse.
5866
5867         * pop3.el (pop3-open-server): Error messages are "-ERR".
5868
5869 2011-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5870
5871         * pop3.el (pop3-open-server): Upgrade opportunistically to STARTTLS.
5872         (open-tls-stream): Remove superfluous tls/starttls autoloads.
5873
5874 2011-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
5875
5876         * gnus.el: No Gnus v0.17 is released.
5877
5878 2011-05-01  Stefan Monnier  <monnier@iro.umontreal.ca>
5879
5880         * gnus-sum.el (gnus-summary-next-article): Don't bug out if the summary
5881         buffer has moved to a different frame.
5882
5883 2011-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5884
5885         * nnimap.el (nnimap-request-article): Use nntp-insert-buffer-substring
5886         to get the conversion from unibyte to multibyte buffers to work on
5887         Emacs 22.
5888
5889         * nntp.el (nntp-request-article): Slight clean-up.
5890
5891 2011-04-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5892
5893         * shr.el (shr-strike-through): New face.
5894         (shr-tag-s): Use it to provide <s> support.
5895         (shr-tag-s): Remove duplicate definition.
5896
5897 2011-04-25  Teodor Zlatanov  <tzz@lifelogs.com>
5898
5899         * gnus-registry.el (gnus-registry-ignore-group-p): Don't call
5900         `gnus-parameter-registry-ignore' if the *Group* buffer doesn't exist.
5901
5902 2011-04-24  Teodor Zlatanov  <tzz@lifelogs.com>
5903
5904         * proto-stream.el (proto-stream-open-starttls): Give host parameter to
5905         `gnutls-negotiate'.
5906         (gnutls-negotiate): Adjust `gnutls-negotiate' declaration.
5907
5908 2011-04-23  Glenn Morris  <rgm@gnu.org>
5909
5910         * gnus-sum.el (gnus-extra-headers): Bump :version.
5911
5912 2011-04-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5913
5914         * shr.el (shr-tag-sup): New function.
5915         (shr-tag-sub): Ditto.
5916
5917 2011-04-22  Teodor Zlatanov  <tzz@lifelogs.com>
5918
5919         * gnus-registry.el (gnus-registry-ignore-group-p): Test specifically
5920         for the case where `gnus-registry-ignored-groups' is a list of lists,
5921         and don't call `gnus-parameter-registry-ignore' otherwise.
5922
5923 2011-04-21  Teodor Zlatanov  <tzz@lifelogs.com>
5924
5925         * nnimap.el (nnimap-user): New backend variable.
5926         (nnimap-open-connection-1): Use it.
5927         (nnimap-credentials): Accept user parameter so it's explicit what user
5928         name is desired.
5929
5930         * gnus-sum.el (gnus-extra-headers): Add Keywords, Cc, and Gcc to
5931         default.
5932
5933         * gnus.el (gnus-registry-ignored-groups): Provide default in gnus.el,
5934         not gnus-registry.el.
5935
5936         * gnus-registry.el: Mention in comments how to modify
5937         `gnus-extra-headers' for proper recipient tracking and that it may
5938         already have To and Cc recently, which it does as of this commit.
5939         (gnus-registry-ignored-groups): Remove defcustom.
5940         Explain why in comments.
5941         (gnus-registry-action): Fix data-header reference to use the extra
5942         headers.  Explain in package commentary how to add To and Cc headers to
5943         the gnus-extra-headers.
5944         (gnus-registry-ignored-groups): Adjust defaults to match the parameter.
5945         (gnus-registry-ignore-group-p): Adjust to take either a group/topic
5946         parameter list or a string list in `gnus-registry-ignored-groups'.
5947         Fix logic error.
5948
5949 2011-04-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5950
5951         * shr.el (shr-expand-url): Protect against null urls.
5952
5953 2011-04-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5954
5955         * shr.el (shr-base): New binding.
5956         (shr-tag-base): Keep track of <base>.
5957         (shr-expand-url): New function used throughout.
5958
5959 2011-04-20  Teodor Zlatanov  <tzz@lifelogs.com>
5960
5961         * gnus-registry.el
5962         (gnus-registry--split-fancy-with-parent-internal): Fix loop bugs.
5963         (gnus-registry-ignored-groups): New variable.
5964         (gnus-registry-ignore-group-p): Use it.
5965         (gnus-registry-handle-action): Use `gnus-registry-ignore-group-p' and
5966         set the destination group to nil (same as delete) if it's ignored.
5967
5968 2011-04-20  David Engster  <dengste@eml.cc>
5969
5970         * tests/gnustest-nntp.el: New file for simple NNTP testing.
5971
5972         * Makefile.in (test-nntp): New rule.
5973         (check): Add it.
5974         (test-registry): Change '$(EMACS_COMP)' to '$(EMACS) $(FLAGS)'.
5975
5976 2011-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
5977
5978         * gnus-registry.el (gnus-registry-action)
5979         (gnus-registry-fetch-header-fast):
5980         Don't use mail-header that looks an internal function of mailheader.el.
5981
5982 2011-04-19  Glenn Morris  <rgm@gnu.org>
5983
5984         * time-date.el (time-to-days): Remove unused local variables.
5985
5986 2011-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
5987
5988         * gnus-registry.el: Eliminate cl functions.
5989         (gnus-registry-sort-addresses): New function that replaces mapcan.
5990         (gnus-registry-action, gnus-registry-spool-action)
5991         (gnus-registry-split-fancy-with-parent)
5992         (gnus-registry-fetch-recipients-fast): Use it.
5993         (gnus-registry-import-eld): Replace delete* with dolist + delq.
5994
5995         * registry.el (initialize-instance, registry-lookup)
5996         (registry-lookup-breaks-before-lexbind, registry-lookup-secondary)
5997         (registry-lookup-secondary-value, registry-search, registry-delete)
5998         (registry-insert, registry-reindex, registry-size, registry-prune):
5999         Use eval-and-compile.
6000
6001 2011-04-16  Teodor Zlatanov  <tzz@lifelogs.com>
6002
6003         * registry.el (registry-reindex): New method to recreate the secondary
6004         registry indices.
6005
6006         * gnus-registry.el (gnus-registry-fixup-registry): Use it if the
6007         tracked field changes.
6008         (gnus-registry-unfollowed-addresses, gnus-registry-track-extra)
6009         (gnus-registry-action, gnus-registry-spool-action)
6010         (gnus-registry-handle-action)
6011         (gnus-registry--split-fancy-with-parent-internal)
6012         (gnus-registry-split-fancy-with-parent)
6013         (gnus-registry-register-message-ids): Add recipient tracking on spool,
6014         move, and delete actions, and for fancy splitting with parent.
6015         (gnus-registry-extract-addresses)
6016         (gnus-registry-fetch-recipients-fast)
6017         (gnus-registry-fetch-header-fast): Convenience functions.
6018         (gnus-registry-misc-test): ERT test of
6019         `gnus-registry-extract-addresses'.
6020
6021 2011-04-15  Teodor Zlatanov  <tzz@lifelogs.com>
6022
6023         * gnus-registry.el (gnus-registry--split-fancy-with-parent-internal):
6024         Track by subject first, then sender.
6025
6026 2011-04-15  Stefan Monnier  <monnier@iro.umontreal.ca>
6027
6028         * message.el (message-bogus-system-names): Replace ^...$ => \`...\'.
6029
6030         * gnus.el (gnus-splash-svg-color-symbols): Don't use insert-file from
6031         Lisp.
6032
6033         * gnus-draft.el (gnus-draft-setup): New arg `dont-pop'.
6034         (gnus-draft-send): Use it to avoid popping
6035         up frames from gnus-group-send-queue.
6036
6037 2011-04-14  Teodor Zlatanov  <tzz@lifelogs.com>
6038
6039         * gnus-registry.el: Updated gnus-registry docs.
6040
6041 2011-04-12  Teodor Zlatanov  <tzz@lifelogs.com>
6042
6043         * gnus-registry.el (gnus-registry--split-fancy-with-parent-internal):
6044         Fix logic bug.
6045         (gnus-registry-post-process-groups): Fix logging of no results and
6046         quote sender and subject.
6047
6048 2011-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6049
6050         * proto-stream.el (proto-stream-open-starttls): Only do opportunistic
6051         STARTTLS upgrades if we have built-in gnutls support.  Upgrades via
6052         gnutls-cli are too slow to be done opportunistically.
6053
6054         * gnus-start.el (gnus-get-unread-articles): Slight cleanup.
6055         (gnus-read-active-for-groups): Don't try to finish getting stuff where
6056         we had no early-data returned.
6057         (gnus-get-unread-articles): Add a sanity check so that we don't issue
6058         two async commands to the same server at the same time.
6059
6060 2011-04-12  Stig Sandbeck Mathisen  <ssm@fnord.no>  (tiny change)
6061
6062         * gnus-sum.el (gnus-summary-select-article-buffer): Doc fix.
6063
6064 2011-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6065
6066         * gnus-registry.el (gnus-registry-remake-db): Put the warning on a
6067         "warning" level.
6068
6069         * mm-url.el (mm-url-package-name): Remove to ease third-party reuse.
6070         (mm-url-insert-file-contents): Don't set the package names.
6071
6072 2011-04-11  Teodor Zlatanov  <tzz@lifelogs.com>
6073
6074         * gnus-registry.el (gnus-registry-action): Remove properties and
6075         simplify subject in `gnus-registry-handle-action'.
6076         (gnus-registry-spool-action): Get subject and sender from message if
6077         they are not passed in.
6078         (gnus-registry-handle-action): Remove properties and simplify subject
6079         consistently.
6080
6081 2011-04-11  Stefan Monnier  <monnier@iro.umontreal.ca>
6082
6083         * registry.el: Require CL before using defmacro*.
6084
6085 2011-04-11  Katsumi Yamaoka  <yamaoka@jpl.org>
6086
6087         * gnus-art.el (article-treat-date): Assume that
6088         gnus-article-date-headers may be a group parameter.
6089
6090 2011-04-07  Teodor Zlatanov  <tzz@lifelogs.com>
6091
6092         * gnus-registry.el (gnus-registry-handle-action): More debugging.
6093
6094         * gnus-start.el (gnus-gnus-to-newsrc-format): Add a way to run
6095         interactively so the newsrc file can contain foreign groups too.
6096         Useful for debugging but not much for users.
6097
6098 2011-04-07  David Engster  <dengste@eml.cc>
6099
6100         * registry.el (registry-usage-test): Only do
6101         `registry-lookup-breaks-before-lexbind' testing for Emacs24 with
6102         lexical binding.
6103
6104 2011-04-07  David Engster  <dengste@eml.cc>
6105
6106         * Makefile.in (check, test-registry): New rules for test-suite.
6107
6108 2011-04-06  David Engster  <dengste@eml.cc>
6109
6110         * registry.el, gnus-registry.el: Use `ignore-errors' instead of third
6111         argument NOERROR for `require', since XEmacs 21.4 does not support it.
6112
6113 2011-04-06  David Engster  <dengste@eml.cc>
6114
6115         * registry.el (initialize-instance): Change :after to :AFTER to be
6116         compatible with old EIEIO version in XEmacs.
6117
6118 2011-04-06  Teodor Zlatanov  <tzz@lifelogs.com>
6119
6120         * gnus-registry.el (gnus-registry-post-process-groups)
6121         (gnus-registry--split-fancy-with-parent-internal): Fix splitting bugs
6122         and provide better messaging.
6123
6124 2011-04-06  David Engster  <dengste@eml.cc>
6125
6126         * Makefile.in (fail-on-warning): New rule to compile with warnings as
6127         errors.
6128
6129         * dgnushack.el (dgnushack-compile-error-on-warn): New function to call
6130         dgnushack-compile with error-on-warn enabled, and to signal an error if
6131         clean compilation failed.
6132         (dgnushack-compile): New argument 'error-on-warn'.  If non-nil, compile
6133         with `byte-compile-error-on-warn'.  Return nil if errors occured.
6134
6135 2011-04-06  Teodor Zlatanov  <tzz@lifelogs.com>
6136
6137         * gnus-registry.el: Don't use ERT if it's not available.  Load it
6138         unconditionally anyway, discarding errors.
6139         (gnus-registry-delete-entries): New convenience function.
6140         (gnus-registry-import-eld): Import from old .eld registry.
6141
6142         * registry.el: Don't use ERT if it's not available.  Load it
6143         unconditionally anyway, discarding errors.
6144
6145         * proto-stream.el (gnutls-negotiate): Revert inadvertent commit of the
6146         version from the Claudio Bley GnuTLS patch (extra optional parameters
6147         and host name).
6148
6149 2011-04-05  Teodor Zlatanov  <tzz@lifelogs.com>
6150
6151         * gnus-registry.el (gnus-registry-fixup-registry): New function to
6152         fixup the parameters that can be customized by the user between
6153         save/read cycles.
6154         (gnus-registry-read): Use it.
6155         (gnus-registry-make-db): Use it.
6156         (gnus-registry-spool-action, gnus-registry-handle-action):
6157         Fix messaging.
6158         (gnus-registry--split-fancy-with-parent-internal): Fix loop.
6159         Map references to actual group names with sender and subject tracking.
6160         (gnus-registry-post-process-groups): Use `cond' for better messaging.
6161         (gnus-registry-usage-test): Add subject lookup test.
6162
6163         * registry.el (registry-db, initialize-instance): Set up constructor
6164         instead of :initform arguments for the sake of older Emacsen.
6165         (registry-lookup-breaks-before-lexbind): New method to demonstrate
6166         pre-lexbind merge bug.
6167         (registry-usage-test): Use it.
6168         (initialize-instance, registry-db): Move the non-function initforms
6169         back to the class definition.
6170
6171 2011-04-03  Teodor Zlatanov  <tzz@lifelogs.com>
6172
6173         * registry.el: New library to manage gnus-registry-style data.
6174
6175         * gnus-registry.el: Use it (major rewrite).
6176
6177         * nnregistry.el: Use it.
6178
6179         * spam.el: Use it.
6180
6181 2011-04-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6182
6183         * gnus-sum.el (gnus-update-marks): Reinstate the code to not alter
6184         marks on non-selected articles.
6185
6186 2011-04-02  Chong Yidong  <cyd@stupidchicken.com>
6187
6188         * nnimap.el (nnimap-open-connection-1): Pass explicit :end-of-command
6189         parameter to open-protocol-stream.
6190
6191 2011-04-01  Julien Danjou  <julien@danjou.info>
6192
6193         * mm-view.el (mm-display-inline-fontify): Do not fontify with
6194         fundamental-mode.
6195
6196 2011-04-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6197
6198         * gnus-start.el (gnus-get-unread-articles): Don't try to contact denied
6199         servers.
6200
6201 2011-03-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6202
6203         * gnus-sum.el (gnus-update-marks): Revert intersection change, which
6204         made marks not propagate, again.
6205
6206 2011-03-30  Chong Yidong  <cyd@stupidchicken.com>
6207
6208         * proto-stream.el (open-protocol-stream): Bring back `network' type.
6209         Make this the default type.
6210         (proto-stream-open-plain): Rename from proto-stream-open-default.
6211         (open-protocol-stream, proto-stream-open-starttls)
6212         (proto-stream-open-tls, proto-stream-open-shell): Replace `default'
6213         with `plain'.
6214
6215         * nnimap.el (nnimap-stream, nnimap-open-connection-1): Accept `network'
6216         value.
6217
6218         * nntp.el (nntp-open-connection-function): Document the fact that some
6219         values are not functions but are instead handled specially.
6220         Recognize nntp-open-plain-stream value.
6221         (nntp-open-connection): Recognize that value.
6222
6223 2011-03-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6224
6225         * dgnushack.el: Only do the defcustom compilation thing on XEmacs,
6226         where it seems to be needed.
6227
6228 2011-03-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6229
6230         * gssapi.el (open-gssapi-stream): Remove the last mentions of the IMAP
6231         stuff.
6232
6233         * gnus-score.el (gnus-score-string): Fix calling convention of
6234         `gnus-simplify-buffer-fuzzy' after last patches.
6235
6236         * gnus-sum.el (gnus-update-marks): Don't send any marks updates to the
6237         server for articles we didn't get any headers for.  This is a sanity
6238         check.
6239
6240 2011-03-29  Michael Welsh Duggan  <md5i@md5i.com>
6241
6242         * nnimap.el (nnimap-open-connection-1): Is the login responds with a
6243         new CAPABILITY, use it.
6244
6245 2011-03-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6246
6247         * gnus-agent.el (gnus-agent-fetch-headers): Don't message if we're not
6248         downloading anything.
6249
6250         * gnus.el (gnus-splash-svg-color-symbols): Remove superfluous `and'.
6251
6252 2011-03-29  Adam Sjøgren  <asjo@koldfront.dk>
6253
6254         * gnus.el (gnus-group-startup-message): Prefer svg file and replace
6255         colors.
6256         (gnus-splash-svg-color-symbols): New function.
6257
6258 2011-03-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6259
6260         * gnus-sum.el (gnus-simplify-buffer-fuzzy): Take the regexp explicitly
6261         instead of using the global gnus-simplify-subject-fuzzy-regexp.
6262         (gnus-simplify-subject-fuzzy): Use the local
6263         gnus-simplify-subject-fuzzy-regex instead of the global one.
6264         This makes using this variable in group parameters work.
6265
6266 2011-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
6267
6268         * gnus-registry.el (gnus-registry-unfollowed-groups):
6269         Add "archive:sent" to the unfollowed group regex (for the recent Gnus
6270         archive:sent-YYYY-MM-DD groups).
6271         (gnus-registry-split-fancy-with-parent): Bail out early in sender
6272         tracking if there are more than `gnus-registry-max-track-groups'
6273         matches.
6274
6275 2011-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
6276
6277         * message.el (message--yank-original-internal): New function to do the
6278         insertion cleanly inside eval in `message-yank-original'.
6279         (message-yank-original): Use it.
6280
6281 2011-03-29  Julien Danjou  <julien@danjou.info>
6282
6283         * mm-view.el (mm-display-inline-fontify): Use `set-normal-mode' with
6284         local variables disabled rather than `normal-mode'.
6285
6286 2011-03-28  Brian T. Sniffen  <bsniffen@akamai.com>  (tiny change)
6287
6288         * imap.el (imap-shell-open, imap-process-connection-type):
6289         Use imap-process-connection-type for 'shell' streams as well as
6290         Kerberos, SSL, other subprocesses.
6291
6292 2011-03-26  Chong Yidong  <cyd@stupidchicken.com>
6293
6294         * proto-stream.el: Changes preparatory to merging open-protocol-stream
6295         with open-network-stream.
6296         (proto-stream-always-use-starttls): Option removed.
6297         (open-protocol-stream): Return a process object by default.  Provide a
6298         new parameter :return-list specifying a list-type return value, which
6299         now has the form (PROP . PLIST) instead of a fixed-length list.  Change
6300         :type `network' to `try-starttls', and `network-only' to `default'.
6301         Make `default' the default, for compatibility with open-network-stream.
6302         Handle the no-parameter case exactly as open-network-stream, with no
6303         additional stream processing.  Search plists using plist-get.
6304         Explicitly add :end-of-commend parameter if it is missing.
6305         (proto-stream-open-default): Rename from
6306         proto-stream-open-network-only.  Return 'default as the type.
6307         (proto-stream-open-starttls): Rename from proto-stream-open-network.
6308         Use plist-get.  Don't return `tls' as the type if STARTTLS negotiation
6309         failed.  Always return a list with a (possibly dead) process as the
6310         first element, for compatibility with open-network-stream.
6311         (proto-stream-open-tls): Use plist-get.  Always return a list.
6312         (proto-stream-open-shell): Return `default' as connection type.
6313         (proto-stream-capability-open): Use plist-get.
6314         (proto-stream-eoc): Function deleted.
6315
6316         * nnimap.el (nnimap-stream, nnimap-open-connection)
6317         (nnimap-open-connection-1): Handle renaming of :type parameter for
6318         open-protocol-stream.
6319         (nnimap-open-connection-1): Pass a :return-list parameter
6320         open-protocol-stream to obtain a list return value.  Parse this list
6321         using plist-get.
6322
6323         * nntp.el (nntp-open-connection): Handle renaming of :type parameter
6324         for open-protocol-stream.  Accept open-protocol-stream return value
6325         that is a subprocess object instead of a list.  Handle the case of a
6326         dead returned process.
6327
6328 2011-03-25  Teodor Zlatanov  <tzz@lifelogs.com>
6329
6330         * mm-util.el (mm-handle-filename): Move to mm-decode.el (bug#8330).
6331
6332         * mm-decode.el (mm-handle-filename): Move from mm-util.el (bug#8330).
6333
6334 2011-03-21  Julien Danjou  <julien@danjou.info>
6335
6336         * mm-view.el (mm-display-inline-fontify): Make mode optional, and call
6337         normal-mode if not set.  Set temp buffer unmodified to avoid kill-buffer
6338         query.
6339         (mm-inline-text): Render normal text with fontification whenever
6340         possible.
6341
6342         * gnus-sum.el (gnus-summary-save-parts-1):
6343         * gnus-art.el (gnus-article-browse-html-save-cid-content)
6344         (gnus-article-browse-html-parts, gnus-mime-delete-part)
6345         (gnus-mime-copy-part, gnus-mime-inline-part, gnus-insert-mime-button):
6346         Use `mm-handle-filename'.
6347
6348         * mm-util.el (mm-handle-filename): New function, return the filename of
6349         an handle.
6350
6351 2011-03-18  Julien Danjou  <julien@danjou.info>
6352
6353         * gnus-util.el (gnus-buffer-live-p): Simplify gnus-buffer-live-p.
6354         (gnus-buffer-live-p): Check that buffer is not nil.
6355
6356 2011-03-17  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
6357
6358         * gnus.el: No Gnus v0.15 is released.
6359
6360 2011-03-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6361
6362         * time-date.el (format-seconds): Use assoc instead of assoc-string to
6363         avoid warning on XEmacs.
6364
6365         * dgnushack.el: Bind help-echo-owns-message to avoid a compiler warning
6366         on XEmacs.
6367
6368         * gnus-art.el: Require mouse, which the build bot seems to say is
6369         needed.
6370
6371         * dgnushack.el: Define url-retrieve-synchronously unless not defined.
6372
6373         * gravatar.el (gravatar-retrieve-synchronously): Use `url-retrieve' on
6374         XEmacs, since it doesn't have url-retrieve-synchronously.
6375
6376         * time-date.el (format-seconds): Use assoc instead of assoc-string,
6377         since assoc-string doesn't exist in XEmacs.
6378
6379 2011-03-17  Antoine Levitt  <antoine.levitt@gmail.com>
6380
6381         * gnus-group.el (gnus-group-list-ticked): New function.
6382         (gnus-group-make-menu-bar): Provide a menu entry for it.
6383         (gnus-group-list-map): Provide a binding for it.
6384
6385 2011-03-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6386
6387         * shr.el (shr-visit-file): New command.
6388
6389         * nnimap.el (nnimap-fetch-inbox): Rewrite slightly last patch.
6390
6391 2011-03-17  Bjørn Mork  <bjorn@mork.no>
6392
6393         * nnimap.el (nnimap-fetch-inbox): Don't download bodies on ver4-capable
6394         servers.
6395
6396 2011-03-16  Julien Danjou  <julien@danjou.info>
6397
6398         * mm-uu.el (mm-uu-dissect-text-parts): Only dissect handle that are
6399         inline.
6400
6401         * gnus-art.el (article-hide-list-identifiers):
6402         Use gnus-group-get-list-identifiers.
6403
6404         * gnus-sum.el (gnus-group-get-list-identifiers): New function.
6405         (gnus-summary-remove-list-identifiers):
6406         Use gnus-group-get-list-identifiers to get regexp.
6407         (gnus-select-newsgroup, gnus-summary-insert-subject)
6408         (gnus-summary-insert-articles):
6409         Call gnus-summary-remove-list-identifiers unconditionally.
6410
6411 2011-03-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6412
6413         * gnus-sum.el (gnus-articles-to-read): Revert back to old behavior if
6414         we're selecting a group with unread articles.
6415
6416         * nnimap.el (nnimap-open-connection-1): Allow `network-only', too.
6417
6418         * gssapi.el: New file separated out from imap.el to provide a general
6419         Kerberos 5 connection facility for Emacs.
6420
6421         * message.el (message-elide-ellipsis): Document the format spec
6422         ellipsis.
6423
6424 2011-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
6425
6426         * message.el (message-elide-region): Allow the ellipsis to say how many
6427         lines were removed.
6428
6429 2011-03-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6430
6431         * gnus-win.el (gnus-configure-frame): Protect against trying to restore
6432         window configurations containing buffers that are now dead.
6433
6434         * nnimap.el (nnimap-parse-flags): Remove all MODSEQ entries before
6435         parsing to avoid integer overflows.
6436         (nnimap-parse-flags): Simplify the last change.
6437         (nnimap-parse-flags): Store HIGHESTMODSEQ as a string, since it may be
6438         too large for 32-bit Emacsen.
6439
6440 2011-03-15  Stefan Monnier  <monnier@iro.umontreal.ca>
6441
6442         * auth-source.el (auth-source-netrc-create):
6443         * message.el (message-yank-original): Fix use of `case'.
6444
6445 2011-03-15  Nelson Ferreira  <nelson.ferreira@ieee.org>  (tiny change)
6446
6447         * gnus-art.el (gnus-article-treat-body-boundary): Fix boundary width on
6448         XEmacs, which was one character too wide.
6449
6450 2011-03-09  Antoine Levitt  <antoine.levitt@gmail.com>
6451
6452         * gnus-sum.el (gnus-articles-to-read): Use gnus-large-newsgroup as
6453         default number of articles to display.
6454         (gnus-articles-to-read): Use pretty names for prompt.
6455
6456 2011-03-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6457
6458         * gnus-int.el (gnus-open-server): Ditto.
6459
6460         * gnus-start.el (gnus-activate-group): Give a backtrace if
6461         debug-on-quit is set and the user hits `C-g'.
6462         (gnus-read-active-file): Ditto.
6463
6464         * gnus-group.el (gnus-group-read-ephemeral-group): Ditto.
6465
6466 2011-03-15  Teodor Zlatanov  <tzz@lifelogs.com>
6467
6468         * message.el (message-yank-original): Use cond instead of CL case.
6469
6470 2011-03-15  Stefan Monnier  <monnier@iro.umontreal.ca>
6471
6472         * auth-source.el (auth-source-netrc-create): Use usual format for the
6473         default in prompts.
6474
6475 2011-03-14  Katsumi Yamaoka  <yamaoka@jpl.org>
6476
6477         * lpath.el: Fbind read-char-choice for XEmacs.
6478
6479 2011-03-13  Teodor Zlatanov  <tzz@lifelogs.com>
6480
6481         * auth-source.el (auth-source-netrc-create): Show the default in the
6482         prompt when prompting for token creation.
6483
6484 2011-03-12  Teodor Zlatanov  <tzz@lifelogs.com>
6485
6486         * auth-source.el (auth-source-format-prompt): Always convert the value
6487         to a string to avoid evaluating non-string arguments.
6488         (auth-source-netrc-create): Offer default properly, not as initial
6489         content in `read-string'.
6490         (auth-source-netrc-saver): Use a cache keyed by file name and MD5 hash
6491         of line to determine if we've been run before.  If so, don't run again,
6492         but print a trivial message to indicate the cache was hit instead.
6493
6494 2011-03-11  Teodor Zlatanov  <tzz@lifelogs.com>
6495
6496         * gnus-sync.el (gnus-sync-install-hooks, gnus-sync-unload-hook):
6497         Don't install `gnus-sync-read' to any hooks by default.  It's buggy.
6498         The user will have to run `gnus-sync-read' manually and wait for Cloudy
6499         Gnus.
6500
6501 2011-03-11  Julien Danjou  <julien@danjou.info>
6502
6503         * mm-uu.el (mm-uu-type-alist): Add support for diff starting with "===
6504         modified file".
6505
6506 2011-03-09  Teodor Zlatanov  <tzz@lifelogs.com>
6507
6508         * auth-source.el (auth-source-read-char-choice): New function to read a
6509         character choice using `dropdown-list', `read-char-choice', or
6510         `read-char'.  It appends "[a/b/c] " to the prompt if the choices were
6511         '(?a ?b ?c).  The `dropdown-list' support is disabled for now.  Use
6512         `eval-when-compile' to load `dropdown-list'.  Remove `dropdown-list'.
6513         (auth-source-netrc-saver): Use it.
6514         (auth-source-pick-first-password): New convenience function.
6515
6516 2011-03-08  Teodor Zlatanov  <tzz@lifelogs.com>
6517
6518         * nnimap.el (nnimap-credentials): Keep the :save-function as the third
6519         parameter in the credentials.
6520         (nnimap-open-connection-1): Use it after a successful login.
6521         (nnimap-credentials): Add IMAP-specific user and password prompt.
6522
6523         * auth-source.el (auth-source-search): Add :require parameter, taking a
6524         list.  Document it and the :save-function return token.  Pass :require
6525         down.  Change the CREATED message from a warning to a debug statement.
6526         (auth-source-search-backends): Pass :require down.
6527         (auth-source-netrc-search): Pass :require down.
6528         (auth-source-netrc-parse): Use :require, if it's given, as a filter.
6529         Change save prompt to indicate all modifications saved here are
6530         deletions.
6531         (auth-source-netrc-create): Take user login name as default in user
6532         prompt.  Move all the save functionality to a lexically bound function
6533         under the :save-function token in the returned list.  Set up clearer
6534         default prompts for user, host, port, and secret.
6535         (auth-source-netrc-saver): New function, intended to be wrapped for
6536         :save-function.
6537
6538 2011-03-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6539
6540         * shr.el (shr-table-horizontal-line): Change the defaults for the table
6541         lines to be spaces instead.
6542
6543 2011-03-07  Julien Danjou  <julien@danjou.info>
6544
6545         * sieve-manage.el (sieve-sasl-auth): Create auth-info if not found.
6546         (sieve-sasl-auth): Check that auth-source-search did return something,
6547         or just return an empty string.
6548
6549 2011-03-05  Antoine Levitt  <antoine.levitt@gmail.com>
6550
6551         * gnus.el (gnus-interactive): Use read-directory-name.
6552
6553         * gnus-uu.el (gnus-uu-decode-uu-and-save)
6554         (gnus-uu-decode-unshar-and-save, gnus-uu-decode-save)
6555         (gnus-uu-decode-binhex, gnus-uu-decode-yenc)
6556         (gnus-uu-decode-save-view, gnus-uu-decode-postscript-and-save):
6557         Likewise.
6558
6559         * gnus-group.el (gnus-group-make-directory-group): Likewise.
6560
6561 2011-03-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6562
6563         * gnus-start.el (gnus-group-change-level): Allow putting foreign groups
6564         onto the list of killed groups, too.  This makes killed nnimap groups,
6565         for instance, more reliably not reappear.
6566
6567         * nnimap.el (nnimap-request-thread): Don't bug out when we can't find
6568         the parent.
6569
6570         * gnus-sum.el (gnus-update-read-articles): Fix typo.
6571
6572         * gnus.el (gnus-valid-select-methods): Mark nnimap as a backend that
6573         really have server-side marks.
6574
6575         * gnus-sum.el (gnus-propagate-marks): Change default back to nil again,
6576         since most backends do not usefully have server-side marks.
6577         (gnus-update-read-articles): Propagate marks to all backends that
6578         really have server-side marks.
6579
6580 2011-03-05  Antoine Levitt  <antoine.levitt@gmail.com>
6581
6582         * message.el (message-cite-reply-position, message-cite-style):
6583         New variables.
6584         (message-yank-original): Use the new citation styles.
6585
6586 2011-03-04  Daiki Ueno  <ueno@unixuser.org>
6587
6588         * message.el (message-options): Revert 22da67af (workaround for XEmacs
6589         buffer-local issue); don't mark it buffer-local when running under
6590         XEmacs.
6591
6592 2011-03-03  Tassilo Horn  <tassilo@member.fsf.org>
6593
6594         * nnimap.el (nnimap-parse-flags): Add a workaround for FETCH lines with
6595         numbers too big to be `read'.
6596
6597 2011-03-02  Teodor Zlatanov  <tzz@lifelogs.com>
6598
6599         * password-cache.el (password-in-cache-p): Add autoload.
6600
6601         * message.el (message-options): Make buffer-local two ways to attempt
6602         to fix a XEmacs bug.
6603
6604 2011-03-02  Julien Danjou  <julien@danjou.info>
6605
6606         * gnus-art.el (gnus-with-article-buffer): Fix buffer live check.
6607
6608 2011-03-01  Julien Danjou  <julien@danjou.info>
6609
6610         * gnus-art.el (list-identifier): Add list-identifier as a parameter
6611         group.
6612         (article-hide-list-identifiers): Use list-identifier group parameter.
6613
6614 2011-02-28  Julien Danjou  <julien@danjou.info>
6615
6616         * sieve.el (sieve-buffer-script-name): New local variable to store
6617         sieve script name.
6618         (sieve-edit-script): Store sieve script name.
6619         (sieve-upload): Use sieve script name when uploading.
6620         (sieve-upload): Use substitute-command-keys.
6621         (sieve-edit-script): Use substitute-command-keys.
6622         (sieve-refresh-scriptlist): Use substitute-command-keys.
6623         (sieve-manage-mode-map): Define keymap properly.
6624         (sieve-manage-mode): Do not set mode name manually, change mode-name to
6625         (sieve-refresh-scriptlist): Use substitute-command-keys."Sieve-manage".
6626         Remove commented code about cvs.
6627         (sieve-manage-quit): New function.
6628         (sieve-manage-mode-map): Bind 'q' to sieve-manage-quit.
6629
6630 2011-02-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6631
6632         * gnus-group.el (gnus-import-other-newsrc-file): New function.
6633
6634 2011-02-25  Teodor Zlatanov  <tzz@lifelogs.com>
6635
6636         * auth-source.el (auth-source-search): Cache empty result sets.
6637
6638         * password-cache.el (password-in-cache-p): Convenience function to
6639         check if a key is in the cache, even if the value is nil.
6640
6641         * auth-source.el (auth-source-save-behavior): New variable to replace
6642         `auth-source-never-create'.
6643         (auth-source-netrc-create): Use it.
6644         (auth-source-never-save): Remove.
6645
6646 2011-02-25  Lars Ingebrigtsen  <larsi@gnus.org>
6647
6648         * nnimap.el (nnimap-stream): Doc fix.
6649         (nnimap-open-connection-1): Reverse the order of the ports to that the
6650         prompted-for port is first.
6651
6652         * gnus-start.el (gnus-get-unread-articles): Don't clobber the async
6653         retrieval by the no-group selection.
6654
6655         * gnus-demon.el (gnus-demon-init): run-with-timer should be called with
6656         numerical parameters.
6657
6658 2011-02-25  Julien Danjou  <julien@danjou.info>
6659
6660         * gnus-gravatar.el: Use gnus-with-article-buffer.
6661
6662         * gnus-art.el (gnus-with-article-buffer): Check that the
6663         gnus-article-buffer is alive.
6664
6665 2011-02-24  Teodor Zlatanov  <tzz@lifelogs.com>
6666
6667         * auth-source.el (auth-source-creation-prompts): New variable to manage
6668         creation-time prompts.
6669         (auth-source-search): Document it.
6670         (auth-source-format-prompt): Add utility function.
6671         (auth-source-netrc-create): Don't default the user name to
6672         user-login-name.  Use `auth-source-creation-prompts' and some default
6673         prompts for user, host, port, and password (the default generic prompt
6674         remains ugly).
6675         (auth-source-never-save): Add customizable option to never save info.
6676         (auth-source-netrc-create): Use it and improve save prompts.  Fix help
6677         mode excursion.
6678
6679 2011-02-24  Katsumi Yamaoka  <yamaoka@jpl.org>
6680
6681         * auth-source.el (auth-source-netrc-create): Use `read-char' with no
6682         argument that XEmacs doesn't support.
6683
6684         * dgnushack.el (dgnushack-compile): Exclude color.el from being
6685         compiled for Emacsen having no `libxml-parse-html-region' support.
6686
6687         * gnus-xmas.el (gnus-xmas-define): Remove gnus-x-color-values.
6688
6689         * lpath.el: Bind buffer-save-without-query for XEmacs.
6690
6691 2011-02-23  Julien Danjou  <julien@danjou.info>
6692
6693         * gnus-art.el (article-make-date-line): Ignore errors if time is
6694         invalid and not convertible.
6695         (article-make-date-line): Only add lapsed time if time is not nil.
6696
6697 2011-02-23  Teodor Zlatanov  <tzz@lifelogs.com>
6698
6699         * auth-source.el (auth-source-netrc-create): Use `read-char' instead of
6700         `read-char-choice' for backwards compatibility.
6701         (auth-source-netrc-element-or-first): New function to DTRT for
6702         parameter extraction.
6703         (auth-source-netrc-create): Use it and fix multiple parameter print
6704         bug.  Use the default passed from above (given-default) or the
6705         built-in (user-login-name for :user).
6706
6707 2011-02-23  Lars Ingebrigtsen  <larsi@gnus.org>
6708
6709         * gnus-start.el (gnus-dribble-read-file):
6710         Set buffer-save-without-query, since we always want to save the dribble
6711         file, probably.
6712
6713         * nnmail.el (nnmail-article-group): Allow a final "" split to work on
6714         nnimap.
6715
6716         * gnus-sum.el (gnus-user-date-format-alist): Rename back again from
6717         -summary- since it's a user-visible variable.
6718
6719         * nnimap.el (nnimap-retrieve-group-data-early): Don't do QRESYNC the
6720         first time you use the new Gnus.
6721
6722 2011-02-22  Teodor Zlatanov  <tzz@lifelogs.com>
6723
6724         * auth-source.el: Don't load netrc.el.
6725         (auth-sources): Search ~/.netrc as well by default.
6726         (auth-source-debug): Add 'trivia option for extra output.
6727         (auth-source-do-trivia): Use it.
6728         (auth-source-search): Simplify logic to use
6729         `auth-source-search-backends'.  Use `auth-source-do-trivia' where
6730         appropriate.  Don't keep a running count at this level.  Layer :create
6731         and :delete options appropriately on the first and second passes.
6732         Don't track the backend with the search results.
6733         (auth-source-search-backends): New function to search a list of
6734         backends for a processed spec.
6735         (auth-source-netrc-parse): Cache all netrc files, making
6736         auth-source-netrc-cache an alist keyed by the file name and using the
6737         file mtime as the caching criterion.  Keep the obfuscated data secret
6738         with a lexical bind.
6739         (auth-source-netrc-search): Don't calculate the length of the results
6740         unnecessarily.
6741         (auth-source-search-backends): Fix bug.
6742         (auth-source-netrc-create): Rework prompts.
6743
6744 2011-02-22  Andrew Cohen  <cohen@andy.bu.edu>
6745
6746         * nnir.el (nnir-imap-search-arguments, nnir-imap-default-search-key):
6747         Lower case names of search constraints.
6748         (nnir-run-query): Cache and reuse search constraints for all imap
6749         servers.
6750
6751 2011-02-22  Lars Ingebrigtsen  <larsi@gnus.org>
6752
6753         * gnus-msg.el (gnus-inews-add-send-actions): Restore the winconf name
6754         after exit.
6755         (gnus-setup-message): Define missing variable from last checkin.
6756
6757         * gnus-sum.el (gnus-summary-show-article): When called with t as the
6758         value, show the raw article.
6759
6760 2011-02-22  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
6761
6762         * gnus.el: No Gnus v0.13 is released.
6763
6764 2011-02-21  Lars Ingebrigtsen  <larsi@gnus.org>
6765
6766         * nnimap.el (nnimap-open-connection-1): Revert last change, since
6767         auth-source now accepts numbers.
6768
6769         * auth-source.el (auth-source-netrc-parse): Accept a number as the port
6770         spec, too.
6771         (auth-source-ensure-strings): New function.
6772
6773         * gnus-art.el (gnus-article-update-date-headers): Doc fix.
6774         (gnus-article-setup-buffer): Always restart the date timer so that user
6775         changes to the frequency is respected.
6776
6777         * nnimap.el (nnimap-open-connection-1): auth-source expects strings as
6778         port numbers, so make sure it gets that if nnimap-server-port is
6779         explicit.
6780
6781 2011-02-21  Simon Josefsson  <simon@josefsson.org>
6782
6783         * nnimap.el (nnimap-inbox): Doc fix.
6784
6785 2011-02-21  Chong Yidong  <cyd@stupidchicken.com>
6786
6787         * color.el (color-name-to-rgb): Rename from color-rgb->normalize.
6788         Autoload.  Add optional arg FRAME, and pass it to color-values.
6789         (color-complement): Caller changed.  Doc fix.
6790         (color-gradient): Rewrite for better clarity and efficiency.
6791
6792 2011-02-20  Chong Yidong  <cyd@stupidchicken.com>
6793
6794         * shr-color.el (shr-color->hexadecimal): Use renamed function names
6795         color-rgb-to-hex, color-name-to-rgb, color-srgb-to-lab, and
6796         color-lab-to-srgb.
6797
6798 2011-02-20  Drew Adams  <drew.adams@oracle.com>
6799
6800         * color.el: First part of merge from hexrgb.el.
6801         (color-rgb-to-hex): Rename from color-rgb->hex.
6802         (color-rgb-to-hsv): Rename from color-rgb->hsv.  Force hue and
6803         saturation to zero if the value is too small.
6804         (color-rgb-to-hsl): Rename from color-rgb->hsl.
6805         (color-srgb-to-xyz): Rename from color-srgb->xyz.  Doc fix.
6806         (color-xyz-to-srgb): Rename from color-xyz->srgb.  Doc fix.
6807         (color-xyz-to-lab): Rename from color-xyz->lab.  Doc fix.
6808         (color-lab-to-xyz): Rename from color-lab->xyz.  Doc fix.
6809         (color-lab-to-srgb): Rename from color-lab->srgb.  Doc fix.
6810         (color-cie-de2000): Doc fix.
6811
6812 2011-02-21  Lars Ingebrigtsen  <larsi@gnus.org>
6813
6814         * nntp.el (nntp-finish-retrieve-group-infos): Add a kludge to use the
6815         given method as in the group name if we're using an extended method.
6816         (nntp-finish-retrieve-group-infos): Wait for the end of the LIST ACTIVE
6817         command, if we're using that, instead of waiting for the beginning.
6818
6819         * gnus-start.el (gnus-get-unread-articles): Extend the methods so that
6820         we're sure to get unique server names, and we don't output two async
6821         commands in the same buffer.  This fixes an NNTP hang for some users.
6822
6823 2011-02-21  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
6824
6825         * gnus.el: No Gnus v0.11 is released.
6826
6827 2011-02-21  Lars Ingebrigtsen  <larsi@gnus.org>
6828
6829         * gnus-sum.el (gnus-summary-next-article): Add a kludge to reselect the
6830         summary buffer before reading going to the next buffer.  This avoids
6831         putting the point in the group buffer if you `C-g' the command.
6832
6833         * auth-source.el (auth-source-netrc-parse): Add an in-memory netrc
6834         cache (for now) to make ~/.authinfo.gpg files usable.
6835
6836         * nnfolder.el (copyright-update): Define for the compiler.
6837
6838         * auth-source.el (auth-source-search): Fix unbound variable.
6839
6840 2011-02-19  Glenn Morris  <rgm@gnu.org>
6841
6842         * gnus.el (gnus-meta): Doc fix.
6843
6844 2011-02-19  Chong Yidong  <cyd@stupidchicken.com>
6845
6846         * nnfolder.el (nnfolder-save-buffer): Don't let-bind copyright-update,
6847         in case it's not yet loaded.
6848
6849 2011-02-20  Lars Ingebrigtsen  <larsi@gnus.org>
6850
6851         * nnimap.el (nnimap-wait-for-response): Ensure that we get the entire
6852         line we're waiting for.
6853
6854 2011-02-19  Darren Hoo  <darren.hoo@gmail.com>  (tiny change)
6855
6856         * gnus-art.el (gnus-article-next-page-1): Because customized mode-line
6857         face with line-width greater than zero will cause RET in gnus summary
6858         buffer to scroll down article page-wise because auto vscroll happens,
6859         it should be temporally disabled when doing a scroll-up.
6860
6861 2011-02-19  Lars Ingebrigtsen  <larsi@gnus.org>
6862
6863         * nnimap.el (nnimap-parse-copied-articles): Allow for "<foo> OK"
6864         outputs from the server.
6865
6866 2011-02-18  Antoine Levitt  <antoine.levitt@gmail.com>  (tiny change)
6867
6868         * gnus-art.el (gnus-article-prepare): Run gnus-article-prepare-hook
6869         later so that bbdb can hook in easier.
6870
6871 2011-02-18  Lars Ingebrigtsen  <larsi@gnus.org>
6872
6873         * auth-source.el (auth-source-search): Don't try to create credentials
6874         if the caller doesn't want that.
6875         (auth-source-search): If we don't find a match, don't bug out on
6876         non-bound variables.
6877         (auth-source-search): Only ask a single backend to create the
6878         credentials.
6879
6880         * nnimap.el (nnimap-log-command): Add a newline to the inhibited
6881         logging.
6882         (nnimap-credentials): Protect against auth-source-search returning nil.
6883         (nnimap-request-list): Protect against not being able to open the
6884         server.
6885
6886 2011-02-17  Lars Ingebrigtsen  <larsi@gnus.org>
6887
6888         * auth-source.el (auth-source-search): Do a two-phase search, one with
6889         no :create to get the responses from all backends.
6890
6891         * nnimap.el (nnimap-open-connection-1): Delete duplicate server names
6892         when getting credentials.
6893
6894         * gnus-util.el (gnus-delete-duplicates): New function.
6895
6896 2011-02-17  Teodor Zlatanov  <tzz@lifelogs.com>
6897
6898         * nnimap.el (nnimap-credentials): Instead of picking the first port as
6899         a creation default, pass the whole port list down.  It will be
6900         completed.
6901
6902         * auth-source.el (auth-source-search): Updated docs to talk about
6903         multiple creation choices.
6904         (auth-source-netrc-create): Accept a list as a value (from the search
6905         parameters) and do completion on that list.  Keep a separate netrc line
6906         with the password obscured for showing the user.
6907
6908         * nnimap.el (nnimap-open-connection-1): Make the `nnimap-address' the
6909         first choice to `auth-source-search' so it will be used for entry
6910         creation instead of the server's Gnus-specific name.
6911         (nnimap-credentials): Rely on the auth-source library to select which
6912         port is actually wanted in the new netrc entry, so don't override
6913         `auth-source-creation-defaults'.
6914
6915         * auth-source.el (auth-source-netrc-parse): Use :port instead of
6916         :protocol and accept a missing user, host, or port as a wildcard match.
6917         (auth-source-debug): Default to off.
6918
6919         (auth-source-netrc-search, auth-source-netrc-create)
6920         (auth-source-secrets-search, auth-source-secrets-create)
6921         (auth-source-user-or-password, auth-source-backend, auth-sources)
6922         (auth-source-backend-parse-parameters, auth-source-search): Use :port
6923         instead of :protocol.
6924
6925         * nnimap.el (nnimap-credentials): Pass a port default to
6926         `auth-source-search' in case an entry needs to be created.
6927         (nnimap-open-connection-1): Use :port instead of :protocol.
6928
6929 2011-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
6930
6931         * auth-source.el: Bind load-path when loading EIEIO from
6932         "gnus-fallback-lib/eieio"; don't pass more than two args, that XEmacs
6933         21.4 doesn't support, to `require'.
6934         (auth-source-secrets-search): Use mm-delete-duplicates instead of
6935         delete-dups that is not available in XEmacs 21.4.
6936
6937 2011-02-16  Raphael Kubo da Costa  <kubito@gmail.com>  (tiny change)
6938
6939         * auth-source.el: Correctly load EIEIO from "gnus-fallback-lib/eieio"
6940         as EIEIO must also be loaded when auth-source.el is being
6941         byte-compiled.
6942
6943 2011-02-16  Teodor Zlatanov  <tzz@lifelogs.com>
6944
6945         * gnus-fallback-lib/eieio/eieio.el: Copy from Emacs.
6946
6947         * gnus-fallback-lib/eieio/eieio-speedbar.el: Copy from Emacs.
6948
6949         * gnus-fallback-lib/eieio/eieio-opt.el: Copy from Emacs.
6950
6951         * gnus-fallback-lib/eieio/eieio-datadebug.el: Copy from Emacs.
6952
6953         * gnus-fallback-lib/eieio/eieio-custom.el: Copy from Emacs.
6954
6955         * gnus-fallback-lib/eieio/eieio-comp.el: Copy from Emacs.
6956
6957         * gnus-fallback-lib/eieio/eieio-base.el: Copy from Emacs.
6958
6959         * auth-source.el: Load EIEIO from "gnus-fallback-lib/eieio" if
6960         necessary.
6961
6962 2011-02-16  Lars Ingebrigtsen  <larsi@gnus.org>
6963
6964         * gnus-sum.el (gnus-propagate-marks): Change default to t again, since
6965         nil means that nnimap doesn't get updated.
6966
6967 2011-02-16  Teodor Zlatanov  <tzz@lifelogs.com>
6968
6969         * auth-source.el (auth-source-netrc-create): Return a synthetic search
6970         result when the user doesn't want to write to the file.
6971         (auth-source-netrc-search): Expect a synthetic result and proceed
6972         accordingly.
6973         (auth-source-cache-expiry): New variable to override
6974         `password-cache-expiry'.
6975         (auth-source-remember): Use it.
6976
6977         * nnimap.el (nnimap-credentials): Remove the `inhibit-create'
6978         parameter.  Create entry if necessary by using :create t.
6979         (nnimap-open-connection-1): Don't pass `inhibit-create'.
6980
6981 2011-02-15  Teodor Zlatanov  <tzz@lifelogs.com>
6982
6983         * auth-source.el (auth-source-debug): Enable by default and don't
6984         mention the obsolete `auth-source-hide-passwords'.
6985         (auth-source-do-warn): New function to debug unconditionally.
6986         (auth-source-do-debug): Use it.
6987         (auth-source-backend-parse): Use it for invalid `auth-sources' entries
6988         and for Secrets API entries when the secrets.el library is not
6989         available.
6990
6991 2011-02-14  Lars Ingebrigtsen  <larsi@gnus.org>
6992
6993         * gnus-sum.el (gnus-propagate-marks): Default to nil.
6994         (gnus-summary-exit): Kill the correct article buffer on exit from a
6995         `C-d' group.
6996
6997         * gnus-start.el (gnus-use-backend-marks): Removed, since it duplicates
6998         gnus-propagate-marks.
6999
7000         * gnus-sum.el (gnus-summary-exit-no-update): Restore the group conf
7001         before killing the buffers so that a non-full window conf gets handled
7002         correctly.
7003         (gnus-summary-exit): Ditto.
7004         (gnus-summary-read-group-1): Ditto.
7005
7006         * nntp.el (nntp-retrieve-group-data-early): Reinstate the two-part
7007         async code again so that we can debug it properly.
7008
7009         * message.el (message-reply): Take an optional switch-buffer parameter
7010         so that Gnus window confs are respected better.
7011
7012 2011-02-14  Teodor Zlatanov  <tzz@lifelogs.com>
7013
7014         * auth-source.el (auth-source-backend-parse-parameters): Don't rely on
7015         `plist-get' to accept non-list parameters (XEmacs issue).
7016         Fix docstring.
7017         (auth-source-secrets-search): Use `delete-dups', `append mapcar', and
7018         `butlast' instead of `remove-duplicates', `mapcan', and `subseq'.
7019         (auth-sources, auth-source-backend-parse, auth-source-secrets-search):
7020         Login collection is "Login" and not "login".
7021
7022 2011-02-14  Lars Ingebrigtsen  <larsi@gnus.org>
7023
7024         * gnus-art.el (article-update-date-lapsed): Don't bug out when updating
7025         multiple headers.
7026
7027         * nnimap.el (nnimap-inhibit-logging): New variable.
7028         (nnimap-log-command): Don't log login commands.
7029
7030         * auth-source.el (auth-source-netrc-search): The asserts seem to want
7031         to have more parameters.
7032
7033         * nnimap.el (nnimap-send-command): Mark the command time for each
7034         command, so that we don't get NOOPs stepping on our toes.
7035
7036         * gnus-art.el (article-date-ut): Get the date from the Date header on
7037         `t'.
7038
7039 2011-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
7040
7041         * auth-source.el (auth-source-search): Use copy-sequence instead of
7042         the cl.el copy-list.
7043
7044 2011-02-13  Teodor Zlatanov  <tzz@lifelogs.com>
7045
7046         * imap.el: Bring it back (revert
7047         84d800cd31de3064f0ed39617d725709a2f8f42f).
7048
7049 2011-02-13  Adam Sjøgren  <asjo@koldfront.dk>
7050
7051         * gnus-delay.el (gnus-delay-article) Fix number of seconds per day.
7052         Improve prompt.
7053
7054 2011-02-13  Lars Ingebrigtsen  <larsi@gnus.org>
7055
7056         * gnus-art.el (gnus-article-mode-line-format): Remove the article
7057         washing status from the default format.  It isn't very informative.
7058
7059 2011-02-13  Tassilo Horn  <tassilo@member.fsf.org>  (tiny change)
7060
7061         * nnimap.el (nnimap-request-accept-article, nnimap-process-quirk):
7062         Fix Gcc processing on imap.
7063
7064 2011-02-13  Teodor Zlatanov  <tzz@lifelogs.com>
7065
7066         * imap.el: Remove file.  All the functionality is in nnimap.el.
7067
7068 2011-02-10  Stefan Monnier  <monnier@iro.umontreal.ca>
7069
7070         * message.el (message-bury): Don't pop up a new window when selected
7071         window is dedicated.
7072
7073 2011-02-10  Antoine Levitt  <antoine.levitt@gmail.com>  (tiny change)
7074
7075         * gnus-sum.el (gnus-summary-save-parts): Use read-directory-name.
7076
7077 2011-02-10  Teodor Zlatanov  <tzz@lifelogs.com>
7078
7079         * sieve-manage.el: Autoload `auth-source-search'.
7080         (sieve-sasl-auth): Use it.
7081
7082 2011-02-09  Teodor Zlatanov  <tzz@lifelogs.com>
7083
7084         * nnimap.el: Autoload `auth-source-forget+'.
7085         (nnimap-open-connection-1): Use it if the connection fails.
7086
7087         * auth-source.el: Require `password-cache'.
7088         (auth-source-hide-passwords, auth-source-cache): Remove and mark
7089         obsolete.
7090         (auth-source-magic): Marker for `password-cache' keys.
7091         (auth-source-do-cache): Update docstring.
7092         (auth-source-search): Use and check cache.
7093         (auth-source-forget-all-cached, auth-source-remember)
7094         (auth-source-recall, auth-source-forget, auth-source-forget+)
7095         (auth-source-specmatchp): Caching support functions.
7096         (auth-source-forget-user-or-password, auth-source-forget-all-cached):
7097         Remove and obsolete.
7098         (auth-source-user-or-password): Remove caching to further discourage
7099         using it.  Always hide passwords.
7100
7101         * password-cache.el (password-cache-remove): Accept secrets that are
7102         not strings.
7103
7104 2011-02-09  Lars Ingebrigtsen  <larsi@gnus.org>
7105
7106         * nntp.el (nntp-retrieve-group-data-early-disabled): Disable the async
7107         code for now, since it doesn't work for all users.
7108
7109 2011-02-09  Julien Danjou  <julien@danjou.info>
7110
7111         * message.el (message-options): Make message-options really buffer
7112         local.
7113
7114 2011-02-08  Teodor Zlatanov  <tzz@lifelogs.com>
7115
7116         * mail-source.el: Autoload `auth-source-search'.
7117         (mail-source-keyword-map): Note order matters.
7118         (mail-source-set-1): Get all the mail-source source values and
7119         defaults and search auth-source on those if needed.  This can all
7120         probably be simplified.
7121
7122         * nnimap.el: Autoload `auth-source-search'.
7123         (nnimap-credentials): Use it.
7124         (nnimap-open-connection-1): Ask for the virtual server and physical
7125         address in one shot.
7126
7127         * nntp.el: Autoload `auth-source-search'.
7128         (nntp-send-authinfo): Use it.  Note TODO.
7129
7130 2011-02-08  Julien Danjou  <julien@danjou.info>
7131
7132         * shr.el (shr-tag-body): Add support for text attribute in body
7133         markups.
7134
7135         * message.el (message-options): Make message-options a local variable.
7136
7137 2011-02-07  Teodor Zlatanov  <tzz@lifelogs.com>
7138
7139         * auth-source.el (auth-source-secrets-search)
7140         (auth-source-user-or-password): Use `append' instead of `nconc'.
7141         (auth-source-user-or-password): Build return list better and protect
7142         against nil :secret.
7143
7144 2011-02-07  Lars Ingebrigtsen  <larsi@gnus.org>
7145
7146         * nnimap.el (nnimap-update-info): Refactor slightly.
7147         (nnimap-update-info): Tell Gnus whether there are any \Recent messages.
7148         (nnimap-update-info): Clean up slightly.
7149         (nnimap-quirk): Add quirk for Gmail IMAP which bugs out on NUL
7150         characters.
7151         (nnimap-process-quirk): Rename function to avoid collision.
7152         (nnimap-update-info): Fix macrology bug-out.
7153         (nnimap-update-info): Simplify split history test.
7154
7155 2011-02-06  Michael Albinus  <michael.albinus@gmx.de>
7156
7157         * auth-source.el (top): Require 'eieio unconditionally.
7158         Autoload `secrets-get-attributes' instead of `secrets-get-attribute'.
7159         (auth-source-secrets-search): Limit search when `max' is greater than
7160         number of results.
7161
7162 2011-02-06  Lars Ingebrigtsen  <larsi@gnus.org>
7163
7164         * nntp.el (nntp-finish-retrieve-group-infos): Protect against the first
7165         part not returning any data.
7166
7167         * proto-stream.el (open-protocol-stream): Document the return value.
7168
7169 2011-02-06  Teodor Zlatanov  <tzz@lifelogs.com>
7170
7171         * auth-source.el (auth-source-secrets-search): Add examples.
7172
7173 2011-02-06  Julien Danjou  <julien@danjou.info>
7174
7175         * message.el (message-setup-1): Handle message-generate-headers-first
7176         set to t.
7177
7178 2011-02-06  Teodor Zlatanov  <tzz@lifelogs.com>
7179
7180         * auth-source.el (auth-sources): Allow for simpler defaults for Secrets
7181         API with a string "secrets:collection-name" and with 'default.
7182         (auth-source-backend-parse): Parse "secrets:collection-name" and
7183         'default.  Recurse on parses instead of repeating code.  Use the
7184         Secrets API is the source is not nil and 'ignore otherwise.  Emit a
7185         message when ignoring a source.
7186         (auth-source-search): List ignored search keys at the top level.
7187         (auth-source-netrc-create): Use `case' instead of `cond'.
7188         (auth-source-secrets-search): Created with TODOs.
7189         (auth-source-secrets-create): Created with TODOs.
7190         (auth-source-retrieve, auth-source-create, auth-source-delete)
7191         (auth-source-protocol-defaults, auth-source-user-or-password-imap)
7192         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
7193         (auth-source-user-or-password-sftp)
7194         (auth-source-user-or-password-smtp): Remove.
7195         (auth-source-user-or-password): Deprecated and modified to be a wrapper
7196         around `auth-source-search'.  Not tested thoroughly.
7197
7198 2011-02-04  Teodor Zlatanov  <tzz@lifelogs.com>
7199
7200         * auth-source.el: Bring in assoc and eioeio libraries.
7201         (secrets-enabled): New variable to track the status of the Secrets API.
7202         (auth-source-backend): New EIOEIO class to represent a backend.
7203         (auth-source-creation-defaults): New variable to set prompt defaults
7204         during token creation (see the `auth-source-search' docstring for
7205         details).
7206         (auth-sources): Simplify to allow a simple string as a netrc backend
7207         spec.
7208         (auth-source-backend-parse): Parse a backend from an `auth-sources' spec.
7209         (auth-source-backend-parse-parameters): Fill in the backend parameters.
7210         (auth-source-search): Main auth-source API entry point.
7211         (auth-source-delete): Wrapper around `auth-source-search' for deletion.
7212         (auth-source-search-collection): Helper function for searching.
7213         (auth-source-netrc-parse, auth-source-netrc-normalize)
7214         (auth-source-netrc-search, auth-source-netrc-create): Netrc backend.
7215         Supports search, create, and delete.
7216         (auth-source-secrets-search, auth-source-secrets-create): Secrets API
7217         backend stubs.
7218         (auth-source-user-or-password): Call `auth-source-search' but it's not
7219         ready yet.
7220
7221 2011-02-04  Lars Ingebrigtsen  <larsi@gnus.org>
7222
7223         * message.el (message-setup-1): Remove the read-only stuff, since it
7224         doesn't work under XEmacs, for some reason.
7225
7226         * gnus-sum.el (gnus-user-date): Rename back from
7227         gnus-summary-user-date since user code refers to it.
7228
7229         * shr.el (shr-render-td): Store the actual background color used.
7230
7231         * message.el (message-setup-1): Don't bind the constant
7232         -forbidden-properties.
7233         (message-setup-1): Revert previous change, since it needs to bind the
7234         props to insert them.
7235         (message-resend): Allow removing the read-only separator line.
7236
7237 2011-02-03  Lars Ingebrigtsen  <larsi@gnus.org>
7238
7239         * nnimap.el (nnimap-request-accept-article): Give an error message if
7240         the APPEND wasn't successful.
7241
7242 2011-02-03  Adam Sjøgren  <asjo@koldfront.dk>
7243
7244         * gnus-start.el (gnus-get-unread-articles): Fix the call to methods
7245         that have no groups.
7246
7247 2011-02-03  Julien Danjou  <julien@danjou.info>
7248
7249         * gnus-draft.el: Remove progn around gnus-draft-setup.
7250
7251 2011-02-03  Lars Ingebrigtsen  <larsi@gnus.org>
7252
7253         * gnus-start.el (gnus-read-active-for-groups): This function is never
7254         called with a nil `infos', so clean that up.
7255         (gnus-get-unread-articles): Request active files from primary/secondary
7256         methods that have no groups (yet).
7257
7258 2011-02-03  Julien Danjou  <julien@danjou.info>
7259
7260         * message.el (message-setup-1): Always generate References first.
7261         (message-mail): Return the return value of message-setup, not always t.
7262         (message-setup-1): Insert mail-header-separator with read-only and
7263         intangible properties set.
7264
7265         * gnus.el (gnus-summary-line-format): Add missing semi-colon for
7266         user-date in docstring.
7267
7268         * gnus-art.el (gnus-article-jump-to-part): Remove useless sit-for.
7269
7270         * gnus.el (gnus-summary-line-format): Mention &user-date format in
7271         docstring.
7272
7273         * gnus.el (gnus-user-date-format-alist): Change default value.
7274         Use defcustom, with type and group.  Move from gnus-util.el.
7275         Rename to gnus-summary-user-date-format-alist.
7276
7277 2011-02-03  Glenn Morris  <rgm@gnu.org>
7278
7279         * nnimap.el (gnus-fetch-headers): Declare.
7280
7281         * nnheader.el (gnus-range-add, gnus-remove-from-range): Autoload.
7282
7283 2011-02-03  Lars Ingebrigtsen  <larsi@gnus.org>
7284
7285         * message.el (message-forward-make-body-digest-plain)
7286         (message-followup, message-reply): Clean up things noted by Stefan.
7287
7288         * gnus-art.el (gnus-article-setup-buffer): Stop the date timer if
7289         gnus-article-update-date-headers is nil.
7290         (gnus-article-date-headers): Rip out the old -treat-date-* stuff, since
7291         it didn't really work with defcustom.
7292         (article-update-date-lapsed): Make sure the window start doesn't move,
7293         either.
7294
7295 2011-02-01  Julien Danjou  <julien@danjou.info>
7296
7297         * mm-uu.el (mm-uu-type-alist): Add support for git format-patch diff
7298         format.
7299
7300         * mm-decode.el (mm-inline-media-tests): Do not check for diff-mode it's
7301         standard in Emacs nowadays.
7302
7303         * color.el (color-gradient): Add a color-gradient function.
7304
7305 2011-02-01  Stefan Monnier  <monnier@iro.umontreal.ca>
7306
7307         * message.el (message-expand-name): Don't trust the return value of
7308         bbdb-complete-name.
7309         (message-check-news-header-syntax): Remove unused var `start'.
7310         (message-idna-to-ascii-rhs-1): Remove unused vars `rhs' and `address'.
7311         (message-inhibit-body-encoding): Move to before first use.
7312         (mail-abbrev-mode-regexp, Expires, User-Agent, Lines, Distribution)
7313         (To, References, In-Reply-To, Newsgroups, Subject, Path, From)
7314         (Organization, Message-ID, Date, mh-previous-window-config):
7315         Defvar the vars using dynamic scoping.
7316
7317 2011-02-01  Lars Ingebrigtsen  <larsi@gnus.org>
7318
7319         * shr.el (shr-render-td): Only do colors at the final rendering.
7320         Should be slightly faster.
7321         (shr-insert-table): Fix up TD background colors when doing the
7322         vertical padding.
7323
7324         * gnus-art.el (article-date-ut): Protect against articles with no Date
7325         header.
7326         (article-update-date-lapsed): Don't use current-column to find the
7327         horizontal position.  It's fragile in the presence of \003 characters.
7328
7329         * gnus-start.el (gnus-read-active-file-1): Remove dead parameter infos.
7330
7331 2011-01-31  Lars Ingebrigtsen  <larsi@gnus.org>
7332
7333         * gnus-art.el (article-transform-date): Rewrite to still work when
7334         there are several rfc2822 parts.
7335         (article-transform-date): Fix infinite recursion.
7336         (article-date-ut): Replace infinitely many Date headers with a single
7337         one when called interactively.
7338
7339         * nnimap.el (nnimap-wait-for-response): Wait for results in a more
7340         secure manner.
7341
7342         * gnus-art.el (article-update-date-lapsed): Try to avoid having point
7343         move around by not using save-window-excursion.  It seems to work...
7344
7345 2011-01-31  Katsumi Yamaoka  <yamaoka@jpl.org>
7346
7347         * gnus-art.el (article-make-date-line): Work for user-defined format.
7348
7349 2011-01-31  Lars Ingebrigtsen  <larsi@gnus.org>
7350
7351         * nntp.el (nntp-retrieve-group-data-early)
7352         (nntp-finish-retrieve-group-infos): Implement the asynchronous data
7353         fetching functions.
7354
7355         * gnus-start.el (gnus-read-active-for-groups): Read the active files
7356         thoroughly for all backends that have no known groups.  This should
7357         allow new nnml methods to retrieve mail.
7358
7359         * gnus-group.el (gnus-group-jump-to-group): Allow jumping to groups
7360         that Gnus doesn't know exists again.
7361
7362         * gnus-art.el (gnus-article-date-lapsed-new-header): Remove.
7363         (gnus-treat-date-ut): Ditto.
7364         (gnus-article-update-date-header): Rename.
7365         (gnus-treat-date-local): Remove.
7366         (gnus-treat-date-english): Remove.
7367         (gnus-treat-date-lapsed): Remove.
7368         (gnus-treat-date-combined-lapsed): Remove.
7369         (gnus-treat-date-original): Remove.
7370         (gnus-treat-date-iso8601): Remove.
7371         (gnus-treat-date-user-defined): Remove.
7372         (gnus-article-date-headers): New variable to control all the date
7373         header options.
7374         (article-date-ut): Rewrite to allow using the new way to format date
7375         headers(s).
7376
7377 2011-01-30  Lars Ingebrigtsen  <larsi@gnus.org>
7378
7379         * nnmail.el (nnmail-article-group): Check for a direct fancy split
7380         method.
7381         (nnmail-article-group): A better test for fanciness.
7382
7383         * nnimap.el (nnimap-request-head): Protect against not finding the
7384         article by Message-ID.
7385
7386 2011-01-29  Lars Ingebrigtsen  <larsi@gnus.org>
7387
7388         * gnus-art.el (article-update-date-lapsed): Try a better way to really
7389         keep point at the "same place".
7390
7391 2011-01-28  Lars Ingebrigtsen  <larsi@gnus.org>
7392
7393         * gnus-sum.el (gnus-select-newsgroup): Don't try to alter the active
7394         data if the group is inactive.
7395
7396 2011-01-28  Julien Danjou  <julien@danjou.info>
7397
7398         * gnus-win.el: Remove dead function gnus-window-configuration-element.
7399         (gnus-all-windows-visible-p): Remove old compatibility code.
7400         (gnus-window-top-edge): Add docstring.
7401
7402         * gnus-group.el (gnus-group-jump-to-group): Set must match to t.
7403
7404 2011-01-28  Lars Ingebrigtsen  <larsi@gnus.org>
7405
7406         * gnus-int.el (gnus-request-marks): Call *-request-marks instead of the
7407         older request-update-info.
7408
7409         * gnus-art.el (article-make-date-line): Limit the length a bit more.
7410
7411 2011-01-28  Daiki Ueno  <ueno@unixuser.org>
7412
7413         * mml2015.el (mml2015-epg-sign, mml2015-epg-encrypt):
7414         Give mml2015-signers higher precedence over mml2015-sign-with-sender.
7415
7416 2011-01-27  Lars Ingebrigtsen  <larsi@gnus.org>
7417
7418         * gnus-group.el (gnus-group-refresh-group): Refresh even non-visible
7419         groups.  This makes the nndraft:queue group pop up if it's not already
7420         there.
7421
7422         * gnus-sum.el (gnus-summary-read-group-1): Fix the "contains no
7423         messages" logic, which was reversed.
7424
7425         * gnus-art.el (article-update-date-lapsed): Ensure that point stays at
7426         the "same place" even if point is on the line being replaced.
7427         (article-update-date-lapsed): Allow updating both the combined lapsed
7428         and the lapsed headers.
7429         (article-update-date-lapsed): Skip past all the X-Sent/Date headers.
7430         (article-make-date-line): Limit the number of segments dynamically to
7431         avoid too-long lines.
7432
7433 2011-01-27  Julien Danjou  <julien@danjou.info>
7434
7435         * mml2015.el (mml2015-epg-sign): Add and use mml2015-sign-with-sender.
7436         (mml2015-epg-encrypt): Use mml2015-sign-with-sender.
7437
7438 2011-01-27  Katsumi Yamaoka  <yamaoka@jpl.org>
7439
7440         * shr.el (shr-expand-newlines, shr-previous-newline-padding-width):
7441         Use plist-get instead of the cl function getf.
7442
7443 2011-01-27  Glenn Morris  <rgm@gnu.org>
7444
7445         * gnus-util.el (float-time): Get rid of compiler warning, again.
7446
7447 2011-01-27  Lars Ingebrigtsen  <larsi@gnus.org>
7448
7449         * shr.el (shr-put-color): Special-case background colors: Do put them
7450         at the blank parts at the front of the lines.
7451
7452         * gnus-draft.el (gnus-draft-clear-marks): New function to be run as an
7453         exit hook to nix out all data on readedness on group exit.
7454
7455         * gnus-util.el (float-time): If float-time is bound, always use it on
7456         all Emacsen.  It's unclear why the subrp check was there.
7457         (time-date): Require to make some autoload issues on XEmacs go away.
7458
7459         * shr.el (shr-put-color): Don't do the box padding in tables, since
7460         they're already padded.
7461
7462 2011-01-26  Lars Ingebrigtsen  <larsi@gnus.org>
7463
7464         * gnus-art.el (gnus-article-next-page): When the last line of the
7465         article is displayed, scroll down once more instead of going to the
7466         next article at once.
7467         (article-lapsed-string): Refactor out and allow specifying how many
7468         segments you want.
7469         (gnus-article-setup-buffer): Start updating the lapsed header directly.
7470         (gnus-article-update-lapsed-header): New variable.
7471
7472         * shr.el: Revert change that made headings use different-sized faces.
7473         The Emacs display engine isn't advanced enough that, for instance,
7474         tables can comfortably use differently-sized faces.
7475
7476 2011-01-25  Lars Ingebrigtsen  <larsi@gnus.org>
7477
7478         * nnimap.el (nnimap-open-connection-1): Store the actual stream type
7479         used.
7480         (nnimap-login): Prefer plain LOGIN if it's enabled (since it requires
7481         fewer round trips than CRAM-MD5, and it's less likely to be buggy), and
7482         we're using an encrypted connection.
7483
7484         * proto-stream.el: Alter the interface functions to also return the
7485         actual stream type used: network or tls.
7486
7487 2011-01-25  Julien Danjou  <julien@danjou.info>
7488
7489         * mm-view.el (mm-display-shell-script-inline): Fix typo in docstring.
7490         (mm-display-javascript-inline): New function.
7491
7492         * mm-decode.el (mm-inline-media-tests): Add application/javascript
7493         viewing function.
7494
7495 2011-01-25  Katsumi Yamaoka  <yamaoka@jpl.org>
7496
7497         * shr.el (shr-expand-newlines): Fix variable name.
7498
7499 2011-01-25  Lars Ingebrigtsen  <larsi@gnus.org>
7500
7501         * shr.el (shr-expand-newlines): Make nested boxes work.
7502
7503 2011-01-24  Lars Ingebrigtsen  <larsi@gnus.org>
7504
7505         * shr.el (shr-expand-newlines): Proof of concept implementation of boxy
7506         backgrounds.
7507         (shr-expand-newlines): Switch to using overlays to enable kill'n'yank
7508         in a more sensible manner.
7509
7510 2011-01-24  Teodor Zlatanov  <tzz@lifelogs.com>
7511
7512         * mml-smime.el (mml-smime-use): Make it a defcustom and default to 'epg
7513         if EPG is loaded.
7514
7515 2011-01-24  Julien Danjou  <julien@danjou.info>
7516
7517         * shr.el: Use defface to create shr-tag-h[1-6] faces to fontify h[1-6]
7518         tags.
7519
7520 2011-01-24  Lars Ingebrigtsen  <larsi@gnus.org>
7521
7522         * gnus-art.el (gnus-article-read-summary-keys): Don't call disabled
7523         commands.
7524
7525         * gnus-gravatar.el (gnus-gravatar-insert): Don't move point around
7526         in the article buffer.
7527         (gnus-gravatar-insert): Use blank space from the current buffer to
7528         avoid breaking text properties.  This makes X-Sent updating work again.
7529
7530         * gravatar.el (gravatar-retrieve): Be silent when retrieving.
7531
7532 2011-01-23  Lars Ingebrigtsen  <larsi@gnus.org>
7533
7534         * gnus-html.el (gnus-html-image-fetched): Kill the buffer anyway, and
7535         fix the bug in url-http.el instead.
7536
7537         * shr.el (shr-image-fetched): Ditto.
7538
7539         * shr.el (shr-image-fetched): Avoid having point move in the article
7540         buffer.
7541
7542         * gnus-html.el (gnus-html-image-fetched): Don't kill the temporary
7543         buffer after being called.  It's apparently being killed by url.el, and
7544         killing it made point move to end-of-buffer in a random buffer.
7545
7546         * shr.el (shr-image-fetched): Ditto.
7547
7548 2011-01-23  Julien Danjou  <julien@danjou.info>
7549
7550         * mm-decode.el (mm-inline-media-tests): Change text/org to text/x-org.
7551
7552         * mm-uu.el (mm-uu-org-src-code-block-extract): Change text/org to
7553         text/x-org.
7554
7555 2011-01-22  Lars Ingebrigtsen  <larsi@gnus.org>
7556
7557         * gnus-sum.el (gnus-summary-move-article): Protect against backends
7558         (i.e., nnimap) returning nil as the article number.
7559
7560 2011-01-22  Kazuhiro Ito  <kzhr@d1.dion.ne.jp>  (tiny change)
7561
7562         * flow-fill.el (fill-flowed): Make `delete-space' option correspond to
7563         "DelSp" parameter in RFC3676.
7564
7565 2011-01-22  Lars Ingebrigtsen  <larsi@gnus.org>
7566
7567         * message.el (message-check-recipients): Display the encoded version of
7568         the bogus address if they differ.
7569
7570         * gnus-draft.el (gnus-group-send-queue): Really refresh the queue group
7571         after sending.
7572
7573         * gnus-agent.el (gnus-agent-send-mail): Ditto.
7574
7575         * gnus-group.el (gnus-group-refresh-group): New convenience function.
7576
7577         * gnus-draft.el (gnus-group-send-queue): Update the queue group in the
7578         group buffer after sending the queue.
7579
7580         * gnus-agent.el (gnus-agent-send-mail): Ditto.
7581
7582 2011-01-22  Julien Danjou  <julien@danjou.info>
7583
7584         * mailcap.el (mailcap-mime-extensions): Rename text/org to text/x-org.
7585
7586 2011-01-22  Lars Ingebrigtsen  <larsi@gnus.org>
7587
7588         * mm-decode.el (mm-preferred-alternative-precedence): Don't bug out on
7589         nested related parts.
7590
7591         * nnfolder.el (nnfolder-request-expire-articles): Return the list of
7592         unexpired articles.  This fixes the regression that led expiry marks to
7593         disappear from nnfolder groups.
7594
7595 2011-01-21  Stefan Monnier  <monnier@iro.umontreal.ca>
7596
7597         * gnus-art.el (gnus-button-alist, gnus-button-handle-info-keystrokes):
7598         Don't confuse the "ret" of "retrograde" with RET.
7599
7600 2011-01-21  Julien Danjou  <julien@danjou.info>
7601
7602         * gnus-art.el (gnus-mime-display-single): Use mm-display-inline rather
7603         than mm-insert-inline.
7604
7605 2011-01-21  Katsumi Yamaoka  <yamaoka@jpl.org>
7606
7607         * gnus-art.el (gnus-article-remove-images, gnus-article-show-images):
7608         Widen article buffer.
7609
7610 2011-01-20  Stefan Monnier  <monnier@iro.umontreal.ca>
7611
7612         * mm-util.el (mm-find-buffer-file-coding-system): Don't forget to kill
7613         the temp buffer.
7614         * message.el (message-mailer-swallows-blank-line): Use with-temp-buffer.
7615
7616 2011-01-20  Julien Danjou  <julien@danjou.info>
7617
7618         * mm-decode.el (mm-inline-media-tests): Add text/x-sh.
7619
7620         * gnus-art.el (gnus-mime-inline-part): Use mm-display-inline rather
7621         than mm-insert-inline to insert inline part: this respect
7622         mm-inline-media-tests displayers.
7623
7624         * mm-view.el (mm-display-shell-script-inline): New function.
7625
7626         * mm-decode.el (mm-inline-media-tests): Add x-shellscript and x-sh.
7627
7628         * mm-uu.el (mm-uu-type-alist): Add org block.
7629         (mm-uu-org-src-code-block-extract): New function.
7630
7631         * mm-view.el (mm-display-org-inline): New function.
7632
7633         * mm-decode.el (mm-automatic-display): Add text/org.
7634
7635         * mailcap.el (mailcap-mime-extensions): Add .org.
7636
7637 2011-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
7638
7639         * gnus-art.el (gnus-article-highlight): Remove argument passed to
7640         gnus-article-add-buttons.
7641
7642 2011-01-19  Tom Rauchenwald  <sehnsucht.nach.unendlichkeit@quantentunnel.de>  (tiny change)
7643
7644         * spam.el (spam-spamassassin-register-with-sa-learn): Insert a full
7645         From header with a date and "nobody" as the sender.
7646
7647 2011-01-19  Julien Danjou  <julien@danjou.info>
7648
7649         * gnus-art.el (gnus-article-add-buttons): Simplify condition.
7650         (gnus-button-push): Remove gnus-button-entry function, it fails heavily
7651         if you have the same regexp several times.
7652         (gnus-button-push): Fix matching when regexp is symbol.
7653
7654 2011-01-15  Glenn Morris  <rgm@gnu.org>
7655
7656         * message.el (message-mail): A compose-mail function should
7657         accept headers as strings.
7658
7659 2011-01-13  Chong Yidong  <cyd@stupidchicken.com>
7660
7661         * message.el (message-tool-bar-gnome): Tweak tool-bar items.
7662         Add :vert-only tags.
7663         (message-mail): New arg RETURN-ACTION.
7664         (message-return-action): New var.
7665         (message-bury): Use it.
7666         (message-mode): Make it buffer-local.
7667         (message-send-and-exit): Always call message-bury.
7668
7669         * gnus-msg.el (gnus-msg-mail): New arg RETURN-ACTION.  Pass it to
7670         message-mail.
7671
7672 2011-01-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7673
7674         * nnimap.el (nnimap-convert-partial-article): Protect against
7675         zero-length body parts.
7676
7677         * mm-decode.el (mm-preferred-alternative-precedence):
7678         Discourage showing empty parts.
7679
7680         * gnus-int.el (gnus-request-accept-article): Don't try to update marks
7681         and stuff if the backend didn't return the article number.  This fixes
7682         an Exchange-related nnimap bug.
7683
7684         * gnus-sum.el (gnus-summary-next-article): Remove hack to reselect
7685         group window, because it does the wrong thing when a separate frame
7686         displays the group buffer.
7687
7688         * proto-stream.el (open-protocol-stream): Protect against the low-level
7689         transport functions returning nil.
7690
7691 2011-01-07  Daiki Ueno  <ueno@unixuser.org>
7692
7693         * mml2015.el (epg-sub-key-fingerprint): Autoload.
7694         (mml2015-epg-find-usable-secret-key): New function.
7695         (mml2015-epg-sign): Use mml2015-epg-find-usable-secret-key instead of
7696         mml2015-epg-find-usable-key (Bug#7797).
7697         (mml2015-epg-encrypt): Ditto.
7698
7699 2011-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
7700
7701         * dgnushack.el (rot13-string): Fix the way to get the argument.
7702
7703 2011-01-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7704
7705         * flow-fill.el (fill-flowed-encode): Do encoding citation-aware.
7706
7707 2011-01-03  Glenn Morris  <rgm@gnu.org>
7708
7709         * sieve-manage.el (sieve-manage-open): Correctly set sieve-manage-port.
7710
7711         * sieve.el (sieve-open-server): Give a more explicit error if
7712         sieve-manage-open returns nil.  (Bug#7720)
7713
7714 2011-01-02  Karl Fogel  <kfogel@red-bean.com>
7715
7716         * gnus-msg.el (gnus-message-replyencrypt): Default to `t'.
7717
7718 2011-01-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7719
7720         * nnimap.el (nnimap-login): Prefer AUTH=CRAM-MD5, if it's available.
7721         This avoids sending passwords in plain text over non-encrypted
7722         channels.
7723
7724         * shr.el (shr-rescale-image): Display all GIF images as animated images.
7725
7726         * nnimap.el (nnimap-login): Refactored out into own function, and
7727         implement CRAM-MD5.
7728         (nnimap-wait-for-line): Refactored out.
7729
7730         * mm-view.el (mml-smime): Require.
7731
7732 2010-12-20  David Engster  <deng@eml.cc>
7733
7734         * mm-view.el (mm-view-pkcs7-decrypt): If mml-smime-use is set to 'epg,
7735         use EPG to decrypt S/MIME messages instead of openssl.
7736
7737 2011-01-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7738
7739         * nnimap.el (nnimap-request-group): Avoid double SELECT on `M-g'.
7740
7741         * gnus-group.el (gnus-group-kill-group): Don't try to update the group
7742         status is the group clearly is unreachable.
7743
7744         * auth-source.el (auth-source-create): Add the optional second
7745         parameter to `local-variable-p' to be compatible with XEmacs.
7746
7747 2011-01-02  Wang Diancheng  <dcwang@kingbase.com.cn>  (tiny change)
7748
7749         * nnml.el (nnml-request-article): Allow requesting by Message-ID to
7750         work when using a compressed nnml folder.
7751
7752 2011-01-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7753
7754         * gnus-sum.el (gnus-select-newsgroup): Don't propagate marks to
7755         backends after sanitising on entry, because this never makes sense:
7756         If the articles have gone missing, then the data no longer exists on
7757         the backend, and if they haven't, then Gnus is wrong, and shouldn't
7758         overwrite anything anyway.
7759
7760         * shr.el (shr-insert-document): Bind shr-width dynamically to
7761         window-width if it's nil.
7762
7763 2010-12-30  Tassilo Horn  <tassilo@member.fsf.org>
7764
7765         * shr.el (shr-width, shr-insert-document): Allow nil as shr-width value
7766         with the meaning of using the full emacs window width for rendering.
7767
7768 2010-12-27  Daiki Ueno  <ueno@unixuser.org>
7769
7770         * mml2015.el (mml2015-epg-sign, mml2015-epg-encrypt): Take care the
7771         case when sender is not given.
7772
7773 2010-12-23  Julien Danjou  <julien@danjou.info>
7774
7775         * gnus-gravatar.el (gnus-gravatar-transform-address): Set
7776         `mail-extr-ignore-realname-equals-mailbox-name' to nil when extracting
7777         the addresses, otherwise we might misplaced the gravatar.
7778
7779 2010-12-21  Daiki Ueno  <ueno@unixuser.org>
7780
7781         * mml1991.el (pgg-sign-region, pgg-encrypt-region):
7782         * gnus-art.el (pgg-snarf-keys-region): Autoload since PGG is now
7783         obsolete in Emacs.
7784
7785 2010-12-20  Julien Danjou  <julien@danjou.info>
7786
7787         * gnus-util.el (gnus-rescale-image): Revert last change.
7788
7789 2010-12-17  Chong Yidong  <cyd@stupidchicken.com>
7790
7791         * binhex.el: Improve commentary (Bug#7482).
7792
7793 2010-12-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7794
7795         * gnus-group.el (gnus-group-delete-articles): New command.
7796
7797 2010-12-17  Andrew Cohen  <cohen@andy.bu.edu>
7798
7799         * nnir.el (nnir-mode): Make sure 'gnus-registry-install is bound.
7800
7801 2010-12-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7802
7803         * gnus-sum.el (gnus-get-newsgroup-headers): Revert the last change
7804         here, since it's up to the backends to do CRLF removal if their
7805         protocol has it.
7806
7807         * nnimap.el (nnimap-retrieve-headers): Remove CRLF from the headers.
7808
7809 2010-12-17  Julien Danjou  <julien@danjou.info>
7810
7811         * gnus-util.el (gnus-rescale-image): Allow to resize images even if
7812         they are from file.  Can also scale up.
7813
7814 2010-12-17  Andrew Cohen  <cohen@andy.bu.edu>
7815
7816         * gnus-sum.el (gnus-summary-refer-thread): Simplify code.
7817         Restore gnus-use-agent.
7818         (gnus-get-newsgroup-headers): Avoid unwanted spaces at eol.
7819
7820         * nnir.el (nnir-get-active): Ignore nnir-ignored-newsgroups if null.
7821
7822 2010-12-17  Julien Danjou  <julien@danjou.info>
7823
7824         * gravatar.el (gravatar-retrieve-synchronously): New function.
7825         (gravatar-get-data): Make more robust.
7826
7827 2010-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
7828
7829         * lpath.el: Bind epa-file-encrypt-to for Emacs 22 and XEmacs.
7830
7831 2010-12-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7832
7833         * nnimap.el (nnimap-wait-for-response): Fix the end-point calculation
7834         to really consider the last line.
7835
7836 2010-12-16  Daiki Ueno  <ueno@unixuser.org>
7837
7838         * auth-source.el (auth-source-gpg-encrypt-to): New variable to set the
7839         list of recipient keys, or use symmetric encryption if not a list.
7840         (auth-source-create): Use it to make `epa-file-encrypt-to' local for an
7841         EPA override, replacing the call to `netrc-store-data'.
7842
7843 2010-12-16  Dan Davison  <dandavison7@gmail.com>  (tiny change)
7844
7845         * gnus-srvr.el: Avoid passing nil regexp argument to
7846         delete-matching-lines.
7847
7848 2010-12-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7849
7850         * gnus-html.el (gnus-html-schedule-image-fetching): Make sure the HTML
7851         fetching stops when Gnus exits.
7852
7853         * nnfolder.el (nnfolder-save-all-buffers): Refactor out into its own
7854         function.
7855         (nnfolder-request-expire-articles): Save all the buffers after doing
7856         expiry.
7857
7858         * nnmail.el (nnmail-expiry-target-group): Revert the "all articles are
7859         the last article", since that led to serious performance regressions
7860         when expiring nnml groups.
7861
7862 2010-12-16  Andrew Cohen  <cohen@andy.bu.edu>
7863
7864         * nnir.el: Improve customizations.
7865
7866 2010-12-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7867
7868         * gnus-start.el (gnus-subscribe-newsgroup): Notify the backend.
7869
7870         * gnus-group.el (gnus-group-kill-group): Notify the backend that the
7871         group has been killed.
7872         (gnus-group-yank-group): Ditto.
7873
7874         * gnus-srvr.el (gnus-browse-unsubscribe-group): Ditto.
7875
7876         * nnimap.el (nnimap-request-update-group-status): New function.
7877
7878         * gnus-int.el (gnus-request-update-group-status): New interface
7879         function.
7880
7881         * gnus-sum.el (gnus-summary-push-marks-to-backend): Fix the logic for
7882         copying read-ness to the backends.
7883
7884         * nnimap.el (nnimap-quirk): New function.
7885         (nnimap-retrieve-group-data-early): Use it.
7886         (nnimap-quirks): New alist.
7887
7888 2010-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
7889
7890         * shr.el (shr-insert): Set shr-start after deleting trailing space;
7891         don't delete it within indentation.
7892
7893 2010-12-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7894
7895         * nnimap.el (nnimap-wait-for-response): Always look (at least) at the
7896         previous line.
7897
7898 2010-12-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7899
7900         * nnimap.el (nnimap-retrieve-group-data-early): Fix the syntax of the
7901         QRESYNC command by deleting a superfluous space which broke Cyrus
7902         servers.  This change will break other servers that are buggy the other
7903         way around.
7904
7905 2010-12-14  Teodor Zlatanov  <tzz@lifelogs.com>
7906
7907         * spam.el: Reindent and fix long lines.
7908         (spam-copy-or-move-routine): Exclude invalid move destinations.
7909
7910 2010-12-14  Andrew Cohen  <cohen@andy.bu.edu>
7911
7912         * nnir.el (nnir-mode): Don't install registry hooks if user hasn't
7913         installed the registry.
7914
7915 2010-12-14  Katsumi Yamaoka  <yamaoka@jpl.org>
7916
7917         * dgnushack.el (rot13-string): New macro for XEmacs.  netrc.el uses it.
7918
7919 2010-12-13  Andrew Cohen  <cohen@andy.bu.edu>
7920
7921         * nnir.el (nnir-run-gmane): Better check for gmane groups: error out if
7922         groupname doesn't contain "gmane".
7923
7924 2010-12-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7925
7926         * netrc.el (netrc-point-at-eol): Remove the unused netrc-point-at-old
7927         and netrc-bound-and-true-p bindings.
7928         (netrc-parse): Cache the netrc contents.
7929
7930         * gnus-start.el (gnus-matches-options-n): Fix typo in last change.
7931         (gnus-1): Don't create the nndrafts group twice.
7932         (gnus-setup-news): There's no need to read the active file here, since
7933         that's done again later on a per-backend basis.
7934         (gnus-start-draft-setup): Make sure that the new group is started out
7935         empty.
7936
7937         * gnus-agent.el (gnus-agentize): Don't create the queue group
7938         automatically on startup.  It'll be created later, if needed.
7939
7940         * gnus-start.el (gnus-auto-subscribed-groups): Add nnimap to the list
7941         of automatically subscribed groups.
7942         (gnus-auto-subscribed-categories): New variable.
7943         (gnus-matches-options-n): Use it.
7944         (gnus-default-subscribed-newsgroups): Remove unused variable.
7945         (gnus-start-draft-setup): Message a bit less.
7946
7947 2010-12-13  Andrew Cohen  <cohen@andy.bu.edu>
7948
7949         * nnir.el (nnir-run-imap): Return article list in order of increasing
7950         UID.
7951
7952 2010-12-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7953
7954         * gnus-sum.el (gnus-summary-enter-digest-group):
7955         Mention gnus-auto-select-on-ephemeral-exit.
7956
7957         * proto-stream.el (proto-stream-open-network-only): Fix the calling
7958         convention of the network-only option.
7959
7960 2010-12-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7961
7962         * proto-stream.el (proto-stream-open-network-only): New function to
7963         have a way to specify non-STARTTLS upgrade connections.
7964
7965 2010-12-10  Julien Danjou  <julien@danjou.info>
7966
7967         * gnus-gravatar.el (gnus-gravatar-transform-address): Fix error when
7968         email address is nil.
7969
7970         * message.el (message-bogus-recipient-p): Set address to "" if nil.
7971
7972 2010-12-10  Andrew Cohen  <cohen@andy.bu.edu>
7973
7974         * nnir.el (nnir-request-expire-articles): Ignore expiry except for
7975         deletion.
7976         (nnir-run-imap): Only need to parse list once.
7977
7978 2010-12-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7979
7980         * shr.el (shr-tag-script): Ignore <script>.
7981         (shr-tag-label): Add <label> support.
7982
7983 2010-12-09  Katsumi Yamaoka  <yamaoka@jpl.org>
7984
7985         * mm-util.el (mm-ucs-to-char): Use eval-and-compile.
7986
7987         * shr.el (shr-image-displayer): Work for images lined side by side.
7988
7989 2010-12-08  Robert Pluim  <rpluim@gmail.com>
7990
7991         * gnus-demon.el (gnus-demon-init): Call run-with-timer with an integer
7992         parameter, since XEmacs doesn't accept t as a parameter.
7993
7994 2010-12-08  Andrew Cohen  <cohen@andy.bu.edu>
7995
7996         * nnir.el (nnir-retrieve-headers): Use rassq when comparing article
7997         ids.
7998         (nnir-run-gmane): Simplify groupspec formatting.
7999         (nnir-request-expire-articles): New function.
8000
8001 2010-12-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8002
8003         * nnimap.el (nnimap-parse-flags): Tweak VANISHED regexp to avoid regexp
8004         overflow, possibly.
8005
8006         * shr.el (shr-tag-table-1): Use bg/gfcolor specs on tables.
8007         (shr-render-td): Handle td style="" better.
8008         (shr-tag-table): Use the color from the style sheet.
8009         (shr-render-td): Make sure we copy over all the overlays, too.
8010
8011 2010-12-07  Andrew Cohen  <cohen@andy.bu.edu>
8012
8013         * nnir.el (nnir-run-gmane): Restore sub-optimal test for gmane server.
8014         (nnir-request-article): Improve article retrieval.
8015
8016 2010-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
8017
8018         * mm-util.el (mm-extra-numeric-entities): New variable.
8019
8020         * mm-url.el (mm-url-decode-entities):
8021         * mm-decode.el (mm-shr): Use it to decode extra numeric entities.
8022
8023         * lpath.el: Fbind completion-at-point for Emacs 22 and XEmacs.
8024
8025 2010-12-07  Stefan Monnier  <monnier@iro.umontreal.ca>
8026
8027         * message.el: Use completion-at-point.
8028         (message-completion-function): New fun, extracted from message-tab.
8029         (message-mode): Use it for completion-at-point-functions.
8030         (message-tab): Use it and completion-at-point.
8031
8032 2010-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
8033
8034         * shr.el (shr-find-fill-point): Don't break a line after a kinsoku-bol
8035         character if a non-breakable character follows.
8036
8037 2010-12-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8038
8039         * proto-stream.el (proto-stream-open-tls): Return nil if we don't get
8040         any stream.
8041
8042         * shr.el (shr-tag-font): Colorize the region.
8043         (shr-tag-body): Ditto.
8044         (shr-tag-font): Actually let the styles be inherited instead of
8045         overwriting them.
8046         (shr-tag-font): Get the background color right.
8047         (shr-tag-style): Ignore all <style> tags for the moment.
8048
8049         * gnus-int.el (gnus-request-thread): Rework to take a header instead of
8050         a Message-ID to avoid having nnimap depend on gnus-sum.
8051
8052         * shr.el (shr-descend): Only colorize something if we have a node that
8053         sets colors.
8054
8055 2010-12-06  Julien Danjou  <julien@danjou.info>
8056
8057         * shr.el (shr-render-td): Render td content with shr-descend, so style
8058         will be applied to <td> too.
8059         (shr-colorize-region): Colorize region even if we only have a background.
8060         (shr-tag-body): Fix color and background color inheritance.
8061         Do not recolorize after shr-generic.
8062         (shr-tag-font): Let shr-generic colorize via inheritance.
8063
8064 2010-12-06  Katsumi Yamaoka  <yamaoka@jpl.org>
8065
8066         * shr.el (shr-find-fill-point): Don't regard apostrophe as kinsoku-bol.
8067
8068 2010-12-06  Andrew Cohen  <cohen@andy.bu.edu>
8069
8070         * nnir.el (nnir-request-move-article): Remove obsolete code.
8071
8072 2010-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
8073
8074         * gnus-util.el (gnus-macroexpand-all): Use eval-and-compile.
8075
8076 2010-12-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8077
8078         * gnus-sum.el (gnus-summary-respool-article): The completion function
8079         expects a list instead of an alist.
8080
8081         * nntp.el (nntp-snarf-error-message): nnheader-report takes a format
8082         string as the parameter.
8083
8084         * gnus.el (gnus-valid-select-methods): Allow nnimap to respool.
8085
8086         * shr.el (shr-stylesheet): New dynamic variable for cascading the
8087         styles.
8088         (shr-colorize-region): New function.
8089         (shr-insert-background-overlay): Remove.
8090         (shr-render-td): Background setting should be taken care of on a higher
8091         level.
8092         (shr-tag-body): Use post-hoc colorizations.
8093         (shr-tag-body): Set up a style sheet based on bgcolor/fgcolor.
8094         (shr-put-color-1): Don't overwrite old colors.
8095         (shr-colorize-region): When the background color isn't explicit, use
8096         a fixed background.
8097
8098         * gnus-util.el (gnus-output-to-mail): Require nnmail before using
8099         nnmail variables.
8100
8101 2010-12-05  Bjørn Mork  <bjorn@mork.no>
8102
8103         * nnimap.el (nnimap-process-expiry-targets): Avoid downloading articles
8104         unless necessary.
8105
8106 2010-12-05  Andrew Cohen  <cohen@andy.bu.edu>
8107
8108         * nnir.el (nnir-run-gmane): Use more careful test for gmane nntp
8109         server.
8110
8111 2010-12-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8112
8113         * gnus-html.el (gnus-html-put-image): Use widget instead of local maps
8114         so that TAB works.
8115
8116         * gnus-sum.el (gnus-summary-show-article): Reverse the meanings of `C-u
8117         C-u g' and `C-u g' so that `C-u g' does what it traditionally did.
8118
8119         * shr.el (shr-urlify): Show the URL before the title to avoid
8120         misleading URLs.
8121
8122 2010-12-04  Adam Sjøgren  <asjo@koldfront.dk>
8123
8124         * shr.el (shr-urlify): Display the title in <a> tags.
8125
8126 2010-12-04  Andrew Cohen  <cohen@andy.bu.edu>
8127
8128         * nnir.el (nnir-categorize): Replace mapcar with mapc.
8129
8130 2010-12-03  Andrew Cohen  <cohen@andy.bu.edu>
8131
8132         * nnir.el: Rearrange code to allow macros to be autoloaded by
8133         gnus-sum.el.
8134         (nnir-retrieve-headers-override-function): Make this variable
8135         customizable.
8136         (nnir-retrieve-headers): Remove obsolete subject-mangling code.
8137
8138         * gnus-sum.el (nnir-article-group, nnir-article-rsv): Autoload macros
8139         from nnir.el.
8140
8141 2010-12-03  Julien Danjou  <julien@danjou.info>
8142
8143         * gnus-demon.el (gnus-demon-init): Fix time computing when time is nil.
8144
8145 2010-12-03  Katsumi Yamaoka  <yamaoka@jpl.org>
8146
8147         * gnus-util.el (gnus-macroexpand-all): Don't modify argument;
8148         allow optional argument `environment'.
8149
8150 2010-12-03  Glenn Morris  <rgm@gnu.org>
8151
8152         * mm-extern.el (message-goto-body): Update declaration.
8153
8154 2010-12-03  Katsumi Yamaoka  <yamaoka@jpl.org>
8155
8156         * gnus-util.el (gnus-macroexpand-all): New function.
8157
8158         * gnus-sum.el (gnus-summary-line-format-alist): Use gnus-macroexpand-all
8159         instead of macroexpand-all that is unavailable in XEmacs.
8160
8161 2010-12-02  Andrew Cohen  <cohen@andy.bu.edu>
8162
8163         * nnir.el (nnir-summary-line-format): New variable.
8164         (nnir-mode): Use it.
8165         (nnir-artlist-*, nnir-aritem-*): Reimplement as macros.
8166         (nnir-article-ids): Reimplement as defsubst.
8167         (nnir-retrieve-headers): Don't mangle the subject header.
8168         (nnir-run-imap): Use 100 as RSV score.
8169         (nnir-run-find-grep): Fix for full server searching.
8170         (nnir-run-gmane): Better restriction to gmane groups.
8171
8172         * gnus-sum.el (gnus-summary-line-format-alist): Add specs for nnir
8173         summary buffers.
8174
8175 2010-12-02  Julien Danjou  <julien@danjou.info>
8176
8177         * gnus-win.el (gnus-configure-frame): Remove old compatibility code.
8178
8179         * gnus-msg.el: Mark gnus-outgoing-message-group as obsolete.
8180
8181         * gnus-win.el (gnus-configure-windows): Remove Gnus 3.x setting
8182         support.
8183
8184 2010-12-01  Andrew Cohen  <cohen@andy.bu.edu>
8185
8186         * nnir.el: Update to handle the registry better.
8187         (autoload): Silence byte-compiler.
8188         (nnir-open-server): Add a hook for nnir groups.
8189         (nnir-request-move-article): Don't mangle the header.  Better to use
8190         formatting variables (which will be added in the future).
8191         (nnir-registry-action): Update the registry using the original article
8192         group name.
8193         (nnir-mode): Install nnir-specific hooks for updating the registry.
8194
8195         * gnus-sum.el
8196         (gnus-article-original-subject, gnus-newsgroup-original-name):
8197         Remove obsolete variables.
8198         (gnus-summary-move-article): Remove use of obsolete variables.
8199         (gnus-summary-local-variables): Make move and delete hooks local to
8200         summary buffers.
8201
8202 2010-12-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8203
8204         * rtree.el: New file.
8205
8206 2010-12-01  Julien Danjou  <julien@danjou.info>
8207
8208         * message.el (message-user-organization): Do not use
8209         gnus-local-organization.
8210
8211         * gnus.el: Remove gnus-local-organization.
8212
8213         * gnus-msg.el: Remove nastygram thing.
8214
8215 2010-12-01  Teodor Zlatanov  <tzz@lifelogs.com>
8216
8217         * nnmaildir.el (nnmaildir-request-set-mark): Add article to add-mark
8218         funcall.
8219
8220 2010-12-01  Katsumi Yamaoka  <yamaoka@jpl.org>
8221
8222         * gnus-gravatar.el (gnus-gravatar-insert): Allow LWSP in the middle of
8223         names.
8224
8225         * shr.el (shr-find-fill-point): Don't break line between kinsoku-bol
8226         characters.
8227
8228         * gnus-gravatar.el (gnus-gravatar-insert): Delete unnecessary binding
8229         to t of inhibit-read-only since it is inside gnus-with-article-headers.
8230         Suggested by Štěpán Němec <stepnem@gmail.com>.
8231         (gnus-gravatar-transform-address): Use mail-extract-address-components
8232         that supports non-ASCII names rather than mail-header-parse-addresses.
8233
8234 2010-11-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8235
8236         * proto-stream.el (open-protocol-stream): All starttls connections are
8237         handled by the network handler.
8238
8239 2010-11-30  Julien Danjou  <julien@danjou.info>
8240
8241         * nnimap.el (nnimap-open-connection-1): Use gnus-string-match-p.
8242         (nnimap-open-connection-1): Fix PREAUTH.
8243
8244         * gnus-gravatar.el (gnus-gravatar-size): Set gnus-gravatar-size to nil.
8245
8246 2010-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
8247
8248         * shr.el (shr-char-breakable-p, shr-char-nospace-p)
8249         (shr-char-kinsoku-bol-p, shr-char-kinsoku-eol-p): New macros.
8250         (shr-insert): Use them.
8251         (shr-find-fill-point): Work better for kinsoku chars and apostrophes.
8252
8253 2010-11-29  Andrew Cohen  <cohen@andy.bu.edu>
8254
8255         * nnir.el (nnir-request-move-article): Bail out if original group
8256         doesn't support article moves.
8257         (nnir-get-active): Improve active list retrieval.
8258
8259 2010-11-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8260
8261         * shr.el (shr-find-fill-point): Don't break before apostrophes.
8262
8263 2010-11-29  Binjo  <binjo.cn@gmail.com>  (tiny change)
8264
8265         * nnimap.el (nnimap-open-connection-1): w32 open-network-stream doesn't
8266         seem to accept strings-with-numbers as port numbers.
8267
8268 2010-11-29  Andrew Cohen  <cohen@andy.bu.edu>
8269
8270         * gnus-sum.el (gnus-summary-delete-article): If delete fails don't
8271         change the registry.
8272
8273 2010-11-29  Katsumi Yamaoka  <yamaoka@jpl.org>
8274
8275         * nnir.el (nnir-run-gmane): Use mm-delete-duplicates instead of
8276         delete-dups that is not available in XEmacs 21.4.
8277
8278         * mm-util.el (mm-delete-duplicates): Add comment.
8279
8280 2010-11-28  Andrew Cohen  <cohen@andy.bu.edu>
8281
8282         * nnir.el (nnir-ignored-newsgroups): New variable.
8283         (nnir-get-active): Use it.
8284
8285 2010-11-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8286
8287         * proto-stream.el (proto-stream-open-network): Add some comments.
8288
8289         * nntp.el (nntp-open-connection): Provide a :success condition.
8290
8291         * nnimap.el (nnimap-open-connection-1): Ditto.
8292
8293         * proto-stream.el (proto-stream-open-network): See what the response to
8294         the STARTTLS command is.
8295
8296         * nnimap.el (nnimap-open-connection-1): Always upgrade to STARTTLS (for
8297         backwards compatibility).
8298         (nnimap-open-connection-1): Really respect nnimap-server-port.
8299
8300         * proto-stream.el (proto-stream-open-network): When doing opportunistic
8301         TLS upgrades we don't really care about the identity of the peer.
8302         (proto-stream-open-network): Force starttls.el to use gnutls-cli, since
8303         that what we've checked for.
8304         (proto-stream-always-use-starttls): Only default to t if
8305         open-gnutls-stream exists.
8306         (proto-stream-open-network): If STARTTLS failed, then just open a
8307         normal connection.
8308         (proto-stream-open-network): Wait until the greeting before doing
8309         STARTTLS.
8310
8311         * nntp.el (nntp-open-connection): Report what the connection error is.
8312
8313         * proto-stream.el (open-protocol-stream): Rename from
8314         open-proto-stream.
8315
8316 2010-11-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8317
8318         * nnimap.el (nnimap-stream): Change default to `undecided'.
8319         (nnimap-open-connection): If `nnimap-stream' is `undecided', try ssl
8320         first, and then network.
8321         (nnimap-open-connection-1): Respect nnimap-server-port.
8322         (nnimap-open-connection): Be more backwards-compatible.
8323
8324         * proto-stream.el (proto-stream-always-use-starttls): New variable.
8325         (proto-stream-open-starttls): De-duplicate the starttls code.
8326         (proto-stream-open-starttls): Folded back into the main function.
8327         (proto-stream-open-network): Fix typo in the gnutls path.
8328         (proto-stream-command): Refactor out.
8329
8330         * nntp.el (nntp-open-connection): Fix the STARTTLS command syntax.
8331
8332         * proto-stream.el (proto-stream-open-starttls): Actually implement the
8333         starttls.el STARTTLS.
8334
8335         * color.el (color-lab->srgb): Fix function call name.
8336
8337         * proto-stream.el (proto-stream-open-tls): Delete output from openssl
8338         if we're using tls.el.
8339         (proto-stream-open-network): If we don't have gnutls-cli or gnutls
8340         built in, then don't try to establish a STARTTLS connection.
8341
8342         * nntp.el (nntp-open-connection): Switch on STARTTLS on supported
8343         servers.
8344
8345         * proto-stream.el (open-proto-stream): Use network, not stream.
8346         (open-proto-stream): Add a way to specify what the end of a command is.
8347
8348         * nntp.el (nntp-open-connection): Use proto-streams for the relevant
8349         connections types.
8350         (nntp-open-network-stream): Remove.
8351         (nntp-open-ssl-stream): Remove.
8352         (nntp-open-tls-stream): Remove.
8353         (nntp-ssl-program): Remove.
8354
8355         * nnimap.el (nnimap-open-connection): Check for "OK" from the greeting.
8356
8357 2010-11-27  Andrew Cohen  <cohen@andy.bu.edu>
8358
8359         * nnir.el: Fix typos.
8360         (nnir-retrieve-headers-override-function): Rename variable to reflect
8361         new semantics.
8362         (nnir-article-group, nnir-article-number, nnir-article-rsv): New helper
8363         macros.
8364         (nnir-request-article, nnir-request-move-article): Use them.
8365         (nnir-categorize): New function.
8366         (nnir-run-query): Use it.
8367         (nnir-retrieve-headers): Rewrite to batch header retrieval.
8368         (nnir-run-gmane): nnir-retrieve-headers now returns the headers already
8369         sorted.
8370         (nnir-group-full-name): Use gnus-group-full-name instead.
8371         (nnir-artlist-artitem-group, nnir-artlist-artitem-number)
8372         (nnir-artlist-artitem-rsv, nnir-sort-groups-by-server): Obsolete.
8373
8374 2010-11-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8375
8376         * nnimap.el (nnimap-open-connection): Fix typo in STARTTLS command.
8377
8378         * proto-stream.el: New library to provide protocol-specific
8379         TLS/STARTTLS connections for IMAP, NNTP, SMTP, POP3 and similar
8380         protocols.
8381         (open-proto-stream): Complete the documentation.
8382         (proto-stream-open-network): Fix some typos.
8383
8384         * nnimap.el (nnimap-open-connection): Use it.
8385
8386 2010-11-27  Yuri Karaban  <tech@askold.net>  (tiny change)
8387
8388         * pop3.el (pop3-open-server): Read server greeting before starting TLS
8389         negotiation.
8390
8391 2010-11-26  Julien Danjou  <julien@danjou.info>
8392
8393         * color.el: Rename various rgb functions to srgb.
8394
8395 2010-11-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8396
8397         * nnimap.el (nnimap-get-groups): Allow non-quoted strings as mailbox
8398         names.
8399
8400 2010-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
8401
8402         * shr.el (shr-insert): Revert last change.
8403         (shr-find-fill-point): Never leave point being at bol;
8404         relax the kinsoku limitation when rendering tables.
8405
8406 2010-11-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8407
8408         * nnmail.el (nnmail-expiry-target-group): Protect against degenerate
8409         results from -accept-article.
8410
8411         * shr-color.el: Require cl when compiling.
8412
8413         * nnheader.el (nnheader-update-marks-actions): Fix typo in last
8414         checkin.
8415
8416         * gnus-art.el (gnus-url-mailto): Unfold URLs before using them.
8417
8418         * nnimap.el (nnimap-request-set-mark): Add is "+", not "-".
8419
8420         * gnus-sum.el (gnus-summary-push-marks-to-backend): Use 'set instead of
8421         'add and 'delete to set backend marks.
8422
8423         * nnmaildir.el (nnmaildir-request-set-mark): Be explicit about 'set.
8424
8425         * nnheader.el (nnheader-update-marks-actions): Refactor out.
8426
8427         * nntp.el (nntp-request-set-mark): Use it.
8428
8429         * nnfolder.el (nnfolder-request-set-mark): Ditto.
8430
8431         * nnml.el (nnml-request-set-mark): Ditto.
8432
8433         * nnimap.el (nnimap-last-response-string): Remove the unfolding -- it
8434         introduces regressions in article selection.
8435         (nnimap-find-uid-response): New function.
8436         (nnimap-request-accept-article): Use the UID returned, if any.
8437         (nnimap-request-move-article): Use the UID returned, if any.
8438         (nnimap-get-groups): Reimplement to work with folded lines.
8439         (nnimap-find-uid-response): The UID is the last element in the list.
8440         (nnimap-request-set-mark): Extend syntax with 'set.
8441
8442         * nnml.el (nnml-request-set-mark): Ditto.
8443
8444         * nnfolder.el (nnfolder-request-set-mark): Ditto.
8445
8446         * nntp.el (nntp-request-set-mark): Ditto.
8447
8448 2010-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
8449
8450         * message.el (message-called-interactively-p): A temporary macro.
8451         (message-goto-body): Use it temporarily.
8452
8453 2010-11-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8454
8455         * nnimap.el (nnimap-unfold-quoted-lines): Refactor out.
8456         (nnimap-last-response-string): Unfold quoted lines, if they exist.
8457         (nnimap-last-response-string): Fix last unfolding fix.
8458
8459 2010-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
8460
8461         * shr.el (shr-insert): Fix the way to fold lines.
8462
8463 2010-11-25  Julien Danjou  <julien@danjou.info>
8464
8465         * shr-color.el (shr-color->hexadecimal): Use color-rgb->hex.
8466
8467         * color.el: Rename from color-lab.el
8468         (color-rgb->hex): Add.
8469         (color-complement): Add.
8470         (color-complement-hex): Add.
8471
8472         * gnus-sum.el (gnus-summary-widget-forward): Add, and bind to [tab].
8473
8474 2010-11-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8475
8476         * shr-color.el (shr-color-visible): Don't bug out if the color names
8477         don't exist.
8478
8479 2010-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
8480
8481         * mml.el (mml-preview): Make sure to bind gnus-displaying-mime to nil,
8482         assuming that article displaying or another mml-preview may be
8483         interrupted for an error or for the like.
8484
8485         * shr.el (shr-get-background): Fix argument name.
8486
8487 2010-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8488
8489         * gnus-cache.el (gnus-summary-insert-cached-articles): Use it.
8490
8491         * gnus-sum.el (gnus-summary-include-articles): New function.
8492
8493         * message.el (message-goto-body): called-interactively-p needs a
8494         parameter, so use `any'.
8495
8496         * nnimap.el (nnimap-request-move-article): It's no longer necessary to
8497         clear marks before moving, since they're synced from the Gnus side
8498         first.
8499
8500         * gnus-sum.el (gnus-summary-push-marks-to-backend): New function.
8501         (gnus-summary-move-article): Copy over all marks before moving, so that
8502         IMAP doesn't think a new article has arrived.
8503
8504 2010-11-24  Julien Danjou  <julien@danjou.info>
8505
8506         * shr.el (shr-insert-background-overlay): Fix typo.
8507         (shr-render-td): Copy the background before rendering.
8508
8509         * shr-color.el (shr-color-visible): Fix docstring.
8510
8511         * shr.el (shr-tag-table): Add bgcolor support.
8512         (shr-render-td): Add bgcolor support.
8513         (shr-get-background): Add.
8514         (shr-insert-foreground-overlay): Use shr-get-background.
8515
8516         * message.el (message-goto-body): Use called-interactively-p.
8517         (message-in-body-p): message-goto-body returns point.
8518
8519 2010-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8520
8521         * mm-util.el (mm-enable-multibyte): Use `to' instead of t.  This fixes
8522         Fixes something or other in Emacs 23, and is backwards compatible.
8523
8524         * message.el (message-goto-body): Remove the <#secure special-casing,
8525         which is too special.
8526
8527         * shr.el (shr-parse-style): Drop !important from styles.
8528
8529 2010-11-24  Daniel Schoepe  <daniel.schoepe@googlemail.com>  (tiny change)
8530
8531         * gnus-sum.el (gnus-summary-articles-in-thread): Fix a bug that causes
8532         this function to return incorrect results when calling it with an
8533         explicit article argument different from
8534         (gnus-summary-article-number).
8535
8536 2010-11-24  Julien Danjou  <julien@danjou.info>
8537
8538         * shr.el (shr-insert-color-overlay): Replace deprecated syntax.
8539         (shr-tag-body): Add background support.
8540         (shr-descend): Add background support.
8541         (shr-tag-title): Add.
8542
8543         * shr-color.el (shr-color-visible): Really return original background
8544         if fixed.
8545
8546 2010-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8547
8548         * shr.el (shr-color-check): Protect against non-existent color names.
8549
8550 2010-11-24  Julien Danjou  <julien@danjou.info>
8551
8552         * color-lab.el: Require 'cl when compiling.
8553
8554         * shr.el (shr-insert-color-overlay): Remove specific rgb() check.
8555
8556         * shr-color.el (shr-color->hexadecimal): Only return the hexadecimal
8557         matched part.
8558
8559         * color-lab.el: Fix all expt calls to use float type.
8560
8561 2010-11-24  Katsumi Yamaoka  <yamaoka@jpl.org>
8562
8563         * shr.el (shr-insert-color-overlay): Pass rgb(rrr, ggg, bbb) type color
8564         expression to shr-color-check as is.
8565
8566         * shr-color.el (shr-color->hexadecimal): Ignore case of color names.
8567
8568         * color-lab.el: Add coding cookie.
8569         (float-pi): Use eval-and-compile.
8570
8571         * dgnushack.el (dgnushack-compile): Exclude shr-color.el from being
8572         compiled for Emacsen having no `libxml-parse-html-region' support.
8573
8574 2010-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8575
8576         * shr.el (shr-insert-color-overlay): Split stuff like
8577         "#444444 !important" to find the real color.
8578         (shr-tag-font): Resurrect shr-tag-font again, since it's needed to
8579         parse <font color="red"> entries.
8580
8581 2010-11-23  Andrew Cohen  <cohen@andy.bu.edu>
8582
8583         * nnheader.el (nnheader-parse-head): Bug fix.  Properly position
8584         point when parsing headers.
8585
8586         * nnspool.el (nnspool-insert-nov-head): Bug fix.  Make sure point
8587         is positioned properly when parsing headers.
8588
8589 2010-11-23  Julien Danjou  <julien@danjou.info>
8590
8591         * color-lab.el (boundp): Bind float-pi for Emacs < 23.3.
8592
8593         * shr-color.el (shr-color->hexadecimal): Add support for color names.
8594
8595         * shr.el (shr-parse-style): Replace \n with space in style parsing.
8596
8597         * shr-color.el (shr-color-hsl-to-rgb-fractions):
8598         Use shr-color-hue-to-rgb.
8599         (shr-color->hexadecimal): Call shr-color-hsl-to-rgb-fractions.
8600
8601 2010-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8602
8603         * shr.el (shr-color->hexadecimal): Autoload.
8604         (shr-descend): Add color to all tags.
8605
8606 2010-11-22  Julien Danjou  <julien@danjou.info>
8607
8608         * shr.el (shr-tag-color-check): Convert colors to hexadecimal with
8609         shr-color->hexadecimal.
8610
8611         * shr-color.el (shr-color->hexadecimal): Add converting functions for
8612         RGB() or HSL() color representation.
8613
8614         * shr.el (shr-tag-font): Add.
8615         (shr-tag-color-check): New function to get better colors.
8616         (shr-tag-insert-color-overlay): Factorize code between tag-font and
8617         tag-span.
8618
8619         * shr-color.el: New file.
8620
8621         * color-lab.el: New file.
8622
8623         * gnus-art.el (gnus-url-mailto): Do not downcase args.
8624
8625 2010-11-21  Andrew Cohen  <cohen@andy.bu.edu>
8626
8627         * nnir.el: Fix typo in comments.
8628         (nnir-run-imap): Simplify code.  No need to reverse artlist.
8629         (nnir-run-gmane): Use nnir-tmp-buffer for web results.
8630
8631 2010-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8632
8633         * gnus-srvr.el (gnus-server-show-server): New command and keystroke.
8634
8635         * nnimap.el (nnimap-get-capabilities): Refactor out.
8636         (nnimap-open-connection): Re-request capabilities after STARTTLS.
8637
8638 2010-11-21  Ralf Angeli  <angeli@caeruleus.net>
8639
8640         * mm-uu.el (mm-uu-type-alist): Prevent spurious empty line from
8641         appearing when `mm-uu-hide-markers' is nil.
8642
8643 2010-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8644
8645         * nnimap.el (nnimap-unselect-group): Make into its own function.
8646         (nnimap-request-rename-group): Unselect group before renaming.
8647         This had gotten lost somewhere.
8648         (nnimap-request-accept-article): Keep track of examined groups, and
8649         unselect the group before APPENDing to read-only groups.
8650         (nnimap-request-move-article): Clear flags before moving so that they
8651         can be re-set later.
8652
8653 2010-11-20  Katsumi Yamaoka  <yamaoka@jpl.org>
8654
8655         * gnus-gravatar.el (gnus-gravatar-transform-address): Decode name again.
8656         (gnus-gravatar-insert): Put avatar always in the beginning of the field.
8657
8658 2010-11-19  Katsumi Yamaoka  <yamaoka@jpl.org>
8659
8660         * gnus-art.el (gnus-mime-display-single):
8661         * gnus-html.el (gnus-html-wash-images, gnus-html-prefetch-images):
8662         * mm-decode.el (mm-shr): Assume that gnus-inhibit-images may be a group
8663         parameter.
8664
8665 2010-11-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8666
8667         * shr.el (shr-table-horizontal-line): Rename from shr-table-line.
8668         (shr-table-vertical-line): New variable.
8669         (shr-insert-table): Use it.
8670
8671 2010-11-18  Katsumi Yamaoka  <yamaoka@jpl.org>
8672
8673         * gnus-html.el (gnus-html-wash-images): Don't display images if
8674         gnus-inhibit-images is non-nil; register displayer for cid images.
8675         (gnus-html-display-image): Work for cid image.
8676         (gnus-html-insert-image): Allow arguments.
8677         (gnus-html-put-image): Inhibit read-only.
8678         (gnus-html-prefetch-images): Don't prefetch images if
8679         gnus-inhibit-images is non-nil.
8680
8681 2010-11-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8682
8683         * shr.el (shr-put-image): Break lines when inserting big pictures.
8684
8685 2010-11-17  Daniel Dehennin  <daniel.dehennin@baby-gnu.org>
8686
8687         * mml2015.el (mml2015-epg-encrypt): Fix two cons with missing
8688         sender, thanks Katsumi Yamaoka.
8689
8690 2010-11-17  Andrew Cohen  <cohen@andy.bu.edu>
8691
8692         * nnir.el (nnir-run-imap): Reverse the article list for each group
8693         rather than the whole list.
8694
8695 2010-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
8696
8697         * shr.el (shr-image-displayer): Protect function against non-existent
8698         image source.
8699
8700         * gnus-art.el (gnus-inhibit-images): New user option.
8701         (gnus-mime-display-single): Don't display image if it is non-nil.
8702
8703         * mm-decode.el (mm-shr): Bind shr-inhibit-images to the value of
8704         gnus-inhibit-images.
8705
8706         * shr.el (shr-image-displayer): New function.
8707         (shr-tag-img): Use it.
8708
8709 2010-11-16  Daniel Dehennin  <daniel.dehennin@baby-gnu.org>
8710
8711         * mml2015.el (mml2015-epg-sign): Use From header.
8712
8713 2010-11-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8714
8715         * gnus-html.el (gnus-html-wash-images): Register a displayer.
8716
8717         * gnus-util.el (gnus-find-text-property-region): Return markers.
8718
8719         * shr.el (shr-tag-img): Put a displayer in the text property.
8720
8721         * gnus-util.el (gnus-find-text-property-region): New utility function.
8722
8723         * gnus-html.el (gnus-html-display-image): Make the alt optional.
8724         (gnus-html-show-images): Remove.
8725
8726         * gnus-art.el (gnus-article-show-images): New, more general function.
8727
8728         * gnus-html.el: Use image-url instead of gnus-image-url to unify the
8729         image url text properties.
8730
8731         * shr.el: Ditto.
8732
8733         * gnus-agent.el (gnus-agentize): Only do the auto-agentizing if
8734         gnus-agent-auto-agentize-methods is set.  Which it isn't.
8735
8736 2010-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
8737
8738         * gnus-sum.el (gnus-summary-move-article): Fix `while' loop to make it
8739         work for two or more articles.
8740
8741 2010-11-12  Katsumi Yamaoka  <yamaoka@jpl.org>
8742
8743         * gnus-art.el (article-treat-non-ascii): Keep text properties not to
8744         divide an image that's in an html article to two or more when washing
8745         non-ASCII characters in alt text of it.
8746
8747 2010-11-11  Katsumi Yamaoka  <yamaoka@jpl.org>
8748
8749         * mm-decode.el (mm-dissect-buffer): Pass sender's mail address to
8750         smime-decrypt-region using function argument.
8751         (mm-possibly-verify-or-decrypt, mm-dissect-multipart): Relay it.
8752
8753         * mm-view.el (mm-view-pkcs7, mm-view-pkcs7-decrypt): Relay it.
8754
8755         * smime.el (smime-decrypt-region): Catch it.
8756
8757 2010-11-11  Stefan Monnier  <monnier@iro.umontreal.ca>
8758
8759         * smime.el (smime-mode-map): Move initialization into declaration.
8760         (gnus-run-mode-hooks): Don't autoload.
8761         (smime-mode): Use define-derived-mode.
8762
8763 2010-11-11  Glenn Morris  <rgm@gnu.org>
8764
8765         * smime.el (from): Restrict declaration to XEmacs.
8766
8767         * nnir.el (gnus-group-topic-name): Autoload.
8768
8769 2010-11-11  Katsumi Yamaoka  <yamaoka@jpl.org>
8770
8771         * shr.el (shr-insert): Don't break long line if it is because of
8772         kinsoku-bol characters in the line end.
8773
8774 2010-11-11  Andrew Cohen  <cohen@andy.bu.edu>
8775
8776         * nnir.el (nnir-request-move-article): Fix to provide original group
8777         and subject.
8778         (nnir-warp-to-article): Don't fail on articles whose headers haven't
8779         been retrieved.
8780
8781         * gnus-sum.el (gnus-summary-move-article): Use original group and
8782         subject for virtual articles such as those in an nnir summary buffer.
8783
8784 2010-11-11  Katsumi Yamaoka  <yamaoka@jpl.org>
8785
8786         * gnus-art.el (article-treat-non-ascii): Make it work for XEmacs (at
8787         least 21.5).
8788
8789         * smime.el (from): Declare it again for XEmacs.
8790
8791 2010-11-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8792
8793         * message.el (message-resend): Don't disable encoding unless it's
8794         already encoded.
8795
8796         * nnimap.el (nnimap-update-info): Fix problem with `g' chopping of
8797         low-numbered articles.
8798
8799 2010-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
8800
8801         * rfc2047.el (rfc2047-syntax-table): Simplify.
8802
8803         * lpath.el: Fbind set-char-table-range for XEmacs 21.4 and SXEmacs 22.1.
8804
8805         * gnus-art.el (article-treat-non-ascii): Use put-char-table instead of
8806         set-char-table-range for XEmacs.
8807
8808 2010-11-10  Glenn Morris  <rgm@gnu.org>
8809
8810         * time-date.el (time-to-seconds): Always an alias on Emacs,
8811         never a real function.
8812         (with-no-warnings): Remove compat stub, now unused.
8813         (time-less-p): Doc fix.
8814         (time-to-number-of-days): Simplify.
8815
8816         * smime.el (from): Remove unused declaration.
8817
8818         * gnus-util.el (with-no-warnings): Remove compat stub, now unused.
8819         (gnus-float-time): On Emacs, always an alias.
8820
8821         * ecomplete.el (with-no-warnings): Remove compat stub, now unused.
8822         (ecomplete-add-item): Use float-time on Emacs, else gnus-float-time.
8823
8824 2010-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
8825
8826         * dgnushack.el: Don't use ignore-errors in the top level form since it
8827         is unavailable in XEmacs even if cl is loaded.
8828
8829         * gnus-art.el (org-entities): Declare it to silence the byte compiler.
8830
8831 2010-11-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8832
8833         * shr.el (browse-url-mailto): Autoload.
8834
8835         * gnus-art.el (article-treat-non-ascii): New command and keystroke.
8836
8837         * message.el (message-subject-trailing-was-ask-regexp): A ] in a []
8838         regexp doesn't need quoting.
8839
8840 2010-11-09  Sven Joachim  <svenjoac@gmx.de>
8841
8842         * message.el (message-subject-trailing-was-ask-regexp)
8843         (message-subject-trailing-was-regexp): Match was: in addition to was.
8844
8845 2010-11-09  Glenn Morris  <rgm@gnu.org>
8846
8847         * nnbabyl.el (nnbabyl-request-move-article, nnbabyl-delete-mail)
8848         (nnbabyl-check-mbox): Use point-at-bol.
8849
8850 2010-11-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8851
8852         * shr.el (shr-browse-url): Call browse-url-mailto for mailto: links.
8853
8854         * message.el (message-mailto): New function.
8855         (message-mailto): Should accept other parameters.
8856         (message-mailto): Remove since it duplicates browse-url-mailto
8857         functionality.
8858
8859 2010-11-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8860
8861         * gnus-start.el (gnus-get-unread-articles): Ignore totally non-existent
8862         methods.
8863         (gnus-read-active-file): Ditto.
8864
8865         * gnus-group.el (gnus-group-read-ephemeral-group): Remove superfluous
8866         ": " from the prompt.
8867         (gnus-group-make-group): Ditto.
8868
8869 2010-11-07  Glenn Morris  <rgm@gnu.org>
8870
8871         * gnus-bookmark.el (gnus-bookmark-bmenu-show-infos)
8872         (gnus-bookmark-kill-line): Use point-at-eol.
8873
8874 2010-11-07  Katsumi Yamaoka  <yamaoka@jpl.org>
8875
8876         * gnus-gravatar.el (gnus-gravatar-transform-address): No need to skip
8877         asterisks in From header.
8878
8879 2010-11-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8880
8881         * gnus-ems.el (gnus-put-image): Use a blank text as the insertion
8882         string to avoid making the From headers syntactically invalid.
8883
8884         * message.el (message-send-mail): Don't insert courtesy messages if the
8885         message already has List-Post and List-ID messages.
8886
8887 2010-11-06  Glenn Morris  <rgm@gnu.org>
8888
8889         * gnus-art.el (gnus-treat-article): Give dynamic local variables
8890         `condition', `type', `length' a prefix.
8891         (gnus-treat-predicate): Update for above name changes.
8892
8893 2010-11-06  Andrew Cohen  <cohen@andy.bu.edu>
8894
8895         * nnir.el (gnus-summary-nnir-goto-thread): Remove function and
8896         binding.  Handled by `gnus-summary-refer-thread' instead.
8897         (nnir-warp-to-article): New backend function.
8898
8899         * nnimap.el (nnimap-request-thread): Force dependency updating.
8900
8901         * gnus-sum.el (gnus-fetch-headers): Allow more arguments.
8902         (gnus-summary-refer-thread): Rework to improve thread-referral.
8903
8904         * gnus-int.el (gnus-warp-to-article): New function.
8905
8906         * gnus-sum.el (gnus-summary-article-map): Bind it.
8907
8908 2010-11-04  Andrew Cohen  <cohen@andy.bu.edu>
8909
8910         * nnir.el (gnus-summary-nnir-goto-thread): Limit work done by
8911         gnus-summary-refer-thread.
8912
8913         * gnus-sum.el (gnus-build-all-threads): Force updating of dependency
8914         headers.
8915         (gnus-summary-limit-include-thread): Prevent articles in thread from
8916         being cut in gnus-cut-threads.
8917         (gnus-summary-refer-thread): Limit retrieved headers to those in
8918         thread.
8919
8920 2010-11-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8921
8922         * message.el (message-send-mail): Use the value of
8923         message-courtesy-message from the message buffer.
8924
8925         * gnus-html.el (gnus-html-browse-url): Implement mailto: URLs.
8926
8927         * shr.el (shr-browse-url): Implement mailto: URLs.
8928
8929         * gnus-sum.el (gnus-summary-show-article): Take `t' as the arg to mean
8930         "raw".
8931
8932         * nnimap.el (nnimap-find-article-by-message-id): Don't EXAMINE a group
8933         if it's already selected.
8934
8935         * mm-decode.el (mm-save-part): Put the entire path in the `M-n' slot.
8936
8937 2010-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
8938
8939         * shr.el (shr-tag-img): Use string-width and truncate-string-to-width
8940         to measure the length and truncate alt text.
8941
8942 2010-11-03  Glenn Morris  <rgm@gnu.org>
8943
8944         * nndiary.el (nndiary-generate-nov-databases-1)
8945         (nndiary-generate-active-info): Rename dynamic variable `files' to
8946         something less generic.
8947
8948 2010-11-03  Andrew Cohen  <cohen@andy.bu.edu>
8949
8950         * nnir.el (nnir-request-move-article): Call the underlying backend to
8951         move articles from nnir.
8952
8953 2010-11-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8954
8955         * gnus-cite.el (gnus-article-natural-long-line-p): Remove.
8956
8957 2010-11-02  Julien Danjou  <julien@danjou.info>
8958
8959         * nnir.el: Remove wais support.
8960
8961 2010-11-02  Glenn Morris  <rgm@gnu.org>
8962
8963         * gnus-html.el: Reorder requirements to quieten compiler.
8964
8965 2010-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
8966
8967         * gnus-cite.el (gnus-article-fill-cited-article): Make fill work
8968         properly for XEmacs as well.
8969         (gnus-article-fill-cited-article, gnus-article-foldable-buffer)
8970         (gnus-article-natural-long-line-p): Use window-width rather than
8971         frame-width.
8972
8973 2010-11-01  Andrew Cohen  <cohen@andy.bu.edu>
8974
8975         * nnir.el (nnir-run-gmane): Inhibit demon.  Return nil if no messages.
8976         (nnir-read-parms): Don't modify query.
8977         (nnir-run-query): Add ability to search topic on current line.
8978         (nnir-get-active): Clean up.
8979
8980 2010-11-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8981
8982         * gnus-cite.el (gnus-article-foldable-buffer): Protect against
8983         degenerate articles.
8984
8985         * gnus-sum.el (gnus-print-buffer): Rewrite to use with-temp-buffer.
8986         (gnus-print-buffer): Just print the buffer as is, without any copying
8987         to a buffer and then re-highlighting.
8988
8989         * nnimap.el (nnimap-request-group): Store the new updated info.
8990         (nnimap-request-group): Select the group when we don't know whether it
8991         exists or not.
8992
8993         * gnus-start.el (gnus-ask-server-for-new-groups): Return the new
8994         groups.
8995
8996         * gnus-group.el (gnus-group-find-new-groups): Display all the new
8997         groups.
8998
8999         * gnus-start.el (gnus-find-new-newsgroups): Return the list of new
9000         groups.
9001
9002         * gnus-cite.el (gnus-article-fill-cited-article): Minimize the
9003         long-lines case by only filling the long lines.
9004
9005         * nnimap.el (nnimap-parse-line): Don't bug out oddly formed replies
9006         (bug#7311).
9007
9008 2010-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
9009
9010         * shr.el: No need to declare `declare-function' since shr.el is for
9011         only Emacsen that provide `libxml-parse-html-region'.
9012
9013         * dgnushack.el: Remove `(defvar iswitchb-temp-buflist)', that is
9014         effective only in a file it is referred to.
9015
9016 2010-11-01  Glenn Morris  <rgm@gnu.org>
9017
9018         * mm-util.el (gnus-completing-read): Autoload.
9019         (mm-read-coding-system): Simplify Emacs definition.
9020
9021         * nnmail.el (gnus-activate-group):
9022         * nnimap.el (gnutls-negotiate):
9023         * nntp.el (netrc-parse): Fix declarations.
9024
9025 2010-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
9026
9027         * gnus-util.el (gnus-string-match-p): New function, that is an alias to
9028         string-match-p in Emacs >=23.
9029
9030         * gnus-msg.el (gnus-configure-posting-styles):
9031         * nnir.el (nnir-run-gmane): Use gnus-string-match-p.
9032
9033 2010-11-01  Glenn Morris  <rgm@gnu.org>
9034
9035         * nnir.el (declare-function): Add compat stub.
9036         (mm-url-insert, mm-url-encode-www-form-urlencoded): Declare.
9037         (nnir-run-gmane): Require 'mm-url.
9038
9039         * mm-util.el (mm-string-to-multibyte): Simplify.
9040
9041         * shr.el (declare-function): Add compat stub.
9042         (url-cache-create-filename): Declare.
9043         (mm-disable-multibyte, widget-convert-button): Autoload.
9044
9045         * smime.el (ldap-search): Declare.
9046         (smime-cert-by-ldap-1): Require ldap on Emacs.
9047
9048         * nnimap.el: Require nnmail, and gnus-sum when compiling.
9049         (nnimap-keepalive): Use gnus-float-time.
9050
9051         * mail-source.el (nnheader-message, gnus-float-time): Autoload.
9052         (mail-source-delete-crash-box): Use gnus-float-time.
9053
9054         * gnus-dired.el (gnus-completing-read): Autoload.
9055
9056         * mm-view.el (gnus-rescale-image): Autoload.
9057
9058         * mm-decode.el (gnus-completing-read, gnus-blocked-images): Autoload.
9059
9060         * gnus.el (gnus-sloppily-equal-method-parameters): Move defn before use.
9061
9062         * sieve-manage.el: Require 'cl when compiling.
9063
9064         * gnus-util.el (iswitchb-read-buffer): Declare rather than autoload.
9065         (gnus-iswitchb-completing-read): Require iswitchb.
9066         (gnus-select-frame-set-input-focus): Silence compiler.
9067
9068 2010-10-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9069
9070         * message.el (message-subject-trailing-was-query): Change default to t,
9071         since I think that's what most people want.
9072
9073         * nnimap.el (nnimap-request-accept-article): Erase buffer before
9074         appending for easier debugging.
9075         (nnimap-wait-for-connection): Take a regexp.
9076         (nnimap-request-accept-article): Wait for the continuation line before
9077         sending anything unless we're streaming.
9078
9079         * gnus-art.el (gnus-treat-article): Only inhibit body washing, and
9080         leave the header washing to take place.
9081
9082 2010-10-31  Daniel Dehennin  <daniel.dehennin@baby-gnu.org>
9083
9084         * gnus-msg.el (gnus-configure-posting-styles): Permit the use of
9085         regular expression match and replace in posting styles.
9086
9087 2010-10-31  Andrew Cohen  <cohen@andy.bu.edu>
9088
9089         * nnir.el (gnus-group-make-nnir-group, nnir-run-query): Allow searching
9090         an entire server.
9091         (nnir-get-active): New function.
9092         (nnir-run-imap): Use it.
9093         (nnir-run-gmane): Who knew, gmane search returns an article score!
9094
9095         * gnus-srvr.el (gnus-server-mode-map): Add binding "G" to search the
9096         server on the current line with nnir.
9097
9098 2010-10-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9099
9100         * gnus-cite.el (gnus-article-foldable-buffer): Refactor out.
9101         (gnus-article-foldable-buffer): Don't fold regions that have a ragged
9102         left edge.
9103         (gnus-article-foldable-buffer): Skip past the prefix when determining
9104         raggedness.
9105
9106         * gnus-sum.el (gnus-summary-show-article): Add `C-u C-u g' for showing
9107         the raw article, and change `C-u g' to show the article without doing
9108         treatments.
9109
9110         * gnus-art.el (gnus-mime-display-alternative): Actually pass the type
9111         on to `gnus-treat-article'.
9112         (gnus-inhibit-article-treatments): New variable.
9113
9114         * gnus.el: Autoload gnus-article-fill-cited-long-lines.
9115
9116         * gnus-art.el (gnus-treatment-function-alist): Have
9117         gnus-treat-fill-long-lines point to gnus-article-fill-cited-long-lines.
9118         (gnus-treat-fill-long-lines): Change default to fill all text/plain
9119         sections.
9120
9121         * gnus-cite.el (gnus-article-fill-cited-article): Remove unused `force'
9122         parameter.
9123         (gnus-article-fill-cited-long-lines): New function.
9124         (gnus-article-fill-cited-article): Allow filling only long sections.
9125
9126         * shr.el (shr-find-fill-point): Don't break lines between punctuation
9127         and non-punctuation (like after the apostrophe in "'We").
9128
9129         * gnus-sum.el (gnus-summary-select-article): Make sure
9130         gnus-original-article-buffer is alive.
9131
9132         * nndoc.el (nndoc-dissect-buffer): Reverse the order of the articles to
9133         reflect the order they're in in the digest.
9134
9135         * gnus.el (gnus-group-startup-message): Move point to the start of the
9136         buffer.
9137
9138         * nnimap.el (nnimap-capability): New function.
9139         (nnimap-open-connection): Only send AUTHENTICATE PLAIN if LOGINDISABLED
9140         is set.
9141
9142 2010-10-31  David Engster  <dengste@eml.cc>
9143
9144         * nnmairix.el (nnmairix-get-valid-servers): Return list of strings to
9145         conform with changes to gnus-completing-read.
9146
9147 2010-10-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9148
9149         * shr.el (shr-tag-img): Output "*" instead of "[img]".
9150
9151 2010-10-30  Andrew Cohen  <cohen@andy.bu.edu>
9152
9153         * nnir.el: Move defvar, defcustom around to keep file organized
9154         and keep byte-compiler quiet.
9155         (nnir-read-parms): Accept search-engine as arg.
9156         (nnir-run-query): Pass search-engine as arg.
9157         (nnir-search-engine): Remove.
9158
9159 2010-10-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9160
9161         * shr.el (shr-generic): The text nodes should be text, not :text.
9162
9163         * nnir.el (nnir-search-engine): Ressurect variable, since it's used
9164         later in the file.
9165
9166 2010-10-30  Andrew Cohen  <cohen@andy.bu.edu>
9167
9168         * nnir.el: General clean up.  Allow searching with multiple engines.
9169         Allow separate extra-parameters for each engine.
9170         Batch queries when possible.
9171         (nnir-imap-default-search-key, nnir-method-default-engines):
9172         Add customize interface.
9173         (nnir-run-gmane): New engine.
9174         (nnir-engines): Use it.  Qualify all prompts with engine name.
9175         (nnir-search-engine): Remove global variable.
9176         (nnir-run-hyrex): Restore for now.
9177         (nnir-extra-parms, nnir-search-history): New variables.
9178         (gnus-group-make-nnir-group): Use them.
9179         (nnir-group-server): Remove in favor of gnus-group-server.
9180         (nnir-request-group): Avoid searching twice.
9181         (nnir-sort-groups-by-server): New function.
9182
9183 2010-10-30  Julien Danjou  <julien@danjou.info>
9184
9185         * gnus-group.el: Remove gnus-group-fetch-control.
9186
9187         * gnus-start.el (gnus-find-new-newsgroups):
9188         Remove gnus-check-first-time-used.
9189
9190         * gnus.el: Remove gnus-backup-default-subscribed-newsgroups.
9191
9192 2010-10-30  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
9193
9194         * nnimap.el (nnimap-update-info): Allow 'ticked and other flags to be
9195         set on groups that don't have \* permanentflags.
9196
9197 2010-10-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9198
9199         * shr.el (shr-tag-span): Drop colorization of regions since we don't
9200         control the background color.
9201         (shr-tag-img): Ignore very small web bug type images.
9202         (shr-put-image): Add help-echo alt texts to the images.
9203         (shr-tag-video): Show the video poster image.
9204
9205 2010-10-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9206
9207         * shr.el (shr-table-depth): New variable.
9208         (shr-tag-table-1): Only insert the images after the top-level table.
9209
9210         * nnimap.el (nnimap-split-incoming-mail): Fix typo.
9211
9212         * gnus-util.el (gnus-list-memq-of-list): New function.
9213
9214         * nnimap.el (nnimap-split-incoming-mail): Note that the INBOX has been
9215         selected.
9216         (nnimap-unsplittable-articles): New slot.
9217         (nnimap-new-articles): Use it.
9218
9219 2010-10-29  Stephen Berman  <stephen.berman@gmx.net>  (tiny change)
9220
9221         * gnus-group.el (gnus-group-get-new-news-this-group): Don't have point
9222         move to the previous line on `M-g'.
9223
9224 2010-10-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9225
9226         * gnus-msg.el (gnus-inews-do-gcc): Don't have the backends do the slow
9227         *-request-group, which seems unnecessary.
9228
9229         * nnimap.el (nnimap-quote-specials): Function copied over from
9230         imap.el.
9231         (nnimap-open-connection): Use AUTHENTICATE PLAIN on servers that say
9232         they support that.  Suggested by Tom Regner.
9233
9234 2010-10-29  Julien Danjou  <julien@danjou.info>
9235
9236         * gnus-sum.el (gnus-summary-delete-marked-as-read): Remove obsolete
9237         defalias.
9238         (gnus-summary-delete-marked-with): Remove obsolete defalias.
9239
9240         * gnus.el: Remove `gnus-nntp-service' variable.
9241         (gnus-secondary-servers): Make obsolete.
9242         (gnus-nntp-server): Make obsolete.
9243
9244         * gnus-start.el (gnus-1): Remove x-splash calls.
9245
9246         * gnus-ems.el (gnus-x-splash): Remove.
9247
9248         * gnus.el (gnus-group-startup-message): Simplify/update code.
9249
9250         * gnus-xmas.el (gnus-xmas-define): Remove unused gnus-characterp
9251         definition.
9252
9253         * gnus-group.el (gnus-group-make-tool-bar): Check for display graphic
9254         capability before doing anything.
9255         (gnus-group-insert-group-line): Remove useless
9256         gnus-group-remove-excess-properties.
9257
9258 2010-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
9259
9260         * gnus-art.el (gnus-article-goto-part): Work for article narrowed by ^L.
9261
9262 2010-10-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9263
9264         * gnus-sum.el (gnus-summary-rescan-group): Try to restore the window
9265         config after reselecting.
9266
9267 2010-10-28  Julien Danjou  <julien@danjou.info>
9268
9269         * shr.el (shr-put-image): Use point even if only inserting text.
9270         (shr-put-image): Save excursion when inserting alt text on non-graphic
9271         display, so the behavior is the same when we are on a graphic display.
9272
9273         * nnir.el (nnir-run-swish-e): Remove hyrex support.
9274
9275 2010-10-28  Katsumi Yamaoka  <yamaoka@jpl.org>
9276
9277         * gnus-art.el (gnus-article-jump-to-part): Error on no part; fix prompt.
9278         (gnus-mime-copy-part): Check coding system, not charset.
9279         (gnus-mime-view-part-externally): Never remove part.
9280         (gnus-mime-view-part-internally): Don't remove part here.
9281         (gnus-article-part-wrapper): Make sure MIME tag is visible.
9282         (gnus-article-goto-part): Go to displayed or preferred subpart if it is
9283         multipart/alternative.
9284
9285         * mm-decode.el (mm-display-part): Take optional arg `force'.
9286
9287 2010-10-26  Julien Danjou  <julien@danjou.info>
9288
9289         * gnus-group.el (gnus-group-default-list-level): Add this function to
9290         compute the default list level.
9291         (gnus-group-default-list-level): Add possibility to use a function.
9292
9293 2010-10-27  Katsumi Yamaoka  <yamaoka@jpl.org>
9294
9295         * mm-decode.el (mm-shr): Add undisplayer to MIME handle.
9296
9297         * gnus-group.el (gnus-group-completing-read)
9298         (gnus-read-ephemeral-bug-group): Replace replace-regexp-in-string with
9299         gnus-replace-in-string.
9300
9301 2010-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
9302
9303         * shr.el (shr-tag-div): Add.
9304
9305         * lpath.el: Fbind current-idle-time for XEmacs 21.4 and SXEmacs 22.1.
9306
9307 2010-10-25  Julien Danjou  <julien@danjou.info>
9308
9309         * gnus-util.el: Remove `gnus-with-local-quit'.
9310
9311         * gnus-demon.el (gnus-demon-init): Use run-with-idle-timer function.
9312
9313 2010-10-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9314
9315         * gnus-sum.el (gnus-summary-select-article): Fix type error in checking
9316         the original article buffer.
9317
9318 2010-10-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9319
9320         * nnimap.el (nnimap-request-head): New function.
9321         (nnimap-request-move-article): Try to be slightly faster by not
9322         requesting the entire message when moving.
9323         (nnimap-transform-headers): Don't bug out on bodiless articles.
9324         (nnimap-send-command): Have no outstanding messages if the IMAP server
9325         doesn't support streaming.
9326         (nnimap-transform-headers): Fold {quoted} strings more sloppily.
9327
9328 2010-10-24  Julien Danjou  <julien@danjou.info>
9329
9330         * message.el (message-default-headers): Fix type.
9331
9332 2010-10-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9333
9334         * gnus-html.el (gnus-html-prefetch-images): Decode entities before
9335         prefetching images.
9336
9337         * gnus-sum.el (gnus-group-make-articles-read): Propagate marks to the
9338         backend for unknown groups.  This is mainly useful for nnimap groups.
9339
9340         * gnus-agent.el (gnus-agent-fetch-group): Don't download stuff if the
9341         group isn't covered by the agent.
9342
9343 2010-10-22  Andrew Cohen  <cohen@andy.bu.edu>
9344
9345         * nnir.el (nnir-method-default-engines): New variable.
9346         (nnir-run-query): Use it.
9347         (nnir-group-mode-hook): Remove key binding and move to gnus-group.el.
9348         (gnus-summary-nnir-goto-thread): Change group if needed.
9349
9350         * gnus-group.el (gnus-group-group-map): Add key binding for
9351         gnus-group-make-nnir-group.
9352
9353 2010-10-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9354
9355         * shr.el (shr-tag-object): Add.
9356
9357         * gnus-sum.el (gnus-summary-select-article): Make sure we have the
9358         original article buffer live.
9359         (gnus-summary-select-article-buffer):
9360         Mention gnus-widen-article-buffer.
9361
9362 2010-10-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9363
9364         * shr.el (shr-tag-strong): Add.
9365
9366 2010-10-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9367
9368         * gnus-group.el (gnus-group-completing-read): Remove all newlines from
9369         group names.  They mess up the group buffer badly.
9370
9371         * shr.el (shr-tag-img): Don't bug out on images that don't have a SRC.
9372
9373         * gnus-group.el (gnus-group-mark-group): Use gnus-group-position-point
9374         instead of the summary one.
9375
9376 2010-10-22  Katsumi Yamaoka  <yamaoka@jpl.org>
9377
9378         * mml.el (mml-preview): Work properly when editing article.
9379
9380         * gnus-start.el (gnus-read-active-file-1): Don't add method to
9381         gnus-have-read-active-file if it's already been in.
9382
9383 2010-10-22  Tom Tromey  <tromey@redhat.com>
9384
9385         * gnus-group.el (gnus-group-unsubscribe-group): Fix args passed to
9386         gnus-group-completing-read.
9387
9388 2010-10-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9389
9390         * message.el (message-mode-map): Don't bind M-; to comment region, to
9391         allow the global comment-dwim to work.
9392
9393 2010-10-21  Julien Danjou  <julien@danjou.info>
9394
9395         * message.el (message-setup-1): Allow message-default-headers to be a
9396         function.
9397
9398 2010-10-21  Katsumi Yamaoka  <yamaoka@jpl.org>
9399
9400         * shr.el (shr-tag-table): Simplify.
9401
9402 2010-10-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9403
9404         * gnus-html.el (gnus-html-prefetch-images): Only prefetch http images
9405         to avoid trying to snarf invalid stuff.
9406
9407         * gnus-sum.el (gnus-summary-edit-article-done): Bind free variable.
9408
9409         * gnus.el (gnus-message-archive-group): Quote value.
9410         (gnus-message-archive-group): Mark as changed.
9411
9412         * shr.el (shr-add-font): Don't put the font properties on the newline
9413         or the indentation.
9414
9415         * message.el (message-fix-before-sending): Change options when sending
9416         non-printable characters.
9417
9418         * gnus.el (gnus-message-archive-method): Change the default to
9419         monthly outgoing groups.
9420
9421         * gnus-sum.el (gnus-summary-edit-article-done): Try to replace articles
9422         that have gotten new numbers.
9423
9424         * nnimap.el (nnimap-request-replace-article): New function.
9425
9426 2010-10-21  Katsumi Yamaoka  <yamaoka@jpl.org>
9427
9428         * nnrss.el (nnrss-wash-html-in-text-plain-parts): Remove.
9429         (nnrss-request-article): Don't use special html washing code.
9430
9431 2010-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
9432
9433         * shr.el (shr-tag-table): Remove useless nconc.
9434
9435 2010-10-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9436
9437         * gnus-art.el (article-wash-html): Simplify and remove the charset
9438         stuff.  Use the normal html rendering code instead of the special html
9439         washing code.
9440
9441         * mm-view.el (mm-text-html-renderer-alist): Add the `shr' and
9442         `gnus-w3m' symbols.
9443         (mm-text-html-washer-alist): Remove.
9444
9445         * mm-decode.el (mm-inline-text-html-renderer): Remove.
9446         (mm-inline-media-tests): Remove use.
9447         (mm-text-html-renderer): Change default to the `shr' symbol.
9448
9449         * mm-view.el (mm-inline-text-html): Remove use.
9450
9451         * gnus-art.el (gnus-blocked-images): New function.  Allow the
9452         `gnus-blocked-images' to be a function.
9453         (gnus-article-wash-function): Remove.
9454
9455 2010-10-20  Julien Danjou  <julien@danjou.info>
9456
9457         * spam.el (spam-list-of-processors): Mark as obsolete.
9458
9459         * nnimap.el (nnimap-request-article): Fix BODYSTRUCTURE retrieval.
9460         (nnimap-insert-partial-structure): Fix boundary detection.
9461
9462 2010-10-20  Andreas Seltenreich  <seltenreich@gmx.de>
9463
9464         * gnus-draft.el (gnus-draft-check-draft-articles): Don't unnecessarily
9465         run file-truename on remote files.  This can be expensive and even
9466         prevent one from editing drafts if some unrelated buffer has a stale
9467         connection.
9468
9469 2010-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
9470
9471         * shr.el (shr-find-fill-point): Shorten line if the preceding char is
9472         kinsoku-eol regardless of shr-kinsoku-shorten.
9473         (shr-tag-table-1): Rename from shr-tag-table; make it a subroutine.
9474         (shr-tag-table): Support caption, thead, and tfoot.
9475
9476 2010-10-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9477
9478         * shr.el (shr-find-fill-point): Don't leave blanks at the start of some
9479         lines.
9480         (shr-save-contents): New command and keystroke.
9481
9482         * nndoc.el (nndoc-type-alist): Add git support.
9483         (nndoc-git-type-p): New function.
9484         (nndoc-transform-git-article): Ditto.
9485         (nndoc-transform-git-headers): Ditto.
9486         (nndoc-transform-git-headers): Generate Subject headers.
9487
9488         * shr.el (shr-parse-style): New function.
9489         (shr-tag-span): Ditto.
9490
9491         * nnmairix.el (nnmairix-summary-mode-hook): Move nnmairix's `$' command
9492         to `G G' to avoid collisions.
9493
9494 2010-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
9495
9496         * shr.el: Load kinsoku if necessary.
9497         (shr-kinsoku-shorten): New internal variable.
9498         (shr-find-fill-point): Make kinsoku shorten text line if
9499         shr-kinsoku-shorten is bound to non-nil.
9500         (shr-tag-table): Bild shr-kinsoku-shorten to t; refer to
9501         shr-indentation too when testing if table is wider than frame width.
9502         (shr-insert-table): Use `string-width' instead of `length' to measure
9503         text width.
9504         (shr-insert-table-ruler): Make sure indentation is done at bol.
9505
9506 2010-10-19  Stefan Monnier  <monnier@iro.umontreal.ca>
9507
9508         * nnimap.el (nnimap-request-move-article, nnimap-parse-line)
9509         (nnimap-process-expiry-targets): Use unibyte for buffers that hold
9510         undecoded network data.
9511
9512 2010-10-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9513
9514         * gnus-agent.el (gnus-agent-toggle-plugged): Use the right minor mode
9515         name in the mode line spec so that the mode line menu works
9516         (bug#2431).
9517
9518         * message.el (message-get-reply-headers): If we're fed `to-address',
9519         then always use that.
9520
9521         * gnus-art.el (gnus-article-make-menu-bar): The article/group menus
9522         aren't so wide as to need to switch off the edit menu.
9523
9524         * gnus-delay.el (gnus-delay-article): Remove superfluous `group'
9525         binding.  Suggested by Leo <sdl.web@gmail.com> (bug#6613).
9526
9527         * nnimap.el (nnimap-request-group): Don't SELECT the group twice on
9528         `M-g'.
9529         (nnimap-update-info): Update flags/read marks even if \* isn't part of
9530         the permanent marks.
9531
9532 2010-10-18  Andrew Cohen  <cohen@andy.bu.edu>
9533
9534         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
9535         Splitting according to references/in-reply-to obeys the ignore-groups
9536         variable, while splitting by sender and subject do not.
9537
9538 2010-10-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9539
9540         * gnus-art.el (gnus-article-dumbquotes-map): Make into a char/string
9541         alist, so that we can look for non-Unicode chars.
9542         (article-translate-strings): Allow both character and string maps.
9543
9544 2010-10-18  Katsumi Yamaoka  <yamaoka@jpl.org>
9545
9546         * shr.el (shr-insert): Don't insert space behind a wide character
9547         categorized as kinsoku-bol, or between characters both categorized as
9548         nospace.
9549
9550 2010-10-16  Andrew Cohen  <cohen@andy.bu.edu>
9551
9552         * gnus-sum.el (gnus-summary-refer-thread): Bug fix.  Add the thread
9553         headers to gnus-newsgroup-headers.
9554
9555 2010-10-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9556
9557         * shr.el (shr-tag-img): Don't align images -- since we're not
9558         rescaling, this often leads to ugly displays.
9559
9560 2010-10-15  Andrew Cohen  <cohen@andy.bu.edu>
9561
9562         * gnus-sum.el (gnus-summary-refer-thread): Unconditionally ignore
9563         duplicates.
9564
9565 2010-10-15  Kan-Ru Chen  <kanru@kanru.info>  (tiny change)
9566
9567         * gnus-diary.el (gnus-diary-check-message): Fix gnus-completing-read
9568         call.
9569
9570 2010-10-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9571
9572         * gnus.el: Autoload gnus-html-show-images.
9573
9574         * nnimap.el: Use nnheader-message throughout.
9575
9576         * shr.el (shr-tag-img): Ignore images with no data.
9577
9578 2010-10-15  Julien Danjou  <julien@danjou.info>
9579
9580         * mml.el (mml-generate-mime-1): Add `mml-enable-flowed' variable to add
9581         a possibility to disable format=flow encoding when using hard newlines.
9582
9583 2010-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
9584
9585         * shr.el (shr-insert): Remove space inserted before or after a
9586         breakable character or at the beginning or the end of a line.
9587         (shr-find-fill-point): Do kinsoku; find the second best point or give
9588         it up if there's no breakable point.
9589
9590 2010-10-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9591
9592         * nnimap.el (nnimap-open-connection): Message when opening connection
9593         for debugging purposes.
9594
9595         * gnus-art.el (gnus-article-setup-buffer): Set article mode truncation
9596         on every setup buffer call to allow this to change from article to
9597         article.
9598
9599         * shr.el (shr-tag-table): Experimental feature: Truncate lines in
9600         buffers where we have a wide table.
9601
9602 2010-10-14  Andrew Cohen  <cohen@andy.bu.edu>
9603
9604         * gnus-sum.el (gnus-summary-refer-thread): Implement a version that
9605         uses *-request-thread.
9606
9607 2010-10-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9608
9609         * nnimap.el (nnimap-open-connection): Remove %s from openssl
9610         incantation, which is no longer valid.
9611
9612 2010-10-14  Julien Danjou  <julien@danjou.info>
9613
9614         * shr.el: Fix defcustom type (char -> character).
9615
9616 2010-10-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9617
9618         * nnimap.el (nnimap-open-connection): tls-program should be a list of
9619         programs.
9620
9621 2010-10-14  Julien Danjou  <julien@danjou.info>
9622
9623         * shr.el (shr-tag-a): Use url-link as widget type.
9624
9625         * gnus-group.el (gnus-group-insert-group-line): Fix group argument to
9626         `gnus-group-get-icon'.
9627
9628 2010-10-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9629
9630         * nnimap.el (nnimap-close-server): Forget the nnimap data on close.
9631         This should make server editing work better.
9632
9633         * shr.el (shr-find-fill-point): Don't inloop on indented text.
9634
9635         * tls.el (tls-program): Remove spurious %s from openssl.
9636
9637         * nnimap.el (nnimap-open-connection): Fix open-tls-stream call.
9638         (nnimap-parse-flags): Fix regexp.
9639
9640         * shr.el (shr-find-fill-point): Use a filling algorithm that should
9641         probably work for CJVK text, too.
9642
9643         * nnimap.el (nnimap-extend-tls-programs): Remove.
9644         (nnimap-open-connection): Bind STARTTLS to openssl explicitly.
9645
9646         * tls.el (tls-starttls-switches): Remove starttls hack.
9647         (open-tls-stream): Ditto.
9648         (tls-find-starttls-argument): Ditto.
9649
9650 2010-10-13  Julien Danjou  <julien@danjou.info>
9651
9652         * nnimap.el (nnimap-parse-flags): Be more strict when looking for FETCH
9653         responses.
9654
9655 2010-10-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9656
9657         * mm-decode.el (mm-shr): Allow use from non-Gnus users.
9658
9659         * gnus-spec.el (gnus-parse-simple-format): princ doesn't really insert
9660         anything in Emacs.
9661
9662         * shr.el (shr-current-column): Remove buggy and unnecessary function.
9663
9664 2010-10-13  Julien Danjou  <julien@danjou.info>
9665
9666         * shr.el (shr-width): Make shr-width a defcustom with default to
9667         fill-column.
9668         (shr-tag-img): Use shr-width rather than fill-column.
9669
9670 2010-10-13  Katsumi Yamaoka  <yamaoka@jpl.org>
9671
9672         * dgnushack.el (byte-optimize-apply):
9673         * gnus-dired.el (gnus-dired-attach): Silence XEmacs 21.5 when compiling.
9674
9675         * gnus-gravatar.el (gnus-gravatar-transform-address): Adjust avatars'
9676         position when (X-)Faces exist.
9677         (gnus-treat-from-gravatar, gnus-treat-mail-gravatar): Force displaying
9678         avatars when called interactively.
9679
9680 2010-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
9681
9682         * gnus-gravatar.el (gnus-gravatar-too-ugly): Don't test if
9683         gnus-article-x-face-too-ugly is bound.
9684
9685 2010-10-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9686
9687         * rfc2231.el (rfc2231-parse-string): Ignore repeated parts.
9688
9689         * nnimap.el (nnimap-request-rename-group): Unselect by selecting a
9690         mailbox that doesn't exist.
9691
9692 2010-10-12  Julien Danjou  <julien@danjou.info>
9693
9694         * shr.el (shr-tag-img): Encode URL properly when retrieving.
9695         (shr-get-image-data): Encode URL properly when fetching from cache.
9696         (shr-tag-img): Use aligned-to spaces to align correctly images.
9697
9698         * gnus-gravatar.el (gnus-gravatar-insert): Check if buffer is alive
9699         before inserting the Gravatar.
9700
9701         * shr.el (shr-tag-img): Add align attribute support for <img>.
9702
9703 2010-10-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9704
9705         * gnus-gravatar.el (gnus-art): Require.
9706
9707         * gnus-sum.el (gnus-summary-mark-as-unread-forward)
9708         (gnus-summary-mark-as-unread-backward, gnus-summary-mark-as-unread):
9709         Remove long obsoleted functions.
9710
9711 2010-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
9712
9713         * lpath.el: Fbind gnutls-negotiate for Emacs 22 and XEmacsen.
9714
9715         * nnimap.el (gnutls-negotiate): Silence the byte compiler.
9716
9717         * gnus-art.el, gnus-cache.el, gnus-fun.el, gnus-group.el:
9718         * gnus-picon.el, gnus-spec.el, gnus-sum.el, gnus-util.el, gnus.el:
9719         * hashcash.el, imap.el, mail-source.el, message.el, mm-bodies.el:
9720         * mm-decode.el, mm-extern.el, mm-util.el, mm-view.el, mml-smime.el:
9721         * mml.el, mml1991.el, mml2015.el, nnfolder.el, nnheader.el, nnmail.el:
9722         * nnmaildir.el, nnrss.el, nntp.el, pgg-parse.el, pgg.el, rfc1843.el:
9723         * sieve-manage.el, smime.el, spam.el:
9724         Fix comment for declare-function.
9725
9726 2010-10-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9727
9728         * nnimap.el (nnimap-request-rename-group): Select group read-only
9729         before renaming it.
9730
9731         * shr.el (shr-insert): Fix up the white space only regexp.
9732
9733         * nnimap.el (nnimap-transform-split-mail): Not all articles have
9734         bodies.  Protect against this.  Reported by Michael Welsh Duggan.
9735
9736         * shr.el (shr-current-column): New function.
9737         (shr-find-fill-point): New function.
9738
9739 2010-10-11  Michael Welsh Duggan  <md5i@md5i.com>  (tiny change)
9740
9741         * sieve-manage.el (sieve-manage-open): Allow port names as well as port
9742         numbers.
9743
9744 2010-10-11  Julien Danjou  <julien@danjou.info>
9745
9746         * shr.el (shr-hr-line): Add.
9747         (shr-tag-hr): Use shr-hr-line to specify which character to use to
9748         display hr lines.
9749         (shr-max-columns): Do not change state to nil if we just inserting
9750         spaces.
9751
9752 2010-10-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9753
9754         * gnus-topic.el (gnus-topic-read-group): If after the last group,
9755         select the last group.
9756
9757 2010-10-11  Teodor Zlatanov  <tzz@lifelogs.com>
9758
9759         * gnus-int.el (gnus-run-hook-with-args): Autoload from gnus-util.el.
9760
9761 2010-10-10  Dan Nicolaescu  <dann@ics.uci.edu>
9762
9763         * dig.el (dig-mode-map): Declare and define in one step.
9764
9765 2010-10-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9766
9767         * nnimap.el (nnimap-update-qresync-info): \Flagged messages are read
9768         for Gnus.
9769         (nnimap-retrieve-group-data-early): utf7-encode the group parameters.
9770         (nnimap-update-qresync-info): Mark \Seen articles as read.
9771
9772         * gnus-sum.el (gnus-summary-set-local-parameters): Ignore the `active'
9773         non-variable, too.
9774
9775         * nnimap.el (nnimap-open-connection): Use gnutls STARTTLS, if
9776         available.
9777         (nnimap-update-info): Rely more on the current active than the param
9778         active to avoid marking articles as read too much.
9779
9780         * auth-source.el (auth-source-create): Use (user-login-name) for the
9781         user name default.
9782
9783         * nnimap.el (nnimap-update-info): If the server doesn't return any
9784         useful info, just use the previous info.
9785         (nnimap-update-info): Prefer old info over start-article.
9786         (nnimap-update-qresync-info): Finish implementing QRESYNC.
9787
9788 2010-10-10  Andrew Cohen  <cohen@andy.bu.edu>
9789
9790         * nnir.el (autoload): Clean up autoloads.
9791         (nnir-imap-default-search-key): Rename from nnir-imap-search-field.
9792         Use key rather than value.
9793         (nnir-imap-search-other): New variable.
9794         (nnir-read-parm): Use it.
9795         (nnir-imap-expr-to-imap): Use %S rather than imap-quote-specials.
9796         (gnus-summary-nnir-goto-thread): Modify to work with imap.
9797
9798 2010-10-10  Stefan Monnier  <monnier@iro.umontreal.ca>
9799
9800         * nnimap.el (nnimap-wait-for-response): If the user hits `C-g', kill
9801         the process, too.
9802
9803 2010-10-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9804
9805         * spam.el (gnus-summary-mode-map): Bind to "$".
9806         Suggested by Russ Allbery.
9807
9808         * shr.el: Rework the way things are indented by <li> slightly.
9809
9810         * gnus.el (gnus-group-set-parameter): Fix typo.
9811
9812         * nnimap.el: Start implementing QRESYNC support.
9813
9814 2010-10-09  Julien Danjou  <julien@danjou.info>
9815
9816         * nnir.el (nnir-engines): Fix too many arguments.
9817
9818 2010-10-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9819
9820         * nnmail.el (nnmail-expiry-target-group): Say that every expiry target
9821         group is the "last", so that the backends like nnfolder actually save
9822         their folders.
9823
9824         * nnimap.el (nnimap-open-connection): If we have gnutls loaded, then
9825         try to use that for the tls stream.
9826         (nnimap-retrieve-group-data-early): Rework the marks code to heed
9827         UIDVALIDITY and find out which groups are read-only and not.
9828         (nnimap-get-flags): Use the same marks parsing code as the rest of
9829         nnimap.
9830
9831 2010-10-09  Julien Danjou  <julien@danjou.info>
9832
9833         * nnir.el (nnir-read-parm): Fix call to gnus-completing-read.
9834
9835         * gnus-gravatar.el (gnus-gravatar-transform-address): Error errors when
9836         retrieving gravatars.
9837
9838         * shr.el (shr-table-corner): Add.
9839         (shr-table-line): Add.
9840         (shr-insert-table-ruler): Use the above defcustoms to insert tables.
9841
9842 2010-10-08  Julien Danjou  <julien@danjou.info>
9843
9844         * mm-decode.el (mm-text-html-renderer): Add mm-shr in choice list.
9845
9846 2010-10-08  Teodor Zlatanov  <tzz@lifelogs.com>
9847
9848         * gnus-util.el (gnus-alist-pull): Rename `gnus-pull'.
9849
9850         * gnus-sum.el (gnus-mark-article-as-unread)
9851         (gnus-summary-mark-article-as-unread, gnus-summary-remove-bookmark)
9852         (gnus-summary-set-bookmark): Use it.
9853
9854         * gnus-msg.el (gnus-setup-message): Use it.
9855
9856         * gnus-demon.el (gnus-demon-remove-handler): Use it.
9857
9858         * gnus.el (gnus-group-remove-parameter): Use it.
9859
9860         * gnus-group.el (gnus-group-make-web-group): Use it.
9861
9862         * gnus-demon.el (gnus-demon-remove-handler): Use it.
9863
9864         * nnregistry.el: Update docs to mention manual.
9865
9866         * gnus-registry.el: Update docs to mention nnregistry.el.
9867         (gnus-registry-initialize): Don't install nnregistry refer method
9868         automatically.
9869         (gnus-registry-install-nnregistry): Remove it.
9870
9871 2010-10-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9872
9873         * shr.el (shr-insert): Don't insert double spaces.
9874
9875 2010-10-08  Katsumi Yamaoka  <yamaoka@jpl.org>
9876
9877         * gnus-gravatar.el (gnus-treat-from-gravatar)
9878         (gnus-treat-mail-gravatar): Bind gnus-gravatar-too-ugly to nil when
9879         called interactively.
9880
9881         * gnus-art.el (gnus-mime-view-part-externally)
9882         (gnus-mime-view-part-internally): Make predicate function passed to
9883         gnus-mime-view-part-as-type assume argument is a mime type, not a list
9884         of a mime type.
9885
9886         * shr.el (shr-table-widths): Don't use cl function `reduce'.
9887
9888 2010-10-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9889
9890         * shr.el (require): Require cl when compiling.
9891         (shr-tag-hr): New function.
9892
9893         * nnimap.el (nnimap-update-info): Remove double setting of high.
9894         (nnimap-update-info): Don't ignore groups that have no UIDNEXT.
9895         This makes nnimap work properly on Courier again.
9896
9897         * gnus.el (gnus-carpal): The carpal mode has been removed, but define
9898         the variable for backwards compatibility.
9899
9900         * mm-decode.el (mm-save-part): If given a non-directory result, expand
9901         the file name before using to avoid setting mm-default-directory to
9902         nil.
9903
9904         * gnus-start.el (gnus-get-unread-articles): Require gnus-agent before
9905         bidning gnus-agent variables.
9906
9907         * shr.el (shr-render-td): Use a cache for the table rendering function
9908         to avoid getting an exponential rendering behavior in nested tables.
9909         (shr-insert): Rework the line-breaking algorithm.
9910         (shr-insert): Don't leave trailing spaces.
9911         (shr-insert-table): Also insert empty TDs.
9912         (shr-tag-blockquote): Ensure paragraphs after </ul>.
9913
9914 2010-10-07  Stefan Monnier  <monnier@iro.umontreal.ca>
9915
9916         * gnus-sum.el (gnus-number): Rename from `number'.
9917         (gnus-article-marked-p, gnus-summary-limit-to-display-predicate)
9918         (gnus-summary-limit-children): Update uses correspondingly.
9919
9920 2010-10-07  Katsumi Yamaoka  <yamaoka@jpl.org>
9921
9922         * gnus-gravatar.el (gnus-gravatar-too-ugly): New user option.
9923         (gnus-gravatar-transform-address): Don't show avatars of people of
9924         which mail addresses match gnus-gravatar-too-ugly.
9925
9926 2010-10-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9927
9928         * shr.el (shr-table-widths): Expand TD elements to fill available
9929         space.
9930
9931 2010-10-07  Julien Danjou  <julien@danjou.info>
9932
9933         * nnimap.el (nnimap-request-rename-group): Add this method.
9934
9935 2010-10-07  Katsumi Yamaoka  <yamaoka@jpl.org>
9936
9937         * gnus-html.el (gnus-html-schedule-image-fetching): Remove function
9938         name from XEmacs' function-arglist.
9939
9940         * gnus-gravatar.el (gnus-gravatar-insert): Don't add properties to
9941         gravatar under XEmacs.
9942
9943 2010-10-07  Teodor Zlatanov  <tzz@lifelogs.com>
9944
9945         * auth-source.el: Update docs with TODO items.
9946
9947         * gnus-sync.el: Update docs to explain state and plans.
9948
9949         * gnus-int.el (gnus-after-set-mark-hook, gnus-before-update-mark-hook):
9950         Hooks for mark updates.
9951         (gnus-request-set-mark, gnus-request-update-mark): Use them.
9952
9953         * gnus-util.el (gnus-run-hooks-with-args): Convenience function to run
9954         hooks with arguments, which is needed for mark update hooks.
9955
9956 2010-10-06  Julien Danjou  <julien@danjou.info>
9957
9958         * gnus.el (gnus-expand-group-parameter): Only return and act on what
9959         was matched.
9960
9961         * sieve-manage.el: Update example in `Commentary'.
9962
9963         * sieve.el (sieve-open-server): Use sieve-manage-authenticate.
9964
9965         * sieve-manage.el (sieve-manage-open): Use sieve-manage-default-port,
9966         not 2000.
9967         (sieve-manage-authenticate): Re-add function.
9968
9969 2010-10-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9970
9971         * shr.el (shr-insert): Get 'space transition right.
9972         (shr-render-td): Only delete space at the end of the TD.
9973
9974         * nnimap.el (nnimap-open-connection): Prepare to support
9975         open-gnutls-stream.
9976
9977         * shr.el: Rearrange function order to be more logical.
9978
9979 2010-10-06  Julien Danjou  <julien@danjou.info>
9980
9981         * nnrss.el (nnrss-check-group): Remove 404 URL in comment.
9982         (nnrss-discover-feed): Remove 404 URL in docstring.
9983
9984         * nnir.el: Fix Swish-E URL.
9985         Fix Namazu URL.
9986
9987         * message.el (message-change-subject): Remove 404 URL in a comment.
9988
9989 2010-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
9990
9991         * gnus-art.el (gnus-mime-view-part-as-type): Make it work when being
9992         called interactively.
9993
9994         * gnus-util.el (gnus-remove-if): Allow hash table.
9995         (gnus-remove-if-not): New function.
9996
9997         * gnus-art.el (gnus-mime-view-part-as-type):
9998         * gnus-score.el (gnus-summary-score-effect):
9999         * gnus-sum.el (gnus-read-move-group-name):
10000         Replace remove-if-not with gnus-remove-if-not.
10001
10002         * gnus-group.el (gnus-group-completing-read):
10003         Regard collection as a hash table if it is not a list.
10004
10005 2010-10-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10006
10007         * shr.el (shr-render-td): Allow blank/missing <TD>s.
10008
10009         * shr.el: Document the table-rendering algorithm.
10010
10011 2010-10-05  Katsumi Yamaoka  <yamaoka@jpl.org>
10012
10013         * dgnushack.el (dgnushack-compile): Exclude shr.el from being compiled
10014         for Emacsen having no `libxml-parse-html-region' support.
10015
10016 2010-10-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10017
10018         * gnus-html.el (gnus-html-schedule-image-fetching): Protect against
10019         invalid URLs.
10020
10021         * shr.el (shr-tag-img): Shorten ALT texts and allow them to be
10022         line-broken.
10023         (shr-tag-img): Ignore image fetching errors.
10024         (shr-overlays-in-region): Compute overlay positions correctly.
10025
10026         * mm-decode.el (mm-shr): Require shr.
10027
10028         * gnus-art.el (gnus-blocked-images): Move variable here.
10029
10030         * shr.el (shr-insert-table): Bind free variable.
10031
10032         * mm-decode.el (mm-shr): Bind shr-content-function.
10033
10034         * shr.el (shr-content-function): New variable.
10035
10036         * gnus-sum.el (gnus-article-sort-by-most-recent-date): New function,
10037         added for symmetry.
10038
10039         * nnir.el (nnir-retrieve-headers): Don't bug out on invalid data.
10040
10041         * gnus-group.el (gnus-group-make-group): Doc fix.
10042
10043         * nnimap.el (nnimap-request-newgroups): Return success.
10044
10045         * shr.el (shr-find-elements): New function.
10046         (shr-tag-table): Put all the images after the table.
10047         (shr-tag-table): Really inhibit images inside the table.
10048         (shr-collect-overlays): Copy over overlays from the TD elements to the
10049         main document.
10050
10051         * mm-decode.el (mm-shr): Bind shr-blocked-images to
10052         gnus-blocked-images.
10053
10054 2010-10-05  Julien Danjou  <julien@danjou.info>
10055
10056         * sieve-manage.el (sieve-sasl-auth): Use auth-source to authenticate.
10057
10058         * gnus-html.el (gnus-html-wash-images): Rescale image from cid too.
10059         (gnus-html-maximum-image-size): Add this function.
10060         (gnus-html-put-image): Use gnus-html-maximum-image-size.
10061
10062         * sieve-manage.el (sieve-manage-capability): Do not bug out when the
10063         server-value of the capability is nil.
10064
10065 2010-10-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10066
10067         * shr.el (shr-tag-em): Add <EM> tag.
10068
10069 2010-10-05  Florian Ragwitz  <rafl@debian.org>  (tiny change)
10070
10071         * sieve-manage.el (sieve-manage-default-stream): Make default stream
10072         customizable.
10073
10074         * gnus-html.el (gnus-html-wash-tags): Decode URL entities to avoid
10075         handing broken links to browse-url.
10076
10077 2010-10-05  Julien Danjou  <julien@danjou.info>
10078
10079         * gnus-util.el (gnus-emacs-completing-read)
10080         (gnus-iswitchb-completing-read): Use autoload rather than require.
10081
10082 2010-10-05  Katsumi Yamaoka  <yamaoka@jpl.org>
10083
10084         * lpath.el: Fbind libxml-parse-html-region and shr-insert-document for
10085         Emacs 22 and XEmacs; fbind help-function-arglist for XEmacs 21.4 and
10086         SXEmacs; fbind ido-completing-read, and bind iswitchb-mode and
10087         iswitchb-temp-buflist for XEmacs.
10088
10089         * gnus-util.el (gnus-completing-read-function): Exclude
10090         gnus-icompleting-read and gnus-ido-completing-read from candidates for
10091         XEmacs since iswitchb.el is very old and ido.el is unavailable in
10092         XEmacs.
10093
10094         * gnus-registry.el (gnus-registry-install-nnregistry): Rewrite so as
10095         not to use `delete-dups' that is unavailable in XEmacs 21.4.
10096
10097         * gnus-html.el: Don't require help-fns under XEmacs.
10098         (gnus-html-schedule-image-fetching): Work for XEmacs.
10099
10100         * mm-decode.el (mm-shr): Decode contents by charset.
10101
10102 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10103
10104         * nnimap.el (nnimap-open-connection): Give an error if nnimap-stream is
10105         unknown.
10106
10107         * shr.el (shr-tag-blockquote): Ensure paragraph after quote, too.
10108         (shr-get-image-data): Ensure against the cache file missing.
10109
10110         * nnimap.el (nnimap-finish-retrieve-group-infos): Message while waiting
10111         for data.
10112
10113         * spam-report.el (spam-report-url-ping-plain): Don't query about
10114         killing the process.
10115
10116         * shr.el (shr-render-td): Protect against too-wide text.
10117
10118 2010-10-04  Julien Danjou  <julien@danjou.info>
10119
10120         * mml-smime.el (mml-smime-openssl-encrypt-query): Fix choices.
10121         (mml-smime-openssl-sign-query): Fix gnus-completing-read call.
10122
10123         * gravatar.el (gravatar-retrieved): Kill buffer when gravatar has been
10124         retrieved.
10125
10126 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10127
10128         * shr.el (browse-url): Require.
10129         (shr-ensure-paragraph): Don't insert a new newline after empty-ish
10130         lines.
10131         (shr-show-alt-text, shr-browse-image): New commands.
10132         (shr-browse-url, shr-copy-url): New commands.
10133
10134         * gnus-sum.el (gnus-widen-article-window): New variable.
10135         (gnus-summary-select-article-buffer): Use it.
10136
10137         * message.el (message-idna-to-ascii-rhs-1): Don't bug out on addresses
10138         without @ signs.
10139
10140 2010-10-04  Michael Welsh Duggan  <md5i@md5i.com>  (tiny change)
10141
10142         * nnir.el (nnir-run-imap): Remove spurious space in search string.
10143
10144 2010-10-04  Julien Danjou  <julien@danjou.info>
10145
10146         * gnus-util.el (gnus-emacs-completing-read): Mapcar collection to list,
10147         for XEmacs.
10148
10149 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10150
10151         * gnus-salt.el: Remove all gnus-carpal stuff -- it's not useful.
10152
10153         * nnimap.el (nnimap-open-connection): Allow tls as a synonym for ssl.
10154         (nnimap-close-server): Implement.
10155
10156         * dgnushack.el (iswitchb): Require to shut up the compiler.
10157
10158         * shr.el (shr-ensure-paragraph): Fix the non-empty line case.
10159         (shr-insert): Tweak line breaking.
10160         (shr-insert): Handle <pre> better.
10161         (shr-tag-li): Get <li> indentation right.
10162         (shr-tag-li): Get <li> indentation even righter.
10163         (shr-tag-blockquote): Ensure paragraph start.
10164         (shr-make-table): Tweak table generation.
10165         (shr-make-table): Fix typo.
10166
10167         * shr.el: Implement table rendering.
10168
10169 2010-10-04  Julien Danjou  <julien@danjou.info>
10170
10171         * gnus-html.el (gnus-html-put-image): Fix resize image code.
10172
10173 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10174
10175         * shr.el (shr-insert): Use string anchors instead of line anchors.
10176
10177 2010-10-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10178
10179         * shr.el: Add headings.
10180         (shr-ensure-paragraph): Actually work.
10181         (shr-tag-li): Make <ul> prettier.
10182         (shr-insert): Get white space at the beginning/end of elements right.
10183         (shr-tag-p): Collapse subsequent <p>s.
10184         (shr-ensure-paragraph): Don't insert double line feeds after blank
10185         lines.
10186         (shr-insert): \t is also space.
10187         (shr-tag-s): Fix "s" tag name function.
10188         (shr-tag-s): Fix face prop name.
10189
10190 2010-10-03  Julien Danjou  <julien@danjou.info>
10191
10192         * gnus-html.el (gnus-html-put-image): Use gnus-rescale-image.
10193
10194         * mm-view.el (gnus-window-inside-pixel-edges): Add autoload for
10195         gnus-window-inside-pixel-edges.
10196
10197         * gnus-ems.el (gnus-window-inside-pixel-edges): Move from gnus-html to
10198         gnus-ems.
10199
10200         * mm-view.el (mm-inline-image-emacs): Support image resizing.
10201
10202         * gnus-util.el (gnus-rescale-image): Add generic gnus-rescale-image
10203         function.
10204
10205         * mm-decode.el (mm-inline-large-images): Enhance defcustom and add
10206         resize choice.
10207
10208 2010-10-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10209
10210         * shr.el (shr-tag-p): Don't insert newlines on empty tags at the
10211         beginning of the buffer.
10212
10213         * gnus-sum.el (gnus-summary-select-article-buffer): Really select the
10214         article buffer again.
10215
10216         * shr.el (shr-tag-p): Don't insert newlines at the start of the buffer.
10217
10218         * mm-decode.el (mm-shr): Narrow before inserting, so that shr can know
10219         when it's at the start of the buffer.
10220
10221         * shr.el (shr-tag-blockquote): Convert name.
10222         (shr-rescale-image): Use the right image-size variant.
10223
10224         * gnus-sum.el (gnus-summary-select-article-buffer): If the article
10225         buffer isn't shown, then select the current article first instead of
10226         bugging out.
10227         (gnus-summary-select-article-buffer): Show both the article and summary
10228         buffers again.
10229
10230         * shr.el (shr-fontize-cont): Protect against regions with no text.
10231         Rename tag functions to shr-tag-* for enhanced security.
10232         (shr-tag-ul, shr-tag-ol, shr-tag-li, shr-tag-br): New functions.
10233
10234 2010-10-03  Chong Yidong  <cyd@stupidchicken.com>
10235
10236         * shr.el (shr-insert):
10237         * pop3.el (pop3-movemail):
10238         * gnus-html.el (gnus-html-wash-tags): Don't use plusp, as cl may not be
10239         loaded.
10240
10241 2010-10-03  Glenn Morris  <rgm@gnu.org>
10242
10243         * nnmairix.el (nnmairix-replace-illegal-chars): Drop Emacs 20 code.
10244
10245         * smime.el (smime-cert-by-ldap-1): Drop Emacs 21 code.
10246
10247         * gnus-art.el (gnus-next-page-map): Drop Emacs 20 compat cruft.
10248
10249         * gmm-utils.el (gmm-write-region): Drop Emacs 20 compat cruft.
10250
10251         * gnus-util.el (gnus-make-local-hook): Simplify.
10252
10253 2010-10-02  Julien Danjou  <julien@danjou.info>
10254
10255         * gnus-util.el (gnus-iswitchb-completing-read): New function.
10256         (gnus-ido-completing-read): New function.
10257         (gnus-emacs-completing-read): New function.
10258         (gnus-completing-read): Use gnus-completing-read-function.
10259         Add gnus-completing-read-function.
10260
10261 2010-10-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10262
10263         * shr.el (shr-insert-document): Autoload.
10264         (shr-img): Be silent.
10265         (shr-insert): Add a newline after every picture before text.
10266         (shr-add-font): Use overlays for combining faces.
10267         (shr-insert): Pass upwards the text start point.
10268
10269         * mm-decode.el (mm-text-html-renderer): Default to shr.el rendering, if
10270         possible.
10271         (mm-shr): New function.
10272
10273 2010-10-02  Julien Danjou  <julien@danjou.info>
10274
10275         * gnus-gravatar.el (gnus-gravatar-insert): Adjust character where we
10276         should go backward.
10277
10278 2010-10-02  Juanma Barranquero  <lekktu@gmail.com>
10279
10280         * shr.el (shr): Fix typo in provide call.
10281
10282 2010-10-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10283
10284         * shr.el: New file.
10285
10286         * gnus-html.el (gnus-html-schedule-image-fetching): Be silent.
10287
10288         * gnus-topic.el (gnus-topic-move-group): Fix the syntax of the
10289         completing read.
10290
10291 2010-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10292
10293         * gnus-start.el (gnus-check-bogus-newsgroups): Say how many groups
10294         we're being queried about.  Suggested by Dan Jacobson.
10295
10296         * nndoc.el (nndoc-type-alist): Do babyl before mime-parts.
10297         Suggested by Jason Eisner.
10298
10299         * gnus-async.el (gnus-async-delete-prefetched-entry): Remove from hash
10300         table, too.  Suggested by Stefan Wiens.
10301         (gnus-async-prefetched-article-entry): Use intern-soft to avoid growing
10302         the table unnecessary.  Suggested by Stefan Wiens.
10303
10304         * gnus-sum.el (gnus-summary-clear-local-variables): This is probably no
10305         longer needed, and probably doesn't work either, as pointed out by
10306         Stefan Wiens.
10307         (gnus-summary-exit): Remove call to the clearing function.
10308         (gnus-summary-exit-no-update): Ditto.
10309
10310         * gnus-art.el (gnus-summary-save-in-file): Use with-current-buffer
10311         instead of gnus-eval-in-buffer-window to avoid popping up frames.
10312         Reported by Stefan Monnier.
10313         (gnus-summary-save-in-rmail): Ditto.
10314
10315         * gnus-sum.el (gnus-summary-select-article-buffer): Show only the
10316         article buffer, instead of both the article buffer and the summary
10317         buffer.  Sort of suggested by Dan Jacobson.
10318
10319         * gnus-win.el (gnus-buffer-configuration): Add an only-article spec.
10320
10321         * nnmbox.el (nnmbox-read-mbox): Mark buffer for deletion on Gnus exit.
10322         Suggested by Dan Jacobson.
10323
10324         * mm-encode.el (mm-content-transfer-encoding-defaults): Try to make the
10325         documentation clearer.
10326
10327         * message.el (message-shorten-references): Comment on the number "21".
10328         Suggested by Stefan Monnier.
10329
10330         * gnus-sum.el (gnus-summary-scroll-up): Add more documentation.
10331         Suggested by Dan Jacobson.
10332
10333         * gnus.el (gnus-large-newsgroup):
10334         Mention gnus-large-ephemeral-newsgroup.  Suggested by Dan Jacobson.
10335
10336         * gnus-msg.el (gnus-summary-resend-message): When resending, don't
10337         externalize attachments.  Bug reported by Steve Wen.
10338
10339         * gnus.el (gnus-continuum-version): Make inactive, since it doesn't
10340         really message anything to the user.
10341
10342         * nnmail.el (nnmail-article-group): Allow using the fancy split method
10343         directly.
10344
10345         * nnimap.el (nnimap-request-group): Low higher than high to signal no
10346         messages in empty groups.
10347
10348 2010-10-01  Teodor Zlatanov  <tzz@lifelogs.com>
10349
10350         * nnimap.el (nnimap-request-group): Don't bug out when there's an empty
10351         non-UIDNEXT group.
10352
10353 2010-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10354
10355         * gnus-group.el (gnus-group-completing-read): Return the symbol name,
10356         not the value from the collection.
10357
10358         * nnimap.el (nnimap-update-info): Ignore groups that have no UIDNEXT
10359         values.  This sometimes happens on some groups that have no info.
10360         (nnimap-request-newgroups): New function.
10361
10362 2010-10-01  Teodor Zlatanov  <tzz@lifelogs.com>
10363
10364         * gnus-registry.el (gnus-registry-install-nnregistry): Move the feature
10365         check into `gnus-registry-initialize'.
10366         (gnus-registry-initialize): Ditto.
10367         Fix and extend header docs.
10368
10369 2010-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10370
10371         * gnus-html.el (gnus-html-prefetch-images): Adjust regexp to avoid
10372         regexp backtrace overflows.
10373
10374         * nnimap.el (nnimap-extend-tls-programs): Only extend those programs
10375         for starttls that tls.el implements; i.e. openssl.
10376
10377         * tls.el (tls-starttls-switches): Give up on using starttls with
10378         gnutls-cli.
10379         (tls-program): Add --insecure to be consistent with the defaults from
10380         openssl s_client.  Now all three commands are insecure.
10381
10382 2010-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
10383
10384         * lpath.el: Bind completion-styles-alist for XEmacs.
10385
10386         * gravatar.el: Don't load image.el that XEmacs doesn't provide.
10387         (gravatar-create-image): New function that's an alias to
10388         gnus-xmas-create-image, gnus-create-image, or create-image.
10389         (gravatar-data->image): Use it.
10390
10391 2010-09-30  Teodor Zlatanov  <tzz@lifelogs.com>
10392
10393         * gnus-registry.el (gnus-registry-install-nnregistry): New function to
10394         install the nnregistry refer method.
10395         (gnus-registry-install-hooks): Use it.
10396         (gnus-registry-unfollowed-groups): Add nnmairix to the default
10397         unfollowed groups.
10398
10399 2010-09-30  Jose A. Ortega Ruiz  <jao@gnu.org>  (tiny change)
10400
10401         * gnus-sum.el (gnus-summary-show-thread): Skip past invisible text when
10402         expanding threads.
10403
10404 2010-09-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10405
10406         * nnir.el: Use the server names without suffixes (bug#7009).
10407
10408         * nnimap.el (nnimap-open-connection): Reinstate the auto-upgrade from
10409         unencrypted to STARTTLS, if possible.
10410
10411 2010-09-30  Teemu Likonen  <tlikonen@iki.fi>  (tiny change)
10412
10413         * message.el (message-ignored-supersedes-headers): Strip Injection-*
10414         headers before superseding.
10415
10416 2010-09-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10417
10418         * nnrss.el (nnrss-use-local): Add documentation.
10419
10420         * nnimap.el (nnimap-extend-tls-programs): New function.
10421         (nnimap-open-connection): Use tls.el exclusively, and not starttls.el.
10422         (nnimap-wait-for-connection): Accept the greeting from the stupid
10423         output from openssl s_client -starttls, too.
10424
10425         * tls.el (tls-starttls-switches): New variable.
10426         (tls-find-starttls-argument): Use it.
10427         (open-tls-stream): Ditto.
10428
10429         * netrc.el (netrc-credentials): Return the value of the "default" entry.
10430         (netrc-machine): Ditto.
10431
10432         * nnimap.el (nnimap-find-article-by-message-id): Really return the
10433         article number.
10434         (nnimap-split-fancy): New variable.
10435         (nnimap-split-incoming-mail): Use it.
10436
10437         * nntp.el (nntp-server-list-active-group): Document.
10438
10439         * nnimap.el (nnimap-find-article-by-message-id): Use EXAMINE instead of
10440         SELECT to get the message-id.
10441
10442         * mail-source.el (mail-sources): Remove webmail support.
10443         (defvar): Ditto.
10444         (mail-source-fetcher-alist): Ditto.
10445         (mail-source-fetch-webmail): Remove.
10446
10447         * webmail.el: Remove -- doesn't seem relevant any more.
10448
10449         * gnus.el: Fix up make-obsolete-variable declarations throughout.
10450
10451         * nnimap.el (nnimap-request-accept-article): Get the Message-ID without
10452         the \r.
10453
10454 2010-09-30  Julien Danjou  <julien@danjou.info>
10455
10456         * gnus-agent.el (gnus-agent-add-group): Fix call to
10457         gnus-completing-read.
10458
10459 2010-09-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10460
10461         * nndoc.el (nndoc-retrieve-groups): New function.
10462
10463         * nnimap.el (nnimap-split-incoming-mail): If nnimap-split-methods is
10464         `default', use nnmail-split-methods.
10465         (nnimap-request-article): Downcase the NILs so that they are nil.
10466
10467         * gnus-sum.el (gnus-valid-move-group-p): Make sure that `group' is a
10468         symbol.
10469
10470         * nnimap.el (nnimap-open-connection): Revert the auto-network->starttls
10471         code, since if the user has requested network, that's what they ought
10472         to get.
10473         (nnimap-request-set-mark): Erase the buffer before issuing commands.
10474         (nnimap-split-rule): Mark as obsolete.
10475
10476         * pop3.el (pop3-send-streaming-command, pop3-stream-length):
10477         New variable.
10478
10479         * nnimap.el (nnimap-insert-partial-structure): Get the type from the
10480         correct slot, too.
10481
10482 2010-09-29  Julien Danjou  <julien@danjou.info>
10483
10484         * gnus.el (gnus-local-domain): Declare variable obsolete.
10485
10486         * gnus-util.el (gnus-icompleting-read): Require iswitchb.
10487         Fix history computing.
10488         (gnus-ido-completing-read): Require ido.
10489
10490 2010-09-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10491
10492         * gnus-registry.el: Don't prompt on load, which makes it impossible to
10493         build Gnus.
10494
10495         * nnimap.el (nnimap-insert-partial-structure): Be way more permissive
10496         when interpreting the structures.
10497         (nnimap-request-accept-article): Add \r\n to the lines to make this
10498         work with Cyrus.
10499
10500         * nndraft.el (nndraft-request-expire-articles): Use the group name
10501         instead if "nndraft".  Fix found by Nils Ackermann.
10502
10503 2010-09-29  Ludovic Courtès  <ludo@gnu.org>
10504
10505         * nnregistry.el: Add.
10506
10507 2010-09-29  Stefan Monnier  <monnier@iro.umontreal.ca>
10508
10509         * nnmail.el (group, group-art-list, group-art):
10510         Remove unneeded directives.
10511
10512 2010-09-29  Katsumi Yamaoka  <yamaoka@jpl.org>
10513
10514         * mm-util.el (mm-codepage-iso-8859-list, mm-charset-eval-alist)
10515         (mm-mime-charset):
10516         * rfc2047.el (rfc2047-syntax-table):
10517         * utf7.el (utf7-utf-16-coding-system): Comment fix.
10518
10519         * nnrss.el (nnrss-read-server-data, nnrss-read-group-data): Use `load'
10520         rather than `insert-file-contents' and `eval-region'.
10521
10522         * pgg.el (pgg-run-at-time-1): Define it for XEmacs only; fix if/else
10523         construction.
10524
10525         * smime-ldap.el (smime-ldap-search): Remove Emacs 21 compatible code.
10526
10527         * time-date.el: No need to require cl for Emacs 21.
10528
10529 2010-09-29  Julien Danjou  <julien@danjou.info>
10530
10531         * gnus-gravatar.el (gnus-gravatar-properties): Add this properties in
10532         replacement of `gnus-gravatar-relief' to mimic
10533         `gnus-faces-properties-alist'.
10534         Add :version property.
10535
10536 2010-09-28  Katsumi Yamaoka  <yamaoka@jpl.org>
10537
10538         * mail-source.el (mail-source-report-new-mail):
10539         * message.el (message-default-mail-headers):
10540         * mm-decode.el (mm-valid-image-format-p): Comment fix.
10541
10542         * mml2015.el (mml2015-use): Don't bind recursive-load-depth-limit.
10543
10544 2010-09-28  Julien Danjou  <julien@danjou.info>
10545
10546         * gnus-gravatar.el (gnus-gravatar-insert): Fix search in case
10547         mail-address contains the same string as real-name.
10548
10549         * gnus-ems.el (gnus-put-image): Revert Lars, change and insert
10550         non-blank in header, otherwise it'll get stripped.
10551
10552         * gnus-gravatar.el (gnus-gravatar-insert): Search backward for
10553         real-name, and then for mail address rather than doing : or , search.
10554
10555 2010-09-27  Julien Danjou  <julien@danjou.info>
10556
10557         * gnus-util.el (gnus-completing-read): Use gnus-use-ido to apply the
10558         right completing-read function.
10559         (gnus-use-ido): New variable
10560         (gnus-completing-read-with-default): Remove.
10561         * gnus-agent.el (gnus-agent-read-group): Remove prompt computing.
10562         (gnus-agent-add-group):
10563         * gnus-srvr.el (gnus-server-add-server, gnus-server-goto-server):
10564         * mm-view.el (mm-view-pkcs7-decrypt):
10565         * mm-util.el (mm-codepage-setup):
10566         * smime.el (smime-sign-buffer, smime-decrypt-buffer):
10567         * mml-smime.el (mml-smime-openssl-sign-query):
10568         * mml.el (mml-minibuffer-read-type, mml-minibuffer-read-disposition)
10569         (mml-insert-multipart):
10570         * gnus-msg.el (gnus-summary-yank-message):
10571         * gnus-int.el (gnus-start-news-server):
10572         * mm-decode.el (mm-interactively-view-part):
10573         * gnus-dired.el (gnus-dired-attach):
10574         * gnus.el (gnus-read-method):
10575         * gnus-bookmark.el (gnus-bookmark-jump):
10576         * gnus-art.el (gnus-mime-view-part-as-type)
10577         (gnus-mime-action-on-part, gnus-article-encrypt-body):
10578         * gnus-topic.el (gnus-topic-jump-to-topic, gnus-topic-move-matching)
10579         (gnus-topic-copy-matching, gnus-topic-sort-topics, gnus-topic-move):
10580         * nnmairix.el (nnmairix-create-server-and-default-group)
10581         (nnmairix-update-groups, nnmairix-get-server)
10582         (nnmairix-backend-to-server, nnmairix-goto-original-article)
10583         (nnmairix-get-group-from-file-path):
10584         * nnrss.el (nnrss-find-rss-via-syndic8):
10585         * gnus-group.el (gnus-group-completing-read, gnus-group-make-web-group)
10586         (gnus-group-make-useful-group, gnus-group-add-to-virtual)
10587         (gnus-group-browse-foreign-server):
10588         * gnus-sum.el (gnus-summary-goto-article, gnus-summary-limit-to-extra)
10589         (gnus-summary-execute-command, gnus-summary-respool-article)
10590         (gnus-read-move-group-name):
10591         * gnus-score.el (gnus-summary-increase-score)
10592         (gnus-summary-score-effect):
10593         * gnus-registry.el (gnus-registry-read-mark): Use gnus-completing-read.
10594
10595 2010-09-28  Katsumi Yamaoka  <yamaoka@jpl.org>
10596
10597         * lpath.el: Remove url-http-file-exists-p, w32-focus-frame, and
10598         x-focus-frame.
10599
10600         * nnimap.el (auth-source-forget-user-or-password)
10601         (auth-source-user-or-password): Autoload.
10602
10603         * message.el (message-from-style, message-interactive)
10604         (message-cite-prefix-regexp, message-sendmail-envelope-from)
10605         (message-yank-prefix, message-indentation-spaces, message-signature)
10606         (message-signature-file): Add comment.
10607
10608 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10609
10610         * gnus-sum.el (gnus-summary-read-group-1): Set gnus-newsgroup-highest.
10611         (gnus-summary-insert-new-articles): Use gnus-newsgroup-highest to get
10612         new articles.
10613
10614         * nnimap.el (nnimap-request-article): Don't partial-fetch single-part
10615         parts.
10616         (nnimap-request-article): Work with the t setting, too.
10617
10618         * gnus-sum.el (gnus-summary-exit): Kill the article buffer later, so
10619         that you don't get flashes of other buffers.
10620         (gnus-summary-show-complete-article): Intern before setting.
10621
10622 2010-09-27  David Engster  <dengste@eml.cc>
10623
10624         * nnmairix.el (nnmairix-replace-group-and-numbers): Deal with NOV as
10625         well as HEADERS.
10626         (nnmairix-retrieve-headers): Provide new argument for the above.
10627
10628 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10629
10630         * gnus-sum.el (gnus-summary-move-article): Don't alter
10631         gnus-newsgroup-active.  This makes `/ N' work after copying to the same
10632         group.
10633
10634         * nnimap.el (nnimap-update-info): Don't destructively alter active.
10635
10636         * message.el (message-cite-prefix-regexp): Revert my last edit.
10637
10638         * gnus-sum.el (gnus-summary-show-complete-article): Bind the server
10639         variable instead of the Gnus variable.
10640
10641         * nnimap.el (nnimap-find-wanted-parts-1): Use it.
10642
10643         * gnus-art.el (gnus-fetch-partial-articles): Move back to nnimap again.
10644
10645         * nnimap.el (nnimap-request-accept-article): Remove the "." at the end,
10646         since some servers don't like it.
10647         (nnimap-open-connection): Forget credentials if the server says the
10648         password was wrong.
10649         (nnimap-parse-line): Protect against invalid data.
10650
10651         * gnus-sum.el (gnus-summary-move-article): Add comment.
10652         (gnus-summary-insert-new-articles): Copy the old-high watermark so that
10653         nothing alters it while scanning for new messages.
10654
10655         * nnimap.el (nnimap-request-accept-article): Send a "." at the end,
10656         which may or may not help.
10657         (nnimap-open-connection): If we're doing a stream connection, and then
10658         discover we're on a STARTTLS-capable server, then open a STARTTLS
10659         connection instead.
10660
10661 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10662
10663         * nnimap.el (utf7): Require.
10664
10665         * message.el (message-cite-prefix-regexp): Remove "}" from citation
10666         prefix.
10667
10668 2010-09-27  Juanma Barranquero  <lekktu@gmail.com>
10669
10670         * nnmail.el (nnmail-fancy-expiry-targets): Fix typo in docstring.
10671
10672 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10673
10674         * nnimap.el (nnimap-request-accept-article): Message the error on
10675         error.
10676
10677 2010-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
10678
10679         * gnus-art.el (gnus-mime-delete-part): Fix Lisp type of byte(s).
10680
10681 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10682
10683         * nndoc.el (nndoc-request-list): Return success always.
10684
10685         * gnus-agent.el (gnus-agent-retrieve-headers): Don't propagate
10686         `fetch-old' -- we only want to fetch the articles we've requested.
10687         The rest are in the agent, probably.
10688         (gnus-agent-read-servers-validate): Change the level for the "Ignoring
10689         disappeared server" to something low.  It's not important.
10690
10691         * nnimap.el (nnimap-get-whole-article): Remove the data that may have
10692         arrived before the FETCH data.
10693
10694         * nnmh.el (nnmh-request-expire-articles): Don't try to fetch the expiry
10695         target here, because we don't know the Gnus name of the group.
10696
10697         * nndraft.el (nndraft-request-expire-articles): Fetch the expiry target
10698         for the correct group.
10699
10700         * gnus-ems.el (gnus-create-image): Ignore all image-creation errors.
10701
10702         * gnus.el (gnus): Give a final warning after startup.
10703
10704         * gnus-util.el (gnus-action-message-log): New variable.
10705         (gnus-message): Use it.
10706         (gnus-final-warning): New function.
10707
10708         * nnimap.el (nnimap-open-connection): Record the greeting.
10709         (nnimap): Add greeting.
10710
10711 2010-09-26  Julien Danjou  <julien@danjou.info>
10712
10713         * gnus-html.el (gnus-html-show-images): Fix gnus-html-display-image
10714         arguments.
10715         (gnus-html-wash-images): Fix spec computing to include start/end.
10716
10717         * gnus-art.el (gnus-article-treat-body-boundary): Fix length computing.
10718
10719 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10720
10721         * nnimap.el (nnimap-request-expire-articles): Compress ranges before
10722         deletion.
10723         (nnimap-retrieve-headers): Don't select the group, because that's
10724         already done by nnimap-possibly-change-group.
10725
10726         * gnus-picon.el (gnus-picon-inhibit-top-level-domains): New variable.
10727         (gnus-picon-transform-address): Use it.
10728
10729         * mail-source.el (mail-source-value): Revert previous patch.
10730
10731         * nnimap.el (nnimap-credentials): Allow inhibiting the password query
10732         on failure.
10733         (nnimap-open-connection): Look up both virtual and physical server name
10734         credentials.
10735
10736         * gnus-win.el: Revert previous patch, since it made Gnus backtrace.
10737
10738 2009-02-07  Dave Love  <fx@gnu.org>
10739
10740         * tls.el (open-tls-stream): Don't query killing process.
10741
10742 2009-02-08  Dave Love  <fx@gnu.org>
10743
10744         * gnus-win.el (gnus-window-to-buffer-helper)
10745         (gnus-all-windows-visible-p): Function needn't be a symbol.
10746
10747         * mail-source.el (mail-source-value): Function needn't be a symbol.
10748
10749 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10750
10751         * message.el (message-cite-prefix-regexp): Remove } from the cite
10752         prefix.
10753
10754         * gnus-art.el (gnus-treatment-function-alist): Do picons before
10755         highlight again, so that the highlight is correct.
10756
10757         * gnus-picon.el (gnus-picon): Remove again.
10758         (gnus-picon-create-glyph): Set the background XPM color explicitly.
10759
10760         * gnus-art.el (gnus-treatment-function-alist): Insert picons after
10761         doing the header highlightling, so that the background color of the
10762         picon is correct.
10763
10764         * gnus-picon.el (gnus-picon-xbm): Remove obsolete face.
10765         (gnus-picon): Ditto.
10766         (gnus-picon): Reinstate.  The background color for picons is white.
10767         (gnus-picon-insert-glyph): Make the background white.
10768
10769         * nnml.el (nnml-open-nov): Don't return dead buffers.
10770
10771         * auth-source.el (auth-source-create): Query the user for whether to
10772         store the credentials.
10773
10774         * netrc.el (netrc-store-data): New function.
10775
10776         * auth-source.el (auth-source-user-or-password): Use the existing auth
10777         sources, if any, for creation.
10778
10779         * gnus.el (gnus-group-fast-parameter): Return the last matching
10780         parameter instead of the first matching parameter.
10781
10782 2010-09-26  Julien Danjou  <julien@danjou.info>
10783
10784         * gnus-sum.el (gnus-auto-center-group): Transform into a defcustom.
10785
10786 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10787
10788         * mml2015.el (mml2015-use): Remove gpg support.
10789
10790         * mml1991.el (mml1991-function-alist): Remove gpg function.
10791         (mml1991-gpg-sign): Remove.
10792
10793 2010-09-26  Andreas Seltenreich  <seltenreich@gmx.de>
10794
10795         * gnus-srvr.el (gnus-browse-subscribe-newsgroup-method): New variable.
10796         (gnus-browse-unsubscribe-current-group): Document it.
10797         (gnus-browse-unsubscribe-group): Use it.
10798
10799 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10800
10801         * gnus-group.el (gnus-read-ephemeral-bug-group): Add the bug email
10802         address to the To list for easier response.
10803
10804         * gnus.el (gnus-play-startup-jingle): Remove.
10805         (gnus-splash): Don't play jingle.
10806         (gnus): Silence gnus-load message.
10807
10808         * gnus-art.el (gnus-treat-play-sounds): Remove.
10809
10810         * gnus.el (gnus-play-jingle): Remove audio support.
10811
10812         * gnus-cus.el (gnus-score-customize): Remove audio reference.
10813
10814         * earcon.el: Remove -- no users.
10815
10816         * gnus-audio.el: Remove -- no users of this package.
10817
10818         * gnus-sum.el (gnus-summary-limit-children): Remove nocem support.
10819
10820         * gnus-start.el (gnus-setup-news): Remove nocem support.
10821
10822         * gnus-group.el (gnus-group-get-new-news): Remove nocem call.
10823
10824         * gnus.el (gnus-use-nocem): Remove.
10825
10826         * gnus-demon.el (gnus-demon-add-nocem, gnus-demon-scan-nocem):
10827         Remove.
10828
10829         * gnus-nocem.el (gnus-nocem-issuers): Remove file.  Apparently nobody
10830         uses NoCeM any more.
10831
10832         * gnus-art.el (gnus-ctan-url): Seems not very useful -- removed.
10833         (gnus-button-ctan-handler): Ditto.
10834         (gnus-button-handle-ctan-bogus-regexp): Ditto.
10835         (gnus-button-ctan-directory-regexp): Ditto.
10836         (gnus-button-handle-ctan): Ditto.
10837         (gnus-button-tex-level): Ditto.
10838         (gnus-button-alist): Remove CTAN stuff.
10839
10840 2010-09-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10841
10842         * nnimap.el (nnimap-wait-for-response): Reverse logic in the
10843         nnimap-streaming test.
10844
10845         * gnus-start.el (gnus-get-unread-articles): Don't try to open failed
10846         servers twice.
10847
10848         * nnimap.el (nnimap-open-connection): Add more error reporting when
10849         nnimap fails early.
10850
10851         * nnheader.el (nnheader-get-report-string): New function.
10852         (nnheader-get-report): Use it.
10853
10854         * gnus-int.el (gnus-check-server): Say what the error was when opening
10855         failed.
10856
10857         * nnimap.el (nnimap-wait-for-response): Search further when we're not
10858         using streaming.
10859
10860 2010-09-25  Julien Danjou  <julien@danjou.info>
10861
10862         * gnus-html.el (gnus-html-rescale-image): Use our defalias
10863         gnus-window-inside-pixel-edges.
10864
10865 2010-09-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10866
10867         * gnus-srvr.el (gnus-server-copy-server): Add documentation.
10868
10869         * mm-decode.el (mm-save-part): Allow saving to other directories the
10870         normal Emacs way.
10871
10872         * nndoc.el (nndoc-type-alist): Move mime-parts after mbox.
10873         Suggested by Jay Berkenbilt.
10874
10875         * gnus-art.el (gnus-mime-delete-part): Fix plural for "byte" when
10876         there isn't a single byte.
10877
10878         * gnus-int.el (gnus-open-server): Don't query whether to go offline --
10879         just do it.  It doesn't really seem to matter what the user responds
10880         here, I think, so it's just a confusing question.
10881
10882         * nnimap.el (nnimap-retrieve-group-data-early): Fix typo in the
10883         non-streaming case.
10884
10885         * gnus-art.el (gnus-flush-original-article-buffer): Separate out.
10886         (gnus-article-encrypt-body): Use it.
10887
10888         * gnus-sum.el (gnus-summary-show-complete-article): New command and
10889         keystroke.
10890
10891         * nnimap.el (nnimap-find-wanted-parts-1):
10892         Use gnus-fetch-partial-articles.
10893
10894         * gnus-art.el (gnus-fetch-partial-articles): New variable.
10895
10896         * nnimap.el (nnimap-insert-partial-structure): New function.
10897         (nnimap-get-partial-article): New function.
10898         (nnimap-request-article): Use it.
10899         (nnimap-wait-for-response): Return whether the wait was successful.
10900         (nnimap-finish-retrieve-group-infos): Don't do anything if the
10901         retrieval wasn't successful.
10902         (nnimap-retrieve-group-data-early): Allow throttling servers.
10903         (nnimap-streaming): New variable.
10904         (nnimap-fetch-partial-articles): Remove.
10905
10906         * mm-decode.el (mm-with-part): Protect against killed buffers.
10907
10908         * nndraft.el (nndraft-retrieve-headers): Insert Lines and Chars headers
10909         for prettier summary display.
10910
10911 2010-09-25  Andrew Cohen  <cohen@andy.bu.edu>  (tiny change)
10912
10913         * nnir.el (nnir-run-imap): Allow sending IMAP search patterns directly.
10914
10915 2010-09-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10916
10917         * gnus.el (gnus-local-domain): Put gnus-local-domain back again, since
10918         apparently third-party libraries depend on it.
10919
10920         * nnimap.el (nnimap-open-connection): Wait for the response to STARTTLS
10921         before starting negotiation.
10922
10923         * gnus-art.el (gnus-treat-from-gravatar): Change default to nil for
10924         privacy reasons.
10925         (gnus-treat-mail-gravatar): Ditto.
10926
10927         * gnus-ems.el (gnus-put-image): Don't put any non-blank text into the
10928         buffer when inserting images.  Inserting text into the headers, for
10929         instance, can make them invalid.
10930
10931 2010-09-25  Julien Danjou  <julien@danjou.info>
10932
10933         * rfc1843.el: Remove useless rfc1843-old-gnus-decode-header-function
10934         variables.
10935
10936         * nnheader.el: Remove useless variables news-reply-yank-from and
10937         news-reply-yank-message-id.
10938
10939         * mml2015.el: Remove useless mc-default-scheme and mc-schemes
10940         variables.
10941
10942         * mml1991.el: Remove useless mml1991-verbose.
10943
10944         * gnus.el: Remove useless variable gnus-use-generic-from.
10945         Remove obsolete variable gnus-topic-indentation.
10946
10947         * gnus-uu.el: Remove useless gnus-uu-shar-file-name.
10948
10949         * gnus-sum.el: Remove useless gnus-newsgroup-none-id.
10950
10951         * gnus-picon.el: Remove useless gnus-picon-setup-p variable.
10952
10953         * gnus-group.el: Remove useless gnus-group-icon-cache.
10954         Remove useless gnus-ephemeral-group-server.
10955
10956         * gnus-bookmark.el: Remove useless gnus-bookmark-after-jump-hook.
10957
10958         * mml2015.el: Remove useless mml2015-verbose.
10959
10960         * mml-smime.el: Remove useless mml-smime-verbose.
10961
10962         * gnus.el: Remove useless gnus-local-domain.
10963
10964         * gnus-gravatar.el (gnus-gravatar-transform-address):
10965         Use gnus-gravatar-size.
10966
10967         * gnus-art.el: Remove useless gnus-treat-translate.
10968
10969 2010-09-24  Julien Danjou  <julien@danjou.info>
10970
10971         * gnus-sum.el: Add support for Gravatars.
10972
10973         * gnus-art.el: Add support for Gravatars.
10974
10975         * gnus-gravatar.el: Add this file.
10976
10977         * gravatar.el: Add this file.
10978
10979 2010-09-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10980
10981         * gnus-sum.el (gnus-summary-fetch-faq): Remove.
10982
10983         * gnus-group.el (gnus-group-fetch-faq): Remove.
10984
10985         * gnus.el (gnus-group-faq-directory): Remove.
10986
10987         * gnus-group.el (gnus-group-fetch-charter): Remove.
10988
10989         * gnus.el (gnus-group-charter-alist): Remove.
10990
10991         * gnus-group.el (gnus-group-archive-directory): Remove.
10992         (gnus-group-recent-archive-directory): Ditto.
10993         (gnus-group-make-archive-group): Remove.
10994
10995         * nnimap.el (nnimap-update-info): Protect against nil uidnexts.
10996
10997         * gnus-cache.el (gnus-cache-braid-heads): When braiding heads, don't
10998         use the same article number for all the cached articles.
10999
11000         * nnimap.el (nnimap-command): Register the last command time so
11001         that we can use it for idling NOOPs.
11002         (nnimap-open-connection): Start the keeplive timer.
11003         (nnimap-make-process-buffer): Store all the process buffers.
11004         (nnimap-keepalive): New function.
11005
11006         * starttls.el (starttls-open-stream): Add autoload cookie.
11007
11008 2010-09-24  Michael Welsh Duggan  <md5i@md5i.com>  (tiny change)
11009
11010         * nnimap.el (nnimap-split-incoming-mail): Fix paren typo in the 'junk
11011         handling.
11012
11013 2010-09-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11014
11015         * nnrss.el (nnrss-retrieve-groups): Change to the group before checking
11016         its data structures.
11017
11018         * gnus.el (gnus-sloppily-equal-method-parameters): Use copy-sequence
11019         instead of the cl.el copy-list.
11020         (gnus-sloppily-equal-method-parameters): Use equal instead of the cl
11021         equalp.
11022
11023 2010-09-24  Katsumi Yamaoka  <yamaoka@jpl.org>
11024
11025         * gmm-utils.el (gmm-tool-bar-from-list): Always use tool-bar-local-item
11026         and tool-bar-local-item-from-menu.
11027
11028         * gnus-agent.el (gnus-agent-make-mode-line-string): Always use
11029         mode-line-highlight face for Emacs.
11030
11031         * gnus-art.el (toplevel): Don't bind recursive-load-depth-limit while
11032         loading gnus-sum.elc; fix comment for canlock-verify.
11033         (gnus-article-jump-to-part): Use read-number.
11034         (gnus-insert-mime-button, gnus-insert-mime-security-button):
11035         Remove Emacs pre-21 compatible code for help-echo.
11036         (gnus-article-next-page-1): No need to adjust the number of lines.
11037         (gnus-article-describe-bindings): Always use help-buffer.
11038
11039         * gnus-audio.el (gnus-audio-inline-sound):
11040         * gnus-cus.el (gnus-custom-mode):
11041         * gnus-group.el (gnus-group-update-tool-bar): Comment fix.
11042
11043         * gnus-sum.el (gnus-remove-overlays): Doc fix.
11044
11045         * gnus-util.el (gnus-select-frame-set-input-focus): Remove Emacs 21
11046         compatible code.
11047
11048 2010-09-24  Glenn Morris  <rgm@gnu.org>
11049
11050         * message.el (message-output): Use gnus-output-to-rmail if a buffer is
11051         visiting the fcc file in rmail-mode.
11052
11053         * dns-mode.el: Move autoloaded auto-mode-alist entries to files.el.
11054
11055 2010-09-24  Katsumi Yamaoka  <yamaoka@jpl.org>
11056
11057         * nnir.el: Silence the byte compiler.
11058
11059         * gnus-html.el (gnus-html-encode-url-chars): New function, that's an
11060         alias to browse-url-url-encode-chars if any.
11061         (gnus-html-encode-url): Use it.
11062
11063 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11064
11065         * gnus-start.el (gnus-use-backend-marks): New variable.
11066         (gnus-get-unread-articles-in-group): Use it.
11067
11068         * gnus-sum.el (gnus-summary-local-variables): Prepare for list/range
11069         makeover.
11070
11071 2010-09-23  Andrew Cohen  <cohen@andy.bu.edu>
11072
11073         * nnimap.el (nnimap-retrieve-headers): Return 'headers.
11074
11075 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11076
11077         * gnus-start.el (gnus-fixup-nnimap-unread-after-getting-new-news):
11078         Remove.
11079         (gnus-setup-news-hook):
11080         Remove gnus-fixup-nnimap-unread-after-getting-new-news.
11081
11082         * gnus-int.el (gnus-request-update-info): Protect against backends not
11083         having the function.
11084
11085         * nnimap.el (nnimap-stream): Mention starttls.
11086         (nnimap-open-connection): Add starttls support.
11087
11088 2010-09-23  Andrew Cohen  <cohen@andy.bu.edu>
11089
11090         * nnir.el (nnir-run-imap): Fix up nnir to work with the new nnimap.
11091
11092 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11093
11094         * nnimap.el (nnimap-transform-headers): Don't bug out on invalid
11095         BODYSTRUCTUREs.
11096         (nnimap-transform-headers): Unfold quoted {42} headers.
11097
11098         * gnus-start.el (gnus-get-unread-articles): Allow backends to update
11099         the info.
11100         (gnus-get-unread-articles): Only call updatep on backends that support
11101         it.
11102
11103         * nnweb.el (nnweb-request-update-info): NOOP.
11104
11105         * nnmaildir.el (nnmaildir-request-marks): Rename from -update-info.
11106
11107         * nnfolder.el (nnfolder-request-marks): Rename from -update-info,
11108         since it only deals with marks.
11109
11110         * gnus-int.el (gnus-request-marks): Rename gnus-request-update-info to
11111         gnus-request-marks, and make a new gnus-request-update-info.
11112
11113         * nnimap.el (nnimap-update-info): When UIDNEXT is present, use that for
11114         the active instead of the high number, which is usually too low.
11115
11116 2010-09-23  Teodor Zlatanov  <tzz@lifelogs.com>
11117
11118         * netrc.el (netrc-parse): Remove encrypt.el mentions.
11119         * encrypt.el: Remove.
11120
11121 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11122
11123         * nnimap.el (nnimap-update-info): Sync non-standard flags from the
11124         server in symbolic form.
11125
11126         * gnus-html.el (gnus-max-image-proportion): Increase proportion to 0.9.
11127
11128 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11129
11130         * nnimap.el (nnimap-parse-flags): Parse the data in any order.
11131         (nnimap-update-info): Fix up code slightly.
11132
11133         * gnus-int.el (gnus-open-server): Add tracing for performance
11134         debugging.
11135
11136         * gnus-group.el (gnus-group-highlight-line): Typo fix: beg, not start.
11137         (gnus-group-insert-group-line): Pass the real group name so that it
11138         gets the right data.
11139
11140         * gnus-start.el (gnus-get-unread-articles): Don't have
11141         `gnus-get-unread-articles-in-group' update info, since that can be
11142         really slow and doesn't seem to be needed?
11143
11144 2010-09-22  Dan Christensen  <jdc@uwo.ca>
11145
11146         * time-date.el (date-to-time): Try using parse-time-string first before
11147         using the slower timezone-make-date-arpa-standard.
11148
11149 2010-09-22  Julien Danjou  <julien@danjou.info>
11150
11151         * gnus-group.el (gnus-group-insert-group-line):
11152         Call gnus-group-highlight-line.
11153         (gnus-group-update-hook): Remove gnus-group-highlight-line from the
11154         default hook list.
11155         (gnus-group-update-eval-form): Add new function.
11156         (gnus-group-highlight-line): Use gnus-group-update-eval-form.
11157         (gnus-group-get-icon): Use gnus-group-update-eval-form.
11158
11159 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11160
11161         * nnimap.el (nnimap-request-expire-articles): If nnmail-expiry-wait is
11162         immediate, then expire all articles.
11163         (nnimap-update-info): Fix off-by-one errors.
11164         (nnimap-flags-to-marks): Would return no marks lists for group with no
11165         flags.  Instead return the other data.
11166
11167 2010-09-22  Julien Danjou  <julien@danjou.info>
11168
11169         * gnus-group.el (gnus-group-get-icon): Rename gnus-group-add-icon that
11170         Only return an icon.
11171         (gnus-group-insert-group-line): Compute icon to return.
11172
11173         * gnus-html.el (gnus-html-image-automatic-caching): Add custom var.
11174         (gnus-html-image-fetched): Only cache if
11175         gnus-html-image-automatic-caching is set.
11176         (gnus-html-image-fetched): Check for errors.
11177
11178 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11179
11180         * gnus-start.el (gnus-read-active-for-groups): Only run -request-scan
11181         once per method on `g'.  This ensures that backends like nnfolder don't
11182         open all their folders.
11183
11184         * nnimap.el (nnimap-split-incoming-mail): Delete 'junk.
11185         (nnimap-request-list): Nix out group in the correct buffer.
11186         (nnimap-parse-flags): Implement by using `read' instead of
11187         hand-parsing.
11188         (nnimap-flags-to-marks): Pass on permanent-flags.
11189         (nnimap-make-process-buffer): Record the server name.
11190         (nnimap-parse-flags): Fix typo.
11191         (nnimap-request-scan): Run split on the server in general, not just a
11192         single group.
11193
11194         * nnmail.el (nnmail-split-incoming): Take an optional junk-func
11195         parameter, and propagate this downwards.
11196
11197         * nnimap.el (nnimap-request-list): Set the current nnimap group to nil,
11198         since EXAMINE changes it on the server.
11199
11200         * gnus-int.el (gnus-request-expire-articles): Inhibit the daemon, since
11201         this command might take a while.
11202
11203 2010-09-22  Julien Danjou  <julien@danjou.info>
11204
11205         * gnus-html.el (gnus-html-put-image): Stop using markers.  They are
11206         harmful if you have 2 images side-by-side, they can't be properly
11207         update on text deletion.  Using text-property is safer here.
11208         (gnus-html-image-fetched): Search also for \r\n\r\n to get the start of
11209         data.
11210
11211 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11212
11213         * nnimap.el (nnimap-expunge-inbox): Remove.
11214         (nnimap-mark-and-expunge-incoming): Use nnimap-expunge instead.
11215         (nnimap-expunge): Flip default to t.
11216
11217         * gnus.el (gnus-method-to-server): Don't push things to the cache
11218         unless it's unique.
11219         (gnus-server-to-method): Ditto.
11220
11221 2010-09-22  Teodor Zlatanov  <tzz@lifelogs.com>
11222
11223         * nnimap.el (nnimap-delete-article): Tell user if expunge won't happen.
11224
11225 2010-09-22  Julien Danjou  <julien@danjou.info>
11226
11227         * gnus-html.el (gnus-html-get-image-data): Search also for \r\n\r\n to
11228         get the start of data.
11229         (gnus-html-encode-url): Add this function to encode special chars in
11230         URL.
11231         (gnus-html-wash-images): Use gnus-html-encode-url to encode URL.
11232         (gnus-html-prefetch-images): Use gnus-html-encode-url to encode URL.
11233
11234         * gnus-group.el (gnus-group-update-hook): Call gnus-group-add-icon by
11235         default.
11236         (gnus-group-add-icon): Move to gnus-group.el, and rewrite so it works.
11237
11238         * gnus-html.el (gnus-html-wash-images): Use xml-substitute-special on
11239         images alt-text.
11240         (gnus-html-put-image): Put alt-text as help-echo.
11241
11242 2010-09-22  Katsumi Yamaoka  <yamaoka@jpl.org>
11243
11244         * mailcap.el (mailcap-parse-mailcap, mailcap-parse-mimetypes):
11245         * mm-util.el (mm-decompress-buffer):
11246         * nnir.el (nnir-run-find-grep):
11247         * pop3.el (pop3-list): Use 3rd arg of split-string.
11248
11249         * time-date.el (format-seconds): Comment fix.
11250
11251         * dgnushack.el (toplevel): Don't advise byte-optimize-form-code-walker
11252         and byte-optimize-form-code-walker.
11253         (dgnushack-make-auto-load): Don't advise make-autoload.
11254
11255         * lpath.el: Remove Emacs 21 stuff.
11256
11257 2010-09-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11258
11259         * gnus-sum.el (gnus-update-marks): Add sanity check to not delete marks
11260         outside the active range.  Suggested by Dan Christensen.
11261
11262         * gnus-start.el (gnus-get-unread-articles): Get the extended method
11263         slightly later to avoid double-getting it.
11264
11265         * nnml.el (nnml-generate-nov-file): Fix variable name clobbering from
11266         previous patch.
11267
11268         * gnus-sum.el (gnus-adjust-marked-articles): Fix another typo.
11269
11270 2010-09-21  Adam Sjøgren  <asjo@koldfront.dk>
11271
11272         * gnus-sum.el (gnus-adjust-marked-articles): Fix typo.
11273
11274 2010-09-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11275
11276         * gnus-int.el (gnus-open-server): Give a better error message in the
11277         "go offline" case.
11278
11279         * gnus-sum.el (gnus-adjust-marked-articles): Hack to avoid adjusting
11280         marks for nnimap, which is seldom the right thing to do.
11281
11282         * gnus.el (gnus-sloppily-equal-method-parameters): Refactor out.
11283         (gnus-same-method-different-name): New function.
11284
11285         * nnimap.el (parse-time): Require.
11286
11287         * gnus-start.el (gnus-get-unread-articles): Fix the prefixed select
11288         method in the presence of many similar methods.
11289
11290         * nnmail.el (nnmail-expired-article-p): Fix typo: time-subtract.
11291
11292         * nnimap.el (nnimap-find-expired-articles): Don't refer to
11293         nnml-inhibit-expiry.
11294
11295         * gnus-sum.el (gnus-summary-move-article): Use gnus-server-equal to
11296         find out whether methods are equal.
11297
11298         * nnimap.el (nnimap-find-expired-articles): New function.
11299         (nnimap-process-expiry-targets): New function.
11300         (nnimap-request-move-article): Request the article before looking at
11301         what the Message-ID is.  Fix found by Andrew Cohen.
11302         (nnimap-mark-and-expunge-incoming): Wait for the last sequence.
11303
11304         * nnmail.el (nnmail-expired-article-p): Allow returning the cutoff time
11305         for oldness in addition to being a predicate.
11306
11307         * nnimap.el (nnimap-request-group): When we have zero articles, return
11308         the right data to Gnus.
11309         (nnimap-request-expire-articles): Only delete articles immediately if
11310         the target is 'delete.
11311
11312         * gnus-sum.el (gnus-summary-move-article): When respooling to the same
11313         method, this would bug out.
11314
11315         * gnus-group.el (gnus-group-expunge-group): Rename from
11316         gnus-group-nnimap-expunge, and implemented as a normal interface
11317         function.
11318
11319         * gnus-int.el (gnus-request-expunge-group): New function.
11320
11321         * nnimap.el (nnimap-request-create-group): Implement.
11322         (nnimap-request-expunge-group): New function.
11323
11324 2010-09-21  Julien Danjou  <julien@danjou.info>
11325
11326         * gnus-html.el (gnus-html-image-cache-ttl): Add new variable.
11327         (gnus-html-cache-expired): Add new function.
11328         (gnus-html-wash-images): Use `gnus-html-cache-expired' to check
11329         wethever we should display image for fetch it.
11330         Compute alt-text earlier to pass it to the fetching function too.
11331         (gnus-html-schedule-image-fetching): Change function argument to only
11332         get one image at a time, not a list.
11333         (gnus-html-image-fetched): Use `url-store-in-cache' to store image in
11334         cache.
11335         (gnus-html-get-image-data): New function to retrieve image data from
11336         cache.
11337         (gnus-html-put-image): Change buffer argument to use image data rather
11338         than file, and place image above region rather than inserting a new
11339         one.  Do not take alt-text as argument, since it's useless now: we place
11340         the image above alt-text.
11341         (gnus-html-prune-cache): Remove.
11342         (gnus-html-show-images): Start to fetch image when we find one, do not
11343         push into a temporary list.
11344         (gnus-html-prefetch-images): Only fetch image if they have expired.
11345         (gnus-html-browse-image): Fix, use 'gnus-image-url.
11346         (gnus-html-image-map): Add "v" to browse-url on undisplayed image.
11347
11348 2010-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
11349
11350         * rfc2047.el (rfc2047-encode-parameter): Doc fix.
11351
11352 2010-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11353
11354         * gnus-group.el (gnus-group-line-format-alist): Have the ?U (unseen)
11355         spec inser "*" if the group isn't active instead of 0.
11356
11357         * nnimap.el (nnimap-request-group): Don't select the imap buffer before
11358         opening the server.
11359         (nnimap-request-delete-group): Implement group deletion.
11360         (nnimap-transform-headers): Return the size of the entire message in
11361         the Bytes header, not just the size of the first part.
11362         (nnimap-request-move-article): When moving an article from nnimap,
11363         request the article first so the accepting form has an article to
11364         accept.  Reported by Dan Christensen.
11365         (nnimap-command): Make sure that the error message doesn't error out.
11366
11367 2010-09-20  David Edmondson  <dme@dme.org>
11368
11369         * nnimap.el (nnimap-request-set-mark): Don't wait for a response when
11370         we haven't requested anything.
11371
11372 2010-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11373
11374         * nnimap.el (nnimap-fetch-inbox): Use "[]" as the parameter instead of
11375         "".  Fix found by Andrew Cohen.
11376
11377         * mail-parse.el (mail-header-encode-parameter): Use -encode-parameter
11378         instead of -encode-string.
11379
11380 2010-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
11381
11382         * gnus-html.el (gnus-html-image-fetched): Pass arg to kill-buffer.
11383
11384         * gnus-sum.el (gnus-summary-update-mark): Replace subst-char-in-string
11385         by mm-subst-char-in-string.
11386
11387 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11388
11389         * nnimap.el (nnimap-wait-for-connection): Avoid a race condition while
11390         waiting for the connection string.
11391
11392         * gnus-html.el (gnus-html-image-fetched): Protect against the data not
11393         arriving.
11394
11395         * gnus-start.el (gnus-ignored-newsgroups): Remove [] from the list of
11396         bogus characters.  This allows selecting certain Gmail groups.
11397
11398         * nnimap.el (nnimap-find-wanted-parts-1): New function.
11399         (nnimap-fetch-partial-articles): New variable.
11400         (nnimap-open-connection): When looking for credentials, also use the
11401         nnimap-server-port.
11402         (nnimap-request-article): Return the group/article number, so that Gnus
11403         `^' works as expected.
11404         (nnimap-find-wanted-parts-1): Return the MIME parts as IMAP wants them.
11405
11406         * gnus.el (gnus-similar-server-opened): Refactor a bit and add
11407         comments.
11408         (gnus-methods-sloppily-equal): New function.
11409         (gnus): When using the development version of Gnus, load the gnus-load
11410         file.
11411
11412         * gnus-start.el (gnus-get-unread-articles): Make sure that we call
11413         `gnus-open-server' on each method before trying to scan them etc.
11414         This ensures that all the backend parameters are set correctly.
11415
11416         * nnimap.el (nnimap-authenticator): New variable.
11417         (nnimap-open-connection): Allow anonymous login.
11418         (nnimap-transform-headers): The chars header is called Chars not Bytes.
11419         (nnimap-wait-for-response): Don't infloop if the IMAP connection drops.
11420
11421         * gnus-art.el (gnus-article-describe-briefly): Fix up typo in last
11422         patch, found by Knut Anders Hatlen.
11423
11424 2010-09-19  Andreas Schwab  <schwab@linux-m68k.org>
11425
11426         * gnus-agent.el (gnus-agent-batch-confirmation)
11427         (gnus-agent-expire-group, gnus-agent-expire): Pass proper format string
11428         to gnus-message.
11429         * gnus-art.el (gnus-article-describe-briefly): Likewise.
11430         * gnus-group.el (gnus-group-list-groups, gnus-group-describe-group)
11431         (gnus-group-edit-global-kill, gnus-group-describe-briefly): Likewise.
11432         * gnus-int.el (gnus-open-server): Likewise.
11433         * gnus-score.el (gnus-score-edit-current-scores, gnus-score-edit-file)
11434         (gnus-score-check-syntax): Likewise.
11435         * gnus-srvr.el (gnus-browse-describe-briefly): Likewise.
11436         * gnus-start.el (gnus-read-active-file-1, gnus-read-active-file-1):
11437         Likewise.
11438         * gnus-sum.el (gnus-summary-describe-briefly): Likewise.
11439
11440 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11441
11442         * gnus-html.el (gnus-html-prefetch-images): Fix up the url-retrieve
11443         calling conventions so that prefetch doesn't bug out.
11444
11445 2010-09-19  Julien Danjou  <julien@danjou.info>
11446
11447         * gnus-sum.el (gnus-summary-update-mark): Use `subst-char-in-string'
11448         rather than `subst-char-in-region' in order to be able to replace ASCII
11449         char by UTF-8 ones.
11450
11451         * gnus-html.el (gnus-html-prefetch-images): Use `url-retrieve' rather
11452         than curl.
11453         (gnus-html-image-fetched): Fix `gnus-html-put-image' call not setting
11454         the right URL and ALT text on images.
11455         (gnus-html-wash-tags): Fix tag case.
11456         Add support for `s' and `ins' tags.  Use gnus-emphasis-* faces.
11457         (gnus-article-html): Add -o display_ins_del=2 option.
11458         (gnus-html-wash-tags): Add better support for <ul> tags symbols.
11459
11460 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11461
11462         * nnheader.el (nnheader-insert-nov): Protect against junk appearing in
11463         the extra mail headers, which sometimes seem to happen for unknown
11464         reasons.
11465
11466         * mail-parse.el (mail-header-encode-parameter): Define as
11467         rfc2045-encode-string instead of as rfc2231-encode-string, since some
11468         (or most, perhaps?) mail readers don't understand the latter, but do
11469         understand the former.
11470
11471         * gnus-agent.el (gnus-agent-auto-agentize-methods): Switch the default
11472         to nil, so that no methods are automatically agentized.  I think this
11473         is probably what most users want.
11474
11475         * gnus-html.el (gnus-html-schedule-image-fetching): Ignore all errors
11476         from url-retrieve, for instance about invalid URLs.
11477
11478         * nnimap.el (nnimap-finish-retrieve-group-infos): Protect against
11479         groups that have no articles.
11480         (nnimap-request-article): Check that we really got an article when we
11481         requested one.
11482
11483         * gnus-agent.el (gnus-agent-load-alist): Nix out the alist if the file
11484         doesn't exist.
11485
11486         * nnimap.el (nnimap-finish-retrieve-group-infos): Return data in the
11487         nntp buffer so the agent can save it.
11488         (nnimap-open-shell-stream): Bind `process-connection-type' to nil, so
11489         that CRLF doesn't get translated to \n.
11490         (nnimap-open-connection): Don't make 'shell commands only send \n.
11491
11492 2010-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
11493
11494         * nnml.el (nnml-files): Add prefix to dynamic var `files'.
11495         (nnml-generate-nov-databases-directory, nnml-generate-active-info):
11496         Update var name.
11497         (nnml-generate-nov-file): Use dolist.
11498         (nnml-directory-articles, nnml-current-group-article-to-file-alist):
11499         Use with-current-buffer.
11500
11501 2010-09-18  Julien Danjou  <julien@danjou.info>
11502
11503         * gnus-html.el (gnus-html-schedule-image-fetching): Fetch all images in
11504         parallel.
11505
11506 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11507
11508         * nnimap.el (nnimap-update-info): When doing partial marks update, get
11509         the range update right.
11510         (nnimap-request-group): Don't make `M-g' bug out on group with no
11511         marks.
11512         (nnoo): Require, so that other packages can require nnimap.
11513         (nnimap-wait-for-response): Be a bit more lax in finding the end of the
11514         command we're looking for.  This helps when the server sends more
11515         responses after we've gotten everything we expected.
11516         (nnimap): Add a `newlinep' field to keep track of end-of-line
11517         conventions.
11518         Don't send CRLF to things that don't want it.
11519         (nnimap-request-accept-article): Ditto.
11520
11521 2010-09-18  Julien Danjou  <julien@danjou.info>
11522
11523         * gnus-html.el (gnus-html-schedule-image-fetching): Use `url' rather
11524         than curl to retrieve images.
11525
11526 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11527
11528         * nnimap.el (nnimap-update-info): Extend the info so that we can set
11529         the marks.
11530         (nnimap-open-connection): Fix typo -- should be 'shell, not 'stream.
11531         (nnimap-wait-for-connection): New function.
11532         (nnimap-open-connection): If we have PREAUTH, don't query for login
11533         credentials.
11534         (nnimap-update-info): Fix off-by-one error when concatenating ranges
11535         when doing a partial update.
11536
11537 2010-09-18  Julien Danjou  <julien@danjou.info>
11538
11539         * gnus-html.el (gnus-html-wash-tags): Add support for i, b and u HTML
11540         tags.
11541
11542 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11543
11544         * nnimap.el (nnimap-credentials): New function.
11545         (nnimap-open-connection): Use the new function to look for credentials
11546         also on the numeric equivalents of "imap" and "imaps".
11547
11548         * gnus-start.el (gnus-activate-group): Send the info to
11549         gnus-request-group.
11550
11551         * nnimap.el (nnimap-request-group): Have the "check" version of the
11552         function parse flags and update the info, so that a `M-g' get a total
11553         resync of all flags from the group.
11554
11555         * gnus-int.el (gnus-request-group): Take an optional `info' parameter
11556         to allow backends to alter the info on group selection.  Also alter all
11557         the backend -request-group functions to take the parameter.
11558
11559         * nnimap.el (nnimap-store-info): New function.
11560         (nnimap-update-info): Store the info for later usage.
11561         (nnimap-request-group): Use the stored info for the dont-check case, so
11562         that we don't retrieve all marks when we enter a group.
11563
11564         * nnimap.el: Use deffoo instead of defun for interface functions.
11565
11566         * gnus-start.el (gnus-get-unread-articles): Allow the backends to
11567         update the group info.  This makes the nndraft groups, for instance, go
11568         back to their old behavior.
11569
11570         * gnus-sum.el (gnus-select-newsgroup): Indent.
11571
11572         * nnimap.el (nnimap-possibly-change-group): Return nil if we can't log
11573         in.
11574         (nnimap-finish-retrieve-group-infos): Make sure we're not waiting for
11575         nothing.
11576
11577         * gnus-start.el (gnus-get-unread-articles): Don't try to scan groups
11578         from methods that are denied.
11579
11580         * gnus-int.el (gnus-method-denied-p): New function.
11581
11582         * nnimap.el (nnimap-open-connection): Use auth-sources to query and
11583         store the password instead of netrc.
11584         (nnimap-open-connection): Don't error out when we can't make a
11585         connections.
11586
11587         * auth-source.el (auth-source-create): In the password prompt, say what
11588         we're querying for.  Also prompt for user name if that hasn't been
11589         given.
11590
11591         * nnimap.el (nnimap-with-process-buffer): Remove.
11592
11593 2010-09-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11594
11595         * gnus-start.el (gnus-read-active-for-groups): Don't use the "finish"
11596         method when we're reading from the agent.
11597
11598         * nnagent.el (nnagent-retrieve-group-data-early): New dummy method.
11599
11600         * auth-source.el (auth-sources): Add ~/.authinfo to the default, since
11601         that's probably most useful for users.
11602
11603         * gnus-int.el (gnus-check-server): Save result so that it doesn't say
11604         "failed" all the time.
11605
11606         * gnus.el: Throughout all files, replace (save-excursion (set-buffer
11607         ...)) with (with-current-buffer ... ).
11608
11609         * nntp.el (nntp-open-server): Return whether the open was successful or
11610         not.
11611
11612         * gnus-sum.el (gnus-summary-first-subject): Have `unseen-or-unread'
11613         select an unread unseen article first.
11614
11615         * nnimap.el (nnimap-open-connection): If the user doesn't have a
11616         /etc/services, supply some sensible port defaults.
11617
11618         * dgnushack.el: Define netrc-credentials.
11619
11620 2010-09-17  Julien Danjou  <julien@danjou.info>
11621
11622         * mm-decode.el (mm-text-html-renderer): Document gnus-article-html.
11623
11624 2010-09-17  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
11625
11626         * nnimap.el (nnimap-get-groups): Don't bug out if the LIST command
11627         doesn't have any parameters.
11628
11629 2010-09-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11630
11631         * nnimap.el (nnimap-open-connection): Upcase all capabilities, and use
11632         only upcased checks.
11633
11634         * nnmail.el (nnmail-article-group): Fix typo in "bogus" section.
11635
11636         * nnimap.el (nnimap-open-shell-stream): New function.
11637         (nnimap-open-connection): Use it.
11638         (nnimap-transform-headers): Get the number of lines in each message.
11639         (nnimap-retrieve-headers): Query for BODYSTRUCTURE so that we get the
11640         number of lines.
11641         (nnimap-request-list): Not all servers return UIDNEXT.  Work past this
11642         problem.
11643
11644         * utf7.el (utf7-encode): Autoload.
11645
11646         * nnmail.el (nnmail-inhibit-default-split-group): New internal variable
11647         to allow the mail splitting to not return a default group.  This is
11648         useful for nnimap, which will leave unmatched mail in the inbox.
11649
11650         * nnimap.el: Rewritten.
11651
11652         * gnus.el (gnus-article-special-mark-lists): Add uid/active tuples, for
11653         nnimap usage.
11654
11655         * gnus-sum.el (gnus-summary-move-article): Pass the move-to group name
11656         if the move is internal, so that nnimap can do fast internal moves.
11657
11658         * gnus-start.el (gnus-get-unread-articles): Support early retrieval of
11659         data.
11660         (gnus-read-active-for-groups): Support finishing the early retrieval of
11661         data.
11662
11663         * gnus-range.el (gnus-range-nconcat): New function.
11664
11665         * gnus-int.el (gnus-finish-retrieve-group-infos)
11666         (gnus-retrieve-group-data-early): New functions.
11667
11668 2010-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
11669
11670         * nnrss.el (nnrss-retrieve-headers, nnrss-request-list-newsgroups)
11671         (nnrss-retrieve-groups):
11672         * pop3.el (pop3-open-server, pop3-read-response, pop3-list, pop3-retr)
11673         (pop3-quit): Use with-current-buffer.
11674
11675 2010-09-17  Katsumi Yamaoka  <yamaoka@jpl.org>
11676
11677         * pop3.el (pop3-wait-for-messages): Use pop3-accept-process-output
11678         instead of nnheader-accept-process-output.
11679
11680         * dgnushack.el (dgnushack-compile): Add comment.
11681
11682         * lpath.el: No need to fbind propertize for XEmacs 21.4.
11683
11684         * gnus-html.el (gnus-html-schedule-image-fetching)
11685         (gnus-html-prefetch-images): Replace process-kill-without-query by
11686         gnus-set-process-query-on-exit-flag.
11687
11688 2010-09-16  Romain Francoise  <romain@orebokech.com>
11689
11690         * gnus-html.el: Require gnus-art for `gnus-with-article-buffer'.
11691
11692 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11693
11694         * gnus-registry.el (gnus-registry-install-shortcuts): The second
11695         parameter to unintern is mandatory-ish in Emacs 24.
11696
11697         * gnus-html.el (gnus-html-schedule-image-fetching)
11698         (gnus-html-prefetch-images): Check for curl before using it.
11699
11700         * mm-decode.el (mm-text-html-renderer): Don't have gnus-article-html
11701         depend on curl, which isn't essential.
11702
11703         * imap.el: Revert back to version
11704         cb950ed8ff3e0f40dac437a51b269166f9ffb60d, since some of the changes
11705         seem problematic.
11706
11707 2010-09-14  Juanma Barranquero  <lekktu@gmail.com>
11708
11709         * gnus-registry.el (gnus-registry-install-shortcuts):
11710         Explicitly pass `obarray' to `unintern' to avoid a warning.
11711
11712 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11713
11714         * gnus-start.el (gnus-read-active-for-groups): Revert the previous
11715         change.
11716
11717         * nnrss.el (nnrss-request-list): Remove this function and related
11718         functions, including the moreover stuff.
11719
11720 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11721
11722         * nnrss.el (nnrss-retrieve-groups): New function.
11723
11724 2010-09-14  Juanma Barranquero  <lekktu@gmail.com>
11725
11726         * .dir-locals.el: Add no-byte-compile cookie.
11727
11728 2010-09-14  Katsumi Yamaoka  <yamaoka@jpl.org>
11729
11730         * time-date.el (format-seconds): Comment fix.
11731
11732         * gnus-start.el (gnus-read-active-for-groups): Run gnus-activate-group
11733         for back end that doesn't support request-scan.
11734
11735 2010-09-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11736
11737         * gnus-start.el (gnus-read-active-file-1): If gnus-agent isn't set,
11738         then do request scans from the backends.
11739
11740         * netrc.el (netrc-credentials): New conveniency function.
11741
11742         * gnus-sum.el (gnus-summary-update-hook): Change default to nil, to
11743         avoid running a hook per line, since this takes a lot of time,
11744         profiling shows.
11745         (gnus-summary-prepare-threads): Call `gnus-summary-highlight-line'
11746         directly if gnus-visual-p is true.
11747
11748 2010-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
11749
11750         * gnus-start.el (gnus-read-active-for-groups): Check only subscribed
11751         groups; replace mapcar with dolist which is a bit faster; pass groups
11752         info to gnus-read-active-file-1.
11753         (gnus-read-active-file-1): Scan only specified groups if the new
11754         optional arg `infos' is given.
11755
11756 2010-09-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11757
11758         * mail-source.el (mail-source-fetch-pop): Use pop3-movemail again.
11759
11760         * pop3.el (pop3-movemail): Remove.
11761         (pop3-streaming-movemail): Rename to pop3-movemail.
11762
11763         * gnus-html.el (gnus-html-wash-tags): Refactor out the image bit, and
11764         don't restrict end-tag searches to the end of the line.
11765
11766 2010-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
11767
11768         * gnus-start.el (gnus-get-unread-articles): Set the number of unread
11769         articles of every unchecked group to t, which means unknown since the
11770         server has never been opened.
11771
11772 2010-09-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11773
11774         * gnus-html.el (gnus-html-show-alt-text): New command.
11775         (gnus-html-browse-image): Ditto.
11776         (gnus-html-wash-tags): Add the data to allow showing the ALT text and
11777         to browse the image directly.
11778         (gnus-html-wash-tags): Search for images first, so that <a><img> works
11779         better.
11780
11781         * gnus-async.el (gnus-async-article-callback):
11782         Call `gnus-html-prefetch-images' unconditionally.
11783
11784         * gnus-html.el (gnus-html-schedule-image-fetching): Decode entities
11785         before feeding URLs to curl.
11786
11787 2010-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
11788
11789         * gnus-html.el (gnus-html-wash-tags, gnus-html-put-image): Mark cid and
11790         internal images as deletable by `W D D'.
11791
11792         * gnus-async.el (gnus-html-prefetch-images): Autoload it when compiling.
11793         (gnus-async-article-callback): Fix typo.
11794
11795 2010-09-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11796
11797         * gnus-html.el (gnus-html-wash-tags): Limit end-tag matching to the
11798         current line to work around bugs in the output from w3m.
11799
11800         * gnus-async.el (gnus-async-article-callback): Always prefetch images
11801         for groups that want that.
11802
11803         * nntp.el (nntp-wait-for-string): Supply a timeout for
11804         accept-process-output to ensure progress.
11805
11806         * gnus-start.el (gnus-get-unread-articles): If being given an explicit
11807         level to get unread articles from, then use that for foreign groups,
11808         too.
11809
11810         * gnus-html.el (gnus-html-wash-tags): Remove <a name...> tags, which
11811         confuses the rest of the function.
11812
11813         * gnus-start.el (gnus-read-active-for-groups): Do a `gnus-request-scan'
11814         for the methods that support -retrieve-groups, too.
11815
11816         * nnml.el (nnml-save-nov): Remove some debugging-related messages.
11817
11818 2010-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
11819
11820         * dgnushack.el (dgnushack-compile, dgnushack-make-cus-load)
11821         (dgnushack-make-auto-load): Exclude .dir-locals.el file.
11822
11823         * pop3.el: Require cl when compiling.
11824         (pop3-number-of-responses): Search for "+OK", not "+OK ".
11825
11826 2010-09-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11827
11828         * gnus-start.el (gnus-get-unread-articles): Don't bother with groups
11829         that aren't going to be activated.
11830         (gnus-get-unread-articles): Fix up the last commit.
11831
11832         * gnus-html.el (gnus-article-html): Allow calling without specifying
11833         the handle.  In that case, dissect the buffer first.
11834
11835         * gnus-sum.el (gnus-set-mode-line): Don't pad the mode line string.
11836
11837         * nnimap.el (nnimap-open-connection): Revert the change that would look
11838         into authinfo for imaps instead of imap.
11839
11840         * gnus-start.el (gnus-activate-group): Take an optional parameter to
11841         say that you don't want to call gnus-request-group with don-check, but
11842         do check the reponse.  This is for virtual groups only.
11843         (gnus-get-unread-articles): Count the archive groups as secondary, so
11844         that they're activated the same way as before.
11845
11846         * imap.el (imap-message-map): Removed optional buffer parameter, since
11847         no callers use it.
11848         (imap-message-get): Ditto.
11849         (imap-message-put): Ditto.
11850         (imap-mailbox-map): Ditto.
11851         (imap-mailbox-put): Ditto.
11852         (imap-mailbox-get): Ditto.
11853         (imap-mailbox-get): Revert last change for this function.
11854
11855         * nnimap.el (nnimap-request-list): Servers may return \NoSelect
11856         case-insensitively.
11857         (nnimap-debug): Remove.
11858
11859         * net/imap.el (imap-fetch-safe): Remove function, and alter all
11860         callers to use `imap-fetch' instead.  According to the comments, this
11861         should be safe, since all other IMAP clients use the 1:* syntax.
11862         (imap-enable-exchange-bug-workaround): Remove.
11863         (imap-debug): Remove -- doesn't seem very useful.
11864
11865         * mail-source.el (mail-source-fetch): Don't message if we're fetching
11866         mail from a file, and the file doesn't exist.
11867
11868         * imap.el (imap-log): New convenience function used throughout instead
11869         of repeating the same code all over the place.
11870
11871         * pop3.el (pop3-streaming-movemail): Return t for success.
11872
11873         * nnimap.el (nnimap-open-connection): Look for the "imaps" entry in the
11874         .authinfo if we're using ssl connection.
11875
11876         * nnvirtual.el (nnvirtual-create-mapping): Use the active info we
11877         already have if we're in a main Gnus `g' run.
11878
11879         * gnus-start.el (gnus-method-rank): Get info for virtual groups last.
11880
11881 2010-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
11882
11883         * gnus-start.el (gnus-method-rank): Replace equalp with equal.
11884
11885         * nnmh.el (nnmh-request-list-1): Bind `file'.
11886
11887         * pop3.el (pop3-set-process-query-on-exit-flag): New function that's an
11888         alias to set-process-query-on-exit-flag or process-kill-without-query.
11889         (pop3-open-server): Use it.
11890
11891 2010-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11892
11893         * mail-source.el (mail-source-delete-crash-box): Always move the crash
11894         box to the Incoming file.  Fixes mistake in previous checkin.
11895
11896         * pop3.el (pop3-send-streaming-command): Off-by-one error on the
11897         request loop (for debugging purposes) removed.
11898
11899         * nnml.el (nnml-save-nov): Message around nnml-save-nov so that the
11900         culprit is more visible.
11901         (nnml-save-incremental-nov, nnml-open-incremental-nov)
11902         (nnml-add-incremental-nov): New functions to do "incremental" nov
11903         updates, where we just append to the end of the existing nov files
11904         without reading/writing them in full.
11905
11906         * mail-source.el (mail-source-delete-crash-box): Really only check the
11907         incoming files once in a while.
11908
11909         * pop3.el (pop3-streaming-movemail): Always close the pop3 connection.
11910
11911         * mail-source.el (mail-source-delete-crash-box): Only check the
11912         incoming files for deletion once per day to save a lot of file
11913         accesses.
11914
11915         * pop3.el (pop3-logon): Fix up unbound variable typo.
11916
11917         * mail-source.el (pop3-streaming-movemail): Autoload.
11918
11919         * pop3.el (pop3-streaming-movemail):
11920         Respect pop3-leave-mail-on-server.
11921
11922         * mail-source.el (mail-source-fetch-pop): Use streaming pop3
11923         retrieval.
11924
11925         * pop3.el (pop3-process-filter): Remove unused function.
11926         (pop3-streaming-movemail, pop3-send-streaming-command)
11927         (pop3-wait-for-messages, pop3-write-to-file)
11928         (pop3-number-of-responses): New functions for streaming pop3
11929         retrieval.
11930
11931         * gnus-start.el (gnus-get-unread-articles): Protect against groups that
11932         come from no known methods.
11933         (gnus-make-hashtable-from-newsrc-alist): Remove duplicates from .newsrc
11934         list.
11935
11936         * pop3.el (pop3-display-message-size-flag): Remove -- everybody wants
11937         message sizes.
11938         (pop3-movemail): Use erase-buffer instead of looping and deleting
11939         regions, which seems rather odd.
11940
11941         * gnus-agent.el (gnus-agent-load-local): Only read the agent.lib/local
11942         file once per `g' run.
11943
11944         * nnmh.el (nnmh-request-list-1): Output active lines also for empty
11945         directories.  This makes the draft queue directory work.
11946
11947         * gnus-start.el (gnus-get-unread-articles): Rewrite the way we request
11948         data from the backends, so that we only request the list of groups from
11949         each method once.  This should speed things up considerably.
11950
11951         * nnvirtual.el (nnvirtual-request-list): Remove function so that we can
11952         detect that it's not implemented.
11953
11954         * nnmh.el (nnmh-request-list-1): Fix up the recursion behavior so that
11955         we actually do recurse down into the tree, but don't stat all leaf
11956         nodes.
11957
11958         * gnus-html.el (gnus-html-show-images): If there are no images to show,
11959         then say so instead of bugging out.
11960
11961         * gnus-agent.el (gnus-agent-load-alist): Check whether the agentview
11962         files exist before trying to read them.
11963
11964         * gnus-html.el (gnus-html-wash-tags): Remove even more white space
11965         around <pre_int>.
11966
11967         * gnus-art.el (gnus-article-copy-string): Say what data we copied.
11968
11969         * nnmh.el (nnmh-request-list-1): Optimize for speed.
11970
11971 2010-09-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11972
11973         * mm-util.el (mm-image-load-path): Just return the image directories,
11974         not all directories in the path in addition to the image directories.
11975         (mm-image-load-path): Maintain a cache of the image directories so that
11976         the `g' command in Gnus doesn't have to stat dozens of directories each
11977         time.
11978
11979         * gnus-html.el (gnus-html-put-image): Allow images to be removed.
11980         (gnus-html-wash-tags): Add a new `i' command to insert images.
11981         (gnus-html-insert-image): New command and keystroke.
11982         (gnus-html-redisplay-with-images): New command and keystroke.
11983         (gnus-html-show-images): Rename command.
11984         (gnus-html-wash-tags): Remove more white space before <pre_int> image
11985         spacers.
11986         (gnus-html-wash-tags): Decode entities at the end, so that entities
11987         inside the tags don't mess up the rest of the "parsing".
11988
11989         * gnus-agent.el (gnus-agent-auto-agentize-methods): Change the default
11990         so that nnimap methods aren't agentized by default.  There's apparently
11991         many problems related to agent/imap behavior.
11992
11993         * gnus-art.el (gnus-article-copy-string): New command and key binding.
11994
11995         * gnus-html.el: Doc fix.
11996
11997 2010-09-03  Katsumi Yamaoka  <yamaoka@jpl.org>
11998
11999         * lpath.el: Fbind device-on-window-system-p, glyph-image, glyphp, and
12000         specifier-spec-list for Emacs 21.
12001
12002         * gnus-html.el (gnus-html-put-image): Use gnus-graphic-display-p,
12003         glyph-width and glyph-height instead of display-graphic-p and
12004         image-size; make avoidance of displaying small images work for XEmacs.
12005
12006         * gnus-util.el (gnus-graphic-display-p): Use device-on-window-system-p
12007         for XEmacs.
12008
12009         * gnus-ems.el (gnus-set-process-plist, gnus-process-plist): Change name
12010         of symbol that holds plist data.
12011         (gnus-process-plist): Remove plist of process after getting it.
12012
12013 2010-09-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12014
12015         * message.el (message-generate-hashcash): Change default to
12016         'opportunistic if hashcash is installed.
12017
12018         * gnus-html.el (gnus-html-rescale-image): Fix up typo in rescaling.
12019         (gnus-html-put-image): Only call image-size once, since it's somewhat
12020         time-consuming on remote X servers.
12021
12022 2010-09-02  Katsumi Yamaoka  <yamaoka@jpl.org>
12023
12024         * gnus-xmas.el (gnus-xmas-create-image): Don't try to examine image
12025         type on data, not a file name.
12026
12027         * lpath.el: Fbind w3-parse-buffer for Emacs <=22 and XEmacs; fbind
12028         window-pixel-edges for Emacs 21.
12029
12030         * gnus-html.el (gnus-article-html): Make work buffer multibyte for
12031         decoded contents.
12032         (gnus-html-put-image, gnus-html-rescale-image): Pass `file' argument.
12033
12034 2010-09-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12035
12036         * gnus-group.el (gnus-group-line-format): Remove %O (moderated) from
12037         group line format, since it isn't very interesting.
12038
12039         * gnus-agent.el (gnus-agent-short-article),
12040         (gnus-agent-long-article): Increase values for these two variables,
12041         since most people are likely to have more network connection and
12042         storage than before.
12043
12044         * gnus.el (gnus-refer-article-method): Change default to 'current.
12045         When referring an article, the common behavior is to refer it from the
12046         current select method, not the native select method.  The chances of
12047         the native select method having the message in question is rather slim
12048         these days.
12049
12050         * gnus-sum.el (gnus-auto-select-subject): Change default to
12051         `unseen-or-unread'.  I think it's likely that most people want to
12052         select an unseen article over a previously seen, but unread one.
12053
12054         * gnus.el (gnus-mode-non-string-length): Change default to 30.  nil
12055         means that in the article buffer none of the minor mode elements will
12056         be shown, usually, and this is not desirable in most cases.
12057
12058         * gnus-sum.el (gnus-summary-goto-unread): Change default to nil, so
12059         that commands like `d' (and the like) go to the next line in the
12060         buffer, instead of the next unread article.  I think this is the
12061         behavior that is most natural for most users.
12062         (gnus-single-article-buffer): Change default to nil, so that people can
12063         have as many article buffers open as they have summary buffer.  I think
12064         this is the most natural way for the groups to behave.
12065
12066         * message.el (message-generate-new-buffers): Change default to
12067         `unsent', so that all new message buffers start their names with the
12068         string "*unsent", and it's easier to find the buffers if you move from
12069         them.
12070
12071 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12072
12073         * gnus-html.el (gnus-html-wash-tags): Don't show images that are really
12074         small.  They're probably tracking images.
12075         (gnus-html-wash-tags): Remove all <pre_int> place holders.
12076         (gnus-html-rescale-image): Yet another try at getting the image sizing
12077         right.
12078
12079         * nntp.el (nntp-request-set-mark): Refuse to do marks if
12080         nntp-marks-file-name is nil.
12081
12082 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
12083
12084         * gnus-html.el (gnus-html-wash-tags)
12085         (gnus-html-schedule-image-fetching, gnus-html-image-url-blocked-p):
12086         Better logging.
12087
12088 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12089
12090         * nndoc.el (nndoc-type-alist): Add a new type for Google digests.
12091
12092         * gnus-html.el (gnus-html-wash-tags): Check the value of
12093         gnus-blocked-images in the summary buffer.
12094
12095 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
12096
12097         * gnus-html.el (gnus-html-image-url-blocked-p): Doc fix.
12098
12099 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12100
12101         * gnus-html.el (gnus-html-wash-tags): "A" is also used for links, just
12102         like "a", it seems like.
12103         (gnus-html-image-url-blocked-p): Take a parameter for blocked-images
12104         since it needs to be picked from the correct buffer.
12105
12106         * nnwfm.el: Remove.
12107
12108         * nnlistserv.el: Remove.
12109
12110 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
12111
12112         * gnus-html.el (gnus-html-image-url-blocked-p): New function.
12113         (gnus-html-prefetch-images, gnus-html-wash-tags): Use it.
12114
12115 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12116
12117         * nnkiboze.el: Remove.
12118
12119         * nndb.el: Remove.
12120
12121         * gnus-html.el (gnus-html-put-image): Use the deleted text as the image
12122         alt text.
12123         (gnus-html-rescale-image): Try to get the rescaling logic right for
12124         images that are just wide and not tall.
12125
12126         * gnus.el (gnus-string-or): Fix the syntax to not use eval or
12127         overshadow variable bindings.
12128
12129 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
12130
12131         * gnus-html.el (gnus-html-wash-tags)
12132         (gnus-html-schedule-image-fetching, gnus-html-prefetch-images):
12133         Add extra logging.
12134
12135 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12136
12137         * gnus-html.el (gnus-html-wash-tags): Delete the IMG_ALT region.
12138         (gnus-max-image-proportion): New variable.
12139         (gnus-html-rescale-image): New function.
12140         (gnus-html-put-image): Rescale images.
12141
12142 2010-09-01  Stefan Monnier  <monnier@iro.umontreal.ca>
12143
12144         Fix up some byte-compiler warnings.
12145         * gnus.el (gnus-group-find-parameter, gnus-kill-save-kill-buffer):
12146         * gnus-cite.el (gnus-article-highlight-citation, gnus-dissect-cited-text)
12147         (gnus-article-fill-cited-article, gnus-article-hide-citation)
12148         (gnus-article-hide-citation-in-followups, gnus-cite-toggle):
12149         * gnus-group.el (gnus-group-set-mode-line, gnus-group-quit)
12150         (gnus-group-set-info, gnus-add-mark): Use with-current-buffer.
12151         (gnus-group-update-group): Use save-excursion and with-current-buffer.
12152
12153 2010-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
12154
12155         * gnus-html.el (gnus-article-html): Decode contents by charset.
12156
12157 2010-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
12158
12159         * gnus-html.el (gnus-html-cache-directory, gnus-html-cache-size)
12160         (gnus-html-frame-width, gnus-blocked-images):
12161         * message.el (message-prune-recipient-rules): Add custom version.
12162         * gnus-sum.el (gnus-auto-expirable-marks): Bump custom version.
12163
12164         * gnus-ems.el (gnus-process-get, gnus-process-put): New compatibility
12165         functions.
12166
12167         * gnus-html.el (gnus-html-curl-sentinel): Replace process-get with
12168         gnus-process-get.
12169
12170 2010-08-31  Julien Danjou  <julien@danjou.info>  (tiny change)
12171
12172         * nnimap.el (nnimap-request-newgroups): Use nnimap-request-list-method
12173         instead of lsub directly.
12174
12175 2010-08-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12176
12177         * nnwarchive.el: Remove.
12178
12179         * gnus-soup.el: Remove.
12180
12181         * nnsoup.el: Remove.
12182
12183         * nnultimate.el: Remove.
12184
12185         * gnus-html.el (gnus-blocked-images): New variable.
12186
12187         * message.el (message-prune-recipients): New function.
12188         (message-prune-recipient-rules): New variable.
12189
12190         * gnus-cite.el (gnus-article-natural-long-line-p): New function to
12191         guess whether a long line is natural text or not.
12192
12193         * gnus-html.el (gnus-html-schedule-image-fetching):
12194         Use gnus-process-plist and friends for compatibility.
12195
12196 2010-08-31  Stefan Monnier  <monnier@iro.umontreal.ca>
12197
12198         * gnus-html.el: Require packages that define macros used in this file.
12199         (gnus-article-mouse-face): Declare to silence byte-compiler.
12200         (gnus-html-curl-sentinel): Use with-current-buffer, inhibit-read-only, and
12201         process-get.
12202         (gnus-html-put-image): Use plist-get to avoid getf.
12203         (gnus-html-prefetch-images): Use with-current-buffer.
12204
12205 2010-08-31  Katsumi Yamaoka  <yamaoka@jpl.org>
12206
12207         * gnus-ems.el: Provide compatibility functions for
12208         gnus-set-process-plist.
12209
12210         * lpath.el: Bind completion-styles for Emacs 21 and XEmacs; bind
12211         header-line-format for XEmacs 21.4.
12212
12213         * gnus-sum.el (gnus-summary-stop-at-end-of-message):
12214         * gnus.el (gnus-valid-select-methods):
12215         * message.el (message-send-mail-partially-limit):
12216         * mm-decode.el (mm-text-html-renderer):
12217         * mml.el (mml-insert-mime-headers-always):
12218         * smiley.el (smiley-regexp-alist): Bump custom version.
12219
12220 2010-08-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12221
12222         * gnus-html.el: Require mm-url.
12223         (gnus-html-wash-tags): Clarify the code a bit by renaming the variable
12224         with the url to `url'.
12225         (gnus-html-wash-tags): Support cid: URLs/images.
12226
12227 2010-08-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12228
12229         * gnus-sum.el: As per discussion 3 years, 8 weeks, 3 days, 9 hours, 57
12230         minutes, 56 seconds ago on the ding list, remove the `w' and `i'
12231         bindings, as they aren't useful at all.  `w' is moved to `W w'.
12232
12233         * gnus-move.el: Remove file, since it doesn't really work.
12234
12235         * gnus-html.el (gnus-article-html): Tell w3m that the input is
12236         UTF-8.  This seems to fix problems with some German web feeds.
12237
12238         * gnus.el (gnus-group-startup-message): Put the xpm version of the logo
12239         at the top so that the proper colors are applied.
12240
12241         * gnus-xmas.el (gnus-xmas-create-image): Make this work on files that
12242         don't have dots in their names.
12243
12244         * gnus-art.el (gnus-article-view-part): Doc fix.
12245
12246         * gnus-html.el (gnus-html-put-image): Use gnus-create-image to be
12247         XEmacs-compatible.
12248         (gnus-html-put-image): Don't do images on non-graphic displays.
12249
12250         * nnslashdot.el: Remove this unused backend.
12251
12252         * gnus-undo.el (gnus-undo-register-1): Limit the undo actions to 100
12253         actions.
12254         (gnus-undo-register-1): Revert last change.
12255
12256         * gnus-group.el (gnus-group-completing-read): Protect against not
12257         having completion-styles bound.
12258
12259         * mml.el (mml-insert-mime-headers-always): Change the default to t, to
12260         make broken recipients happier.
12261
12262         * gnus-html.el (gnus-html-put-image): Use gnus-put-image.
12263
12264         * gnus-ems.el (gnus-put-image): Have gnus-put-image take an optional
12265         point parameter.
12266
12267         * gnus-xmas.el (gnus-xmas-put-image): Ditto.
12268
12269         * gnus-group.el (gnus-group-completing-read): Add 'substring to
12270         completion-styles for group selection.
12271
12272 2009-02-04  Andreas Schwab  <schwab@suse.de>
12273
12274         * gnus-score.el (gnus-score-string): Fix regex for matching extra
12275         headers and regexp-quote the match if necessary.
12276
12277 2009-03-24  Miles Bader  <miles@gnu.org>
12278
12279         * smiley.el (smiley-regexp-alist): Don't delete the semicolon before
12280         the blinking smiley.
12281
12282 2009-03-24  Simon Josefsson  <simon@josefsson.org>
12283
12284         * smiley.el (smiley-regexp-alist): Disallow ;;) from being treated as a
12285         blink smiley.
12286
12287 2010-08-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12288
12289         * gnus-start.el (gnus-dribble-read-file): Ensure that the directory
12290         where the dribbel file lives exists.
12291
12292         * message.el (message-send-mail-partially-limit): Change the default to
12293         nil, since most people don't want this.
12294
12295         * mm-url.el (mm-url-decode-entities): Also decode entities like
12296         &#x3212.
12297
12298 2009-07-16  Kevin Ryde  <user42@zip.com.au>  (tiny change)
12299
12300         * gnus-sum.el (gnus-summary-idna-message):
12301         * nnrss.el (nnrss-normalize-date, nnrss-discover-feed):
12302         Hyperlink urls in docstrings with URL `...'.
12303
12304 2010-08-29  Adam Sjøgren  <asjo@koldfront.dk>
12305
12306         * gnus-html.el (gnus-html-put-image): Use XEmacs-compatible image
12307         functions.
12308
12309 2010-08-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12310
12311         * gnus-art.el (gnus-article-add-button): Take an optional parameter to
12312         say what the mouseover text should be.
12313
12314         * gnus-html.el (gnus-html-prefetch-images): Use the summary-local
12315         version of the mm-w3m-safe-url-regexp variable to only download images
12316         in the groups where we want that to happen.
12317
12318         * gnus-sum.el (gnus-summary-stop-at-end-of-message): New variable.
12319
12320         * gnus-art.el (gnus-article-beginning-of-window): Make into defun for
12321         easier debugging.
12322         (gnus-article-beginning-of-window): Add kludge to allow spacing past
12323         big pictures in the article buffer.
12324
12325         * mm-decode.el (mm-text-html-renderer): Default the html renderer to
12326         gnus-article-html.
12327         (mm-text-html-renderer): gnus-article-html needs curl in addition to
12328         w3m.
12329
12330         * gnus-html.el: Start a new super-simple HTML renderer based on w3m.
12331
12332 2010-08-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12333
12334         * gnus.el (gnus-valid-select-methods): Remove reference to nngoogle,
12335         which doesn't exist.
12336
12337         * message.el (message-inhibit-ecomplete): New variable to allow some
12338         function to inhibit ecomplete address storage.
12339         (message-resend): Disable ecomplete message storage when resending
12340         messages.
12341
12342         * nntp.el (nntp-async-kluge): Remove the Emacs 20.3-related kluge.
12343
12344 2010-08-27  Katsumi Yamaoka  <yamaoka@jpl.org>
12345
12346         * gnus-sum.el (gnus-summary-move-article, gnus-summary-delete-article):
12347         Save excursion while copying, moving, and deleting articles in order to
12348         prevent the cursor from jumping to unforeseen place.
12349
12350 2010-08-17  Katsumi Yamaoka  <yamaoka@jpl.org>
12351
12352         * lpath.el: No need to bind bookmark-current-buffer,
12353         bookmark-yank-point and bookmark-make-record-function.
12354
12355 2010-08-17  Glenn Morris  <rgm@gnu.org>
12356
12357         * gnus-sync.el: Require gnus components whose functions are used.
12358
12359         * gnus-art.el (bookmark-make-record-function):
12360         * gnus-sum.el (bookmark-yank-point, bookmark-current-bookmark):
12361         Declare for compiler.
12362
12363         * mm-url.el (mml-compute-boundary): Autoload.
12364
12365 2010-08-15  Katsumi Yamaoka  <yamaoka@jpl.org>
12366
12367         * gnus-start.el (gnus-start-draft-setup): Move doc string forward.
12368
12369 2010-08-14  Teodor Zlatanov  <tzz@lifelogs.com>
12370
12371         Typo fix "hoo4a" -> "hook".
12372
12373         * gnus-sync.el (gnus-sync-install-hooks): Typo fix.
12374
12375 2010-08-14  Glenn Morris  <rgm@gnu.org>
12376
12377         * gnus-sync.el (gnus-sync): Fix defgroup version.
12378
12379 2010-08-13  Teodor Zlatanov  <tzz@lifelogs.com>
12380
12381         Doc fixes and keep unknown groups (ammended for nunion bug fix).
12382
12383         * gnus-sync.el: Fix docs.
12384         (gnus-sync-save): Keep unknown groups in `gnus-sync-newsrc-loader'.
12385         (gnus-sync-read): Don't wipe `gnus-sync-newsrc-loader' after reading.
12386
12387 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
12388
12389         Optimizations for gnus-sync.el.
12390
12391         * gnus-sync.el: Add docs about gnus-sync-backend
12392         possibilities.
12393         (gnus-sync-save): Remove unnecessary message.
12394         (gnus-sync-read): Optimize and show what groups were skipped.
12395
12396 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
12397
12398         Minor bug fixes for gnus-sync.el.
12399
12400         * gnus-sync.el (gnus-sync-unload-hook, gnus-sync-install-hooks):
12401         Don't read the sync on get-new-news.
12402
12403         * gnus-sync.el (gnus-sync-save): Define `variable' so the compiler is
12404         quiet.
12405
12406         * gnus-sync.el (gnus-sync-read): Use `gnus-sync-newsrc-offsets'
12407         (fix typo).
12408
12409 2010-07-30  Lawrence Mitchell  <wence@gmx.li>
12410
12411         Make saving and restoring of hidden threads work with overlays.
12412         Patch applied by Ted Zlatanov.
12413
12414         * gnus-sum.el (gnus-hidden-threads-configuration)
12415         (gnus-restore-hidden-threads-configuration): Update to deal with text
12416         properties, rather than searching for a magic character.
12417
12418 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
12419
12420         New gnus-sync.el library for synchronization of marks.
12421
12422         * gnus-sync.el: New library for synchronization of marks.
12423
12424         * gnus-util.el (gnus-grep-in-list): Move from gnus-registry.el and
12425         renamed from `gnus-registry-grep-in-list'.
12426
12427         * gnus-registry.el (gnus-registry-follow-group-p):
12428         Use `gnus-grep-in-list'.
12429
12430         * gnus-start.el (gnus-start-draft-setup): Make it interactive.
12431
12432 2010-08-06  Katsumi Yamaoka  <yamaoka@jpl.org>
12433
12434         * rfc2047.el (rfc2047-encode): Use utf-8 as a last resort if
12435         determining charset of text fails.
12436
12437 2010-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
12438
12439         * nnmail.el (nnmail-get-new-mail-1): Revert.
12440
12441         * nnml.el (nnml-active-number): Make sure names of newly created groups
12442         in nnml-group-alist are encoded.
12443
12444 2010-07-30  Katsumi Yamaoka  <yamaoka@jpl.org>
12445
12446         * nnmail.el (nnmail-get-new-mail-1): Encode group names possibly
12447         containing non-ASCII characters in active file for nnml back end.
12448
12449 2010-07-24  David Engster  <dengste@eml.cc>
12450
12451         * mml-smime.el (mml-smime-epg-verify): Also accept the older
12452         x-pkcs7-signature MIME type as signature (RFC 2311, C.1).
12453
12454 2010-07-21  Daiki Ueno  <ueno@unixuser.org>
12455
12456         * mml.el (mml-parse-1): Collect "certfile" attributes in "<#secure>"
12457         tag (Bug#6654).
12458
12459 2010-07-20  Katsumi Yamaoka  <yamaoka@jpl.org>
12460
12461         * gnus-sum.el (gnus-summary-bookmark-make-record): Bookmark position in
12462         the article buffer, not the summary buffer.
12463
12464 2010-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
12465
12466         * gnus-sum.el (gnus-summary-bookmark-make-record): Make it work for
12467         Emacs 23 as well.
12468
12469 2010-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
12470
12471         * lpath.el: Bind bookmark-current-buffer, bookmark-yank-point for all
12472         Emacs versions; bind bookmark-make-record-function for Emacs >=22.
12473
12474 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
12475
12476         Allow C-w when setting a bookmark in a Gnus Article buffer (Bug#5975).
12477         Patch applied by Karl Fogel.
12478
12479         * gnus-sum.el (gnus-summary-bookmark-make-record):
12480         Set `bookmark-yank-point' and `bookmark-current-buffer' to allow C-w.
12481
12482 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
12483
12484         Allow bookmarks to be set from Gnus Article buffers (Bug#5975).
12485         Patch applied (with minor tweaks) by Karl Fogel.  Note this leaves
12486         C-w still not working correctly from Article buffers; Thierry's
12487         patch to fix that will be applied after this.
12488
12489         * gnus-art.el (bookmark-make-record-function): New local variable.
12490
12491         * gnus-sum.el (gnus-summary-bookmark-make-record): Allow setting from
12492         article buffer.
12493         (gnus-summary-bookmark-jump): Maybe jump to article buffer.
12494
12495 2010-07-13  Karl Fogel  <kfogel@red-bean.com>
12496
12497         * gnus-sum.el (bookmark-make-record-default): Adjust declaration, based
12498         on changes in bookmark.el.
12499
12500 2010-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
12501
12502         * gnus-xmas.el (gnus-xmas-read-event-char): Use display-message with
12503         `no-log' instead of message not to log prompt string.
12504
12505 2010-06-22  Mark A. Hershberger  <mah@everybody.org>
12506
12507         * mm-url.el (mm-url-encode-multipart-form-data): New function to handle
12508         the *other* type of HTML form submission.
12509
12510 2010-06-15  Michael Albinus  <michael.albinus@gmx.de>
12511
12512         * auth-source.el (auth-source-pick): If choice does not contain a
12513         questioned keyword, set the check to t.
12514
12515 2010-06-12  Romain Francoise  <romain@orebokech.com>
12516
12517         * gnus-util.el (gnus-date-get-time): Move up before first use.
12518
12519 2010-06-10  Katsumi Yamaoka  <yamaoka@jpl.org>
12520
12521         * gnus-art.el (gnus-mime-buttonized-part-id): New internal variable.
12522         (gnus-article-edit-part): Bind it to make last part that is substituted
12523         or deleted visible.
12524         (gnus-mime-display-single): Buttonize part of which id equals to
12525         gnus-mime-buttonized-part-id.
12526
12527 2010-06-10  Dan Christensen  <jdc@uwo.ca>
12528
12529         * gnus-util.el (gnus-user-date): Use gnus-date-get-time.
12530         (gnus-dd-mmm): Use gnus-date-get-time.
12531         * gnus-sum.el (gnus-thread-latest-date): Use gnus-date-get-time and
12532         simplify logic.
12533         (gnus-summary-limit-to-age): Use gnus-date-get-time.
12534         (gnus-sort-threads): Emit message if gnus-sort-threads-loop used.
12535
12536 2010-06-08  Michael Albinus  <michael.albinus@gmx.de>
12537
12538         * auth-source.el (top): Autoload `secrets-list-collections',
12539         `secrets-create-item', `secrets-delete-item'.
12540         (auth-sources): Fix tag string.
12541         (auth-get-source, auth-source-retrieve, auth-source-create)
12542         (auth-source-delete): New defuns.
12543         (auth-source-pick): Rewrite in order to avoid 2 passes.
12544         (auth-source-forget-user-or-password): New parameter USERNAME.
12545         (auth-source-user-or-password): New parameters CREATE-MISSING and
12546         DELETE-EXISTING.  Retrieve password interactively, if needed.
12547
12548 2010-06-07  Teemu Likonen  <tlikonen@iki.fi>  (tiny change)
12549
12550         * gnus-agent.el (gnus-agent-expire-unagentized-dirs): Don't ask about
12551         deleting unused directories when gnus-expert-user is t.
12552
12553 2010-06-02  Katsumi Yamaoka  <yamaoka@jpl.org>
12554
12555         * gnus-art.el (gnus-article-browse-delete-temp-files): Don't make query
12556         for each temp file when gnus-article-browse-delete-temp is ask.
12557
12558 2010-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
12559
12560         * gnus-uu.el, imap.el, nndoc.el, nnrss.el, rfc2047.el, utf7.el:
12561         Replace Lisp calls to delete-backward-char by calls to delete-char.
12562
12563 2010-05-20  Kevin Ryde  <user42@zip.com.au>
12564
12565         * gnus-start.el (gnus-level-unsubscribed): Doc fix.  (Bug#6206)
12566
12567 2010-05-19  Michael Albinus  <michael.albinus@gmx.de>
12568
12569         * password-cache.el (password-cache-remove): Fix docstring.
12570
12571 2010-05-14  Katsumi Yamaoka  <yamaoka@jpl.org>
12572
12573         * gnus-sum.el (gnus-summary-save-article): Don't bother to re-fetch
12574         article unless decoding article to be saved.
12575
12576 2010-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
12577
12578         * mml1991.el (mml1991-mailcrypt-encrypt, mml1991-gpg-encrypt):
12579         * mml2015.el (mml2015-gpg-encrypt): Disable multibyte in buffers
12580         generated within the mm-with-unibyte-current-buffer macro.
12581
12582 2010-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
12583
12584         * gnus-art.el (gnus-bind-safe-url-regexp): Bind mm-w3m-safe-url-regexp
12585         to nil when we're in a mml-preview buffer and no group is selected.
12586
12587 2010-05-12  Andreas Seltenreich  <seltenreich@gmx.de>
12588
12589         * gnus-sum.el (gnus-summary-read-group-1): Don't jump to next group
12590         when catching the `C-g'.  Reported by "Leo".
12591
12592 2010-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
12593
12594         * message.el (message-forward-make-body-plain)
12595         (message-forward-make-body-mml): Use mm-multibyte-string-p instead of
12596         multibyte-string-p.
12597
12598         * lpath.el: Revert.
12599
12600 2010-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
12601
12602         * message.el (message-forward-make-body-mml): Assume original message
12603         is multibyte string; error on unibyte.
12604         (message-forward-make-body-plain): Ditto; don't add excessive newline
12605         in body end.
12606
12607         * lpath.el: Fbind multibyte-string-p for XEmacs 21.4 and SXEmacs.
12608
12609 2010-05-11  Andreas Seltenreich  <seltenreich@gmx.de>
12610
12611         * gnus-sum.el (gnus-summary-kill-thread): Use gnus-summary-mark-article
12612         instead of g-s-m-a-as-unread to set the expirable mark.  (Bug#5284)
12613
12614 2010-05-11  Katsumi Yamaoka  <yamaoka@jpl.org>
12615
12616         * mm-extern.el (mm-extern-url): Don't use
12617         mm-with-unibyte-current-buffer.
12618         (mm-extern-cache-contents): Use with-current-buffer instead of
12619         save-excursion + set-buffer.
12620
12621 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
12622
12623         * mm-util.el (mm-emacs-mule): Remove.
12624
12625 2010-05-10  Andreas Seltenreich  <seltenreich@gmx.de>
12626
12627         * gnus-sum.el (gnus-summary-mode): Don't make minor-mode-alist
12628         buffer-local as it's incompatible with Stefan Monnier's 2010-05-03
12629         change.
12630
12631 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
12632
12633         * mm-util.el (mm-with-unibyte-current-buffer): Redefine it so as not to
12634         bind the default value of enable-multibyte-characters to nil.
12635
12636 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
12637
12638         * message.el (message-forward-make-body-plain)
12639         (message-forward-make-body-mml):
12640         Don't use mm-with-unibyte-current-buffer.
12641
12642 2010-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
12643
12644         * dns-mode.el (auto-mode-alist): Add entry for .zone files.
12645
12646 2010-05-07  Christian von Roques  <roques@mti.ag>  (tiny change)
12647
12648         * mml2015.el (mml2015-epg-find-usable-key): Skip disabled key
12649         (Bug#5592).
12650
12651 2010-05-07  Julien Danjou  <julien@danjou.info>
12652
12653         * gnus-art.el (gnus-mime-pipe-part): Add optional argument `cmd'; pass
12654         it to mm-pipe-part.
12655
12656         * mm-decode.el (mm-pipe-part): Add optional argument `cmd'; use it if
12657         it is given.
12658
12659 2010-05-07  Katsumi Yamaoka  <yamaoka@jpl.org>
12660
12661         * binhex.el (binhex-decode-region-internal):
12662         * dns.el (dns-read-string-name, dns-write, dns-read, dns-read-type):
12663         (dns-query):
12664         * nnweb.el (nnweb-gmane-search):
12665         * pgg-parse.el (pgg-parse-armor):
12666         * pgg.el (pgg-verify-region):
12667         * sha1.el (sha1-string-external):
12668         * uudecode.el (uudecode-decode-region-internal):
12669         * yenc.el (yenc-decode-region): Don't run set-buffer-multibyte for
12670         XEmacs.
12671
12672         * gnus-art.el (gnus-article-browse-html-parts):
12673         * gnus-group.el (gnus-read-ephemeral-gmane-group):
12674         (gnus-read-ephemeral-bug-grou): Use mm-make-temp-file instead of
12675         make-temp-file.
12676
12677         * gnus-dired.el (gnus-dired-mode): Bind gnus-dired-mode-hook,
12678         gnus-dired-mode-on-hook and gnus-dired-mode-off-hook for XEmacs when
12679         compiling.
12680
12681         * gnus-ml.el (gnus-mailing-list-mode): Bind gnus-mailing-list-mode-hook,
12682         gnus-mailing-list-mode-on-hook and gnus-mailing-list-mode-off-hook for
12683         XEmacs when compiling.
12684
12685         * gnus-salt.el (gnus-pick-mode): Bind gnus-pick-mode-on-hook and
12686         gnus-pick-mode-off-hook for XEmacs when compiling.
12687         (gnus-binary-mode): Bind gnus-binary-mode-on-hook and
12688         gnus-binary-mode-off-hook for XEmacs when compiling.
12689
12690         * gnus-sum.el (gnus-summary-limit-strange-charsets-predicate):
12691         Return nil if char-charset is not available.
12692
12693         * imap.el (imap-disable-multibyte)
12694         * sieve-manage.el (sieve-manage-disable-multibyte): Redefine them as
12695         macros.
12696
12697         * mm-url.el (mm-url-form-encode-xwfu): Use mm-encode-coding-string
12698         instead of encode-coding-string.
12699
12700         * mm-util.el (mm-enable-multibyte, mm-disable-multibyte): Use (featurep
12701         'xemacs) instead of mm-emacs-mule to switch function definitions.
12702         (mm-with-unibyte-current-buffer): Make it a progn macro for XEmacs.
12703
12704         * lpath.el: Fbind delete-overlay and overlay-lists for XEmacs;
12705         bind temporary-file-directory for XEmacs;
12706         fbind make-temp-file, set-buffer-multibyte, string-as-multibyte and
12707         timer-set-function for XEmacs 21.4 and SXEmacs;
12708         bind timer-list for XEmacs 21.4 and SXEmacs;
12709         fbind char-charset and find-charset-region for non-Mule XEmacs;
12710         fbind decode-coding-region, decode-coding-string, detect-coding-region,
12711         encode-coding-region and encode-coding-string for XEmacs having no
12712         file-coding feature.
12713
12714 2010-05-06  Tommi Vainikainen  <thv@iki.fi>  (tiny change)
12715
12716         * mml-sec.el (mml-secure-message-sign): Fix cut and paste error.
12717
12718 2010-05-06  Katsumi Yamaoka  <yamaoka@jpl.org>
12719
12720         * gnus-dired.el, gnus-draft.el, gnus-ml.el, gnus-salt.el, gnus-sum.el,
12721         gnus-undo.el, mml.el: Require easy-mmode for XEmacs when compiling.
12722
12723 2010-05-03  Juanma Barranquero  <lekktu@gmail.com>
12724
12725         * mm-util.el (mm-decompress-buffer): Use `delete-file';
12726         alias `jka-compr-delete-temp-file' no longer exists.
12727
12728 2010-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
12729
12730         Use define-minor-mode in Gnus where applicable.
12731         * mml.el (mml-mode): Use define-minor-mode.
12732         * gnus-undo.el (gnus-undo-mode-map): Initialize in declaration.
12733         (gnus-undo-mode): Use define-minor-mode.
12734         * gnus-sum.el (gnus-dead-summary-mode-map): Initialize in declaration.
12735         (gnus-dead-summary-mode): Use define-minor-mode.
12736         * gnus-salt.el (gnus-pick-mode-map, gnus-binary-mode-map):
12737         Initialize in declaration.
12738         (gnus-pick-mode, gnus-binary-mode): Use define-minor-mode.
12739         * gnus-ml.el (gnus-mailing-list-mode-map): Initialize in declaration.
12740         (gnus-mailing-list-mode): Use define-minor-mode.
12741         * gnus-draft.el (gnus-draft-mode-map): Initialize in declaration.
12742         (gnus-draft-mode): Use define-minor-mode.
12743         * gnus-dired.el (gnus-dired-mode-map): Initialize in declaration.
12744         (gnus-dired-mode): Use define-minor-mode.
12745
12746 2010-05-01  Andreas Seltenreich  <seltenreich@gmx.de>
12747
12748         * mml.el (mml-generate-mime-1, mml-compute-boundary-1): Update 'mml
12749         handles on recursive mml-to-mime translation and check them for
12750         boundary delimiter collisions.  Reported by Greg Troxel.
12751
12752 2010-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
12753
12754         * gnus-util.el: Don't load tm and apel XEmacs packages when compiling.
12755
12756 2010-04-23  Stefan Monnier  <monnier@iro.umontreal.ca>
12757
12758         * mm-util.el (mm-find-buffer-file-coding-system):
12759         * yenc.el (yenc-decode-region): Don't let-bind a read-only variable.
12760
12761 2010-04-22  Andreas Seltenreich  <seltenreich@gmx.de>
12762
12763         * message.el (message-generate-headers): Record insertion of optional
12764         headers as well.  Otherwise the check to prevent repeated insertion of
12765         optional headers is a no-op.
12766
12767 2010-04-17  Teodor Zlatanov  <tzz@lifelogs.com>
12768
12769         * smime.el: Don't mention CVS.
12770
12771         * nnrss.el (nnrss-fetch): Don't mention CVS.
12772
12773         * nnir.el: Don't mention CVS.
12774
12775 2010-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
12776
12777         * gnus-sum.el (gnus-summary-bookmark-make-record):
12778         Add `location' field.
12779
12780 2010-04-14  Katsumi Yamaoka  <yamaoka@jpl.org>
12781
12782         * lpath.el: Fbind bookmark-default-handler,
12783         bookmark-get-bookmark-record, bookmark-make-record-default,
12784         bookmark-prop-get for Emacs <23 and XEmacs.
12785
12786 2010-04-12  Stefan Monnier  <monnier@iro.umontreal.ca>
12787
12788         * gnus-sum.el: Add bookmark declarations to silence the compiler.
12789         (gnus-mark-xrefs-as-read, gnus-summary-limit-to-bodies):
12790         Use with-current-buffer to silence the byte-compiler.
12791         (gnus-summary-bookmark-make-record): Use derived-mode-p and don't
12792         bother to require `gnus'.
12793         (gnus-summary-bookmark-jump): Don't forget to autoload.  Simplify.
12794
12795 2010-04-12  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
12796
12797         * gnus-sum.el (gnus-summary-bookmark-make-record)
12798         (gnus-summary-bookmark-jump): New functions.
12799         (gnus-summary-mode): Setup bookmark support.
12800
12801 2010-04-01  Andreas Schwab  <schwab@linux-m68k.org>
12802
12803         * mm-uu.el (mm-uu-pgp-signed-extract-1): Use buffer-file-coding-system
12804         if set.
12805
12806 2010-03-31  Katsumi Yamaoka  <yamaoka@jpl.org>
12807
12808         * gnus-art.el (gnus-article-browse-html-save-cid-content): Rename from
12809         gnus-article-browse-html-save-cid-image; make it work recursively for
12810         forwarded messages as well.
12811         (gnus-article-browse-html-parts): Work when prefix arg is given.
12812         (gnus-article-browse-html-article): Doc fix.
12813
12814 2010-03-30  Chong Yidong  <cyd@stupidchicken.com>
12815
12816         * message.el (message-default-mail-headers)
12817         (message-default-headers): Carry the value mail-default-headers over
12818         into message-default-mail-headers, rather than message-default-headers.
12819
12820 2010-03-30  Martin Stjernholm  <mast@lysator.liu.se>
12821
12822         * mm-decode.el (mm-add-meta-html-tag): Add option to override the
12823         charset.
12824
12825         * gnus-art.el (gnus-article-browse-html-parts): Force the correct
12826         charset into the <meta> tag when the article is encoded to utf-8.
12827
12828 2010-03-30  Katsumi Yamaoka  <yamaoka@jpl.org>
12829
12830         * gnus-art.el (gnus-article-browse-delete-temp-files):
12831         Delete directories as well.
12832         (gnus-article-browse-html-parts): Work for images that do not specify
12833         file names; delete temp directory when quitting; insert header at the
12834         right place; use file: scheme for image files.
12835
12836 2010-03-30  Eric Schulte  <schulte.eric@gmail.com>
12837
12838         * gnus-art.el (gnus-article-browse-html-save-cid-image): New function.
12839         (gnus-article-browse-html-parts): Use it to make temporary cid image
12840         files in addition to html file so that browser may display them.
12841
12842 2010-03-29  Katsumi Yamaoka  <yamaoka@jpl.org>
12843
12844         * mm-decode.el (mm-add-meta-html-tag): Fix regexp matching meta tag.
12845
12846 2010-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
12847
12848         * auth-source.el (auth-source-pick): Fix for non-secrets specifier.
12849
12850 2010-03-27  Teodor Zlatanov  <tzz@lifelogs.com>
12851
12852         * auth-source.el (auth-sources): Change default to be simpler.
12853         Explain about Secret Service API sources.  Improve Customize options.
12854         (auth-source-pick): Change to accept any number of search parameters.
12855         Implement fallbacks iteratively, not recursively.  Add scoring on the
12856         second pass and sort by score.  Call Secret Service API when needed.
12857         (auth-source-user-or-password): Use it.  Call Secret Service API
12858         directly when needed to get the user name and the password.
12859
12860 2010-03-24  Juanma Barranquero  <lekktu@gmail.com>
12861
12862         * message.el (message-interactive): Doc fix.
12863         (message-qmail-inject-args): Reflow.
12864         (message-kill-to-signature): Fix typo in docstring.
12865
12866         * smiley.el (smiley-buffer): Fix typo in docstring.
12867
12868 2010-03-24  Glenn Morris  <rgm@gnu.org>
12869
12870         * mail-source.el (gnus-message): Declare.
12871         (mail-source-delete-old-incoming): Require gnus-util.
12872
12873 2010-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
12874
12875         * gnus-art.el (canlock-verify): Autoload it for Emacs 21.
12876
12877         * message.el (ecomplete-setup): Autoload it for Emacs <23.
12878
12879         * mml-sec.el (mml-secure-cache-passphrase): Default to t that is
12880         password-cache's default if it is not bound.
12881         (mml-secure-passphrase-cache-expiry): Default to 16 that is
12882         password-cache-expiry's default if it is not bound.
12883
12884         * pop3.el (pop3-list): Don't use 3rd arg of `split-string' which is not
12885         available in Emacs 21.
12886
12887         * lpath.el: Suppress compiler warnings for:
12888         canlock-insert-header and smtpmail-default-smtp-server for Emacs 21 and
12889         XEmacs;
12890         ecomplete-add-item, ecomplete-save, hashcash-wait-async,
12891         mail-add-payment, mail-add-payment-async, netrc-get, netrc-machine,
12892         netrc-machine-user-or-password and netrc-parse for Emacs 22 and XEmacs.
12893
12894 2010-03-23  Teodor Zlatanov  <tzz@lifelogs.com>
12895
12896         * auth-source.el (auth-sources): Fix up definition so extra parameters
12897         are always inline.
12898
12899 2010-03-22  Martin Stjernholm  <mast@lysator.liu.se>
12900
12901         * nnimap.el (nnimap-verify-uidvalidity): Fix bug where uidvalidity
12902         wasn't updated after mismatch.  Clear cached mailbox info correctly
12903         when uidvalidity changes.
12904         (nnimap-group-prefixed-name): New function to avoid some code
12905         duplication.
12906         (nnimap-verify-uidvalidity, nnimap-group-overview-filename)
12907         (nnimap-request-group): Use it.
12908         (nnimap-retrieve-groups, nnimap-verify-uidvalidity)
12909         (nnimap-update-unseen): Significantly improved speed of Gnus startup
12910         with many imap folders.  This is done by caching the group status from
12911         the imap server persistently in a group parameter `imap-status'.  (This
12912         was cached before too if `nnimap-retrieve-groups-asynchronous' was set,
12913         but not persistently, so every Gnus startup was still very slow.)
12914
12915 2010-03-22  Teodor Zlatanov  <tzz@lifelogs.com>
12916
12917         * assistant.el (assistant-render-text): Run `widget-setup' and don't
12918         delete the extra newline.  Otherwise editing of :string and :number
12919         types don't work.
12920
12921 2010-03-20  Teodor Zlatanov  <tzz@lifelogs.com>
12922
12923         * auth-source.el: Set up autoloads.  Bump to 23.2 because of the
12924         secrets.el dependency.
12925         (auth-sources): Add optional user name.  Add secrets.el configuration
12926         choice (unused right now).
12927
12928 2010-03-20  Teodor Zlatanov  <tzz@lifelogs.com>
12929
12930         * gnus-sum.el (gnus-summary-make-menu-bar):
12931         Let `gnus-registry-install-shortcuts' fill in the functions.
12932
12933         * gnus-registry.el (gnus-summary-misc-menu): Declare to avoid
12934         warnings.
12935         (gnus-registry-misc-menus): Variable to hold registry mark menus.
12936         (gnus-registry-install-shortcuts): Populate and use it in a
12937         `gnus-summary-menu-hook' lambda, under "Gnus"->"Registry Marks".
12938
12939 2010-03-20  Martin Stjernholm  <mast@lysator.liu.se>
12940
12941         * nnimap.el (nnimap-decode-group-name, nnimap-encode-group-name):
12942         In-place substitutions for the group name encoding/decoding.
12943         (nnimap-find-minmax-uid, nnimap-possibly-change-group)
12944         (nnimap-retrieve-headers-progress, nnimap-possibly-change-group)
12945         (nnimap-retrieve-headers-progress, nnimap-request-article-part)
12946         (nnimap-update-unseen, nnimap-request-list)
12947         (nnimap-retrieve-groups, nnimap-request-update-info-internal)
12948         (nnimap-request-set-mark, nnimap-split-to-groups)
12949         (nnimap-split-articles, nnimap-request-newgroups)
12950         (nnimap-request-create-group, nnimap-request-accept-article)
12951         (nnimap-request-delete-group, nnimap-request-rename-group)
12952         (nnimap-acl-get, nnimap-acl-edit): Use them.  Replace `mbx' with
12953         `encoded-mbx' for consistency.
12954         (nnimap-close-group): Call `imap-current-mailbox' instead of using the
12955         variable `imap-current-mailbox'.
12956
12957         * gnus-agent.el (gnus-agent-fetch-articles, gnus-agent-fetch-headers)
12958         (gnus-agent-regenerate-group): Use `gnus-agent-decoded-group-name'.
12959
12960 2010-03-20  Bojan Petrovic  <bpetrovi@f.bg.ac.rs>
12961
12962         * pop3.el (pop3-display-message-size-flag): Display message size byte
12963         counts during POP3 download.
12964         (pop3-movemail): Use it.
12965         (pop3-list): Implement listing of available messages.
12966
12967 2010-03-20  Mark Triggs  <mst@dishevelled.net>  (tiny change)
12968
12969         * nnir.el (nnir-get-article-nov-override-function): New function to
12970         override the normal NOV retrieval.
12971         (nnir-retrieve-headers): Use it.
12972
12973 2010-03-19  Michael Albinus  <michael.albinus@gmx.de>
12974
12975         * auth-source.el (netrc-machine-user-or-password): Autoload.
12976
12977 2010-03-19  Glenn Morris  <rgm@gnu.org>
12978
12979         Stop message.el from loading about 40 libraries it doesn't always need.
12980         The general approach is to autoload rather than require, and to
12981         require in the specific functions rather than the file.  (Bug#5642)
12982
12983         * gmm-utils.el: Don't require wid-edit.
12984         (widget-create-child-value, widget-convert, widget-default-get):
12985         Autoload.
12986
12987         * gnus-util.el: Don't require time-date, netrc.
12988         (message-fetch-field, gnus-group-name-decode): Declare rather than
12989         autoloading.
12990         (gnus-fetch-field): Require message.
12991         (gnus-decode-newsgroups): Require gnus-group.
12992
12993         * ietf-drums.el: Don't require time-date.
12994
12995         * message.el: Don't require hashcash, canlock, ecomplete.
12996         Do require mail-utils.  Require nnheader only when compiling.
12997         (smtpmail-default-smtp-server): Remove declaration.
12998         (message-send-mail-function): Check smtpmail-default-smtp-server
12999         is bound rather than requiring smtpmail.
13000         (message-auto-save-directory, message-insert-signature):
13001         Use expand-file-name rather than nnheader-concat.
13002         (nnheader-insert-file-contents): Autoload.
13003         (hashcash-wait-async): Declare.
13004         (message-send-mail): Only call gnus-setup-posting-charset if
13005         gnus-group-posting-charset-alist is bound.  Require hashcash if needed.
13006         (message-send-mail-with-sendmail): Require sendmail.
13007         (canlock-password, canlock-password-for-verify): Declare.
13008         (message-canlock-password): Require canlock.
13009         (nnheader-get-report): Autoload.
13010         (gnus-setup-posting-charset): Declare.
13011         (message-send-news): Require gnus-msg.
13012         (message-make-references, message-make-in-reply-to): Use mail-header-id
13013         rather than the alias mail-header-message-id.
13014         (ecomplete-add-item, ecomplete-save): Declare.
13015         (message-put-addresses-in-ecomplete): Require ecomplete.
13016         (ecomplete-display-matches): Autoload.
13017
13018         * mm-decode.el: Don't require mailcap, gnus-util.
13019         (gnus-map-function, gnus-replace-in-string, gnus-read-shell-command)
13020         (message-fetch-field, mailcap-parse-mailcaps, mailcap-mime-info):
13021         Autoload.
13022         (mailcap-mime-extensions): Declare.
13023
13024         * mm-encode.el: Don't require mailcap.
13025         (mailcap-extension-to-mime): Autoload.
13026
13027         * mml-sec.el: Don't require password-cache.
13028
13029         * mml.el (gnus-setup-posting-charset): Declare rather than autoload.
13030         (mailcap-parse-mimetypes, mailcap-mime-types): Declare.
13031         (mml-minibuffer-read-type): Require mailcap.
13032         (mml-preview): Require gnus-msg.
13033
13034         * mml1991.el: Require password-cache.
13035         (password-cache-expiry): Remove declaration.
13036
13037         * mml2015.el: Require password-cache.
13038         (password-cache-expiry): Remove declaration.
13039
13040         * nneething.el (mailcap): Require mailcap.
13041
13042         * nnheader.el (declare-function): Add compatibility stub.
13043         (message-remove-header): Declare rather than autoload.
13044         (nnheader-replace-header): Require message.
13045
13046         * nnimap.el (declare-function): Add compatibility stub.
13047         (netrc-parse, netrc-machine-user-or-password): Declare.
13048         (nnimap-open-connection): Require netrc.
13049
13050         * nntp.el (declare-function): Add compatibility stub.
13051         (netrc-parse, netrc-machine, netrc-get): Declare.
13052         (nntp-send-authinfo): Require netrc.
13053
13054         * rfc2047.el: Don't require qp.
13055         (quoted-printable-encode-region, quoted-printable-decode-string):
13056         Autoload.
13057
13058         * sieve-mode.el: Don't require easymenu.
13059         (easy-menu-add-item): Autoload it.
13060
13061         * spam-stat.el (time-to-number-of-days): Autoload it.
13062
13063 2010-03-19  Glenn Morris  <rgm@gnu.org>
13064
13065         * password-cache.el (password-cache, password-cache-expiry): Autoload.
13066
13067 2010-03-18  Glenn Morris  <rgm@gnu.org>
13068
13069         * hashcash.el (declare-function): Remove duplicate definition.
13070
13071 2010-03-17  Kevin Ryde  <user42@zip.com.au>
13072
13073         * mml.el (mml-read-tag): Unquote values with `read' to reverse
13074         prin1 in mml-insert-tag (just stripping the quotes gave wrong
13075         value if any backslash escapes).
13076
13077 2010-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
13078
13079         * mm-util.el (mm-charset-to-coding-system): Use coding-system-from-name
13080         if it is available.  (bug#5647)
13081
13082         * lpath.el: Suppress compiler warning for coding-system-from-name for
13083         Emacs 21 and XEmacs.
13084
13085 2010-03-14  Juri Linkov  <juri@jurta.org>
13086
13087         * hmac-def.el:
13088         * hmac-md5.el:
13089         * netrc.el: Fix keywords.
13090
13091 2010-02-26  Glenn Morris  <rgm@gnu.org>
13092
13093         * message.el (message-send-mail-function): Change the default, so that
13094         it inherits from a customized send-mail-function.  (Bug#5643)
13095
13096 2010-02-24  Stefan Monnier  <monnier@iro.umontreal.ca>
13097
13098         * gnus-art.el (gnus-treat-display-x-face): Don't burp if
13099         shell-command-to-string signals an error (bug#5299).
13100
13101 2010-02-24  Glenn Morris  <rgm@gnu.org>
13102
13103         * message.el (message-smtpmail-send-it)
13104         (message-send-mail-with-mailclient): Doc fixes.
13105
13106 2010-02-16  Glenn Morris  <rgm@gnu.org>
13107
13108         * message.el (message-default-mail-headers): Change the default value
13109         to ease the transition from mail-mode to message-mode.  (Bug#5555)
13110
13111 2010-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
13112
13113         * parse-time.el (parse-time-syntax): Define it for only XEmacs.
13114         (parse-time-string-chars): Implement 2009-08-16 change for Emacs.
13115
13116 2010-01-18  Chong Yidong  <cyd@stupidchicken.com>
13117
13118         * time-date.el (date-to-time): Doc fix (Bug#5408).
13119
13120 2010-01-17  Chong Yidong  <cyd@stupidchicken.com>
13121
13122         * message.el (message-mail): Just pass yank-action on to message-setup.
13123         (message-setup): Handle (FUN . ARGS) form of yank-action.
13124         (message-with-reply-buffer, message-widen-reply)
13125         (message-yank-original): Handle non-buffer values of
13126         message-reply-buffer (Bug#4080).
13127         (message-setup-1): Prefer to save message-reply-buffer as a buffer.
13128
13129 2010-01-17  Juanma Barranquero  <lekktu@gmail.com>
13130
13131         * nnmairix.el (nnmairix-group-delete-recreate-this-group):
13132         Fix typo in docstring.
13133
13134 2010-01-08  Jason Rumney  <jasonr@gnu.org>
13135
13136         * sieve-manage.el (sieve-manage-parse-capability-1): Loosely match OK
13137         response.
13138
13139 2010-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
13140
13141         * gnus-art.el (gnus-article-describe-bindings): Work for prefix keys.
13142
13143         * gnus-xmas.el (gnus-xmas-article-describe-bindings): Ditto.
13144
13145         * message.el (message-check-news-header-syntax): Protect against a
13146         string that `rfc822-addresses' returns when parsing fails.
13147
13148 2010-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
13149
13150         * gnus-util.el (gnus-invisible-p, gnus-next-char-property-change)
13151         (gnus-previous-char-property-change): New functions.
13152
13153         * gnus-sum.el (gnus-forward-line-ignore-invisible): Use them.
13154
13155 2010-01-05  Andreas Schwab  <schwab@linux-m68k.org>
13156
13157         * gnus-sum.el (gnus-forward-line-ignore-invisible): New function.
13158         (gnus-summary-recenter): Use it instead of forward-line.  (Bug#5257)
13159
13160 2010-01-02  Chong Yidong  <cyd@stupidchicken.com>
13161
13162         * message.el (message-exchange-point-and-mark): Rework last change to
13163         avoid using optional arg of exchange-point-and-mark, for backward
13164         compatibility.
13165
13166 2010-01-01  Chong Yidong  <cyd@stupidchicken.com>
13167
13168         * message.el (message-exchange-point-and-mark):
13169         Call exchange-point-and-mark with an argument rather than setting
13170         mark-active by hand (Bug#5175).
13171
13172 2009-12-18  Katsumi Yamaoka  <yamaoka@jpl.org>
13173
13174         * nntp.el (nntp-service-to-port): Work for service expressed with
13175         numeric string; replace [:digit:] with [0-9] for XEmacs.
13176
13177 2009-12-17  Glenn Morris  <rgm@gnu.org>
13178
13179         * gnus-group.el (gnus-bug-group-download-format-alist):
13180         Change emacs entry to debbugs.gnu.org.  Bump :version.
13181
13182 2009-12-13  Reiner Steib  <Reiner.Steib@gmx.de>
13183
13184         * mm-encode.el (mm-sign-option, mm-encrypt-option): Add :version tag.
13185
13186 2009-12-12  Reiner Steib  <Reiner.Steib@gmx.de>
13187
13188         * message.el (message-info): Explain why we use `Info-goto-node'.
13189
13190 2009-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
13191
13192         * lpath.el: Always bind default-file-name-coding-system for (S)XEmacs.
13193
13194 2009-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
13195
13196         * message.el (message-completion-in-region): New compatibility function.
13197         (message-expand-group): Use it.
13198
13199 2009-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
13200
13201         * gnus-group.el (gnus-group-prepare-flat): Check also whether groups
13202         with no unread article should be listed if the 2nd arg `predicate' is
13203         given.
13204
13205 2009-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
13206
13207         * lpath.el: Fbind recenter-top-bottom for Emacs 21, 22, and (S)XEmacs.
13208
13209 2009-11-29  Juri Linkov  <juri@jurta.org>
13210
13211         * gnus-sum.el (gnus-recenter): Use `recenter-top-bottom'
13212         when it is fboundp in GNU Emacs 23.1.  Put `isearch-scroll' property
13213         on `gnus-recenter'.  (Bug#4698, Bug#4981)
13214
13215 2009-11-26  Kevin Ryde  <user42@zip.com.au>
13216
13217         * sha1.el (sha1-string-external): default-directory "/" in case
13218         otherwise non-existent.  process-connection-type pipe for touch of
13219         efficiency recommended by elisp manual.  (An aside in Bug#3911.)
13220
13221 2009-11-25  Kevin Ryde  <user42@zip.com.au>
13222
13223         * dns-mode.el: Add "Keywords: comm".  It's only an editing mode, but
13224         it's comms related and sgml-mode.el has "comm" on that basis too.
13225
13226 2009-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
13227
13228         * rfc2047.el (rfc2047-decode-region): Don't quote decoded words
13229         containing tspecial characters if they have been already quoted.
13230
13231 2009-11-05  Dan Nicolaescu  <dann@ics.uci.edu>
13232
13233         * dns-mode.el (auto-mode-alist): Purecopy string.
13234
13235 2009-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
13236
13237         * hashcash.el (hashcash-generate-payment): Use with-current-buffer.
13238
13239 2009-10-24  Glenn Morris  <rgm@gnu.org>
13240
13241         * gnus-art.el (help-xref-stack-item): Define for compiler.
13242
13243 2009-10-21  Kevin Ryde  <user42@zip.com.au>
13244
13245         * dns.el: Add "Keywords: comm", as per net/net-utils.el.
13246
13247 2009-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
13248
13249         * gnus-sum.el (gnus-remove-overlays): eval-and-compile.
13250
13251 2009-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
13252
13253         * gnus-sum.el (gnus-summary-show-thread): Remove useless goto-char.
13254         (gnus-summary-show-thread, gnus-summary-hide-thread): Indent.
13255
13256 2009-10-16  Katsumi Yamaoka  <yamaoka@jpl.org>
13257
13258         * gnus.el (gnus-overlay-get): New alias to overlay-get.
13259         (gnus-overlays-in): New alias to overlays-in.
13260
13261         * gnus-sum.el (gnus-remove-overlays): Use gnus-overlays-in,
13262         gnus-overlay-get, and gnus-delete-overlay.
13263         (gnus-summary-show-thread): Make it work as well for systems in which
13264         next-single-char-property-change is not available.
13265         (gnus-summary-hide-thread): Use gnus-make-overlay and gnus-overlay-put.
13266
13267         * gnus-xmas.el (gnus-xmas-overlays-in): New function.
13268         (gnus-overlay-get): New alias to extent-property.
13269         (gnus-overlays-in): New alias to gnus-xmas-overlays-in.
13270
13271         * dgnushack.el: Autoload add-to-invisibility-spec for XEmacs 21.4 and
13272         SXEmacs.
13273
13274         * lpath.el: Fbind next-single-char-property-change for XEmacs 21.4 and
13275         SXEmacs.
13276
13277 2009-10-14  Reiner Steib  <Reiner.Steib@gmx.de>
13278
13279         * gnus-sum.el (gnus-remove-overlays): Add doc string and alias.
13280
13281 2009-10-14  Dan Nicolaescu  <dann@ics.uci.edu>
13282
13283         * gnus-sum.el (gnus-remove-overlays): Compatibility code for Emacs 21
13284         and XEmacs that don't have `remove-overlays'.
13285
13286 2009-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
13287
13288         * gnus-sum.el (gnus-summary-mode, gnus-summary-show-all-threads)
13289         (gnus-summary-show-thread, gnus-summary-hide-thread): Get rid of
13290         selective display.  Use overlays instead.
13291
13292 2009-10-04  Juanma Barranquero  <lekktu@gmail.com>
13293
13294         * spam-stat.el (spam-stat-strip-xref): Fix typo in docstring.
13295
13296 2009-09-29  Juanma Barranquero  <lekktu@gmail.com>
13297
13298         * spam-stat.el (spam-stat-load): Fix typo in message.
13299
13300 2009-09-24  Juanma Barranquero  <lekktu@gmail.com>
13301
13302         * dig.el (dig-invoke): Fix typo in docstring.
13303         (query-dig): Reflow docstring.
13304
13305 2009-09-23  Juanma Barranquero  <lekktu@gmail.com>
13306
13307         * gnus-art.el (gnus-article-encrypt-body):
13308         * message.el (message-check-recipients):
13309         * mm-util.el (mm-codepage-setup):
13310         * nnir.el (gnus-summary-nnir-goto-thread, nnir-run-waissearch)
13311         (nnir-run-swish++, nnir-run-swish-e): Fix typos in error messages.
13312
13313 2009-09-22  Daiki Ueno  <ueno@unixuser.org>
13314
13315         * mm-encode.el (mm-sign-option, mm-encrypt-option): New user option.
13316         * mml2015.el (mml2015-epg-sign, mml2015-epg-encrypt): Let users select
13317         keys from the menu if mm-{sign,encrypt}-option is 'guided.
13318         * mml-smime.el (mml-smime-epg-sign, mml-smime-epg-encrypt): Ditto.
13319         * mml1991.el (mml1991-epg-sign, mml1991-epg-encrypt): Ditto.
13320
13321 2009-09-21  Kevin Ryde  <user42@zip.com.au>
13322
13323         * dig.el: Add "Keywords: comm", as per net-utils.el.
13324
13325 2009-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
13326
13327         * dig.el (dig-mode): Use define-derived-mode.
13328
13329 2009-09-19  Glenn Morris  <rgm@gnu.org>
13330
13331         * pgg-pgp.el (pgg-pgp-encrypt-region): Add missing mapconcat separator.
13332
13333 2009-09-18  Glenn Morris  <rgm@gnu.org>
13334
13335         * gnus-diary.el (gnus-diary-check-message):
13336         * message.el (message-insert-formatted-citation-line):
13337         * nnbabyl.el (top-level):
13338         * nndiary.el (nndiary-schedule):
13339         Fix typos in condition-case handlers.
13340
13341 2009-09-15  Katsumi Yamaoka  <yamaoka@jpl.org>
13342
13343         * gnus-art.el (gnus-article-edit-part): Work for the buffer
13344         configuration that provides the sole article window in a frame;
13345         position point correctly after deleting a part.
13346
13347 2009-09-14  Adam Sjøgren  <asjo@koldfront.dk>
13348
13349         * spam.el (spam-unregister-on-reregister): Add boolean variable.
13350         (spam-resolve-registrations-routine): Use it to unregister articles
13351         that change status.
13352
13353 2009-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
13354
13355         * parse-time.el (parse-time-syntax): Restore it to keep compatibility
13356         with XEmacs.
13357         (parse-time-string-chars): Use it.
13358
13359 2009-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
13360
13361         * imap.el (imap-interactive-login): Better messages.
13362         (imap-open): Fix bug with renamed buffer on reconnect.
13363         (imap-authenticate): Add buffer-local imap-last-authenticator variable
13364         for easier debugging and cleaner code.  On successful (guessed based on
13365         server capabilities) secondary authentication, set imap-state
13366         correctly.
13367         (imap-last-authenticator): Define imap-last-authenticator as a variable
13368         to avoid warnings.
13369
13370 2009-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
13371
13372         * nnrss.el (nnrss-request-article): Remove binding of
13373         default-enable-multibyte-characters that has gotten needless by
13374         the 2007-07-13 change in rfc2047-encode-message-header.
13375
13376         * mml.el (mml-insert-multipart): Error on the message header.
13377         (mml-insert-part): Error on the message header; position point at
13378         the end of a MIME tag.
13379
13380 2009-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
13381
13382         * time-date.el (autoload): Expand define-obsolete-function-alias into
13383         defalias and make-obsolete for old Emacsen that Gnus supports.
13384         (with-no-warnings): Define it for old Emacsen.
13385         (time-to-seconds): Don't use (featurep 'xemacs) to check if float-time
13386         is available.
13387         (time-to-number-of-days): Don't use (featurep 'xemacs) to check if
13388         float-time is available; suppress compile warning for time-to-seconds.
13389
13390         * gnus-util.el (with-no-warnings): Define it for old Emacsen.
13391         (gnus-float-time): Alias to float-time if it exists.
13392
13393         * ecomplete.el (with-no-warnings): Define it for old Emacsen.
13394         (ecomplete-add-item): Don't use (featurep 'xemacs) to check if
13395         float-time is available; suppress compile warning for time-to-seconds.
13396
13397         * lpath.el: Fbind time-to-seconds for Emacs 21.; fbind float-time for
13398         XEmacs.
13399
13400 2009-09-09  Teodor Zlatanov  <tzz@lifelogs.com>
13401
13402         * imap.el (imap-message-map): Docstring fix.
13403
13404 2009-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
13405
13406         * mm-encode.el (mm-encode-buffer): Don't force 7bit encoding since MTA
13407         may break data.  Suggested by Dmitri Paduchikh <dpaduch@k66.ru>.
13408         Add the optional argument `encoding' that overrides the default.
13409
13410         * mml.el (mml-generate-mime-1): Pass encoding defined by a user to
13411         mm-encode-buffer.
13412
13413 2009-09-04  Glenn Morris  <rgm@gnu.org>
13414
13415         * qp.el (quoted-printable-encode-string): Use mm-enable-multibyte, or
13416         mm-disable-multibyte, rather than default-enable-multibyte-characters.
13417         * utf7.el (utf7-encode, utf7-decode): Use mm-with-multibyte-buffer, or
13418         mm-with-unibyte-buffer, rather than default-enable-multibyte-characters.
13419         * mm-util.el (mm-with-unibyte-current-buffer)
13420         (mm-find-buffer-file-coding-system):
13421         * yenc.el (yenc-decode-region): Use default-value rather than
13422         default-enable-multibyte-characters.
13423
13424 2009-09-03  Glenn Morris  <rgm@gnu.org>
13425
13426         * mm-util.el (mm-emacs-mule, mm-default-multibyte-p):
13427         * rfc2047.el (rfc2047-encode-message-header): Use default-value rather
13428         than default-enable-multibyte-characters.
13429
13430 2009-09-02  Karl Kleinpaste  <karl@kleinpaste.org>
13431
13432         * gnus-art.el (gnus-article-read-summary-keys):
13433         Fix gnus-buffer-configuration's value temporarily used.
13434
13435 2009-09-02  Glenn Morris  <rgm@gnu.org>
13436
13437         * gnus-util.el (gnus-float-time): New function.
13438         * gnus-delay.el (gnus-delay-article):
13439         * gnus-sum.el (gnus-thread-latest-date):
13440         * gnus-util.el (gnus-user-date): Use gnus-float-time.
13441         * nnspool.el (nnspool-request-newgroups):
13442         Use gnus-float-time rather than time-to-seconds.
13443         * ecomplete.el (ecomplete-add-item): In Emacs, use float-time.
13444
13445         * gnus-art.el (gnus-signature-face, gnus-header-from-face)
13446         (gnus-header-subject-face, gnus-header-newsgroups-face)
13447         (gnus-header-name-face, gnus-header-content-face):
13448         * gnus-cite.el (gnus-cite-attribution-face, gnus-cite-face-1)
13449         (gnus-cite-face-2, gnus-cite-face-3, gnus-cite-face-4)
13450         (gnus-cite-face-5, gnus-cite-face-6, gnus-cite-face-7)
13451         (gnus-cite-face-8, gnus-cite-face-9, gnus-cite-face-10)
13452         (gnus-cite-face-11):
13453         * gnus-picon.el (gnus-picon-xbm-face, gnus-picon-face):
13454         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
13455         (gnus-server-closed-face, gnus-server-denied-face)
13456         (gnus-server-offline-face):
13457         * gnus.el (gnus-group-news-1-face, gnus-group-news-1-empty-face)
13458         (gnus-group-news-2-face, gnus-group-news-2-empty-face)
13459         (gnus-group-news-3-face, gnus-group-news-3-empty-face)
13460         (gnus-group-news-4-face, gnus-group-news-4-empty-face)
13461         (gnus-group-news-5-face, gnus-group-news-5-empty-face)
13462         (gnus-group-news-6-face, gnus-group-news-6-empty-face)
13463         (gnus-group-news-low-face, gnus-group-news-low-empty-face)
13464         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face)
13465         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face)
13466         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face)
13467         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face)
13468         (gnus-summary-selected-face, gnus-summary-cancelled-face)
13469         (gnus-summary-high-ticked-face, gnus-summary-low-ticked-face)
13470         (gnus-summary-normal-ticked-face, gnus-summary-high-ancient-face)
13471         (gnus-summary-low-ancient-face, gnus-summary-normal-ancient-face)
13472         (gnus-summary-high-undownloaded-face)
13473         (gnus-summary-low-undownloaded-face)
13474         (gnus-summary-normal-undownloaded-face)
13475         (gnus-summary-high-unread-face, gnus-summary-low-unread-face)
13476         (gnus-summary-normal-unread-face, gnus-summary-high-read-face)
13477         (gnus-summary-low-read-face, gnus-summary-normal-read-face)
13478         (gnus-splash-face):
13479         * message.el (message-header-to-face, message-header-cc-face)
13480         (message-header-subject-face, message-header-newsgroups-face)
13481         (message-header-other-face, message-header-name-face)
13482         (message-header-xheader-face, message-separator-face)
13483         (message-cited-text-face, message-mml-face):
13484         * sieve-mode.el (sieve-control-commands-face)
13485         (sieve-action-commands-face, sieve-test-commands-face)
13486         (sieve-tagged-arguments-face):
13487         * spam.el (spam-face):
13488         Mark face aliases with "-face" in the name as obsolete.
13489
13490 2009-09-01  Glenn Morris  <rgm@gnu.org>
13491
13492         * gnus-salt.el (gnus-pick-mouse-pick-region): Use forward-line rather
13493         than goto-line.
13494
13495 2009-08-31  Katsumi Yamaoka  <yamaoka@jpl.org>
13496
13497         * mml.el (mml-attach-file, mml-attach-buffer, mml-attach-external):
13498         Don't move point if the command is invoked inside the message header.
13499
13500 2009-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
13501
13502         * imap.el (imap-send-command): Simplify.
13503         (imap-wait-for-tag): point-max -> buffer-size.
13504
13505 2009-08-29  Stefan Monnier  <monnier@iro.umontreal.ca>
13506
13507         * spam.el (spam-ifile-path, spam-bogofilter-path, spam-sa-learn-path)
13508         (spam-ifile-database-path, spam-bsfilter-path, spam-spamassassin-path):
13509         * nnmail.el (nnmail-spool-file, nnmail-fix-eudora-headers):
13510         * nnir.el (nnir-swish-e-index-file):
13511         * gnus-sum.el (gnus-summary-delete-marked-as-read)
13512         (gnus-summary-delete-marked-with, gnus-summary-mark-as-unread-forward)
13513         (gnus-summary-mark-as-unread-backward, gnus-summary-mark-as-unread):
13514         * gnus-msg.el (gnus-inews-mark-gcc-as-read):
13515         * gnus-art.el (gnus-article-hide-pgp-hook, gnus-treat-strip-pgp)
13516         (gnus-treat-display-xface): Add Emacs version of obsolescence.
13517
13518 2009-08-28  Katsumi Yamaoka  <yamaoka@jpl.org>
13519
13520         * mml.el (mml-attach-file, mml-attach-buffer, mml-attach-external):
13521         Don't save excursion.
13522
13523 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
13524
13525         * nnheader.el (nnheader-find-file-noselect):
13526         * mm-util.el (mm-insert-file-contents):
13527         Use (default-value 'major-mode) instead of default-major-mode.
13528
13529 2009-08-27  Stefan Monnier  <monnier@iro.umontreal.ca>
13530
13531         * nnrss.el (nnrss-request-article): Avoid default-fill-column.
13532
13533 2009-08-26  Glenn Morris  <rgm@gnu.org>
13534
13535         * parse-time.el (parse-time-rules): Autoload riskiness here, rather
13536         than placing in files.el.
13537
13538 2009-08-25  Glenn Morris  <rgm@gnu.org>
13539
13540         * nnir.el (top-level): Don't require cl at run-time.
13541         (nnir-run-waissearch, nnir-run-swish-e, nnir-run-hyrex):
13542         Replace cl-function substitute with gnus-replace-in-string.
13543         (nnir-run-waissearch, nnir-run-swish++, nnir-run-swish-e)
13544         (nnir-run-hyrex, nnir-run-namazu): Replace cl-function sort* with sort.
13545         (nnir-run-find-grep): Replace cl-functions find-if and subseq with
13546         simplified expansions.
13547
13548 2009-08-25  Kevin Ryde  <user42@zip.com.au>
13549
13550         * dig.el (dig): Add autoload cookie.
13551
13552 2009-08-22  Glenn Morris  <rgm@gnu.org>
13553
13554         * gnus-art.el (gnus-button-patch): Use forward-line rather than
13555         goto-line.
13556
13557 2009-08-16  Chong Yidong  <cyd@stupidchicken.com>
13558
13559         * parse-time.el (parse-time-string-chars): Save match data.
13560
13561 2009-08-16  Jan Seeger  <jan.seeger@thenybble.de>  (tiny change)
13562
13563         * parse-time.el (parse-time-string-chars): Compute using character
13564         classes, to handle non-ascii characters (Bug#3190).
13565
13566 2009-08-12  Katsumi Yamaoka  <yamaoka@jpl.org>
13567
13568         * gnus-group.el (gnus-safe-html-newsgroups): New user option.
13569
13570         * gnus-art.el (gnus-bind-safe-url-regexp): New macro.
13571         (gnus-mime-view-all-parts, gnus-mime-view-part-internally)
13572         (gnus-mm-display-part, gnus-mime-display-single)
13573         (gnus-mime-display-alternative): Use gnus-bind-safe-url-regexp to
13574         override mm-w3m-safe-url-regexp according to gnus-safe-html-newsgroups.
13575
13576         * gnus-sum.el
13577         (gnus-mark-copied-or-moved-articles-as-expirable): New user option.
13578         (gnus-summary-move-article): Add expirable mark to articles copied or
13579         moved to group that has auto-expire turned on if the option is non-nil.
13580
13581 2009-07-24  Glenn Morris  <rgm@gnu.org>
13582
13583         * gnus-demon.el (gnus-demon-add-nntp-close-connection):
13584         Fix typo.  (Bug#3903)
13585
13586 2009-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
13587
13588         * gnus-art.el (gnus-article-mode-map): Bind the "e" key to
13589         gnus-article-read-summary-keys rather than gnus-summary-edit-article
13590         that should not be used for draft articles.
13591         (gnus-article-read-summary-keys): Use key-binding instead of lookup-key
13592         that has no concern in minor mode keys.
13593         (gnus-article-summary-command, gnus-article-summary-command-nosave):
13594         Abolish.
13595
13596 2009-07-16  Katsumi Yamaoka  <yamaoka@jpl.org>
13597
13598         * nnrss.el (nnrss-request-article): Allow mml-to-mime to generate MIME
13599         article without making inquiry to a user for unknown encoding.
13600
13601         * nnmaildir.el (nnmaildir--group-maxnum, nnmaildir--new-number)
13602         (nnmaildir--scan): Assume i-node and device number that file-attributes
13603         returns might be cons-cell.
13604
13605         * dgnushack.el: Autoload thing-at-point for XEmacs 21.5.
13606
13607         * lpath.el: Fbind cp-supported-codepages for XEmacs 21.5.
13608
13609 2009-07-16  Teodor Zlatanov  <tzz@lifelogs.com>
13610
13611         * auth-source.el: Remove docs now in auth.texi.  Don't use
13612         `gnus-message' for logging.  Add new variables `auth-source-debug' and
13613         `auth-source-hide-passwords' and use them.
13614
13615 2009-07-15  Glenn Morris  <rgm@gnu.org>
13616
13617         * gnus-spec.el (gnus-make-format-preserve-properties): Doc fix.
13618
13619 2009-07-10  Katsumi Yamaoka  <yamaoka@jpl.org>
13620
13621         * gnus-group.el (gnus-group-make-rss-group): Strip newlines and
13622         excessive whitespace from the default values of title and description.
13623
13624 2009-06-22  Katsumi Yamaoka  <yamaoka@jpl.org>
13625
13626         * mm-decode.el (mm-dissect-buffer): Use message-fetch-field instead of
13627         mail-fetch-field to fetch Content-Description header in order to
13628         exclude newlines.
13629
13630 2009-06-18  Ulrich Mueller  <ulm@gentoo.org>
13631
13632         * pgg-gpg.el (pgg-gpg-lookup-key-owner): Handle colon listings
13633         format used by GnuPG 2.0.11.
13634
13635 2009-06-01  Katsumi Yamaoka  <yamaoka@jpl.org>
13636
13637         * gnus-art.el (gnus-mime-delete-part): Specify gnus-decoded as charset
13638         to deleted part.
13639
13640 2009-05-30  David Engster  <dengste@eml.cc>
13641
13642         * nnmairix.el: Remove old documentation in the commentary block.
13643         (nnmairix-request-group): Do not update active file for nnml back ends.
13644         (nnmairix-retrieve-headers): Set gnus-nov-is-evil to t for nnimap back
13645         end so that overview files are ignored.
13646         (nnmairix-update-groups): Make updating the groups more robust by using
13647         marks.
13648         (nnmairix-determine-original-group-from-path): Circumvent mairix bug
13649         with dollar characters in message-id.
13650
13651 2009-04-28  Reiner Steib  <Reiner.Steib@gmx.de>
13652
13653         * spam.el: Use dns-query instead of query-dns.  Was renamed on
13654         2008-12-25 in dns.el.
13655
13656 2009-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
13657
13658         * rfc2047.el (rfc2047-decode-region): Don't skip past `start', which
13659         could happen if the text is only composed of spaces and/or tabs.
13660
13661 2009-03-03  Brian Sniffen  <bts@evenmere.org>  (tiny change)
13662
13663         * gnus-draft.el (gnus-draft-send): Bind gnus-message-setup-hook to nil
13664         when sending a queued message to avoid extra mml tags.
13665
13666 2009-03-02  Katsumi Yamaoka  <yamaoka@jpl.org>
13667
13668         * mml.el (mml-insert-mime): Don't break parts that mm-uu dissected.
13669
13670 2009-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
13671
13672         * lpath.el: Fbind rmail-swap-buffers-maybe for Emacs 21~22;
13673         fbind rmail-msg-restore-non-pruned-header, rmail-swap-buffers-maybe and
13674         rmail-toggle-header for XEmacs;
13675         bind rmail-default-file and rmail-default-rmail-file for XEmacs.
13676
13677 2009-02-25  Katsumi Yamaoka  <yamaoka@jpl.org>
13678
13679         * gnus-dired.el: Remove autoload for gnus-setup-message.
13680         (gnus-dired-attach): Fake this-command value to prevent Gnus from
13681         displaying Gnus logo; always use compose-mail.
13682
13683 2009-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
13684
13685         * gnus-dired.el: Tell autoload that gnus-setup-message is a macro.
13686
13687 2009-02-18  Katsumi Yamaoka  <yamaoka@jpl.org>
13688
13689         * gnus-nocem.el (gnus-nocem-groups): Remove invalid NoCeM groups.
13690         (gnus-nocem-issuers): List currently active issuers; fix custom type.
13691         (gnus-nocem-verifyer): Default to gnus-nocem-epg-verify if EasyPG is
13692         available.
13693         (gnus-nocem-epg-verify): New function.
13694
13695 2009-02-15  Reiner Steib  <Reiner.Steib@gmx.de>
13696
13697         * gnus-art.el (gnus-button-alist): Recognize Konqueror info links.
13698
13699 2009-02-15  Glenn Morris  <rgm@gnu.org>
13700
13701         * gnus-util.el (rmail-insert-rmail-file-header)
13702         (rmail-count-new-messages, rmail-show-message): Remove unnecessary
13703         autoloads.
13704         (rmail-default-rmail-file): Remove unnecessary declaration.
13705         (gnus-output-to-rmail): Handle mbox Rmail as well as Babyl Rmail.
13706
13707 2009-02-14  Glenn Morris  <rgm@gnu.org>
13708
13709         * gnus.el (rmail-default-rmail-file): Remove declaration of deleted
13710         variable (only used in gnus-util, which declares it anyway).
13711         (rmail-output-to-rmail-file): Remove autoload of deleted function,
13712         which was only needed by gnus-art (changed to not use it any more).
13713         (rmail-insert-rmail-file-header): Remove autoload of deleted function,
13714         only used in gnus-util, which autoloads it itself.
13715         (rmail-update-summary): Fix autoload.
13716
13717         * gnus-art.el (gnus-summary-save-in-mail): Use gnus-output-to-rmail
13718         rather than rmail-output-to-rmail-file.
13719
13720 2009-02-07  Glenn Morris  <rgm@gnu.org>
13721
13722         * message.el (rmail-msg-restore-non-pruned-header): Remove unneeded
13723         autoload of function that no longer exists.
13724         (rmail-toggle-header): Declare.
13725         (message-forward-rmail-make-body): Handle mbox Rmail.
13726
13727 2009-01-31  Glenn Morris  <rgm@gnu.org>
13728
13729         * gnus-sum.el (gnus-summary-next-article): XEmacs-friendly version of
13730         2009-01-09 change.
13731
13732 2009-01-31  Dave Love  <fx@gnu.org>
13733
13734         * imap.el (imap-fetch-safe): Bind debug-on-error.
13735         (imap-debug): Add imap-fetch-safe.
13736
13737 2009-01-26  Teodor Zlatanov  <tzlatanov@jumptrading.com>
13738
13739         * auth-source.el (auth-source-forget-user-or-password): Clarify docs.
13740         (auth-source-forget-all-cached): New convenience function.
13741         (auth-source-user-or-password): Accept list of modes or a single mode.
13742
13743         * mail-source.el (mail-source-bind, mail-source-set-1): Use list of
13744         auth-source modes.
13745
13746         * netrc.el (netrc-machine-user-or-password): Use list of
13747         auth-source modes.
13748
13749         * nnimap.el (nnimap-open-connection): Use list of
13750         auth-source modes.
13751
13752         * nntp.el (nntp-send-authinfo): Use list of
13753         auth-source modes.
13754
13755 2009-01-16  Teodor Zlatanov  <tzz@lifelogs.com>
13756
13757         * auth-source.el: Update docs to reflect epa-file-enable is to be used
13758         now.
13759
13760 2009-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
13761
13762         * nnmail.el (nnmail-pathname-coding-system): Default to the `file-name'
13763         coding system in XEmacs; add a workaround for XEmacs.
13764
13765         * lpath.el: Fbind coding-system-aliasee.
13766
13767 2009-01-14  Katsumi Yamaoka  <yamaoka@jpl.org>
13768
13769         * mm-util.el (mm-coding-system-priorities): Protect against nil value
13770         of current-language-environment.
13771
13772 2009-01-13  Reiner Steib  <Reiner.Steib@gmx.de>
13773
13774         * nnfolder.el (nnfolder-read-folder): Check if most-positive-fixnum is
13775         available at runtime.
13776
13777 2009-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
13778
13779         * gnus-art.el (article-date-ut): Fix end point of narrowing.
13780
13781 2009-01-11  Aidan Kehoe  <kehoea@parhasard.net>
13782
13783         * nnfolder.el (nnfolder-read-folder): The (lsh -1 -1) trick to generate
13784         the greatest positive fixnum value doesn't work under an XEmacs with
13785         bignum support; use the most-positive-fixnum constant instead,
13786         available since Emacs 21.1 with cl and XEmacs 21.1.
13787
13788 2009-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
13789
13790         * gnus-sum.el (gnus-summary-next-article): Revert last change by which
13791         XEmacs gets not to work.
13792
13793 2009-01-09  Katsumi Yamaoka  <yamaoka@jpl.org>
13794
13795         * mm-util.el (mm-coding-system-priorities): Allow the value like
13796         "Japanese (UTF-8)" of current-language-environment.
13797
13798 2009-01-09  Glenn Morris  <rgm@gnu.org>
13799
13800         * gnus-sum.el (gnus-summary-next-article): Replace last-command-char
13801         with last-command-event.
13802
13803 2009-01-08  Reiner Steib  <Reiner.Steib@gmx.de>
13804
13805         * imap.el (imap-enable-exchange-bug-workaround): Explain auto-detection
13806         in the doc string.
13807
13808         * message.el (message-fix-before-sending): Amend comment.
13809
13810 2009-01-08  Dave Love  <fx@gnu.org>
13811
13812         * imap.el (imap-message-appenduid-1): Fix typo in imap-fetch-safe call.
13813
13814 2009-01-07  David Engster  <dengste@eml.cc>
13815
13816         * gnus-msg.el (gnus-inews-do-gcc): Fix last patch to deal with
13817         simplified server definitions by converting it via
13818         gnus-server-to-method.
13819
13820 2009-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
13821
13822         * gnus-sum.el (gnus-summary-set-local-parameters): Always evaluate
13823         parameter's operands.
13824
13825 2009-01-06  David Engster  <dengste@eml.cc>
13826
13827         * gnus-msg.el (gnus-inews-do-gcc): Reduce to short group name when on
13828         primary select method (for gnus-group-mark-article-as-read).
13829
13830 2009-01-06  Tassilo Horn  <tassilo@member.fsf.org>
13831
13832         * gnus-art.el (gnus-treat-display-face): Fix docstring link to point to
13833         `(gnus)Face', not `(gnus)X-Face'.
13834
13835 2009-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
13836
13837         * mm-util.el (mm-ucs-to-char): New function.
13838
13839         * mm-url.el (mm-url-decode-entities): Use it.
13840
13841         * lpath.el: Fbind decode-char, int-to-char, ucs-to-char and
13842         unicode-to-char.
13843
13844 2009-01-05  Dave Love  <fx@gnu.org>
13845
13846         * time-date.el: Require cl for `declare'.
13847
13848 2009-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
13849
13850         * time-date.el (format-seconds): Explain `assoc-string'.  Suggested by
13851         Dave Love.
13852
13853 2009-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
13854
13855         * message.el (message-fix-before-sending): Add `eight-bit' to
13856         illegible-text check.
13857
13858 2009-01-03  Michael Olson  <mwolson@gnu.org>
13859
13860         * nnimap.el (nnimap-retrieve-headers-progress): Handle edge case where
13861         `headers' is nil.  This can occur if the IMAP server does not have
13862         permissions to read messages from a folder, but can write new messages
13863         to the folder.
13864         (nnimap-request-article-part): Do not insert `data' if it is nil.
13865
13866         * imap.el (imap-parse-fetch): Courier can insert spurious blank
13867         characters which will confuse `read', so skip past them.
13868
13869 2009-01-01  Dave Love  <fx@gnu.org>
13870
13871         * imap.el (imap-string-to-integer): Fix typo.
13872         (imap-fetch-safe): New function.
13873         (imap-message-copyuid-1, imap-message-appenduid-1): Use it.
13874
13875         * nnimap.el (nnimap-find-minmax-uid): Use imap-fetch-safe.
13876
13877         * imap.el (imap-process-connection-type, imap-debug, imap-open):
13878         (imap-parse-greeting): Fix doc strings.
13879         (imap-tls-open, imap-search, imap-message-appenduid-1): Add FIXMEs.
13880         (imap-parse-flag-list): Make messages unique.
13881         (imap-parse-body): Fix comments.  Add comment on Exchange 2007.
13882
13883         * nnimap.el: Fix author email.
13884         (nnimap-split-rule): Add FIXME comment.
13885         (nnimap-debug): Fix doc string.
13886
13887 2008-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
13888
13889         * dns.el (dns-set-servers): Check "Address".  Fix typo.
13890
13891 2008-12-25  Reiner Steib  <Reiner.Steib@gmx.de>
13892
13893         * dns.el (dns-set-servers): Renamed from dns-parse-resolv-conf.  Call
13894         nslookup if resolv.conf isn't available.
13895         (dns-query): Rename from query-dns.
13896         (dns-query-cached): Rename from query-dns-cached.
13897
13898 2008-12-25  Katsumi Yamaoka  <yamaoka@jpl.org>
13899
13900         * gnus-sum.el (gnus-summary-set-article-display-arrow): Make
13901         overlay-arrow-position and overlay-arrow-string buffer-local; no need
13902         to check if those variables exist (first appeared in Emacs 18.50).
13903
13904 2008-12-24  Katsumi Yamaoka  <yamaoka@jpl.org>
13905
13906         * mm-util.el (mm-line-number-at-pos): New function.
13907
13908         * spam-report.el (spam-report-process-queue): Use it.
13909
13910 2008-12-24  David Engster  <dengste@eml.cc>
13911
13912         * gnus-sum.el (gnus-summary-set-local-parameters): Don't bind
13913         parameters that haven't existed as variables as buffer-local variables.
13914
13915 2008-12-23  Dave Love  <fx@gnu.org>
13916
13917         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days): Don't use
13918         cadar.
13919
13920         * sieve-manage.el (sieve-manage-starttls-p): Rename from
13921         imap-starttls-p.
13922         (sieve-manage-starttls-open): Rename from imap-starttls-open.
13923
13924 2008-12-22  Dave Love  <fx@gnu.org>
13925
13926         * imap.el: Fix author email.  Doc fixes.
13927         (imap-parse-body): Work around assertion failure in bogus Exchange 2007
13928         reply.
13929
13930 2008-12-22  Reiner Steib  <Reiner.Steib@gmx.de>
13931
13932         * spam-report.el (spam-report-gmane-max-requests): New constant.
13933         (spam-report-gmane-wait): New variable.
13934         (spam-report-gmane-ham, spam-report-gmane-spam)
13935         (spam-report-url-ping-plain, spam-report-process-queue): Wait only if
13936         spam-report-gmane-wait is non-nil should be sufficient to avoid DOS-ing
13937         the server.
13938
13939         * nnheader.el (nnheader-read-timeout, nnheader-accept-process-output):
13940         Add explanations.
13941
13942         * pop3.el (pop3-accept-process-output, pop3-read-timeout): Use
13943         nnheader-accept-process-output and nnheader-read-timeout if available.
13944         (pop3-movemail): Use it.
13945
13946         * message.el (message-check-news-body-syntax): Fix signature check if
13947         there's an attachment.
13948
13949 2008-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
13950
13951         * mm-util.el: Add comments to the mm- emulating functions.
13952
13953 2008-12-21  Reiner Steib  <Reiner.Steib@gmx.de>
13954
13955         * gnus-start.el (gnus-before-startup-hook): Fix doc string.
13956         Reported by Stephen Berman <stephen.berman@gmx.net>.
13957
13958 2008-12-18  Katsumi Yamaoka  <yamaoka@jpl.org>
13959
13960         * mm-util.el (mm-substring-no-properties): New function.
13961         (mm-read-charset, mm-subst-char-in-string, mm-replace-in-string)
13962         (mm-special-display-p): Enable those lambda forms to be byte compiled.
13963         (mm-string-to-multibyte): Doc fix.
13964
13965         * mml.el (mml-attach-file): Use mm-substring-no-properties.
13966
13967 2008-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
13968
13969         * mml.el (mml-attach-file): Strip text properties from file name.
13970         (Bug#1574)
13971
13972 2008-12-16  Glenn Morris  <rgm@gnu.org>
13973
13974         * mm-util.el (mm-charset-override-alist): Declare for compiler.
13975
13976 2008-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
13977
13978         * mml.el (mml-generate-mime-1): Prefer the MIME charset that Emacs
13979         knows since the charset specified might be a bogus alias that
13980         mm-charset-synonym-alist provides.
13981
13982 2008-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
13983
13984         * mm-util.el (mm-charset-synonym-alist): Add bogus names "UTF8" and
13985         "ISO_8859-1".
13986
13987         * gnus-start.el (gnus-backup-startup-file): Improve doc string.
13988
13989 2008-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
13990
13991         * mm-util.el (mm-charset-eval-alist):
13992         Define it before mm-charset-to-coding-system.
13993         (mm-charset-to-coding-system): Add optional argument `silent';
13994         define it before mm-charset-override-alist.
13995         (mm-charset-override-alist): Add `(gb2312 . gbk)' to the
13996         default value if it can be used in Emacs currently running;
13997         silence mm-charset-to-coding-system.
13998
13999 2008-12-10  Katsumi Yamaoka  <yamaoka@jpl.org>
14000
14001         * rfc2047.el (rfc2047-charset-to-coding-system): Add new argument
14002         `allow-override' which says whether to use `mm-charset-override-alist'.
14003         (rfc2047-decode-encoded-words): Use it.
14004
14005         * mm-util.el (mm-charset-override-alist): Fix custom type;
14006         add `(gb2312 . gbk)' to choices.
14007
14008 2008-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
14009
14010         * mm-view.el (mm-inline-text-html-render-with-w3m): Make it simple and
14011         fast.
14012
14013         * gnus-art.el (gnus-article-wash-html-with-w3m): Ditto.
14014
14015         * lpath.el: Bind w3m-link-map for Emacs 21, 22, and XEmacs.
14016
14017 2008-12-04  Naohiro Aota  <nao.aota@gmail.com>
14018
14019         * mm-view.el (mm-inline-text-html-render-with-w3m): Put special keymap
14020         on links.
14021
14022         * gnus-art.el (gnus-article-wash-html-with-w3m): Ditto.
14023
14024 2008-12-03  Lute Kamstra  <lute@gnu.org>
14025
14026         * sha1.el: Remove leading * from docstrings of defcustoms,
14027         deffaces, defconsts and defuns.
14028
14029 2008-12-03  Katsumi Yamaoka  <yamaoka@jpl.org>
14030
14031         * message.el (message-idna-to-ascii-rhs-1): Protect against local
14032         users' addresses that don't have domain parts.
14033         (message-idna-to-ascii-rhs): Use message-narrow-to-headers-or-head
14034         rather than message-narrow-to-head since there will be the message
14035         header separator.
14036
14037 2008-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
14038
14039         * nnimap.el (nnimap-retrieve-headers-progress): Don't use nnimap-demule
14040         since the result is inserted in a unibyte buffer anyway.
14041         (nnimap-demule-use-string-to-multibyte): Remove.
14042         (nnimap-demule): Alias it to mm-string-to-multibyte.
14043
14044 2008-11-29  Reiner Steib  <Reiner.Steib@gmx.de>
14045
14046         * nnimap.el (nnimap-demule-use-string-to-multibyte): New temporary
14047         variable for debugging bug#464 and bug#1174.
14048         (nnimap-demule): Use it.
14049
14050 2008-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
14051
14052         * gnus-score.el (gnus-score-find-trace): Handle default score in total
14053         score calculation correctly.
14054
14055 2008-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
14056
14057         * message.el (message-send-mail): Just set the buffer to unibyte
14058         rather than use mm-with-unibyte-current-buffer which does a lot more.
14059         (message-send-mail-partially): Don't bother with
14060         mm-with-unibyte-current-buffer since it's already been made unibyte by
14061         message-send-mail.
14062
14063 2008-11-11  Teodor Zlatanov  <tzz@lifelogs.com>
14064
14065         * nnrss.el (nnrss-make-hash-index): Debug message of full item.
14066
14067 2008-11-10  Teodor Zlatanov  <tzz@lifelogs.com>
14068
14069         * netrc.el (netrc-parse): If a list is passed in as FILE, return it.
14070
14071 2008-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
14072
14073         * starttls.el (starttls-any-program-available): Rewritten so it doesn't
14074         require itself and to remove `with-no-warnings'.
14075
14076 2008-11-03  Teodor Zlatanov  <tzz@lifelogs.com>
14077
14078         * starttls.el (starttls-any-program-available): Get the name of the
14079         available TLS layer program.
14080         (starttls-open-steam-gnutls, starttls-open-stream): Put port number as
14081         well as the host name in the "opening" message.
14082
14083         * auth-source.el (auth-source-cache, auth-source-do-cache)
14084         (auth-source-user-or-password): Cache passwords and logins by default,
14085         allow override with `auth-source-do-cache'.
14086         (auth-source-forget-user-or-password): Allow users to remove cache
14087         entries if needed.
14088
14089 2008-11-01  Juanma Barranquero  <lekktu@gmail.com>
14090
14091         * md4.el (md4-buffer): Fix typo in docstring.
14092         (md4, md4-64): Doc fixes.
14093         (md4-pack-int32): Reflow docstring.
14094
14095 2008-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
14096
14097         * ietf-drums.el (ietf-drums-remove-comments): Localize second
14098         condition-case to only the forward-sexp call.
14099
14100 2008-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
14101
14102         * ietf-drums.el (ietf-drums-remove-comments): Fix bug with single
14103         quotes contained.  Make it more robust regardless by an extra
14104         condition-case wrapper.
14105
14106 2008-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
14107
14108         * lpath.el: No need to fbind codepage-setup for Emacs 23.
14109
14110 2008-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
14111
14112         * nnml.el (nnml-request-expire-articles): Check if the function set to
14113         `nnmail-expiry-target' returns the symbol `delete'.
14114
14115         * nnfolder.el (nnfolder-request-expire-articles): Ditto.
14116
14117         * nnmail.el (nnmail-expiry-target): Fix custom type.
14118
14119 2008-10-02  Glenn Morris  <rgm@gnu.org>
14120
14121         * mm-util.el (mm-codepage-setup): Tweak codepage error.
14122         Silence compiler warning.
14123
14124 2008-10-01  Magnus Henoch  <mange@freemail.hu>
14125
14126         * tls.el (open-tls-stream): Show the actual command being
14127         executed, instead of the format string.
14128
14129 2008-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
14130
14131         * lpath.el: Fbind codepage-setup for Emacs 23.
14132
14133 2008-09-30  Chong Yidong  <cyd@stupidchicken.com>
14134
14135         * mml.el (mml-menu): Don't assume mml2015 is bound.
14136
14137 2008-09-29  Katsumi Yamaoka  <yamaoka@jpl.org>
14138
14139         * gnus-art.el (gnus-article-read-summary-keys): Check if summary window
14140         exists.
14141
14142 2008-09-27  Glenn Morris  <rgm@gnu.org>
14143
14144         * gnus-util.el (mail-header-remove-comments): Autoload it.
14145
14146 2008-09-27  Andreas Schwab  <schwab@suse.de>
14147
14148         * gnus-util.el (gnus-split-references): Strip comments.
14149         (gnus-parent-id): Likewise.
14150
14151 2008-09-26  Reiner Steib  <Reiner.Steib@gmx.de>
14152
14153         * message.el (message-confirm-send): Fix version.
14154
14155 2008-09-25  Katsumi Yamaoka  <yamaoka@jpl.org>
14156
14157         * message.el (message-idna-to-ascii-rhs-1): Use
14158         mail-extract-address-components rather than mail-header-parse-addresses
14159         that is an alias by default to ietf-drums-parse-addresses that does not
14160         support non-ASCII names in headers' contents.
14161
14162 2008-09-25  Teodor Zlatanov  <tzz@lifelogs.com>
14163
14164         * message.el (message-confirm-send): Fix variable documentation to
14165         avoid the "y/n" wording.
14166
14167 2008-09-25  Francis Litterio  <flitterio@gmail.com>  (tiny change)
14168
14169         * message.el (message-set-auto-save-file-name): Save to a different
14170         filename so multiple messages (especially drafts) can be recovered.
14171
14172 2008-09-24  Teodor Zlatanov  <tzz@lifelogs.com>
14173
14174         * message.el (message-confirm-send): Add appropriate version.
14175
14176 2008-09-22  Teodor Zlatanov  <tzz@lifelogs.com>
14177
14178         * mm-view.el (mm-pkcs7-enveloped-magic): Fix extra parenthesis in
14179         defvar.
14180
14181 2008-09-22  Daiki Ueno  <ueno@unixuser.org>
14182
14183         * mm-view.el (mm-pkcs7-signed-magic): Use literals.
14184         (mm-pkcs7-enveloped-magic): Ditto.
14185
14186 2008-09-17  Simon Josefsson  <simon@josefsson.org>
14187
14188         * sieve-manage.el (sieve-manage-is-string): Accept literals too.
14189         Reported by Arnt Gulbrandsen <arnt@oryx.com>.
14190
14191 2008-09-16  Teodor Zlatanov  <tzz@lifelogs.com>
14192
14193         * gnus-registry.el (gnus-registry-use-long-group-names): Make t the
14194         default, it's better.
14195
14196 2008-09-11  Teodor Zlatanov  <tzz@lifelogs.com>
14197
14198         * gnus-sum.el (gnus-summary-insert-line): Trap errors on setting the
14199         summary line gnus-number property and ignore them (with a warning
14200         message).
14201
14202 2008-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
14203
14204         * gnus-group.el (gnus-group-make-useful-group): Don't use the compiler
14205         macro caddr in the interactive form since it won't be expanded.
14206
14207 2008-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
14208
14209         * gnus-art.el (gnus-mime-set-charset-parameters): Add new argument
14210         `charset'; fix name of function called recursively.
14211         (gnus-mime-view-part-as-charset): Don't bind gnus-newsgroup-charset.
14212
14213 2008-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
14214
14215         * gnus-art.el (gnus-mime-strip-charset-parameters): Remove.
14216         (gnus-mime-set-charset-parameters): New function.
14217         (gnus-mime-view-part-as-charset): Use it to correctly display part
14218         specifying wrong charset.
14219
14220 2008-09-08  David Engster  <dengste@eml.cc>
14221
14222         * nnmairix.el (nnmairix-create-server-and-default-group): Require match
14223         in completing-read for back end server.
14224
14225 2008-09-03  Teodor Zlatanov  <tzz@lifelogs.com>
14226
14227         * message.el (message-confirm-send): New variable to confirm sending a
14228         message.
14229         (message-send): Use it.
14230
14231 2008-08-30  Teodor Zlatanov  <tzz@lifelogs.com>
14232
14233         * gnus-spec.el (gnus-parse-simple-format): Revert last patch.
14234
14235 2008-08-29  Katsumi Yamaoka  <yamaoka@jpl.org>
14236
14237         * gnus-spec.el (gnus-parse-simple-format): Remove trailing whitespace.
14238
14239 2008-08-21  Teodor Zlatanov  <tzz@lifelogs.com>
14240
14241         * gnus-registry.el (gnus-registry-max-track-groups): New variable to
14242         prevent tracking too many groups.
14243         (gnus-registry-split-fancy-with-parent, gnus-registry-fetch-groups):
14244         Use it.
14245
14246 2008-08-11  Ralf Angeli  <angeli@caeruleus.net>
14247
14248         * gnus-art.el (gnus-article-next-page): Respect `scroll-margin' when
14249         moving point to the bottom of the window in order to avoid recentering.
14250
14251 2008-08-11  Katsumi Yamaoka  <yamaoka@jpl.org>
14252
14253         * lpath.el: Bind scroll-margin for XEmacs 21.4 and SXEmacs.
14254
14255         * gnus-art.el (gnus-article-next-page, gnus-article-prev-page)
14256         (gnus-article-next-page-1): Use compiler directive (featurep 'xemacs).
14257         (gnus-article-beginning-of-window): Fix calculation.
14258
14259 2008-08-08  Katsumi Yamaoka  <yamaoka@jpl.org>
14260
14261         * gnus-msg.el (gnus-summary-supersede-article)
14262         (gnus-summary-resend-message-edit): Bind mail-parse-charset to the
14263         value of gnus-newsgroup-charset to decode non-MIME encoded text in
14264         message header.
14265
14266 2008-08-02  Chong Yidong  <cyd@stupidchicken.com>
14267
14268         * pgg-gpg.el (pgg-gpg-process-region): Accept any remaining
14269         pending output coming after the status change.
14270
14271 2008-07-31  Dan Nicolaescu  <dann@ics.uci.edu>
14272
14273         * message.el:
14274         * gnus-start.el:
14275         * gnus-registry.el: Remove VMS support.
14276
14277 2008-07-30  Katsumi Yamaoka  <yamaoka@jpl.org>
14278
14279         * rfc2104.el (rfc2104-string-make-unibyte): Define it as a compiler
14280         macro.
14281         (rfc2104-hash): Use it.
14282
14283 2008-07-30  Reiner Steib  <Reiner.Steib@gmx.de>
14284
14285         * gnus-sum.el (gnus-summary-sort-by-most-recent-number)
14286         (gnus-summary-sort-by-most-recent-date): New commands.
14287         (gnus-summary-mode-map, gnus-summary-make-menu-bar): Add key bindings
14288         and menu entries.
14289
14290 2008-07-29  Katsumi Yamaoka  <yamaoka@jpl.org>
14291
14292         * gnus-art.el (gnus-summary-save-in-pipe): Generate work buffer always;
14293         don't redisplay article for raw contents; remove plural articles stuff.
14294
14295         * gnus-sum.el (gnus-summary-pipe-output): Pipe raw articles by symbolic
14296         prefix `r'; use gnus-summary-save-in-pipe directly instead of relying
14297         on gnus-summary-save-article; display results properly.
14298
14299 2008-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
14300
14301         * lpath.el: No need to fbind ns-focus-frame.
14302
14303 2008-07-24  Katsumi Yamaoka  <yamaoka@jpl.org>
14304
14305         * gnus-art.el (gnus-summary-save-in-pipe): Add optional argument `raw'.
14306
14307 2008-07-22  Katsumi Yamaoka  <yamaoka@jpl.org>
14308
14309         * gnus-art.el (gnus-summary-save-in-pipe):
14310         Consider gnus-save-all-headers.
14311
14312 2008-07-21  Dan Nicolaescu  <dann@ics.uci.edu>
14313
14314         * gnus-util.el (ns-focus-frame): Remove declaration.
14315         (gnus-select-frame-set-input-focus): Undo previous change.  Treat ns
14316         like x.
14317
14318 2008-07-21  Thien-Thi Nguyen  <ttn@gnuvola.org>
14319
14320         * rfc2104.el (rfc2104-zero): Delete defconst.
14321         (rfc2104-hex-alist): Likewise.
14322         (rfc2104-hex-to-int): Delete func.
14323         (rfc2104-hexstring-to-bitstring): Likewise.
14324         (rfc2104-nybbles): New defconst.
14325         (rfc2104-hash): Rewrite for speed.
14326
14327 2008-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
14328
14329         * tls.el (open-tls-stream): Make it work with the 2nd argument
14330         BUFFER that is a string but does not exist as a buffer object, as
14331         mentioned in the doc-string.
14332
14333 2008-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
14334
14335         * lpath.el: Fbind ns-focus-frame for Emacs 21, 22, XEmacs 21.4, and
14336         SXEmacs.
14337
14338 2008-07-16  Glenn Morris  <rgm@gnu.org>
14339
14340         * gnus-util.el (ns-focus-frame): Declare for compiler.
14341
14342 2008-07-10  Katsumi Yamaoka  <yamaoka@jpl.org>
14343
14344         * gnus-art.el (gnus-article-save): Ignore gnus-visible-headers that is
14345         set as a group parameter.
14346         (gnus-summary-save-in-pipe): Work when it is called independently.
14347         (gnus-summary-pipe-to-muttprint): Don't modify
14348         gnus-summary-pipe-output-default-command.
14349
14350 2008-07-10  Stefan Monnier  <monnier@iro.umontreal.ca>
14351
14352         * message.el (message-send-mail-with-sendmail):
14353         Display the error message.
14354
14355 2008-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
14356
14357         * gnus-art.el (gnus-default-article-saver):
14358         Add gnus-summary-save-in-pipe to choices.
14359         (gnus-summary-save-in-pipe): Add :decode and :headers properties; use
14360         gnus-summary-pipe-output-default-command as the default command.
14361         (gnus-summary-pipe-to-muttprint): Update gnus-summary-muttprint-program
14362         instead of gnus-last-shell-command.
14363
14364         * gnus-sum.el (gnus-summary-pipe-output-default-command):
14365         New user option.
14366         (gnus-summary-muttprint-program): Mention the value will be changed.
14367         (gnus-summary-save-article): Force showing of all headers.
14368         (gnus-summary-pipe-output): Work with the 2nd argument HEADERS.
14369
14370 2008-07-01  Rupert Swarbrick  <rswarbrick@googlemail.com>  (tiny change)
14371
14372         * gnus-score.el (gnus-score-find-trace): Add "Total score" line.
14373
14374 2008-07-02  Juanma Barranquero  <lekktu@gmail.com>
14375
14376         * nnimap.el (nnimap-id):
14377         * sieve-manage.el (sieve-manage-open): Doc fixes.
14378
14379 2008-07-02  Francesc Rocher  <rocher@member.fsf.org>
14380
14381         * gnus.el (gnus-group-startup-message): Prefer SVG or PNG image,
14382         if available.
14383
14384 2008-06-25  Stefan Monnier  <monnier@iro.umontreal.ca>
14385
14386         * mm-util.el (mm-with-multibyte, mm-with-unibyte): Remove.
14387
14388         * nnkiboze.el (nnkiboze-generate-group):
14389         Use explicit mm-disable-multibyte rather than mm-with-unibyte.
14390
14391         * nnmairix.el: Require CL.
14392
14393 2008-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
14394
14395         * dgnushack.el: Autoload get-display-table and put-display-table for
14396         XEmacs 21.5.
14397
14398         * lpath.el: Fbind get-display-table and put-display-table for XEmacs
14399         21.4 and SXEmacs.
14400
14401 2008-06-15  David Engster  <dengste@eml.cc>
14402
14403         * nnimap.el (nnimap-request-delete-group): Unselect group if necessary.
14404
14405 2008-06-14  Aidan Kehoe  <kehoea@parhasard.net>
14406
14407         * gnus-util.el (gnus-put-display-table, gnus-get-display-table):
14408         New macros that expand to an `aset'/`aref' call under Emacs, and to a
14409         runtime choice under XEmacs.
14410
14411         * gnus-sum.el (gnus-summary-set-display-table):
14412         Use `gnus-put-display-table', `gnus-get-display-table',
14413         `gnus-set-display-table' for the display table, instead of `aset'.
14414
14415         * gnus-xmas.el (gnus-xmas-summary-set-display-table):
14416         Use `gnus-put-display-table', `gnus-get-display-table',
14417         `gnus-set-display-table' for the display table.
14418
14419 2008-06-14  Reiner Steib  <Reiner.Steib@gmx.de>
14420
14421         * nnmairix.el: Add autoloads.
14422
14423 2008-06-14  Reiner Steib  <Reiner.Steib@gmx.de>
14424
14425         * nnmairix.el (nnmairix-delete-recreate-group)
14426         (nnmairix-update-and-clear-marks): Fix error messages.
14427
14428 2008-06-14  David Engster  <dengste@eml.cc>
14429
14430         * nnmairix.el: Upgrade to version 0.6.
14431         (nnmairix-group-toggle-propmarks-this-group)
14432         (nnmairix-group-toggle-readmarks-this-group)
14433         (nnmairix-group-delete-recreate-this-group)
14434         (nnmairix-group-toggle-allowfast-this-group, nnmairix-propagate-marks)
14435         (nnmairix-remove-tick-mark-original-article): New commands.
14436         (nnmairix-mairix-search-options, nnmairix-propagate-marks-upon-close)
14437         (nnmairix-propagate-marks-to-nnmairix-groups)
14438         (nnmairix-only-use-registry, nnmairix-allowfast-default)
14439         (nnmairix-marks-cache, nnmairix-version-output): New variables.
14440         (nnmairix-request-set-mark, nnmairix-request-update-info): New back end
14441         functions needed for marks propagation and manipulation of read marks.
14442         (nnmairix-update-groups): New function.
14443         (nnmairix-get-groups-from-server, nnmairix-delete-recreate-group)
14444         (nnmairix-determine-original-group-from-registry)
14445         (nnmairix-determine-original-group-from-path)
14446         (nnmairix-get-group-from-file-path, nnmairix-map-range)
14447         (nnmairix-check-mairix-version, nnmairix-group-toggle-parameter):
14448         New helper functions.
14449         (nnmairix-group-mode-hook, nnmairix-summary-mode-hook): Insert new
14450         keystrokes for new commands.
14451         (nnmairix-delete-and-create-on-change): Doc string cleanup.
14452         (nnmairix-request-group): Check allow-fast group parameter.
14453         (nnmairix-request-create-group): Set allow-fast group parameter if
14454         nnmairix-allowfast-default is set.
14455         (nnmairix-close-group): Propagate marks upon closing if needed.
14456         (nnmairix-group-toggle-threads-this-group): Use new.
14457         nnmairix-group-toggle-parameter helper function.
14458         (nnmairix-search): Better check for empty search result.
14459         (nnmairix-goto-original-article): Use new helper functions for
14460         determining original article.
14461         (nnmairix-show-original-article): Make sure message-id is in brackets.
14462         (nnmairix-call-mairix-binary): Change variable name.
14463         (nnmairix-update-and-clear-marks): Use nnmairix-delete-recreate-group
14464         helper function.
14465         (nnmairix-widget-toggle-activate): Fix doc string.
14466
14467 2008-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
14468
14469         * nnir.el: Require edmacro when compiling with XEmacs.
14470         (nnir-run-find-grep): Don't use 3rd arg of `split-string' which is not
14471         available in Emacs 21.
14472
14473 2008-06-11  Glenn Morris  <rgm@gnu.org>
14474
14475         * gnus-util.el (x-focus-frame):
14476         * gnus.el (image-size):
14477         * mm-decode.el (image-size): Declare.
14478
14479         * gnus-picon.el (declare-function): Add compat definition.
14480         (image-size): Declare.
14481
14482         * gnus-group.el (tool-bar-map):
14483         * gnus-sum.el (tool-bar-map): Define for compiler.
14484
14485         * gnus-ems.el (gnus-x-splash): Check tool-bar-mode is bound.
14486
14487         * nnfolder.el (gnus-intersection): Remove unnecessary autoload.
14488
14489         * gnus-agent.el, gnus-cache.el, gnus-ems.el, gnus-group.el:
14490         * gnus-logic.el, gnus-msg.el, gnus-util.el, gnus.el, mail-source.el:
14491         * message.el, mm-decode.el, mm-encode.el, mm-view.el, mml.el:
14492         * mml1991.el, mml2015.el, nnfolder.el, nnheader.el, nnimap.el:
14493         * nnmail.el, nnml.el, nnrss.el, nntp.el, nnvirtual.el:
14494         * sieve-manage.el, spam-report.el, spam.el:
14495         Remove unnecessary eval-and-compile of autoloads.
14496
14497 2008-06-08  Michael Albinus  <michael.albinus@gmx.de>
14498
14499         * auth-source.el: Precise Tramp doc.
14500
14501 2008-06-07  Glenn Morris  <rgm@gnu.org>
14502
14503         * nnmairix.el: Remove unnecessary eval-when-compile.
14504
14505 2008-06-06  Katsumi Yamaoka  <yamaoka@jpl.org>
14506
14507         * lpath.el: Fbind propertize for XEmacs 21.4.
14508
14509 2008-06-05  Reiner Steib  <Reiner.Steib@gmx.de>
14510
14511         * nnir.el: Move here from ../contrib.
14512
14513 2008-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
14514
14515         * gnus-util.el (gnus-read-shell-command): New function.
14516         * mm-decode.el (mm-pipe-part):
14517         * gnus-art.el (gnus-summary-save-in-pipe): Use it.
14518
14519 2008-06-05  Katsumi Yamaoka  <yamaoka@jpl.org>
14520
14521         * message.el (message-disassociate-draft): Revert 2008-03-18 change.
14522
14523 2008-06-03  Glenn Morris  <rgm@gnu.org>
14524
14525         * pop3.el (nnheader-accept-process-output): Autoload it.
14526
14527 2008-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
14528
14529         * rfc2231.el (rfc2231-decode-encoded-string): Don't decode things that
14530         are not 2-digit hexadecimal characters that follow `%'s.
14531
14532 2008-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
14533
14534         * message.el (message-bogus-recipient-p): Fix type in doc string.
14535         Reported by Stephen Eglen <S.J.Eglen@damtp.cam.ac.uk>.
14536         (message-bogus-addresses): Rename from message-bogus-address-regexp.
14537         Improve custom options.
14538         (message-bogus-recipient-p): Adjust accordingly.
14539
14540 2008-05-27  Chong Yidong  <cyd@stupidchicken.com>
14541
14542         * parse-time.el (parse-time-months, parse-time-weekdays): Add
14543         long-form month and day names.
14544
14545 2008-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
14546
14547         * dgnushack.el: Autoload debug, eudc-expand-inline and
14548         pgg-snarf-keys-region for XEmacs.
14549
14550         * lpath.el: Fbind w3m-region, bind ps-print-color-p for XEmacs.
14551
14552         * nnmairix.el: Require edmacro when compiling with XEmacs.
14553
14554 2008-05-24  Reiner Steib  <Reiner.Steib@gmx.de>
14555
14556         * gnus-sum.el (gnus-summary-initial-limit): Use unless instead of if.
14557         (gnus-fetch-old-headers): Warn about setting it to t for Gmane groups.
14558
14559 2008-05-20  Teodor Zlatanov  <tzz@lifelogs.com>
14560
14561         * auth-source.el: Add more docs.
14562
14563         * netrc.el (netrc-machine): Always match if the port is not given.
14564
14565 2008-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14566
14567         * nnheader.el (nnheader-read-timeout): Change the default timeout from
14568         0.1 seconds to 0.01 seconds.  This will make nntp and pop3 article
14569         retrieval faster in some cases, but might make CPU usage larger.
14570         If this has any bad side effects, we might revert this change.
14571
14572         * pop3.el (pop3-movemail): Change the sit-for from 0.1 to 0.01, which
14573         seems to make mail retrieval much, much faster.
14574         (pop3-movemail): Use nnheader-accept-process-output instead of sleeping
14575         unconditionally.
14576
14577         * gnus-draft.el (gnus-group-send-queue):
14578         Bind message-send-mail-partially-limit to nil to avoid being prompted.
14579
14580 2008-05-16  Reiner Steib  <Reiner.Steib@gmx.de>
14581
14582         * mml.el (mml-attach-buffer): Prompt for `disposition'.
14583
14584         * message.el (message-bogus-address-regexp): Fix and improve custom
14585         type.
14586         (message-setup-hook): Add message-check-recipients as custom option.
14587
14588 2008-05-15  Reiner Steib  <Reiner.Steib@gmx.de>
14589
14590         * message.el (message-cite-function): Remove bogus autoload which crept
14591         in during merge from v5-10.
14592
14593 2008-05-14  Teodor Zlatanov  <tzz@lifelogs.com>
14594
14595         * nnimap.el (nnimap-open-connection): Fix login/password bug.
14596
14597         * nnrss.el (nnrss-normalize-date): Accept Unix-style epoch timestamps.
14598
14599         * auth-source.el: Preliminary Tramp docs.
14600         (auth-sources): Change the default auth-sources to use
14601         EPA .gpg files.
14602
14603 2008-05-09  Teodor Zlatanov  <tzz@lifelogs.com>
14604
14605         * nntp.el: Autoload `auth-source-user-or-password'.
14606         (nntp-send-authinfo): Use it.
14607
14608         * nnimap.el: Autoload `auth-source-user-or-password'.
14609         (nnimap-open-connection): Use it.
14610
14611         * auth-source.el: Add docs on using with url-auth.  Import gnus-util
14612         for the gnus-message function.
14613         (auth-source-user-or-password): Use it.
14614
14615 2008-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
14616
14617         * rfc2104.el (rfc2104-hexstring-to-bitstring): Rename it back from
14618         rfc2104-hexstring-to-byte-list.  Return a unibyte string.
14619         (rfc2104-hash): Use it.
14620
14621 2008-05-08  Juanma Barranquero  <lekktu@gmail.com>
14622
14623         * gnus-art.el (gnus-article-toggle-truncate-lines):
14624         Don't use `iff' in docstring.
14625
14626 2008-05-07  Teodor Zlatanov  <tzz@lifelogs.com>
14627
14628         * gnus-registry.el: Adjusted copyright dates and added a keyword.
14629
14630         * gnus-util.el (gnus-extract-address-component-name)
14631         (gnus-extract-address-component-email): Convenience functions around
14632         `gnus-extract-address-components'.
14633
14634         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
14635         Use `gnus-extract-address-component-email' to fix bug of comparing full
14636         sender name to `user-mail-address'.
14637
14638 2008-05-05  Teodor Zlatanov  <tzz@lifelogs.com>
14639
14640         * gnus-registry.el (gnus-registry-grep-in-list): Fix logic, use
14641         catch/throw to optimize.
14642         (gnus-registry-find-keywords): Just use member to find a keyword.
14643
14644 2008-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
14645
14646         * gnus-srvr.el (gnus-enter-server-buffer): Make sure the server-buffer
14647         is current before calling gnus-server-prepare.
14648         (gnus-server-setup-buffer, gnus-server-update-server)
14649         (gnus-server-read-server, gnus-browse-exit): Use with-current-buffer.
14650
14651 2008-05-04  Juri Linkov  <juri@jurta.org>
14652
14653         * mailcap.el (mailcap-replace-in-string): New compatibility alias.
14654         (mailcap-file-default-commands): Use mailcap-replace-in-string
14655         instead of replace-regexp-in-string, and mailcap-delete-duplicates
14656         instead of delete-dups.  Use [ \t\n]* for whitespace in regexp.
14657
14658 2008-05-03  Reiner Steib  <reiner.steib@gmx.de>
14659
14660         * gnus-sum.el (gnus-propagate-marks): Fix custom version.
14661
14662 2008-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
14663
14664         * gnus.el: Bump version to 0.11.
14665
14666 2008-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
14667
14668         * gnus.el: No Gnus v0.10 is released.
14669
14670 2008-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14671
14672         * gnus-sum.el (gnus-summary-save-parts): Inhibit even more treatment
14673         hooks.
14674         (gnus-update-read-articles): Speed up non-marks-using users.
14675         (gnus-use-marks): Define gnus-use-marks.
14676         (gnus-propagate-marks): Rename variable to something more sensible.
14677
14678 2008-05-02  Juanma Barranquero  <lekktu@gmail.com>
14679
14680         * gmm-utils.el (gmm, gmm-verbose, gmm-lazy, gmm-customize-mode)
14681         (gmm-image-load-path-for-library): Fix typos in docstrings.
14682         (gmm-message): Reflow docstring.
14683
14684 2008-04-28  Teodor Zlatanov  <tzz@lifelogs.com>
14685
14686         * mail-source.el (mail-source-set-1, mail-source-bind):
14687         Move auth-source code out of the macro to clean it up and fix bugs.
14688
14689 2008-04-26  Teodor Zlatanov  <tzz@lifelogs.com>
14690
14691         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Don't split
14692         by sender if it's equal to user-mail-address, it's likely to be
14693         useless.
14694
14695         * mail-source.el (mail-source-bind): Don't use user or password if they
14696         are not bound.  Unintern them if they are nil.  Don't use server unless
14697         it's bound, and default it to empty string otherwise.
14698
14699 2008-04-25  Teodor Zlatanov  <tzz@lifelogs.com>
14700
14701         * mail-source.el: Load auth-source.el.
14702         (mail-source-bind): Add comments.  Call auth-source-user-or-password to
14703         get user name or password, if auth-sources is set up.
14704
14705         * gnus-registry.el (gnus-registry-split-strategy): New variable for
14706         strategy of splitting with parent.
14707         (gnus-registry-split-fancy-with-parent)
14708         (gnus-registry-post-process-groups): Use it and fix prior
14709         bug (returning a list as the split result).
14710
14711         * auth-source.el (auth-sources): Remove server parameter.
14712         (auth-source-pick, auth-source-user-or-password)
14713         (auth-source-user-or-password-imap)
14714         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
14715         (auth-source-user-or-password-sftp)
14716         (auth-source-user-or-password-smtp): Remove server parameter.
14717
14718 2008-04-25  Juanma Barranquero  <lekktu@gmail.com>
14719
14720         * smime.el (smime-sign-region, smime-encrypt-region)
14721         (smime-decrypt-region):
14722         Remove redundant calls to `generate-new-buffer-name'.
14723
14724 2008-04-24  Luca Capello  <luca@pca.it>  (tiny change)
14725
14726         * mm-encode.el (mm-safer-encoding): Add optional argument `type'.
14727         Don't use QP for message/rfc822.
14728         (mm-content-transfer-encoding): Pass `type' to mm-safer-encoding.
14729
14730 2008-04-24  Stefan Monnier  <monnier@iro.umontreal.ca>
14731
14732         * sieve-manage.el (sieve-string-bytes): Remove.
14733         (sieve-manage-putscript): Use length instead: `string-bytes' gives the
14734         correct byte-length only if the process's coding-system is the same as
14735         the one used internally by Emacs to represent strings.
14736
14737 2008-04-22  Juri Linkov  <juri@jurta.org>
14738
14739         * mailcap.el (mailcap-file-default-commands): New function.
14740
14741 2008-04-13  Reiner Steib  <Reiner.Steib@gmx.de>
14742
14743         * message.el (message-signature-separator, message-cite-function):
14744         Change custom version.
14745
14746 2008-04-13  Naohiro Aota  <nao.aota@gmail.com>  (tiny change)
14747
14748         * tls.el (tls-program): Add -ign_eof argument to call the openssl
14749         commands.
14750         (tls-checktrust): Ditto.
14751
14752 2008-04-13  Reiner Steib  <Reiner.Steib@gmx.de>
14753
14754         * mm-decode.el (mm-display-external): Make temp file read-only.
14755
14756 2008-04-12  Reiner Steib  <Reiner.Steib@gmx.de>
14757
14758         * gnus-diary.el (gnus-article-edit-mode-map, message-mode-map): Remove
14759         binding for `gnus-diary-version'.  Bind `gnus-diary-check-message' to
14760         `C-c C-f d'.
14761
14762 2008-04-12  Adrian Aichner  <adrian@xemacs.org>
14763
14764         * gnus-sum.el (gnus-summary-goto-subject): Typo fix.
14765
14766 2008-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
14767
14768         * gnus.el: Bump version to 0.9.
14769
14770 2008-04-10  Reiner Steib  <Reiner.Steib@gmx.de>
14771
14772         * gnus.el: No Gnus v0.8 is released.
14773
14774 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
14775
14776         * mail-source.el (mail-source-value):
14777         Prefer fboundp to functionp so it works with macros as well.
14778
14779 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
14780
14781         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
14782         Fix last change in case the element is not even a symbol.
14783
14784 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
14785
14786         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
14787         Prefer fboundp to functionp so it works with macros as well.
14788
14789 2008-04-09  Teodor Zlatanov  <tzz@lifelogs.com>
14790
14791         * auth-source.el: Add docs.
14792         (auth-sources): Modify format to support server.
14793         (auth-source-pick, auth-source-user-or-password)
14794         (auth-source-user-or-password-imap)
14795         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
14796         (auth-source-user-or-password-sftp)
14797         (auth-source-user-or-password-smtp): Add server parameter.
14798
14799 2008-04-08  Teodor Zlatanov  <tzz@lifelogs.com>
14800
14801         * gnus-registry.el: Initialize the registry when gnus-registry-install
14802         is t.
14803
14804 2008-04-08  Katsumi Yamaoka  <yamaoka@jpl.org>
14805
14806         * compface.el (uncompface): Make buffer unibyte.
14807
14808 2008-04-07  Stefan Monnier  <monnier@iro.umontreal.ca>
14809
14810         * mail-source.el (mail-source-value):
14811         Prefer fboundp to functionp so it works with macros as well.
14812
14813 2008-04-05  Glenn Morris  <rgm@gnu.org>
14814
14815         * gnus-ems.el (mm-disable-multibyte): Autoload it.
14816
14817 2008-04-05  Stefan Monnier  <monnier@iro.umontreal.ca>
14818
14819         * mm-util.el (mm-with-unibyte-buffer, mm-with-multibyte-buffer):
14820         Prefer mm-(en|dis)able-multibyte to default-enable-multibyte-characters.
14821
14822         * nnheader.el (nnheader-init-server-buffer): Change buffer's
14823         multibyteness after rather than before erasing it.
14824
14825         * gnus-art.el (gnus-mime-replace-part): Remove unnecessary use of
14826         mm-with-multibyte.
14827         (gnus-request-article-this-buffer): Make sure the proper decoding is
14828         used if gnus-original-article-buffer happens to be unibyte.
14829
14830         * gnus-ems.el (gnus-x-splash): Prefer mm-disable-multibyte to
14831         default-enable-multibyte-characters.
14832
14833         * gnus-fun.el (gnus-display-x-face-in-from): Remove unnecessary use of
14834         default-enable-multibyte-characters.
14835
14836         * mm-decode.el (mm-inline-media-tests): Add entry for x-diff.
14837
14838         * nnweb.el (nnweb-init): Avoid nn-with-unibyte.
14839
14840 2008-04-03  Stefan Monnier  <monnier@iro.umontreal.ca>
14841
14842         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
14843         Fix last change in case the element is not even a symbol.
14844
14845 2008-04-02  Simon Josefsson  <simon@josefsson.org>
14846
14847         * imap.el (imap-enable-exchange-bug-workaround): New variable.
14848         (imap-message-copyuid-1): Use it.
14849         (imap-message-appenduid-1): Likewise.  Based on patch by Nathan
14850         J. Williams in
14851         <http://permalink.gmane.org/gmane.emacs.gnus.general/65855>.
14852
14853         * nnimap.el (nnimap-enable-minmax-bug-workaround): Remove, replaced by
14854         imap-enable-exchange-bug-workaround.
14855         (nnimap-find-minmax-uid): Use imap-enable-exchange-bug-workaround.
14856
14857 2008-04-01  Simon Josefsson  <simon@josefsson.org>
14858
14859         * nnimap.el (nnimap-find-minmax-uid): Revert last fix, the "fix" turns
14860         a 100 byte status-checks into a 2-3MB transfer for each group.
14861         (nnimap-enable-minmax-bug-workaround): New variable to toggle whether
14862         to enable bug workaround or not.
14863         (nnimap-find-minmax-uid): Only enable workaround conditionally.
14864
14865 2008-03-31  Glenn Morris  <rgm@gnu.org>
14866
14867         * message.el (mml2015-use): Declare for compiler.
14868         (message-info): Require mml2015 when appropriate.
14869
14870 2008-03-31  Katsumi Yamaoka  <yamaoka@jpl.org>
14871
14872         * Makefile.in (EMACS_COMP): Quote directory name that might contain
14873         whitespace.
14874
14875 2008-03-30  Stefan Monnier  <monnier@iro.umontreal.ca>
14876
14877         * nntp.el (nntp-netcat-command): Rename from nntp-via-netcat-command.
14878         (nntp-netcat-switches): Rename from nntp-via-netcat-switches.
14879         (nntp-open-telnet, nntp-open-rlogin): Use with-current-buffer.
14880         (nntp-service-to-port): New function.
14881         (nntp-open-via-rlogin-and-netcat, nntp-open-via-telnet-and-telnet)
14882         (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet): Use it.
14883         (nntp-open-netcat-stream): New function.
14884         (nntp-open-via-rlogin-and-netcat): Don't use a pty.
14885
14886 2008-03-29  Sven Joachim  <svenjoac@gmx.de>
14887
14888         * gnus-sum.el (gnus-summary-make-menu-bar): Add missing dots.
14889
14890 2008-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
14891
14892         * message.el (message-make-in-reply-to): Use mm-with-multibyte-buffer.
14893
14894 2008-03-28  Magnus Henoch  <mange@freemail.hu>
14895
14896         * dns.el (dns-write): Use set-buffer-multibyte.
14897
14898 2008-03-28  Michael Harnois  <mdharnois@gmail.com>  (tiny change)
14899
14900         * nnimap.el (nnimap-find-minmax-uid): Fix Exchange 2007 IMAP problem.
14901
14902 2008-03-24  Reiner Steib  <Reiner.Steib@gmx.de>
14903
14904         * message.el (message-signature-separator): Change default.
14905         Improve custom type.
14906         (message-cite-function): Change default to
14907         message-cite-original-without-signature.
14908
14909         * gnus-sum.el (gnus-summary-make-menu-bar): Add message-cite-function
14910         toggle.
14911
14912         * message.el (message-check-news-body-syntax): Fix signature check.
14913         (message-setup-1): Mark buffer as unmodified _after_ running
14914         message-setup-hook and handling message-alternative-emails.
14915         (message-shorten-references): Be more strict when building list of
14916         valid references to comply with GNKSA.
14917
14918         * gnus-group.el (gnus-read-ephemeral-bug-group)
14919         (gnus-read-ephemeral-debian-bug-group)
14920         (gnus-read-ephemeral-emacs-bug-group): Use the correct variable.
14921
14922         * message.el (message-info): Don't use booleanp which isn't supported
14923         in Emacs 21 and XEmacs.
14924
14925 2008-03-22  Reiner Steib  <Reiner.Steib@gmx.de>
14926
14927         * gnus-group.el (gnus-gmane-group-download-format): Rename from
14928         gnus-group-gmane-group-download-format.
14929         (gnus-group-read-ephemeral-gmane-group): Rename from
14930         gnus-group-read-ephemeral-gmane-group.
14931         (gnus-read-ephemeral-gmane-group-url): Rename from
14932         gnus-group-read-ephemeral-gmane-group-url.
14933         (gnus-bug-group-download-format-alist): New variable.
14934         (gnus-read-ephemeral-bug-group, gnus-read-ephemeral-debian-bug-group)
14935         (gnus-read-ephemeral-emacs-bug-group): New commands.
14936
14937 2008-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
14938
14939         * gnus-art.el (gnus-article-browse-html-article): Fix documentation.
14940         (gnus-visible-headers): Improve custom type.
14941
14942 2008-03-20  Reiner Steib  <Reiner.Steib@gmx.de>
14943
14944         * mml.el (mml-menu): Add workarounds for XEmacs.
14945
14946         * gnus-art.el (gnus-article-browse-html-article): Inhibit display of
14947         X-Boundary header.
14948
14949         * message.el (message-simplify-recipients): Fix previous commit.
14950
14951 2008-03-20  Stefan Monnier  <monnier@iro.umontreal.ca>
14952
14953         * mm-util.el (mm-set-buffer-multibyte): New function.
14954         * mm-decode.el (mm-copy-to-buffer): Use it.
14955
14956         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
14957         Prefer fboundp to functionp so it works with macros as well.
14958
14959 2008-03-19  Glenn Morris  <rgm@gnu.org>
14960
14961         * tls.el (open-tls-stream): Restore use of `tls-end-of-info'.
14962         Accidentally removed in the sync process with Emacs.
14963
14964 2008-03-19  Reiner Steib  <Reiner.Steib@gmx.de>
14965
14966         * message.el (message-alter-recipients-discard-bogus-full-name):
14967         New function.
14968         (message-alter-recipients-function): New variable.
14969         (message-get-reply-headers): Use it.
14970         (message-replace-header): New helper function.
14971         (message-recipients-without-full-name): New variable.
14972         (message-simplify-recipients): New command.
14973
14974         * mml.el (mml-menu): Add toggle for gnus-gcc-externalize-attachments.
14975
14976         * message.el (message-info): Handle EasyPG manual.
14977
14978         * mml.el (mml-menu): Add entry for EasyPG.
14979
14980 2008-03-18  Nils Ackermann  <nils@ackermath.info>  (tiny change)
14981
14982         * nnmh.el (nnmh-request-expire-articles): Prefer expiry-target group
14983         parameter.
14984
14985         * message.el (message-disassociate-draft): Specify drafts group name
14986         fully.
14987
14988 2008-03-17  Teodor Zlatanov  <tzz@lifelogs.com>
14989
14990         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
14991         Eliminate unnecessary duplicates from the match list.
14992
14993 2008-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
14994
14995         * dgnushack.el: Autoload Info-index and Info-index-next for XEmacs.
14996
14997         * lpath.el: Fbind Info-index and Info-index-next for Emacs 21, 22.
14998
14999         * gnus-art.el (gnus-button-handle-info-keystrokes): Don't use optional
15000         args of `how-many' of which the XEmacs version doesn't take; declare
15001         Info-index-next as function.
15002
15003 2008-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
15004
15005         * gnus-score.el (gnus-score-headers): Fix handling of
15006         gnus-inhibit-slow-scoring.
15007
15008         * gnus-art.el (gnus-article-browse-html-article): Fix type in doc
15009         string.
15010         (gnus-button-url-regexp): Improve handling of parenthesis.
15011         (gnus-button-alist): Extend gnus-button-handle-info-keystrokes entry.
15012         (gnus-button-handle-info-keystrokes): Handle index entries.
15013
15014 2008-03-15  Glenn Morris  <rgm@gnu.org>
15015
15016         * parse-time.el (parse-time-string): Simplify.
15017
15018 2008-03-14  Katsumi Yamaoka  <yamaoka@jpl.org>
15019
15020         * mail-source.el (mail-source-delete-old-incoming) Fix regexp to find
15021         Incoming* files.
15022
15023 2008-03-13  Teodor Zlatanov  <tzz@lifelogs.com>
15024
15025         * auth-source.el (auth-sources): Rename from auth-source-choices.
15026         (auth-source-pick): Use it.
15027
15028 2008-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
15029
15030         * binhex.el (binhex-decode-region-internal):
15031         * uudecode.el (uudecode-decode-region-internal):
15032         * dns.el (dns-read-string-name, dns-read, dns-read-type, query-dns):
15033         * sha1.el (sha1-string-external): Use set-buffer-multibyte rather than
15034         setting default-enable-multibyte-characters.
15035
15036 2008-03-12  Teodor Zlatanov  <tzz@lifelogs.com>
15037
15038         * auth-source.el (auth-source-protocols)
15039         (auth-source-protocols-customize, auth-source-choices): Add and
15040         modified variable customizations and defaults.
15041         (auth-source-pick, auth-source-user-or-password)
15042         (auth-source-protocol-defaults, auth-source-user-or-password-imap)
15043         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
15044         (auth-source-user-or-password-sftp)
15045         (auth-source-user-or-password-smtp): Use new variables and provide an
15046         interface to netrc.el.
15047
15048 2008-03-12  Katsumi Yamaoka  <yamaoka@jpl.org>
15049
15050         * nntp.el (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet)
15051         (nntp-open-via-rlogin-and-netcat, nntp-open-via-telnet-and-telnet):
15052         Make sure the nntp port to specify is a string.
15053
15054 2008-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
15055
15056         * nntp.el: Use with-current-buffer.
15057         (nntp-send-buffer): Just set the buffer to unibyte rather than use the
15058         dubious mm-with-unibyte-current-buffer.
15059         (nntp-with-open-group-function): New function extracted from
15060         nntp-with-open-group macro.
15061         (nntp-with-open-group): Use the function, so it's easier to debug.
15062         Add indentation and debugging info.
15063         (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet):
15064         Recommend the use of the netcat alternatives.
15065
15066         * rfc2047.el (rfc2047-decode-string): Don't use `m'.
15067         Avoid mm-string-as-multibyte as well.
15068
15069         * nnweb.el (nnweb-insert-html):
15070         Remove use of nnheader-string-as-multibyte.
15071
15072         * nnheader.el (nnheader-init-server-buffer): Use with-current-buffer.
15073         (nnheader-string-as-multibyte): Remove.
15074
15075         * mm-view.el: Use inhibit-read-only.
15076         (mm-inline-text-html-render-with-w3, mm-inline-message): Use dolist.
15077         (mm-pkcs7-signed-magic, mm-pkcs7-enveloped-magic): Use just string
15078         or unibyte-string.
15079
15080         * mm-uu.el (mm-uu-copy-to-buffer): Preserve (uni/multi)byteness.
15081         (mm-uu-yenc-extract): Use with-current-buffer.
15082
15083         * gnus-soup.el (gnus-soup-send-packet): Don't use
15084         mm-with-unibyte-current-buffer since the buffer is unibyte anyway.
15085
15086         * nnmh.el: Use with-current-buffer.
15087         (nnmh-request-list-1): Use mm-string-to-multibyte rather than
15088         mm-string-as-multibyte on the output of mm-encode-coding-string.
15089
15090         * nnimap.el (nnimap-retrieve-headers-progress): Use a unibyte buffer.
15091         (nnimap-request-move-article): Use with-current-buffer.
15092
15093         * mm-decode.el (mm-with-part): Set the buffer to unibyte before
15094         inserting the handle-buffer's text, so the implicit multibyte->unibyte
15095         conversion uses string-make-unibyte rather than string-as-unibyte.
15096
15097         * gnus-msg.el: Use with-current-buffer.
15098
15099         * message.el (message-ignored-resent-headers): Add "Delivered-To".
15100
15101 2008-03-10  Daiki Ueno  <ueno@unixuser.org>
15102
15103         * mml2015.el (mml2015-epg-passphrase-callback): Type cast KEY-ID to a
15104         string for caching if it is 'PIN.
15105
15106 2008-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
15107
15108         * lpath.el: Consider the case without Emacs/W3.
15109
15110 2008-03-08  Glenn Morris  <rgm@gnu.org>
15111
15112         * time-date.el (date-to-time, time-subtract, time-add)
15113         (safe-date-to-time): Doc fixes.
15114
15115 2008-03-08  Reiner Steib  <Reiner.Steib@gmx.de>
15116
15117         * mail-source.el (mail-source-delete-old-incoming-confirm):
15118         Change default to nil.
15119         (mail-source-delete-old-incoming): Make confirmation prompt more clear.
15120
15121 2008-03-07  Katsumi Yamaoka  <yamaoka@jpl.org>
15122
15123         * lpath.el: Rearrange.
15124
15125         * gnus-art.el (gnus-narrow-to-page): Position point properly.
15126         (gnus-article-goto-prev-page): Work for articles having ^L's.
15127
15128         * gnus-sum.el (gnus-summary-end-of-article): Remove needless narrowing.
15129
15130         * mm-view.el (mm-w3m-standalone-supports-m17n-p): Fix typo.
15131
15132 2008-03-07  Karl Fogel  <kfogel@red-bean.com>
15133
15134         * gnus-bookmark.el: Adjust for renames in bookmark.el.
15135         (gnus-bookmark-make-record): Was `gnus-bookmark-make-cell'.
15136         (gnus-bookmark-jump): Adjust some variable names.
15137
15138 2008-03-06  Teodor Zlatanov  <tzz@lifelogs.com>
15139
15140         * auth-source.el: New package.
15141         (auth-source-choices): Add customization entry point variable.
15142
15143         * gnus-registry.el (gnus-registry-user-format-function-M): Fix concat
15144         bug.
15145
15146 2008-03-05  Teodor Zlatanov  <tzz@lifelogs.com>
15147
15148         * gnus-registry.el (gnus-registry-install): Allow 'ask as an option.
15149         (gnus-registry-initialize, gnus-registry-install-p): Use it.
15150         (gnus-registry-install-shortcuts): Rename from
15151         gnus-registry-install-shortcuts-and-menus.  Installs the shortcuts in
15152         the `gnus-registry-mark-map' keymap dynamically from
15153         `gnus-registry-marks'.  The generated functions update the summary line
15154         when a registry mark is added or deleted, and will call
15155         `gnus-registry-install-p' (see the comments in the code).
15156         (gnus-registry-user-format-function-M): Use concat intelligently.
15157
15158         * gnus-sum.el (gnus-summary-make-menu-bar): Add menu entries for all
15159         the registry mark functions.
15160
15161 2008-03-05  Glenn Morris  <rgm@gnu.org>
15162
15163         * gnus-art.el (gnus-article-mode-line-format-alist): Move to gnus-sum.
15164         * gnus-sum.el (gnus-article-mode-line-format-alist): Move here from
15165         gnus-art.
15166         (top-level): No need to load own source when compiling.
15167
15168 2008-03-04  Reiner Steib  <Reiner.Steib@gmx.de>
15169
15170         * gnus-sum.el (gnus-print-buffer): Honor ps-print-color-p.
15171         Suggested by <chris.anderton@zetnet.co.uk>.
15172
15173 2008-03-04  Glenn Morris  <rgm@gnu.org>
15174
15175         * gnus-sum.el (top-level): No need to require gnus when compiling,
15176         since unconditionally required near start of file.
15177         (gnus-summary-display-while-building): Move definition before use.
15178
15179 2008-03-04  Teodor Zlatanov  <tzz@lifelogs.com>
15180
15181         * gnus-registry.el (gnus-registry-user-format-function-M):
15182         Add formatting function.
15183
15184 2008-03-03  Teodor Zlatanov  <tzz@lifelogs.com>
15185
15186         * gnus-registry.el (gnus-registry-marks): Change format to be nicer
15187         with plists.
15188         (gnus-registry-do-marks, gnus-registry-install-shortcuts-and-menus):
15189         Use new format.
15190
15191 2008-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
15192
15193         * gnus-art.el (gnus-article-describe-bindings): Work for the version of
15194         `where-is-internal' that returns a range of key sequences.
15195
15196 2008-03-03  Stefan Monnier  <monnier@iro.umontreal.ca>
15197
15198         * mm-bodies.el (mm-decode-content-transfer-encoding): Simplify.
15199
15200         * gnus-sum.el: Use inhibit-read-only and with-current-buffer.
15201         (gnus-summary-jump-to-group): Consider windows on other displayed
15202         frames as well.  Similar changes might be needed elsewhere, but that's
15203         the one I've bumped into during my use.
15204
15205         * nndoc.el (nndoc-oe-dbx-type-p):
15206         * gnus-msg.el (gnus-debug):
15207         * gnus-group.el (gnus-update-group-mark-positions):
15208         Use mm-string-to-multibyte.
15209
15210 2008-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
15211
15212         * mml2015.el (mml2015-extract-cleartext-signature): Explain that it
15213         doesn't handle NotDashEscaped.
15214
15215         * mml.el (mml-menu): Improve help entries.  Move Sign/Encrypt Part.
15216         (mml-dnd-attach-options): Fix typo in custom choice.
15217
15218         * gnus-group.el (gnus-group-read-ephemeral-gmane-group):
15219         Change nndoc-article-type to mbox.
15220         (gnus-group-read-ephemeral-gmane-group-url): Support permalink.
15221
15222         * mm-decode.el (mm-text-html-renderer): Prefer w3m over w3.  Fall back
15223         to nil, instead of html2text.
15224
15225         * imap.el (imap-debug): Add `imap-ping-server'.
15226
15227         * gnus-bookmark.el: Add FIXMEs.
15228
15229         * message.el (message-form-letter-separator)
15230         (message-send-form-letter-delay): New variables.
15231         (message-send-form-letter): Use them.  New command to send form
15232         letters.  Requested by Uwe Siart.
15233         (message-send-mail-function): Doc fix.  Add "Other" custom option.
15234
15235 2008-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
15236
15237         * Update copyright years.
15238
15239 2008-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
15240
15241         Sync from EMACS_22_BASE.
15242
15243         * parse-time.el: Rename elt->parse-time-elt and val->parse-time-val.
15244
15245 2008-02-29  Andreas Seltenreich  <andreas@gate450.dyndns.org>
15246
15247         * nnweb.el (nnweb-google-parse-1): Fix date parsing on articles with
15248         empty author.
15249
15250 2008-02-29  Teodor Zlatanov  <tzz@lifelogs.com>
15251
15252         * gnus-registry.el (gnus-registry-marks): Add variable for
15253         customization of marks and their appearance.
15254         (gnus-registry-read-mark): Use it.
15255         (gnus-registry-do-marks): Add utility function to loop through
15256         `gnus-registry-marks'.
15257         (gnus-registry-install-shortcuts-and-menus): Add function to install
15258         shortcuts and menus.
15259         (gnus-registry-initialize): Use it.
15260         (gnus-registry-default-mark): Clarify documentation.
15261
15262 2008-02-29  Glenn Morris  <rgm@gnu.org>
15263
15264         * gnus-art.el, gnus-bookmark.el, gnus-dired.el, gnus-draft.el:
15265         * gnus-group.el, gnus-msg.el, gnus-score.el, gnus-sum.el, gnus-util.el:
15266         * gnus.el, mail-source.el, message.el, mm-decode.el, mm-uu.el, mml.el:
15267         * nnmail.el, pop3.el, smiley.el, smime.el, spam-report.el:
15268         Change defcustom :version from 23.0 to 23.1.
15269
15270 2008-02-28  Teodor Zlatanov  <tzz@lifelogs.com>
15271
15272         * gnus-registry.el (gnus-registry-follow-group-p)
15273         (gnus-registry-post-process-groups): Add functions to aid registry
15274         splitting and improve logging.  Clarify behavior in function
15275         documentation.
15276         (gnus-registry-split-fancy-with-parent): Use them.
15277
15278 2008-02-28  Stefan Monnier  <monnier@iro.umontreal.ca>
15279
15280         * gnus-art.el: Use with-current-buffer.
15281
15282 2008-02-27  David Engster  <dengste@eml.cc>
15283
15284         * nnmairix.el (nnmairix-request-group-with-article-number-correction):
15285         Express real group name in the response.
15286
15287 2008-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
15288
15289         * nnmairix.el (nnmairix-group-regexp, nnmairix-valid-backends)
15290         (nnmairix-last-server, nnmairix-current-server): Defvar them.
15291         (nnmairix-goto-original-article): Defvar gnus-registry-install and
15292         autoload gnus-registry-fetch-group when compiling.
15293         (nnmairix-request-group-with-article-number-correction):
15294         Remove unreferenced argument passed to nnmairix-call-backend.
15295
15296 2008-02-27  Reiner Steib  <Reiner.Steib@gmx.de>
15297
15298         * mm-uu.el (mm-uu-type-alist): Fix message-marks non-hide arguments.
15299         (mm-uu-extract): Improve face for low color ttys.
15300         Reported by Sascha Wilde.
15301
15302 2008-02-27  Glenn Morris  <rgm@gnu.org>
15303
15304         * nnmairix.el: Change defcustom :version from 23.0 to 23.1.
15305         (nnmairix-group-regexp, nnmairix-valid-backends): Convert from free
15306         variables to defconsts.  Convert comments to doc-strings.
15307         (nnmairix-last-server, nnmairix-current-server): Convert from free
15308         variables to defvars.  Convert comments to doc-strings.
15309         (gnus-registry-fetch-group): Autoload.
15310         (nnmairix-replace-group-and-numbers): Use mapc rather than mapcar.
15311         (nnmairix-widget-get-values, nnmairix-widget-make-query-from-widgets)
15312         (nnmairix-widget-build-editable-fields): Use car cddr rather than
15313         caddr.
15314         (nnmairix-request-group): Bind nnmairix-fast and nnmairix-group around
15315         nnmairix-request-group-with-article-number-correction call.
15316         (nnmairix-fast, nnmairix-group): New, less general names, for free
15317         variables passed from nnmairix-request-group to
15318         nnmairix-request-group-with-article-number-correction.  Declare.
15319         (nnmairix-request-group-with-article-number-correction):
15320         Use nnmairix-fast, nnmairix-group rather than fast, group.
15321
15322 2008-02-26  David Engster  <dengste@eml.cc>
15323
15324         * nnmairix.el: New file.  Mairix back end for Gnus.  Initial import of
15325         version 0.5.
15326
15327 2008-02-26  Teodor Zlatanov  <tzz@lifelogs.com>
15328
15329         * gnus-registry.el (gnus-registry-register-message-ids): Use `id'
15330         instead of making an extra function call.  Don't add the current group
15331         to articles only when they have the group.  Use
15332         `gnus-registry-fetch-groups' instead of `gnus-registry-fetch-group'.
15333         Reported by David <de_bb@arcor.de>.
15334
15335 2008-02-24  Miles Bader  <miles@gnu.org>
15336
15337         * mm-util.el (mm-hack-charsets, mm-iso-8859-15-compatible)
15338         (mm-iso-8859-x-to-15-table, mm-iso-8859-x-to-15-region)
15339         (mm-find-mime-charset-region):
15340         * mm-bodies.el (mm-encode-body):
15341         * mml.el (mml-parse-1): Revert removal of `mm-hack-charsets'.
15342
15343 2008-02-20  Katsumi Yamaoka  <yamaoka@jpl.org>
15344
15345         * lpath.el: Fbind pgg-display-output-buffer for systems in which EasyPG
15346         has been installed; bind pgg-parse-crc24 for only non-Mule XEmacs.
15347
15348 2008-02-16  Reiner Steib  <Reiner.Steib@gmx.de>
15349
15350         * mail-source.el (mail-source-delete-incoming): Change default.
15351         Supplement doc string.
15352
15353         * gnus-util.el (gnus-y-or-n-p, gnus-y-or-n-p): Update comments.
15354
15355 2008-02-14  Glenn Morris  <rgm@gnu.org>
15356
15357         * time-date.el (format-seconds): New function.
15358
15359 2008-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
15360
15361         * nnmail.el (nnmail-message-id-cache-file): Derive from
15362         `gnus-home-directory'.
15363
15364 2008-02-11  Reiner Steib  <Reiner.Steib@gmx.de>
15365
15366         * gnus-topic.el (gnus-topic-select-group, gnus-topic-read-group):
15367         Document negative prefix.
15368
15369         * gnus-group.el (gnus-group-read-group): Document negative prefix.
15370
15371 2008-02-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15372
15373         * message.el (message-unsent-separator): Add the Exim bounce
15374         separator.
15375
15376 2008-02-10  Daiki Ueno  <ueno@unixuser.org>
15377
15378         * mml2015.el (mml2015-epg-sign): Remove skipped signers from the signer
15379         list.
15380         (mml2015-epg-encrypt): Remove skipped recipients/signers from the
15381         recipient/signer list.
15382
15383 2008-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
15384
15385         * Makefile.in (datarootdir): Define.
15386         (EMACS_COMP, install-el, install-elc, install-el-elc): Quote directory
15387         name that might contain whitespace.
15388
15389 2008-02-10  Reiner Steib  <Reiner.Steib@gmx.de>
15390
15391         * mm-util.el (mm-codepage-setup): If cp-supported-codepages isn't
15392         fbound (Emacs 23 unicode), signal an error.
15393
15394 2008-02-08  Glenn Morris  <rgm@gnu.org>
15395
15396         * gnus-art.el (pgg-display-output-buffer): Declare as function.
15397
15398 2008-02-07  Tassilo Horn  <tassilo@member.fsf.org>
15399
15400         * nnimap.el (nnimap-open-connection): Add "143" and "993" as default
15401         ports to the calls to `netrc-machine-user-or-password' in addition to
15402         "imap" and "imaps".
15403
15404 2008-02-01  Zhang Wei  <id.brep@gmail.com>
15405
15406         * rfc2047.el (rfc2047-charset-encoding-alist): Add gbk and GB18030.
15407
15408         * mm-util.el (mm-mime-mule-charset-alist): Add gbk and GB18030.
15409
15410 2008-02-01  Kenichi Handa  <handa@m17n.org>
15411
15412         * rfc2104.el (rfc2104-hexstring-to-byte-list): Rename from
15413         rfc2104-hexstring-to-bitstring and changed to return a byte list.
15414         (rfc2104-hash): Convert the result of concat to unibyte string.
15415
15416 2008-02-01  Dave Love  <fx@gnu.org>
15417
15418         * gnus-start.el (gnus-read-newsrc-el-file): Don't bind
15419         coding-system-for-read.
15420         (gnus-gnus-to-quick-newsrc-format): Insert coding cookie.
15421
15422 2008-02-03  Reiner Steib  <Reiner.Steib@gmx.de>
15423
15424         * gnus.el (gnus-group-startup-message): Add `find-image' call before
15425         image-load-path is let-bound.  Reported by Harald Hanche-Olsen
15426         <hanche@math.ntnu.no>.
15427
15428 2008-02-01  Katsumi Yamaoka  <yamaoka@jpl.org>
15429
15430         * gnus-art.el (gnus-article-describe-bindings): Work for draft group.
15431
15432         * gnus-xmas.el (gnus-xmas-article-describe-bindings): Ditto.
15433
15434 2008-01-28  Dan Nicolaescu  <dann@ics.uci.edu>
15435
15436         * sieve.el (sieve-make-overlay, sieve-overlay-put, sieve-overlays-at):
15437         * message.el (message-beginning-of-line): Use featurep instead of bound
15438         tests in order to resolve conditionals at compile time.
15439
15440 2008-01-24  Michael Sperber  <sperber@deinprogramm.de>
15441
15442         * mail-source.el (mail-sources): Add `group' choice.
15443
15444         * nnmail.el (nnmail-get-new-mail-1): Abstract this out to add another
15445         parameter `in-group' to control into which group the articles go.
15446         Add treatment of `group' mail-source.
15447
15448 2008-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
15449
15450         * gnus-art.el (gnus-insert-mime-button): Don't decode description.
15451
15452         * mm-decode.el (mm-dissect-buffer): Decode description.
15453
15454         * mml.el (mml-to-mime): Encode message header first.
15455
15456 2008-01-18  Katsumi Yamaoka  <yamaoka@jpl.org>
15457
15458         * gnus-art.el (gnus-article-describe-bindings): Make it possible to use
15459         xrefs, i.e. [back] and [forward] buttons, in *Help* buffer.
15460
15461         * lpath.el: Fbind help-buffer for Emacs 21 and XEmacs; bind
15462         help-xref-stack-item for Emacs 21, Emacs 22.1, and XEmacs.
15463
15464 2008-01-18  Teodor Zlatanov  <tzz@lifelogs.com>
15465
15466         * gnus-registry.el (gnus-registry-trim): Use append, not concat.
15467
15468 2008-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
15469
15470         * gnus-art.el (gnus-article-read-summary-keys): Work for some `A'
15471         prefix keys.
15472         (gnus-article-read-summary-send-keys): Use gnus-character-to-event.
15473         (gnus-article-describe-bindings): Simplify; move XEmacs stuff to
15474         gnus-xmas.el.
15475
15476         * gnus-xmas.el: Bind gnus-agent-summary-mode when compiling.
15477         (gnus-xmas-article-describe-bindings): New function.
15478         (gnus-xmas-redefine): Make gnus-article-describe-bindings alias to
15479         gnus-xmas-article-describe-bindings.
15480
15481         * lpath.el: Don't fbind character-to-event and map-keymap for Emacs 21.
15482
15483 2008-01-16  Teodor Zlatanov  <tzz@lifelogs.com>
15484
15485         * gnus-registry.el (gnus-registry-marks, gnus-registry-default-mark):
15486         Add new variables for article mark management.
15487         (gnus-registry-extra-entries-precious, gnus-registry-trim): Define a
15488         list of extra data entries which, when present, will indicate that the
15489         article ID should not be trimmed from the registry.
15490         (gnus-registry-mark-article, gnus-registry-article-marks): Remove these
15491         functions.
15492         (gnus-registry-read-mark): New function to read a mark name from the
15493         user.
15494         (gnus-registry-set-article-mark, gnus-registry-remove-article-mark)
15495         (gnus-registry-set-article-mark-internal): New functions to add and
15496         remove marks.
15497         (gnus-registry-get-article-marks): New function to show the marks for
15498         an article, or retrieve them for further use.
15499
15500 2008-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
15501
15502         * gnus-art.el (gnus-article-describe-bindings): Show all `S' prefix
15503         keys when no argument is given.
15504
15505 2008-01-14  Reiner Steib  <Reiner.Steib@gmx.de>
15506
15507         * imap.el (imap-ping-server): New variable.
15508         (imap-opened): On add extra ping if imap-ping-server is non-nil.
15509         (imap-ping-server): Minor doc string fixes.
15510
15511 2008-01-14  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
15512
15513         * imap.el (imap-ping-server): New function.
15514         (imap-opened): Call imap-ping-server.
15515
15516 2008-01-12  Reiner Steib  <Reiner.Steib@gmx.de>
15517
15518         * gnus-sum.el (gnus-article-sort-by-random)
15519         (gnus-thread-sort-by-random): Fix doc strings.
15520         Reported by jidanni@jidanni.org.
15521
15522 2008-01-11  Katsumi Yamaoka  <yamaoka@jpl.org>
15523
15524         * gnus-art.el (gnus-article-describe-bindings): New function.
15525         (gnus-article-read-summary-keys): Use it.
15526         (gnus-article-mode-map): Bind `C-h b' to it.
15527
15528 2008-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
15529
15530         * gnus-art.el (gnus-article-read-summary-keys): Work for `C-h' on
15531         XEmacs.
15532         (gnus-article-describe-key, gnus-article-describe-key-briefly):
15533         Protect against non-character events.
15534
15535         * lpath.el: Fbind map-keymap for Emacs 21.
15536
15537 2008-01-09  Reiner Steib  <Reiner.Steib@gmx.de>
15538
15539         * gnus-group.el (gnus-group-read-ephemeral-gmane-group-url):
15540         New command.
15541         (gnus-group-read-ephemeral-gmane-group): Use optional argument RANGE
15542         instead of END.  Change name of the temp file.
15543         (gnus-group-gmane-group-download-format): Add doc string.  Make it
15544         customizable.
15545
15546 2008-01-09  Katsumi Yamaoka  <yamaoka@jpl.org>
15547
15548         * gnus-art.el (gnus-article-send-map): New keymap for `S' prefix keys;
15549         bind `S W' to gnus-article-wide-reply-with-original; set default
15550         binding to gnus-article-read-summary-send-keys.
15551         (gnus-article-read-summary-keys): Fix the order of keys; display
15552         continuation keys correctly in the echo area; describe bindings
15553         correctly when keys end with `C-h'.
15554         (gnus-article-read-summary-send-keys): New function.
15555         (gnus-article-describe-key, gnus-article-describe-key-briefly):
15556         Work for gnus-article-read-summary-send-keys; display continuation keys
15557         correctly in the echo area.
15558         (gnus-article-reply-with-original): Ignore prefix argument.
15559         (gnus-article-wide-reply-with-original): New function.
15560
15561         * lpath.el: Fbind character-to-event and set-keymap-default-binding for
15562         Emacs 21.
15563
15564 2008-01-08  Katsumi Yamaoka  <yamaoka@jpl.org>
15565
15566         * gnus-bookmark.el (gnus-bookmark-mouse-available-p): Don't test for
15567         display-color-p.  Reported by Reiner Steib <Reiner.Steib@gmx.de>.
15568
15569 2008-01-06  Reiner Steib  <Reiner.Steib@gmx.de>
15570
15571         * gnus-group.el (gnus-group-gmane-group-download-format): New variable.
15572         (gnus-group-read-ephemeral-gmane-group): New command.
15573
15574 2008-01-06  Dan Nicolaescu  <dann@ics.uci.edu>
15575
15576         * gnus.el (gnus-use-long-file-name): Remove reference to xenix.
15577
15578 2007-12-28  Reiner Steib  <Reiner.Steib@gmx.de>
15579
15580         * message.el (message-send-mail-function): Increase custom version.
15581
15582         * mml-sec.el, sieve-manage.el, smime.el: Simplify loading of
15583         password-cache or password.  Suggested by Glenn Morris <rgm@gnu.org>.
15584
15585 2007-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
15586
15587         * imap.el (imap-authenticate): Use current-buffer instead of buffer,
15588         for the cases where imap-authenticate is called with a nil buffer
15589         parameter.
15590
15591 2007-12-19  Katsumi Yamaoka  <yamaoka@jpl.org>
15592
15593         * gnus-art.el (gnus-article-browse-html-parts): Work for two or more
15594         html parts correctly; support forwarded messages.
15595         (gnus-article-browse-html-article): Remove work buffers.
15596
15597         * netrc.el: Bind encrypt-file-alist for Emacs 21 and XEmacs when
15598         compiling.
15599         (netrc-bound-and-true-p): New macro.
15600         (netrc-parse): Use it instead of bound-and-true-p that is not available
15601         in XEmacs 21.4.
15602
15603 2007-12-19  Teodor Zlatanov  <tzz@lifelogs.com>
15604
15605         * gnus-registry.el (gnus-registry-mark-article)
15606         (gnus-registry-article-marks): Add functionality to mark articles
15607         through the Gnus registry.
15608
15609         * encrypt.el: Clarify documentation for the new pgg method.
15610         (encrypt-file-alist): Add PGG option.
15611         (encrypt-insert-file-contents, encrypt-write-file-contents): Use PGG
15612         functionality.  Abstract password key and messaging to external
15613         functions.
15614         (encrypt-password-key, encrypt-get-passphrase-if-needed)
15615         (encrypt-message-method-and-cipher): Add new convenience external
15616         functions.
15617         (encrypt-pgg-encode-buffer, encrypt-pgg-decode-buffer)
15618         (encrypt-pgg-process-buffer): Add PGG functionality glue.
15619
15620         * netrc.el: Autoload encrypt when encrypt-file-alist is set.
15621         (netrc-parse): Use encrypt-file-alist to determine if
15622         encrypt-find-model or encrypt-insert-file-contents should be used.
15623
15624         * encrypt.el: Clarify documentation.  Load password-cache or
15625         password, whichever one is found first, instead of autoloading.
15626
15627 2007-12-19  Glenn Morris  <rgm@gnu.org>
15628
15629         * mml.el (message-options-set, message-narrow-to-head)
15630         (message-in-body-p, message-mail-p, message-encode-message-body):
15631         Autoload.
15632         (message-remove-header, message-narrow-to-headers-or-head)
15633         (message-subscribed-p, message-make-mail-followup-to)
15634         (message-position-on-field, message-news-p)
15635         (message-options-set-recipient, message-generate-headers)
15636         (message-sort-headers): Declare as functions.
15637
15638 2007-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
15639
15640         * gnus-draft.el (gnus-draft-send-message): Mention process/prefix
15641         convention in doc string.
15642
15643 2007-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
15644
15645         * gnus-art.el (gnus-article-browse-html-parts): Add message header and
15646         title to html parts.
15647         (gnus-article-browse-html-article): Pass message header to it.
15648
15649         * mm-decode.el (mm-display-external): Use mm-add-meta-html-tag.
15650
15651 2007-12-16  Reiner Steib  <Reiner.Steib@gmx.de>
15652
15653         * mml-sec.el, sieve-manage.el, smime.el: Make loading of password-cache
15654         or password compatible with XEmacs.
15655
15656 2007-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
15657
15658         * gnus-art.el (article-verify-x-pgp-sig): Add reference to X-PGP-Sig
15659         format document.
15660         (gnus-mime-delete-part): Don't write description line if empty.
15661         (gnus-article-encrypt-body): Add confirmation for gnus-novice-user.
15662
15663 2007-12-14  Johan Bockgård  <bojohan@gnu.org>
15664
15665         * gnus-sum.el (gnus-summary-mark-unread-as-read)
15666         (gnus-summary-mark-read-and-unread-as-read)
15667         (gnus-summary-mark-current-read-and-unread-as-read)
15668         (gnus-summary-mark-unread-as-ticked): Doc fix.
15669         `gnus-mark-article-hook', not `gnus-summary-mark-article-hook'.
15670
15671 2007-12-14  Reiner Steib  <Reiner.Steib@gmx.de>
15672
15673         * gnus-sum.el (gnus-summary-prev-article): Fix doc string.
15674         Reported by Christoph Conrad <christoph.conrad@gmx.de>.
15675
15676 2007-12-14  Reiner Steib  <Reiner.Steib@gmx.de>
15677
15678         * gnus-util.el (gnus-y-or-n-p, gnus-yes-or-no-p): Alias to y-or-n-p and
15679         yes-or-no-p.
15680
15681 2007-12-11  Katsumi Yamaoka  <yamaoka@jpl.org>
15682
15683         * mm-decode.el (mm-add-meta-html-tag): New function.
15684         (mm-save-part-to-file, mm-pipe-part): Use it.
15685
15686         * gnus-art.el (gnus-article-browse-delete-temp-files):
15687         Use gnus-y-or-n-p instead of y-or-n-p.
15688         (gnus-article-browse-html-parts): Work with message/external-body; use
15689         mm-add-meta-html-tag.
15690
15691 2007-12-11  Glenn Morris  <rgm@gnu.org>
15692
15693         * gnus-cache.el: Require gnus-sum not just when compiling.
15694
15695         * gnus-fun.el (gnus-display-x-face-in-from): Require gnus-art.
15696
15697         * gnus-int.el (gnus-server-opened, gnus-status-message):
15698         Move definitions before use.
15699
15700         * mm-decode.el: Require gnus-util.
15701         (mm-remove-part): Only call delete-annotation on XEmacs.
15702
15703         * mm-uu.el (gnus-original-article-buffer): Define for compiler.
15704
15705         * nnmail.el: Require gnus-int.
15706
15707         * spam.el: Move `require's before `eval-when-compile's.
15708
15709         * gnus-ems.el (gnus-alive-p):
15710         * gnus-fun.el (message-goto-eoh):
15711         * gnus-util.el (gnus-group-name-decode):
15712         * mail-source.el (gnus-compress-sequence):
15713         * message.el (Info-goto-node, format-spec):
15714         * mm-bodies.el (message-options-get):
15715         * mm-decode.el (mm-view-pkcs7):
15716         * mm-util.el (gmm-write-region):
15717         * mml-smime.el (mml-compute-boundary)
15718         (gnus-completing-read-with-default):
15719         * mml.el (widget-button-press, gnus-make-hashtable):
15720         * mml1991.el (mm-decode-content-transfer-encoding)
15721         (mm-encode-content-transfer-encoding)
15722         (message-options-get, message-options-set):
15723         * mml2015.el (gnus-buffer-live-p, gnus-get-buffer-create):
15724         * nnfolder.el (gnus-request-group):
15725         * nnheader.el (ietf-drums-unfold-fws):
15726         * rfc1843.el (mail-header-parse-content-type, message-narrow-to-head):
15727         * smime.el (gnus-run-mode-hooks):
15728         * spam-stat.el (gnus-message): Autoload.
15729
15730         * gnus-cache.el, gnus-fun.el, gnus-group.el, gnus.el, mail-source.el:
15731         * mm-bodies.el, mm-decode.el, mm-extern.el, mm-util.el:
15732         * mml-smime.el, mml.el, mml1991.el, mml2015.el, nndb.el, nnfolder.el:
15733         * nnmail.el, nnmaildir.el, nnrss.el, rfc1843.el, spam.el:
15734         Add declare-function compatibility definition.
15735
15736         * gnus-cache.el (nnvirtual-find-group-art):
15737         * gnus-fun.el (article-narrow-to-head, gnus-article-goto-header)
15738         (gnus-add-image, gnus-add-wash-type):
15739         * gnus-group.el (nnkiboze-score-file):
15740         * gnus-sum.el (turn-on-gnus-mailing-list-mode)
15741         (gnus-cache-write-active, mm-uu-dissect, idna-to-unicode):
15742         * gnus-util.el (gnus-find-method-for-group, gnus-group-name-charset)
15743         (message-tokenize-header, gnus-get-buffer-create)
15744         (mm-enable-multibyte, gnus-put-text-property, gnus-overlay-put)
15745         (gnus-make-overlay, mm-disable-multibyte, gnus-add-text-properties):
15746         * gnus.el (gnus-group-decoded-name):
15747         * mail-source.el (imap-capability):
15748         * mm-bodies.el (message-options-set):
15749         * mm-decode.el (gnus-configure-windows):
15750         * mm-extern.el (message-goto-body):
15751         * mm-util.el (mm-delete-duplicates, mm-detect-coding-region):
15752         * mml-smime.el (epg-key-sub-key-list, epg-sub-key-capability)
15753         (epg-sub-key-validity, message-options-set):
15754         * mml.el (widget-event-point, gnus-configure-windows):
15755         * mml1991.el (mc-encrypt-generic, gpg-sign-encrypt, gpg-encrypt):
15756         * mml2015.el (epg-check-configuration, epg-configuration)
15757         (message-options-set):
15758         * nndb.el (nndb-request-article):
15759         * nnfolder.el (gnus-request-create-group):
15760         * nnmail.el (gnus-activate-group, gnus-group-mark-article-read):
15761         * nnmaildir.el (gnus-group-mark-article-read):
15762         * nnrss.el (w3-parse-buffer, gnus-group-make-rss-group):
15763         * rfc1843.el (message-fetch-field):
15764         * spam.el (gnus-extract-address-components):
15765         Declare as functions.
15766
15767 2007-12-10  Katsumi Yamaoka  <yamaoka@jpl.org>
15768
15769         * gnus-art.el (gnus-article-browse-html-parts): Decode CTE.
15770
15771         * pgg.el (pgg-run-at-time, pgg-cancel-timer): Use eval-and-compile.
15772
15773         * lpath.el: Fbind run-mode-hooks for Emacs 21;
15774         bind show-trailing-whitespace for XEmacs.
15775
15776 2007-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
15777
15778         * hashcash.el, imap.el, pgg.el, pgg-parse.el (declare-function): Add
15779         new no-op macro for backward compatibility.
15780
15781         * imap.el (imap-string-to-integer): New function.
15782
15783 2007-12-09  Glenn Morris  <rgm@gnu.org>
15784
15785         * gnus-uu.el (gnus-uu-yenc-article): Use insert-buffer-substring.
15786
15787         * gnus-art.el, gnus-spec.el, gnus-sum.el, gnus-util.el:
15788         * message.el, mm-view.el, sieve-manage.el, smime.el:
15789         Add declare-function compatibility definition.
15790
15791         * gnus-art.el (w3-region, w3m-region, Info-menu):
15792         * gnus-spec.el (gnus-summary-from-or-to-or-newsgroups):
15793         * gnus-sum.el (gnus-get-predicate):
15794         * gnus-util.el (mm-append-to-file, w32-focus-frame):
15795         * message.el (mail-abbrev-in-expansion-header-p):
15796         * mm-view.el (w3-do-setup, w3-region, w3-prepare-buffer)
15797         (w3m-detect-meta-charset, w3m-region):
15798         * sieve-manage.el (password-read, password-cache-add)
15799         (password-cache-remove):
15800         * smime.el (password-read-and-add): Declare as functions.
15801
15802 2007-12-08  David Kastrup  <dak@gnu.org>
15803
15804         * gnus-sum.el (gnus-summary-simplify-subject-query):
15805         * ecomplete.el (ecomplete-display-matches): Fix buggy call to
15806         `message'.
15807
15808 2007-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
15809
15810         * dgnushack.el (dgnushack-emacs-compile-defcustom-p): New function; use
15811         it to bind idna-program, installation-directory, defined-colors, and
15812         face-attribute for XEmacs of the version that compiles defcustom forms.
15813
15814 2007-12-07  Glenn Morris  <rgm@gnu.org>
15815
15816         * gnus-art.el (article-make-date-line): Revert previous change.
15817
15818 2007-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
15819
15820         * gnus-start.el (gnus-load): Rename local variable to avoid confusion.
15821
15822 2007-12-06  Christian Plate  <cplate@web.de>  (tiny change)
15823
15824         * nnmaildir.el (nnmaildir-request-update-info): Improve performance.
15825         Call gnus-add-to-range ranges only once with a prepared article-list.
15826
15827 2007-12-06  Paul Jarc  <prj@po.cwru.edu>
15828
15829         * nnmaildir.el (nnmaildir-request-list, nnmaildir-retrieve-groups)
15830         (nnmaildir-request-group, nnmaildir-retrieve-headers): Escape spaces in
15831         group names with backslashes.
15832         Reported by Tassilo Horn <tassilo@member.fsf.org>.
15833
15834 2007-12-06  Deepak Goel  <deego3@gmail.com>
15835
15836         * gnus-art.el (article-make-date-line):
15837         * gnus-start.el (gnus-load):
15838         * pop3.el (pop3-read-response): Fix buggy call to `error'.
15839
15840 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
15841
15842         * gnus-art.el (gnus-use-idna):
15843         * gnus-start.el (gnus-site-init-file):
15844         * message.el (message-use-idna):
15845         * mm-uu.el (mm-uu-hide-markers):
15846         * smiley.el (smiley-style): Revert changes that suppress warnings.
15847
15848 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
15849
15850         * gnus-art.el (gnus-article-browse-html-parts): Add meta html tag to
15851         specify charset to html source.
15852         Reported by Christoph Conrad <christoph.conrad@gmx.de>.
15853
15854 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
15855
15856         * gnus-art.el (gnus-use-idna): Don't directly refer to the value of
15857         idna-program in order to suppress byte compile warning issued by XEmacs
15858         that came to byte compile the default value section of defcustom forms
15859         recently.
15860
15861         * gnus-start.el (gnus-site-init-file): Don't directly refer to the
15862         value of installation-directory.
15863
15864         * message.el (message-use-idna): Don't directly refer to the value of
15865         idna-program.
15866
15867         * mm-uu.el (mm-uu-hide-markers): Don't directly call defined-colors.
15868
15869         * smiley.el (smiley-style): Don't directly call face-attribute.
15870
15871 2007-12-04  Reiner Steib  <Reiner.Steib@gmx.de>
15872
15873         * gnus-group.el (gnus-group-highlight-line): Add FIXME.
15874
15875         * gnus-dired.el: Reduce Gnus dependencies.
15876         (gnus-ems, gnus-msg, gnus-util, message, mm-decode, mml):
15877         Don't require.  Use autoloads instead.
15878         (mml-attach-file, mm-default-file-encoding, mailcap-extension-to-mime)
15879         (mailcap-mime-info, mm-mailcap-command, ps-print-preprint)
15880         (message-buffers, gnus-setup-message, gnus-print-buffer): Autoload.
15881         (gnus-dired-mode): Adjust doc string.
15882         (gnus-dired-mail-mode): New variable.
15883         (gnus-dired-mode-map): Avoid using `gnus-define-keys'.
15884         (gnus-dired-mode): Avoid using `gnus-run-hooks'.
15885         (gnus-dired-mail-buffers): New function.  Return mail or message
15886         composition buffers.
15887         (gnus-dired-attach): Use it.
15888         (gnus-dired-find-file-mailcap): Call `mailcap-mime-info' with
15889         NO-DECODE.
15890         (gnus-dired-print): Use `gnus-print-buffer' depending on
15891         `gnus-dired-mail-mode'.
15892
15893 2007-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
15894
15895         * rfc2047.el (rfc2047-encoded-word-regexp)
15896         (rfc2047-encoded-word-regexp-loose): Move forward; add comments
15897         explaining what regexp patterns are for.
15898
15899 2007-12-04  Glenn Morris  <rgm@gnu.org>
15900
15901         * password.el: Move to password-cache.el.
15902
15903         * mml1991.el (password-read, password-cache-add, password-cache-remove):
15904         * mml2015.el (password-read, password-cache-add, password-cache-remove):
15905         * mml-smime.el (password-read, password-cache-add)
15906         (password-cache-remove):
15907         No need to autoload, since mml-sec requires password.
15908
15909         * gnus.el (gnus-spam-resend-to, gnus-ham-resend-to):
15910         * message.el (gnus-extract-address-components):
15911         * mml-smime.el (gnus-extract-address-components): Define for compiler.
15912
15913         * mml-sec.el, sieve-manage.el, smime.el: Require password-cache or
15914         password.
15915
15916 2007-12-03  Reiner Steib  <Reiner.Steib@gmx.de>
15917
15918         * mailcap.el: Reduce dependencies.
15919         (mail-header-parse-content-type): Autoload.
15920         (mailcap-delete-duplicates): New alias.
15921         (mailcap-mime-info): Add optional argument NO-DECODE.
15922         (mailcap-mime-types): Use mailcap-delete-duplicates.
15923
15924         * message.el (message-ignored-supersedes-headers): Add "X-ID".
15925
15926 2007-12-03  Nathan J. Williams  <nathanw@MIT.EDU>  (tiny change)
15927
15928         * imap.el (imap-mailbox-status-asynch): Upcase STATUS items.
15929         (imap-parse-status): Upcase status-att for servers that sends them
15930         lower-case (e.g., MS Exchange 2007).
15931
15932 2007-12-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15933
15934         * gnus-sum.el (gnus-uu-extract-map): Add a command for the yenc
15935         function.
15936
15937         * gnus-uu.el (gnus-uu-decode-yenc): New command.
15938         (gnus-uu-yenc-article): New function.
15939
15940         * yenc.el (yenc-first-part-p, yenc-last-part-p): New functions.
15941
15942         * mm-uu.el (mm-uu-yenc-extract): Get the data from the original buffer.
15943
15944 2007-12-02  Glenn Morris  <rgm@gnu.org>
15945
15946         * binhex.el (binhex): New custom group.
15947         (binhex-decoder-program, binhex-decoder-switches)
15948         (binhex-use-external): Move to the binhex custom group.
15949
15950         * uudecode.el (uudecode): New custom group.
15951         (uudecode-decoder-program, uudecode-decoder-switches)
15952         (uudecode-use-external): Move to the uudecode custom group.
15953
15954         * netrc.el (top-level): Don't load `encrypt' features.
15955         (netrc-parse): Don't use encrypt.
15956         (netrc-find-service-name, netrc-find-service-number): Don't use caddr.
15957
15958         * encrypt.el: Remove file.
15959
15960 2007-12-01  Reiner Steib  <Reiner.Steib@gmx.de>
15961
15962         * message.el (message-cite-prefix-regexp): Remove `-' and `+' to avoid
15963         matches on patches.
15964
15965         * gnus-art.el (gnus-article-browse-html-article):
15966         Mention `mm-text-html-renderer' in the doc string.
15967
15968         * rfc2047.el (rfc2047-encode-max-chars): Refer to RFC 2047 in doc
15969         string.  Add comments.
15970
15971         * message.el (message-idna-to-ascii-rhs-1): Don't call `idna-to-ascii'
15972         if rhs is ASCII.
15973
15974 2007-12-01  Glenn Morris  <rgm@gnu.org>
15975
15976         * mail-source.el (top-level): Require format-spec before
15977         eval-when-compile.
15978
15979 2007-11-30  Glenn Morris  <rgm@gnu.org>
15980
15981         * encrypt.el: Require password, rather than autoloading password-read.
15982
15983 2007-11-29  Glenn Morris  <rgm@gnu.org>
15984
15985         * imap.el (sasl-find-mechanism, sasl-mechanism-name)
15986         (sasl-make-client, sasl-next-step, sasl-step-data)
15987         (sasl-step-set-data): Declare as functions.
15988
15989 2007-11-28  Reiner Steib  <Reiner.Steib@gmx.de>
15990
15991         * tls.el (tls-hostmismatch, open-tls-stream): Checkdoc cleanup.
15992
15993 2007-11-28  Elias Oltmanns  <eo@nebensachen.de>
15994
15995         * tls.el (open-tls-stream): Actually consult tls-checktrust to see if
15996         certs should be verified and what is to be done in the event of a
15997         verification failure.
15998
15999         * gnus.el (gnus-method-to-server): Add an optional parameter so the
16000         caller can indicate whether the cache should be disregarded for this
16001         call.  This way the result of the call is reproducible at all times and
16002         can be considered a canonical server name for the supplied method.
16003         (gnus-agent-method-p): Canonicalize server names by pushing their
16004         method through `gnus-method-to-server' using the no-cache argument.
16005
16006         * gnus-srvr.el (gnus-server-insert-server-line):
16007         Call `gnus-method-to-server' with `no-cache' argument.
16008
16009         * gnus-agent.el (gnus-agent-toggle-plugged): Don't call
16010         gnus-agent-possibly-synchronize-flags as this should be called when the
16011         server is actually being opened.
16012         (gnus-agent-possibly-synchronize-flags)
16013         (gnus-agent-possibly-synchronize-flags-server): Move check for the
16014         flags file of an agentized server to the latter function.
16015
16016         * gnus-int.el (gnus-agent-possibly-synchronize-flags-server): Autoload.
16017         (gnus-open-server): Call gnus-agent-possibly-synchronize-flags-server
16018         after a connection has been established successfully.
16019
16020 2007-11-28  Katsumi Yamaoka  <yamaoka@jpl.org>
16021
16022         * gnus-art.el (article-display-face): Force to display face if called
16023         interactively; check if gnus-article-x-face-too-ugly matches author.
16024         (article-display-x-face): Display face even if From header is missing
16025         as article-display-face does.
16026
16027 2007-11-27  Dan Nicolaescu  <dann@ics.uci.edu>
16028
16029         * hashcash.el (message-narrow-to-headers-or-head)
16030         (message-fetch-field, message-goto-eoh)
16031         (message-narrow-to-headers): Declare as functions.
16032
16033 2007-11-27  Reiner Steib  <Reiner.Steib@gmx.de>
16034
16035         * mail-source.el (mail-sources): Default to fetch from file for
16036         compatibility with default of nnmail-spool-file.
16037
16038 2007-11-27  Katsumi Yamaoka  <yamaoka@jpl.org>
16039
16040         * rfc2047.el (rfc2047-allow-irregular-q-encoded-words): New variable.
16041         (rfc2047-encodable-p): Use rfc2047-encoded-word-regexp instead of "=?"
16042         to look for encoded word that should be encoded again.
16043         (rfc2047-encoded-word-regexp): Make B encoding pattern strict.
16044         (rfc2047-encoded-word-regexp-loose): New constant that has loose Q
16045         encoding pattern.
16046         (rfc2047-decode-region): Switch strict regexp and loose one according
16047         to rfc2047-allow-irregular-q-encoded-words.
16048
16049 2007-11-25  Romain Francoise  <romain@orebokech.com>
16050
16051         * gnus-msg.el (gnus-summary-reply): Delete extra paren.
16052
16053 2007-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
16054
16055         * tls.el (tls-program): Provide more custom choices from
16056         `tls-checktrust'.  Refer to `tls-checktrust' in doc string.
16057         (tls-process-connection-type, tls-success): Remove "*" in doc string.
16058
16059 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
16060
16061         * nnmail.el (nnmail-spool-file): Remove obsolete variable.
16062         (nnmail-get-new-mail): Remove code using `nnmail-spool-file'.
16063
16064         * gnus-start.el (defvar, gnus-get-unread-articles): Remove code using
16065         `nnmail-spool-file'.
16066
16067         * nnkiboze.el (nnkiboze-generate-groups): Don't bind obsolete
16068         `nnmail-spool-file'.
16069
16070         * gnus-move.el (gnus-change-server): Ditto.
16071
16072         * gnus-kill.el (gnus-batch-score): Ditto.
16073
16074         * gnus-cache.el (gnus-jog-cache): Ditto.
16075
16076         * gnus-msg.el (gnus-summary-reply):
16077         Ignore gnus-confirm-mail-reply-to-news for wide and very wide replies.
16078
16079 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
16080
16081         * tls.el (tls-checktrust, tls-hostmismatch, tls-untrusted): Add custom
16082         version.  Minor improvement to doc strings.
16083         (tls-program): Add comment.
16084
16085 2007-11-24  Elias Oltmanns  <eo@nebensachen.de>
16086
16087         * tls.el (tls-certtool-program, tls-hostmismatch): New variables.
16088         (tls-checktrust): New variable.  Check if GNU TLS complained about a
16089         mismatch between the hostname provided in the certificate and the name
16090         of the host connnecting to.
16091         (open-tls-stream): Use them.  Check certificates against trusted root
16092         certificates.
16093
16094 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
16095
16096         * gnus-cache.el (gnus-cache-generate-nov-databases):
16097         Use nnml-generate-nov-databases-directory instead of
16098         nnml-generate-nov-databases-1.
16099
16100 2007-11-24  Glenn Morris  <rgm@gnu.org>
16101
16102         * message.el (message-tool-bar-retro): Update for rename
16103         mail_send.xpm->mail-send.xpm.
16104
16105 2007-11-22  Reiner Steib  <Reiner.Steib@gmx.de>
16106
16107         * smime.el (smime-cert-by-ldap-1): Use `ldap-search' instead of
16108         `smime-ldap-search' for Emacs 22 and up.
16109
16110 2007-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
16111
16112         * gnus-art.el (gnus-article-truncate-lines): Use `truncate-lines'.
16113
16114         * message.el (message-send-mail-function): Fix error convention.
16115         (message-mailer-swallows-blank-line, message-send-mail-with-sendmail)
16116         (message-widen-reply, message-send-mail, message-talkative-question)
16117         (message-with-reply-buffer, message-generate-new-buffer-clone-locals)
16118         (message-clone-locals, message-send-news): Use with-current-buffer.
16119         (message-insert-or-toggle-importance): Remove unused var `valid'.
16120         (message-make-references): Remove unused var `new-references'.
16121         (message-make-mail-followup-to): Remove unused var `subscribed-lists'.
16122
16123 2007-11-22  Juanma Barranquero  <lekktu@gmail.com>
16124
16125         * spam.el (spam-find-spam, spam-enter-list): Doc fixes.
16126         (spam-split-symbolic-return-positive): Reflow docstring.
16127         (spam-backends, spam-summary-exit-behavior)
16128         (spam-mark-ham-unread-before-move-from-spam-group)
16129         (spam-summary-score-preferred-header, spam-sa-learn-spam-switch)
16130         (spam-sa-learn-ham-switch, spam-sa-learn-unregister-switch)
16131         (spam-clear-cache, spam-backend-check, spam-install-backend)
16132         (spam-install-statistical-backend, spam-list-of-processors)
16133         (spam-group-processor-p, spam-split, spam-bogofilter-score)
16134         (spam-bsfilter-score, spam-check-bsfilter, spam-crm114-score)
16135         (spam-check-crm114, spam-initialize, spam-unload-hook):
16136         Fix typos in docstrings.
16137
16138 2007-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
16139
16140         * gnus-start.el (gnus-get-unread-articles): Mark groups as having never
16141         been checked if they have never been read and those group levels are
16142         higher than the one that a user specified.
16143
16144 2007-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
16145
16146         * gnus-start.el (gnus-get-unread-articles): Don't prevent from checking
16147         foreign groups unless a group level is specified by a user.
16148         Reported by Dan Nicolaescu <dann@ics.uci.edu>.
16149
16150 2007-11-21  Reiner Steib  <Reiner.Steib@gmx.de>
16151
16152         * message.el (message-send-mail-function): Require sendmail.
16153
16154 2007-11-20  Reiner Steib  <Reiner.Steib@gmx.de>
16155
16156         * message.el (message-send-mail-function): Check for smtpmail too.
16157
16158         * utf7.el (utf7-encode, utf7-decode): Use coding system
16159         `utf-7'/`utf-7-imap' from utf-7.el' if available.
16160
16161         * message.el (message-send-mail-function): New function.
16162         (message-send-mail-function): Set default using
16163         message-send-mail-function.  Adjust doc string.
16164         (message-send-mail-with-mailclient): New function.
16165
16166 2007-11-16  Dan Nicolaescu  <dann@ics.uci.edu>
16167
16168         * smime.el (from):
16169         * rfc2047.el (message-posting-charset):
16170         * qp.el (mm-use-ultra-safe-encoding):
16171         * pop3.el (parse-time-months):
16172         * nnrss.el (mm-text-html-renderer, mm-text-html-washer-alist):
16173         * nnml.el (files):
16174         * nnheader.el (gnus-newsgroup-name, nnheader-file-coding-system)
16175         (jka-compr-compression-info-list, ange-ftp-path-format)
16176         (efs-path-regexp):
16177         * nndiary.el (files):
16178         * mml2015.el (mc-default-scheme, mc-schemes, pgg-default-user-id)
16179         (pgg-errors-buffer, pgg-output-buffer, epg-user-id-alist)
16180         (epg-digest-algorithm-alist, inhibit-redisplay)
16181         (password-cache-expiry):
16182         * mml1991.el (pgg-default-user-id, pgg-errors-buffer)
16183         (pgg-output-buffer, password-cache-expiry):
16184         * mml.el (mml-dnd-protocol-alist, ange-ftp-name-format)
16185         (efs-path-regexp):
16186         * mml-smime.el (epg-user-id-alist, epg-digest-algorithm-alist)
16187         (inhibit-redisplay):
16188         * mm-uu.el (file-name, start-point, end-point, entry)
16189         (gnus-newsgroup-name, gnus-newsgroup-charset):
16190         * mm-util.el (mm-mime-mule-charset-alist, latin-unity-coding-systems)
16191         (latin-unity-ucs-list):
16192         * mm-bodies.el (mm-uu-yenc-decode-function, mm-uu-decode-function)
16193         (mm-uu-binhex-decode-function):
16194         * message.el (gnus-message-group-art, gnus-list-identifiers)
16195         (rmail-enable-mime-composing, gnus-local-organization)
16196         (gnus-post-method, gnus-select-method, gnus-active-hashtb)
16197         (gnus-read-active-file, facemenu-add-face-function)
16198         (facemenu-remove-face-function, gnus-article-decoded-p)
16199         (tool-bar-mode):
16200         * mail-source.el (display-time-mail-function):
16201         * gnus-util.el (nnmail-pathname-coding-system)
16202         (nnmail-active-file-coding-system, gnus-emphasize-whitespace-regexp)
16203         (gnus-original-article-buffer, gnus-user-agent)
16204         (rmail-default-rmail-file, mm-text-coding-system, tool-bar-mode)
16205         (xemacs-codename, sxemacs-codename, emacs-program-version):
16206         * gnus-sum.el (tool-bar-mode, gnus-tmp-header, number):
16207         * gnus-start.el (gnus-agent-covered-methods)
16208         (gnus-agent-file-loading-local, gnus-agent-file-loading-cache)
16209         (gnus-current-headers, gnus-thread-indent-array, gnus-newsgroup-name)
16210         (gnus-newsgroup-headers, gnus-group-list-mode)
16211         (gnus-group-mark-positions, gnus-newsgroup-data)
16212         (gnus-newsgroup-unreads, nnoo-state-alist)
16213         (gnus-current-select-method, mail-sources)
16214         (nnmail-scan-directory-mail-source-once, nnmail-split-history)
16215         (nnmail-spool-file, gnus-cache-active-hashtb):
16216         * gnus-mh.el (mh-lib-progs):
16217         * gnus-ems.el (gnus-tmp-unread, gnus-tmp-replied)
16218         (gnus-tmp-score-char, gnus-tmp-indentation, gnus-tmp-opening-bracket)
16219         (gnus-tmp-lines, gnus-tmp-name, gnus-tmp-closing-bracket)
16220         (gnus-tmp-subject-or-nil, gnus-check-before-posting, gnus-mouse-face)
16221         (gnus-group-buffer):
16222         * gnus-cite.el (font-lock-defaults-computed, font-lock-keywords)
16223         (font-lock-set-defaults):
16224         * gnus-art.el (tool-bar-map, w3m-minor-mode-map)
16225         (gnus-face-properties-alist, charset, gnus-summary-article-menu)
16226         (gnus-summary-post-menu, total-parts, type, condition, length):
16227         * gnus-agent.el (gnus-agent-read-agentview):
16228         * flow-fill.el (show-trailing-whitespace):
16229         * gnus-group.el (tool-bar-mode, nnrss-group-alist): Remove unnecessary
16230         eval-and-compile wrappers for byte compiler pacifiers.
16231
16232         * mm-view.el (mm-inline-image-xemacs): Only do something for XEmacs.
16233         (mm-display-inline-fontify): Check for featurep 'xemacs not
16234         extent-list.
16235
16236         * mm-decode.el (mm-display-external): Check for featurep 'xemacs not
16237         itimer-list.
16238         (mm-create-image-xemacs): Only do something for XEmacs.
16239         (mm-image-fit-p): Check for featurep 'xemacs not glyph-width.
16240
16241         * mm-util.el (mm-find-buffer-file-coding-system): Add check for XEmacs.
16242
16243         * gnus-registry.el (gnus-adaptive-word-syntax-table):
16244         * gnus-fun.el (gnus-face-properties-alist): Pacify byte compiler.
16245
16246 2007-11-15  Juanma Barranquero  <lekktu@gmail.com>
16247
16248         * nnimap.el (nnimap-split-download-body):
16249         * gnus-demon.el (gnus-demon):
16250         * gnus-uu.el (gnus-uu-default-view-rules): Fix typos in docstrings.
16251
16252 2007-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
16253
16254         * nntp.el (nntp-insert-buffer-substring, nntp-copy-to-buffer):
16255         New macros.
16256         (nntp-wait-for, nntp-retrieve-articles, nntp-async-trigger)
16257         (nntp-retrieve-headers-with-xover): Use nntp-insert-buffer-substring to
16258         copy data from unibyte buffer to multibyte current buffer.
16259         (nntp-retrieve-headers, nntp-retrieve-groups): Use nntp-copy-to-buffer
16260         to copy data from unibyte current buffer to multibyte buffer.
16261         (nntp-make-process-buffer): Make process buffer unibyte.
16262
16263         * pop3.el (pop3-open-server): Fix typo in Lisp code.
16264
16265 2007-11-14  Denys Duchier  <denys.duchier@univ-orleans.fr>  (tiny change)
16266
16267         * pop3.el (pop3-open-server): Accept and process data more robustly at
16268         connection start to avoid spurious "POP SSL connection failed" errors.
16269
16270 2007-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
16271
16272         * gnus-start.el (gnus-active-to-gnus-format): Use unibyte buffer to
16273         read group names.
16274
16275 2007-11-12  Reiner Steib  <Reiner.Steib@gmx.de>
16276
16277         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Adjust :version.
16278
16279 2007-11-12  Katsumi Yamaoka  <yamaoka@jpl.org>
16280
16281         * nnmail.el (nnmail-parse-active): Make group names unibyte.
16282         (nnmail-save-active): Use a unibyte buffer when saving active file,
16283         which may contain non-ASCII group names.
16284
16285         * nnml.el (nnml-request-group): Decode group names in messages.
16286
16287 2007-11-05  Reiner Steib  <Reiner.Steib@gmx.de>
16288
16289         * message.el (message-citation-line-function)
16290         (message-insert-formatted-citation-line): Fix spelling of
16291         `message-insert-formated-citation-line'.
16292
16293 2007-11-03  Reiner Steib  <Reiner.Steib@gmx.de>
16294
16295         * gnus-sum.el (gnus-summary-highlight): Mark as risky local variable.
16296
16297 2007-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
16298
16299         * nnml.el (nnml-request-rename-group): Bind file-name-coding-system to
16300         nnmail-pathname-coding-system.
16301
16302         * gnus-group.el (gnus-group-rename-group): Encode non-ASCII group name
16303         that a user enters; decode group names in messages.
16304
16305         * gnus-msg.el (gnus-inews-do-gcc): Encode non-ASCII group names.
16306
16307 2007-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
16308
16309         * mm-util.el (mm-charset-eval-alist): Mark as risky local variable.
16310
16311         * gnus.el (gnus-group-charter-alist): Mark as risky local variable.
16312
16313         * gnus-art.el (gnus-button-alist, gnus-header-button-alist): Mark as
16314         risky local variable.
16315
16316         * gnus-group.el (gnus-group-icon-list): Mark as risky local variable.
16317
16318 2007-11-01  Teodor Zlatanov  <tzz@lifelogs.com>
16319
16320         * encrypt.el: Improve documentation to fix function name typo.
16321         Reported by Daiki Ueno <ueno@unixuser.org>.
16322
16323 2007-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
16324
16325         * gnus-art.el (gnus-article-next-page): Honor gnus-article-over-scroll
16326         even if the point is not in the last page of an article.
16327         (gnus-article-prev-page): Honor gnus-article-over-scroll when moving
16328         back to the previous page.
16329
16330 2007-10-30  Reiner Steib  <Reiner.Steib@gmx.de>
16331
16332         * qp.el (quoted-printable-decode-string): Fix typo in doc string.
16333
16334 2007-10-30  Katsumi Yamaoka  <yamaoka@jpl.org>
16335
16336         * gnus-ems.el (gnus-x-splash): Work even if there's no scroll bar.
16337
16338 2007-10-29  Stefan Monnier  <monnier@iro.umontreal.ca>
16339
16340         * message.el (message-check-news-body-syntax):
16341         Avoid mm-string-as-multibyte.
16342         (message-hide-headers): Don't assume (point-min)==1.
16343
16344 2007-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
16345
16346         * message.el (message-remove-blank-cited-lines): Fix if remove is
16347         given.
16348         (message-bogus-address-regexp): New variable.
16349         (message-bogus-recipient-p): New function.
16350         (message-check-recipients): New command.
16351         (message-syntax-checks): Add `bogus-recipient'.
16352         (message-fix-before-sending): Add `bogus-recipient'.
16353
16354         * gnus-art.el (gnus-button-mid-or-mail-heuristic-alist): Add "alpine".
16355         (gnus-treat-body-boundary): Don't test window-system.
16356
16357 2007-10-28  Leo Liu  <sdl.web@gmail.com>
16358
16359         * gnus-art.el (gnus-treat-emphasize): Don't test window-system.
16360
16361 2007-10-28  Miles Bader  <miles@gnu.org>
16362
16363         * nnheader.el (nnheader-uniquify-message-id): Make sure this is defined
16364         at compile-time too.
16365
16366 2007-10-27  Reiner Steib  <Reiner.Steib@gmx.de>
16367
16368         * gnus-msg.el (gnus-message-setup-hook):
16369         Add `message-remove-blank-cited-lines' to options.
16370
16371 2007-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
16372
16373         * message.el (message-remove-blank-cited-lines): New function.
16374         Suggested by Karl Plästerer.
16375
16376 2007-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
16377
16378         * hashcash.el (mail-add-payment): Replace mapcar called for effect with
16379         mapc.
16380
16381         * imap.el (imap-open): Replace mapcar called for effect with mapc.
16382         (top-level): Use mapc to set functions to be traced for debugging.
16383
16384         * legacy-gnus-agent.el (gnus-agent-convert-agentview): Replace mapcar
16385         called for effect with while loop.
16386
16387         * message.el (message-talkative-question): Replace mapcar called for
16388         effect with mapc.
16389
16390         * mm-util.el: Use mapc instead of mapcar to make compatible functions.
16391         (mm-find-mime-charset-region, mm-find-charset-region): Replace mapcar
16392         called for effect with dolist.
16393
16394         * mml.el (mml-insert-mime): Replace mapcar called for effect with mapc.
16395
16396         * nndiary.el: Use dolist instead of mapcar to add diary headers to
16397         gnus-extra-headers and nnmail-extra-headers.
16398
16399         * nnimap.el (nnimap-request-update-info-internal): Replace mapcar
16400         called for effect with dolist.
16401         (top-level): Use mapc to set functions to be traced for debugging.
16402
16403         * nnmail.el (nnmail-read-incoming-hook): Doc fix.
16404         (nnmail-split-fancy-with-parent): Replace mapcar called for effect with
16405         dolist.
16406
16407         * nnmaildir.el (nnmaildir--delete-dir-files, nnmaildir-request-close):
16408         Replace mapcar called for effect with mapc.
16409         (nnmaildir--scan, nnmaildir-request-scan, nnmaildir-retrieve-groups)
16410         (nnmaildir-request-update-info, nnmaildir-request-delete-group)
16411         (nnmaildir-retrieve-headers, nnmaildir-request-set-mark)
16412         (nnmaildir-close-group): Replace mapcar called for effect with dolist.
16413
16414         * nnrss.el (nnrss-make-hash-index): Use gnus-remove-if instead of
16415         remove-if that's a cl function.
16416
16417         * webmail.el (webmail-debug): Replace mapcar called for effect with
16418         dolist.
16419
16420         * gnus-xmas.el (gnus-group-add-icon): Replace mapcar called for effect
16421         with mapc.
16422
16423 2007-10-24  Katsumi Yamaoka  <yamaoka@jpl.org>
16424
16425         * gnus-agent.el (gnus-agent-read-agentview, gnus-agent-save-alist)
16426         (gnus-agent-expire-unagentized-dirs): Replace mapcar called for effect
16427         with while loop.
16428
16429         * gnus-art.el: Use mapc instead of mapcar to make gnus-article-*
16430         functions from article-* functions.
16431         (gnus-multi-decode-header): Replace mapcar called for effect with
16432         dolist.
16433
16434         * gnus-bookmark.el (gnus-bookmark-bmenu-list)
16435         (gnus-bookmark-show-details): Replace mapcar called for effect with
16436         while loop.
16437
16438         * gnus-diary.el (gnus-diary-update-group-parameters): Replace mapcar
16439         called for effect with while loop.
16440
16441         * gnus-group.el (gnus-group-suspend): Replace mapcar called for effect
16442         with dolist.
16443
16444         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
16445         Replace mapcar called for effect with dolist.
16446
16447         * gnus-spec.el (gnus-correct-length): Make it simple and fast.
16448
16449         * gnus-sum.el (gnus-multi-decode-encoded-word-string)
16450         (gnus-build-sparse-threads, gnus-summary-limit-include-expunged):
16451         Replace mapcar called for effect with dolist.
16452         (gnus-simplify-buffer-fuzzy): Replace mapcar called for effect with
16453         mapc.
16454
16455         * gnus-topic.el (gnus-topic-find-groups, gnus-topic-move-group):
16456         Replace mapcar called for effect with dolist.
16457         (gnus-topic-list): Replace mapcar called for effect with mapc.
16458
16459         * gnus.el: Use mapc instead of mapcar to add autoloads.
16460
16461 2007-10-23  Richard Stallman  <rms@gnu.org>
16462
16463         * gnus-group.el (gnus-group-highlight): Mark as risky.
16464
16465 2007-10-23  Katsumi Yamaoka  <yamaoka@jpl.org>
16466
16467         * gnus.el (gnus-server-to-method): Return method found first in
16468         gnus-newsrc-alist.
16469
16470         * gnus-art.el (gnus-article-highlight-signature)
16471         (gnus-insert-prev-page-button, gnus-insert-next-page-button): Make a
16472         button overlay without the front stickiness.
16473
16474 2007-10-22  Kevin Greiner  <kevin.greiner@compsol.cc>
16475
16476         * gnus-agent.el (gnus-agent-expire-group-1): The check for an unsorted
16477         overview buffer needed a catch to receive its throw.
16478         (gnus-agent-flush-cache): Declare as interactive to make this function
16479         easier to use.
16480
16481 2007-10-20  Reiner Steib  <Reiner.Steib@gmx.de>
16482
16483         * html2text.el (html2text-fix-paragraph): Use `forward-line' instead of
16484         `next-line'.
16485
16486 2007-10-18  Katsumi Yamaoka  <yamaoka@jpl.org>
16487
16488         * nnmail.el (nnmail-fancy-expiry-target): Use rmail-dont-reply-to to
16489         exclude address matching message-dont-reply-to-names.
16490
16491 2007-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
16492
16493         * gnus-util.el (gnus-string<): New function.
16494
16495         * gnus-sum.el (gnus-article-sort-by-author)
16496         (gnus-article-sort-by-recipient, gnus-article-sort-by-subject): Use it.
16497
16498 2007-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
16499
16500         * gnus-win.el (gnus-configure-windows): Focus on the frame for which
16501         the frame-focus tag is set in gnus-buffer-configuration.
16502
16503 2007-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
16504
16505         * gnus-art.el (gnus-article-add-button): Make a button overlay without
16506         the front stickiness.
16507
16508 2007-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
16509
16510         * gnus-art.el (gnus-button-alist): Exclude newline in RFC2396-compliant
16511         url pattern; remove duplicate one.
16512         (gnus-article-extend-url-button): New function.
16513         (gnus-article-add-buttons): Use it.
16514         (gnus-button-push): Use concatenated url that it makes.
16515
16516 2007-10-04  Juanma Barranquero  <lekktu@gmail.com>
16517
16518         * sieve-manage.el (sieve-manage-interactive-login): Doc fix.
16519
16520 2007-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
16521
16522         * gnus-uu.el (gnus-uu-reginize-string, gnus-uu-expand-numbers):
16523         Don't hardcode point-min==1.
16524
16525 2007-10-08  Reiner Steib  <Reiner.Steib@gmx.de>
16526
16527         * mm-util.el (mm-charset-synonym-alist): Alias gbk to cp936.
16528         Fix comment about "iso8859-1".
16529
16530 2007-10-08  Daiki Ueno  <ueno@unixuser.org>
16531
16532         * mm-decode.el (mm-possibly-verify-or-decrypt): Replace PARTS with the
16533         ones returned from the verify-function.
16534
16535         * mm-uu.el (mm-uu-pgp-signed-extract-1):
16536         Call mml2015-extract-cleartext-signature if extraction failed.
16537
16538 2007-10-07  Daiki Ueno  <ueno@unixuser.org>
16539
16540         * mm-uu.el (mm-uu-pgp-signed-extract-1): Delete the first line
16541         beginning with "-----BEGIN PGP SIGNED MESSAGE-----" if extraction
16542         failed.
16543
16544 2007-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
16545
16546         * Relicense "GPLv2 or later" files to "GPLv3 or later".
16547
16548 2007-10-03  Reiner Steib  <Reiner.Steib@gmx.de>
16549
16550         * pgg.el, pgg-def.el, pgg-gpg.el: Revert to the version in v5-10.  The
16551         trunk version of PGG was unmaintained.  The author of PGG, Daiki Ueno,
16552         recommends to use EasyPG instead of PGG.
16553
16554         * pgg.el: Revert to revision 6.23.2.16.
16555
16556         * pgg-def.el: Revert to revision 6.6.2.14.
16557
16558         * pgg-gpg.el: Revert to revision 6.23.2.34.
16559
16560 2007-09-27  Teodor Zlatanov  <tzz@lifelogs.com>
16561
16562         * gnus-sum.el (gnus-summary-kill-thread): Allow universal prefix zero
16563         to mark a thread as expirable.  Add variable `hide' to handle hiding of
16564         thread for both the null and zero (kill/expire thread) universal prefix
16565         cases.
16566         (gnus-summary-expire-thread): Add new function to expire a thread,
16567         using gnus-summary-kill-thread.
16568         (gnus-summary-mode-map, gnus-summary-thread-map): Add 'M-C-e' and 'T e'
16569         shortcuts for gnus-summary-expire-thread.
16570         (gnus-summary-mode-map, gnus-summary-thread-map): Remove `M-C-e' and `T
16571         e' bindings for gnus-summary-expire-thread.  Add `T E' binding.
16572
16573 2007-09-25  Teodor Zlatanov  <tzz@lifelogs.com>
16574
16575         * gnus-registry.el (gnus-registry-store-extra-entry): Allow for nil
16576         extras value, so an extras entry can be deleted.
16577         (gnus-registry-delete-extra-entry): Use it.
16578         (gnus-registry-fetch-extra-flags, gnus-registry-has-extra-flag)
16579         (gnus-registry-store-extra-flags, gnus-registry-delete-extra-flags)
16580         (gnus-registry-delete-all-extra-flags): Allow for arbitrary flag symbol
16581         storage through the gnus-registry, and provide an appropriate API for
16582         it.
16583
16584 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
16585
16586         * gnus-sum.el (gnus-newsgroup-maximum-articles): Move from gnus.el.
16587         Suggested by Leo <sdl.web@gmail.com>.
16588
16589         * gnus.el: Do.
16590
16591 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
16592
16593         * gnus.el (gnus-newsgroup-maximum-articles): Rename from
16594         gnus-maximum-newsgroup.  Suggested by Leo <sdl.web@gmail.com>.
16595
16596         * gnus-agent.el (gnus-agent-fetch-headers): Do.
16597
16598         * gnus-sum.el (gnus-articles-to-read, gnus-list-of-unread-articles)
16599         (gnus-list-of-read-articles, gnus-sequence-of-unread-articles): Do.
16600
16601 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
16602
16603         * nnmbox.el (nnmbox-request-article): Don't assume delim regexp matches
16604         newline.
16605         (nnmbox-request-accept-article): Don't change article in source buffer;
16606         narrow to header to use message-fetch-field rather than
16607         nnmail-fetch-field; use with-current-buffer instead of save-excursion.
16608         (nnmbox-request-replace-article): Quote lines that'll be misidentified
16609         as delimiters; make sure article ends with newline.
16610         (nnmbox-delete-mail): Correct last position of article to be deleted;
16611         ignore X-Gnus-Newsgroup header in article body.
16612         (nnmbox-save-mail): Quote lines looking like delimiters at the right
16613         positions; make sure article ends with newline.
16614
16615         * message.el (message-display-abbrev): Don't infloop when a user
16616         inserts SPC in the beginning of header.
16617
16618         * lpath.el: Don't bind define-ccl-program for non-Mule XEmacs; bind
16619         coding-system-for-read and coding-system-for-write for XEmacs having no
16620         file-coding feature.
16621
16622         * dgnushack.el: Bind or autoload define-ccl-program for XEmacs.
16623
16624 2007-09-12  Teodor Zlatanov  <tzz@lifelogs.com>
16625
16626         * gnus-registry.el (gnus-registry-unfollowed-groups): Add INBOX to the
16627         list of groups not followed by default.  Fix type to be regexp.
16628         (gnus-registry-grep-in-list): Fix inverted parameters to string-match.
16629
16630 2007-09-06  Tassilo Horn  <tassilo@member.fsf.org>
16631
16632         * hmac-def.el (define-hmac-function): Switch from old-style to
16633         new-style backquotes.
16634
16635         * md4.el (md4-make-step): Likewise.
16636
16637 2007-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
16638
16639         * gnus-start.el (gnus-gnus-to-newsrc-format): Use a unibyte buffer and
16640         raw-text coding system when saving .newsrc file, which may contain
16641         non-ASCII group names.
16642
16643 2007-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
16644
16645         * gnus-cus.el (gnus-score-extra): New widget.
16646         (gnus-score-extra-convert): New function.
16647         (gnus-score-customize): Use it for Extra.
16648
16649 2007-08-31  Daiki Ueno  <ueno@unixuser.org>
16650
16651         * mml2015.el (mml2015-extract-cleartext-signature): New function.
16652         (mml2015-mailcrypt-clear-verify): Use it.
16653         (mml2015-gpg-clear-verify): Use it.
16654         (mml2015-pgg-clear-verify): Use it.
16655         (mml2015-epg-clear-verify): Replace the current part with the output
16656         from GnuPG; don't extract the plaintext by itself.
16657
16658         * mm-uu.el (mm-uu-pgp-beginning-signature): Abolish.
16659         (mm-uu-pgp-signed-extract-1): Bind coding-system-for-read when calling
16660         mml2015-clear-verify-function; don't touch the armor headers or
16661         dash-escaped text here.
16662
16663 2007-08-24  Katsumi Yamaoka  <yamaoka@jpl.org>
16664
16665         * gnus-art.el (gnus-article-edit-part): Don't jump to nonexistent part.
16666         (gnus-mime-view-part-as-type-internal): Default to text/plain for text
16667         parts, or application/octet-stream as a last resort.
16668         (gnus-mime-view-part-as-type): Don't toggle display.
16669         (gnus-mime-view-part-as-charset): Don't turn off display before
16670         querying charset.
16671
16672         * mm-view.el (mm-inline-text-html-render-with-w3): Don't add XEmacs
16673         stuff to undisplayer function in Emacs.
16674         (mm-inline-text-html-render-with-w3m): Remove Emacs/W3 stuff.
16675
16676         * mml.el (mml-generate-mime-1): Prefer utf-8 when encoding
16677         text/calendar parts.
16678
16679 2007-08-23  Katsumi Yamaoka  <yamaoka@jpl.org>
16680
16681         * gnus-art.el (gnus-mime-display-single): Use utf-8 by default for
16682         decoding text/calendar parts.
16683
16684         * message.el (message-forward-make-body-mime): Always mark body as
16685         having no illegible text; remove signed-or-encrypted argument.
16686         (message-forward-make-body): Don't pass signed-or-encrypted arg to it.
16687
16688         * mml.el (mml-generate-mime): Make sure it uses multibyte temp buffer.
16689         (mml-generate-mime-1): Don't encode body if it is specified to be in
16690         raw form; don't make buffer be unibyte when inserting multibyte string.
16691
16692 2007-08-23  Stefan Monnier  <monnier@iro.umontreal.ca>
16693
16694         * sha1.el: Fix up comment style.
16695         (sha1-F0, sha1-F1, sha1-F2, sha1-F3, sha1-S1, sha1-S5, sha1-S30)
16696         (sha1-OP, sha1-add-to-H): Use new-style backquotes.
16697
16698         * hex-util.el: Fix up comment style.
16699         (hex-char-to-num, num-to-hex-char): Use new-style backquotes.
16700
16701         * gnus-salt.el: Use with-current-buffer.
16702         (gnus-pick-setup-message): Fix long-standing typo.
16703
16704 2007-08-17  Katsumi Yamaoka  <yamaoka@jpl.org>
16705
16706         * imap.el (imap-logout-timeout): New variable.
16707         (imap-logout, imap-logout-wait): New functions.
16708         (imap-kerberos4-open, imap-gssapi-open, imap-close): Use them.
16709
16710         * nnimap.el (nnimap-logout-timeout): New server variable.
16711         (nnimap-open-server, nnimap-close-server): Bind imap-logout-timeout to
16712         nnimap-logout-timeout.
16713
16714         * gnus-art.el (gnus-article-summary-command-nosave)
16715         (gnus-article-read-summary-keys): Don't use 3rd arg of pop-to-buffer.
16716
16717 2007-08-14  Katsumi Yamaoka  <yamaoka@jpl.org>
16718
16719         * gnus.el (gnus-maximum-newsgroup): New variable.
16720
16721         * gnus-agent.el (gnus-agent-fetch-headers): Limit the range of articles
16722         according to gnus-maximum-newsgroup.
16723
16724         * gnus-sum.el (gnus-articles-to-read, gnus-list-of-unread-articles)
16725         (gnus-list-of-read-articles, gnus-sequence-of-unread-articles):
16726         Limit the range of articles according to gnus-maximum-newsgroup.
16727
16728 2007-08-14  Tassilo Horn  <tassilo@member.fsf.org>
16729
16730         * gnus-art.el (gnus-sticky-article): Fix problems described in
16731         <b4mps1qitio.fsf@jpl.org> on ding.  Thanks to Katsumi.
16732         Don't perform gnus-configure-windows here; reuse existing sticky
16733         article buffer.
16734
16735         * gnus-sum.el (gnus-summary-display-article): Setup article buffer if
16736         it doesn't exist in gnus-article-mode.
16737
16738 2007-08-13  Katsumi Yamaoka  <yamaoka@jpl.org>
16739
16740         * gnus-agent.el (gnus-agent-decoded-group-names): New variable.
16741         (gnus-agent-decoded-group-name): New function.
16742         (gnus-agent-group-path, gnus-agent-group-pathname): Use it.
16743         (gnus-agent-expire-group-1): Use it; decode group name in messages.
16744
16745 2007-08-12  Tassilo Horn  <tassilo@member.fsf.org>
16746
16747         * gnus-sum.el (gnus-summary-article-map, gnus-summary-make-menu-bar):
16748         Add binding for gnus-sticky-article.
16749         (gnus-summary-exit): Don't kill sticky article buffers.
16750
16751         * gnus-art.el (gnus-sticky-article-mode): New mode to generate a sticky
16752         article buffer.
16753         (gnus-sticky-article, gnus-kill-sticky-article-buffer)
16754         (gnus-kill-sticky-article-buffers): New commands.
16755
16756 2007-08-10  Katsumi Yamaoka  <yamaoka@jpl.org>
16757
16758         * nntp.el (nntp-xref-number-is-evil): New server variable.
16759         (nntp-find-group-and-number): If it is non-nil, don't trust article
16760         numbers in the Xref header.
16761
16762 2007-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
16763
16764         * gnus-agent.el (gnus-agent-read-group): New function.
16765         (gnus-agent-flush-group, gnus-agent-expire-group)
16766         (gnus-agent-regenerate-group): Use it.
16767         (gnus-agent-expire-unagentized-dirs): Bind file-name-coding-system to
16768         nnmail-pathname-coding-system.
16769
16770 2007-08-06  Katsumi Yamaoka  <yamaoka@jpl.org>
16771
16772         * gnus-ems.el (gnus-x-splash): Bind inhibit-read-only to t.
16773
16774         * gnus-sum.el (gnus-summary-insert-articles): Mark inserted articles
16775         that are unread as unread, and also as selected so that information of
16776         marks having been changed by a user may be updated when exiting group.
16777
16778 2007-08-04  Reiner Steib  <Reiner.Steib@gmx.de>
16779
16780         * gnus-art.el (article-hide-headers): Bind inhibit-read-only to t.
16781
16782 2007-08-03  Katsumi Yamaoka  <yamaoka@jpl.org>
16783
16784         * gnus-art.el (gnus-mime-display-single): Pass part number that is
16785         calculated ignoring signature parts to gnus-treat-article.
16786
16787 2007-08-02  Katsumi Yamaoka  <yamaoka@jpl.org>
16788
16789         * gnus-art.el (gnus-mime-security-verify-or-decrypt): Don't narrow to
16790         a point here in order to keep the window start.
16791         (gnus-insert-mime-security-button): Make a button overlay without the
16792         front stickiness.
16793         (gnus-mime-display-security): Goto the end of a button.
16794
16795         * gnus-group.el (gnus-group-name-at-point): Fix regexps.
16796
16797 2007-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
16798
16799         * gnus-group.el (gnus-group-name-at-point): Rewrite; rename from
16800         group-name-at-point.
16801         (gnus-group-completing-read): New function that offers decoded
16802         non-ASCII group names for completion.
16803         (gnus-fetch-group, gnus-group-read-ephemeral-group)
16804         (gnus-group-jump-to-group, gnus-group-make-group-simple)
16805         (gnus-group-unsubscribe-group, gnus-group-fetch-charter)
16806         (gnus-group-fetch-control): Use it.
16807         (gnus-fetch-group): Use group-name-at-point for the initial value
16808         rather than the default value; use gnus-alive-p.
16809
16810         * gnus-msg.el (gnus-group-mail, gnus-group-news, gnus-group-post-news)
16811         (gnus-summary-mail-other-window, gnus-summary-news-other-window)
16812         (gnus-summary-post-news): Use gnus-group-completing-read.
16813
16814         * gnus-sum.el (gnus-select-newsgroup): Decode group name in error msg.
16815         (gnus-read-move-group-name): Decode group name for completion.
16816
16817 2007-07-31  Teodor Zlatanov  <tzz@lifelogs.com>
16818
16819         * gnus-srvr.el (gnus-server-close-all-servers): Close servers not only
16820         in gnus-inserted-opened-servers but also in gnus-server-alist (Katsumi
16821         Yamaoka slightly modified the code).
16822
16823 2007-07-24  Katsumi Yamaoka  <yamaoka@jpl.org>
16824
16825         * nnmail.el (nnmail-group-names-not-encoded-p): New variable.
16826         (nnmail-split-incoming): Bind it.
16827
16828         * nnml.el (nnml-group-name-charset): New function.
16829         (nnml-decoded-group-name): Use it; don't decode group name if
16830         nnmail-group-names-not-encoded-p is non-nil.
16831         (nnml-encoded-group-name): New function.
16832         (nnml-group-pathname): Inline nnml-decoded-group-name.
16833         (nnml-request-expire-articles): Decode group name in message.
16834         (nnml-request-delete-group): Ditto; bind file-name-coding-system to
16835         nnmail-pathname-coding-system.
16836         (nnml-save-mail, nnml-active-number): Work with decoded group names and
16837         not decoded ones according to nnmail-group-names-not-encoded-p.
16838         (nnml-generate-active-info): Use nnml-encoded-group-name.
16839
16840 2007-08-08  Glenn Morris  <rgm@gnu.org>
16841
16842         * gmm-utils.el, gnus-async.el, gnus-msg.el, gnus-score.el
16843         * gnus-util.el, imap.el, mailcap.el, nnimap.el: Replace `iff' in
16844         doc-strings and comments.
16845
16846 2007-07-25  Glenn Morris  <rgm@gnu.org>
16847
16848         * Relicense all FSF files to GPLv3 or later.
16849
16850 2007-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
16851
16852         * gnus-sum.el (gnus-summary-move-article):
16853         Make gnus-summary-respool-article work.
16854
16855 2007-07-21  Reiner Steib  <Reiner.Steib@gmx.de>
16856
16857         * mm-uu.el (mm-uu-type-alist): Refer to mm-uu-configure-list in doc
16858         string.
16859
16860 2007-07-20  Michaël Cadilhac  <michael@cadilhac.name>
16861
16862         * nnrss.el (nnrss-ignore-article-fields): New variable.  List of fields
16863         that should be ignored when comparing distant RSS articles with local
16864         ones.
16865         (nnrss-make-hash-index): New function.  Create a hash index according
16866         to the ignored fields.
16867         (nnrss-check-group): Use it.
16868
16869 2007-07-20  Katsumi Yamaoka  <yamaoka@jpl.org>
16870
16871         * gnus-agent.el (gnus-agent-group-pathname): Take notice of the method.
16872
16873         * gnus-art.el (article-decode-group-name): Decode Xref header too.
16874
16875         * gnus-group.el (gnus-group-make-group): Encode group name here unless
16876         the new optional argument ENCODED is non-nil.
16877         (gnus-group-make-doc-group): Use gnus-group-name-charset to determine
16878         coding system for encoding group name.
16879         (gnus-group-make-rss-group): Pass un-encoded group name to
16880         gnus-group-make-group.
16881         (gnus-group-set-info): Tell gnus-group-make-group that group name is
16882         encoded.
16883
16884         * gnus-sum.el (gnus-summary-move-article, gnus-read-move-group-name):
16885         Encode group name to which articles are moved or copied.
16886         (gnus-summary-edit-article): Use gnus-group-name-charset to determine
16887         coding system for encoding Newsgroup, Followup-To and Xref headers.
16888
16889         * nnagent.el (nnagent-request-set-mark): Use unibyte buffer to compose
16890         marks; use nnheader-file-coding-system to write a file.
16891         (nnagent-retrieve-headers): Bind file-name-coding-system to
16892         nnmail-pathname-coding-system.
16893
16894         * nnmail.el (nnmail-insert-xref): Don't break non-ASCII group name.
16895
16896         * nnml.el (nnml-decoded-group-name, nnml-group-pathname): New functions.
16897         (nnml-request-article, nnml-request-create-group)
16898         (nnml-request-rename-group, nnml-find-id)
16899         (nnml-possibly-change-directory, nnml-possibly-create-directory)
16900         (nnml-save-mail, nnml-active-number, nnml-marks-changed-p)
16901         (nnml-save-marks): Use nnml-group-pathname instead of
16902         nnmail-group-pathname.
16903
16904         (nnml-request-create-group, nnml-request-expire-articles)
16905         (nnml-request-move-article, nnml-request-delete-group)
16906         (nnml-deletable-article-p, nnml-possibly-create-directory)
16907         (nnml-get-nov-buffer, nnml-generate-nov-databases-directory)
16908         (nnml-open-marks): Bind file-name-coding-system to
16909         nnmail-pathname-coding-system.
16910
16911         (nnml-request-article): Pass server argument to nnml-find-group-number.
16912         (nnml-request-create-group, nnml-active-number, nnml-save-marks):
16913         Pass server argument to nnml-possibly-create-directory.
16914         (nnml-request-accept-article): Pass server argument to
16915         nnml-active-number and nnml-save-mail.
16916         (nnml-find-group-number): Pass server argument to nnml-find-id.
16917         (nnml-request-update-info): Pass server argument to
16918         nnml-marks-changed-p.
16919
16920         (nnml-find-id, nnml-find-group-number, nnml-possibly-create-directory)
16921         (nnml-save-mail, nnml-active-number): Add server argument.
16922
16923         (nnml-request-delete-group): Warn if group is missing.
16924         (nnml-get-nov-buffer): Decode group name.
16925         (nnml-generate-active-info): Encode group name.
16926         (nnml-open-marks): Decode group name in messages.
16927
16928 2007-07-19  Katsumi Yamaoka  <yamaoka@jpl.org>
16929
16930         * gnus-art.el (gnus-article-part-wrapper): Work with the nearest part
16931         if it is not specified.
16932         (gnus-article-pipe-part, gnus-article-save-part)
16933         (gnus-article-interactively-view-part, gnus-article-copy-part)
16934         (gnus-article-view-part-as-charset, gnus-article-view-part-externally)
16935         (gnus-article-inline-part, gnus-article-save-part-and-strip)
16936         (gnus-article-replace-part, gnus-article-delete-part)
16937         (gnus-article-view-part-as-type): Pass raw prefix argument to
16938         gnus-article-part-wrapper.
16939
16940 2007-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
16941
16942         * gnus-agent.el (gnus-agent-save-active):
16943         Bind nnheader-file-coding-system to gnus-agent-file-coding-system.
16944
16945         * gnus-cache.el (gnus-cache-save-buffers)
16946         (gnus-cache-possibly-enter-article, gnus-cache-request-article)
16947         (gnus-cache-retrieve-headers, gnus-cache-change-buffer)
16948         (gnus-cache-possibly-remove-article, gnus-cache-articles-in-group)
16949         (gnus-cache-braid-nov, gnus-cache-braid-heads)
16950         (gnus-cache-generate-active, gnus-cache-rename-group)
16951         (gnus-cache-delete-group, gnus-cache-update-file-total-fetched-for)
16952         (gnus-cache-update-overview-total-fetched-for):
16953         Bind file-name-coding-system to nnmail-pathname-coding-system.
16954         (gnus-cache-decoded-group-names, gnus-cache-unified-group-names):
16955         New variables.
16956         (gnus-cache-decoded-group-name): New function.
16957         (gnus-cache-file-name): Use it.
16958         (gnus-cache-generate-active): Use non-decoded group name for active.
16959
16960         * gnus-util.el (gnus-write-buffer): Bind file-name-coding-system at the
16961         right place.
16962         (gnus-write-active-file): Don't break non-ASCII group names.
16963
16964         * nntp.el (nntp-marks-changed-p): Bind file-name-coding-system to
16965         nnmail-pathname-coding-system.
16966
16967         * lpath.el: Bind default-file-name-coding-system,
16968         file-name-coding-system and language-info-alist for XEmacs.
16969
16970         * gnus-uu.el (gnus-uu-decode-save): Typo.
16971
16972 2007-07-16  Katsumi Yamaoka  <yamaoka@jpl.org>
16973
16974         * gnus-srvr.el (gnus-server-font-lock-keywords): Quote faces.
16975
16976 2007-07-14  David Kastrup  <dak@gnu.org>
16977
16978         * gnus-art.el (gnus-mime-delete-part): Don't go through article-edit
16979         finishing actions if we did not edit the article.
16980
16981 2007-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
16982
16983         * gnus-agent.el (gnus-agent-rename-group, gnus-agent-delete-group)
16984         (gnus-agent-fetch-articles, gnus-agent-unfetch-articles)
16985         (gnus-agent-crosspost, gnus-agent-backup-overview-buffer)
16986         (gnus-agent-flush-group, gnus-agent-flush-cache)
16987         (gnus-agent-fetch-headers, gnus-agent-load-alist)
16988         (gnus-agent-read-agentview, gnus-agent-expire-group-1)
16989         (gnus-agent-retrieve-headers, gnus-agent-request-article)
16990         (gnus-agent-regenerate-group)
16991         (gnus-agent-update-files-total-fetched-for)
16992         (gnus-agent-update-view-total-fetched-for):
16993         Bind file-name-coding-system to nnmail-pathname-coding-system.
16994         (gnus-agent-group-pathname): Don't encode file names by
16995         nnmail-pathname-coding-system.
16996         (gnus-agent-save-local): Bind file-name-coding-system correctly; bind
16997         coding-system-for-write instead of buffer-file-coding-system to
16998         gnus-agent-file-coding-system.
16999
17000         * gnus-msg.el (gnus-inews-make-draft, gnus-inews-insert-archive-gcc):
17001         Decode group name.
17002
17003         * gnus-srvr.el (gnus-browse-foreign-server): Make group names unibyte.
17004
17005         * gnus-start.el (gnus-update-active-hashtb-from-killed)
17006         (gnus-read-newsrc-el-file): Make group names unibyte.
17007
17008         * nnmail.el (nnmail-group-pathname): Don't encode file names by
17009         nnmail-pathname-coding-system.
17010
17011         * nnrss.el (nnrss-file-coding-system): Doc fix; make it begin with *.
17012         (nnrss-request-delete-group): Bind file-name-coding-system to
17013         nnmail-pathname-coding-system.
17014         (nnrss-read-server-data, nnrss-read-group-data):
17015         Bind file-name-coding-system correctly.
17016         (nnrss-check-group): Pass nnrss-file-coding-system to md5.
17017
17018         * nntp.el: Require gnus-group for the function gnus-group-name-charset.
17019         (nntp-server-to-method-cache): New variable.
17020         (nntp-group-pathname): New function that decodes non-ASCII group names.
17021         (nntp-possibly-create-directory, nntp-marks-changed-p)
17022         (nntp-save-marks, nntp-open-marks): Use it.
17023         (nntp-possibly-create-directory, nntp-open-marks):
17024         Bind file-name-coding-system to nnmail-pathname-coding-system.
17025         (nntp-open-marks): Decode group names when bootstrapping marks.
17026
17027         * rfc2047.el (rfc2047-encode-message-header): Make XEmacs decode
17028         Newsgroups and Followup-To headers.
17029
17030 2007-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
17031
17032         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
17033         (gnus-server-closed-face, gnus-server-denied-face)
17034         (gnus-server-offline-face): Remove variable.
17035         (gnus-server-font-lock-keywords): Use faces that are not aliases.
17036
17037         * gnus-util.el (gnus-message-with-timestamp-1): Use log-message instead
17038         of modifying message-stack directly for XEmacs.
17039
17040         * mm-util.el (mm-decode-coding-string, mm-encode-coding-string)
17041         (mm-decode-coding-region, mm-encode-coding-region): Don't modify string
17042         if the coding-system argument is nil for XEmacs.
17043
17044         * nnrss.el (nnrss-compatible-encoding-alist): Inherit the value of
17045         mm-charset-override-alist.
17046
17047         * rfc2047.el: Don't require base64; require rfc2045 for the function
17048         rfc2045-encode-string.
17049         (rfc2047-encode-parameter): Use rfc2045-encode-string to quote or not
17050         to quote the parameter value.
17051
17052 2007-07-06  Katsumi Yamaoka  <yamaoka@jpl.org>
17053
17054         * gnus-group.el (gnus-group-name-charset): Allow a method of the short
17055         form in gnus-group-name-charset-method-alist.
17056
17057         * gnus-eform.el (gnus-edit-form): Add optional argument layout which
17058         overrides the default layout edit-form.
17059
17060         * gnus-win.el (gnus-buffer-configuration): Add edit-server.
17061
17062         * gnus-srvr.el (gnus-server-edit-server): Use edit-server layout.
17063
17064 2007-07-04  Katsumi Yamaoka  <yamaoka@jpl.org>
17065
17066         * gnus-sum.el (gnus-summary-catchup): Don't recognize cached articles
17067         as unfetched articles.
17068
17069 2007-07-02  Reiner Steib  <Reiner.Steib@gmx.de>
17070
17071         * gnus-start.el (gnus-level-unsubscribed): Improve doc string.
17072
17073 2007-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
17074
17075         * nnagent.el (nnagent-request-set-mark): Also set the marks for the
17076         original back end that keeps marks in the local system.
17077
17078 2007-06-26  Katsumi Yamaoka  <yamaoka@jpl.org>
17079
17080         * gnus-art.el (gnus-article-summary-command-nosave): Don't set the 3rd
17081         arg of pop-to-buffer for XEmacs.
17082         (gnus-article-read-summary-keys): Ditto; don't restore window
17083         configuration if summary command ends up with neither article buffer
17084         nor summary buffer; describe bindings if summary keys end with C-h.
17085
17086 2007-06-22  Katsumi Yamaoka  <yamaoka@jpl.org>
17087
17088         * message.el (message-fix-before-sending): Skip raw message part to be
17089         forwarded while checking illegible text.
17090         (message-forward-make-body-mime, message-forward-make-body):
17091         Mark signed or encrypted raw message as having no illegible text.
17092
17093 2007-06-19  Katsumi Yamaoka  <yamaoka@jpl.org>
17094
17095         * gnus-util.el (gnus-add-timestamp-to-message): New user option.
17096         (gnus-message-with-timestamp-1): New macro.
17097         (gnus-message-with-timestamp): New function.
17098         (gnus-message): Use them.
17099
17100         * nnheader.el (nnheader-message): Use them.
17101
17102 2007-06-16  Reiner Steib  <Reiner.Steib@gmx.de>
17103
17104         * gnus-start.el (gnus-gnus-to-quick-newsrc-format): Add newlines to
17105         .newsrc.eld file.
17106
17107 2007-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
17108
17109         * gnus-agent.el (gnus-agent-fetch-headers)
17110         (gnus-agent-retrieve-headers):
17111         Bind gnus-decode-encoded-address-function to identity.
17112
17113         * nntp.el (nntp-send-xover-command): Recognize an xover command is
17114         available also when the server returns simply a dot.
17115
17116         * gnus-ems.el (gnus-x-splash): Redisplay window before measuring it.
17117
17118 2007-06-08  Katsumi Yamaoka  <yamaoka@jpl.org>
17119
17120         * gnus-ems.el (gnus-x-splash): Fix calculation; error in tty.
17121
17122 2007-06-07  Katsumi Yamaoka  <yamaoka@jpl.org>
17123
17124         * gnus-ems.el (gnus-x-splash): Make it work.
17125
17126         * gnus-start.el (gnus-1): Relax restrictions that prevent gnus-x-splash
17127         from being used.
17128
17129         * lpath.el: Bind line-spacing and tool-bar-mode for XEmacs.
17130
17131 2007-06-05  Katsumi Yamaoka  <yamaoka@jpl.org>
17132
17133         * gnus-xmas.el (gnus-xmas-define): Make gnus-make-overlay ignore the
17134         4th and the 5th arguments.
17135
17136         * gnus-art.el (gnus-insert-mime-button): Make a button overlay without
17137         the front stickiness.
17138         (gnus-article-summary-command-nosave): Correct the order of the
17139         arguments passed to pop-to-buffer.
17140         (gnus-article-read-summary-keys): Ditto; make it work properly when the
17141         summary command ends up with the article buffer.
17142
17143         * mm-decode.el (mm-insert-part): Separate the extracted parts that have
17144         the same faces.
17145
17146 2007-06-07  Juanma Barranquero  <lekktu@gmail.com>
17147
17148         * gnus-art.el (gnus-split-methods): Fix typo in docstring.
17149
17150 2007-06-06  Juanma Barranquero  <lekktu@gmail.com>
17151
17152         * gnus-diary.el (gnus-diary-time-format, gnus-summary-sort-by-schedule):
17153         * gnus-sum.el (gnus-summary-highlight):
17154         * pgg.el (pgg-sign-region, pgg-sign):
17155         * mail-source.el (mail-source-delete-old-incoming-confirm):
17156         * nndiary.el (nndiary-reminders): Fix typos in docstrings.
17157
17158 2007-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
17159
17160         * gnus-art.el (gnus-mime-view-part-externally)
17161         (gnus-mime-view-part-internally): Fix predicate function passed to
17162         completing-read.
17163
17164         * mm-decode.el (mm-image-fit-p): Return t if argument is not an image.
17165
17166         * gnus.el (gnus-update-message-archive-method): Add :version.
17167
17168 2007-06-01  Katsumi Yamaoka  <yamaoka@jpl.org>
17169
17170         * gnus.el (gnus-update-message-archive-method): New variable.
17171
17172         * gnus-start.el (gnus-setup-news): Update saved "archive" method
17173         according to gnus-message-archive-method if
17174         gnus-update-message-archive-method is non-nil.
17175
17176 2007-05-29  Katsumi Yamaoka  <yamaoka@jpl.org>
17177
17178         * gnus-sum.el (gnus-summary-limit-to-address): New function.
17179         Suggested by Loic Dachary <loic@dachary.org>.
17180         (gnus-summary-limit-map, gnus-summary-make-menu-bar): Add it.
17181
17182 2007-05-28  Katsumi Yamaoka  <yamaoka@jpl.org>
17183
17184         * message.el (message-pop-to-buffer): Add switch-function argument.
17185         (message-mail): Pass switch-function argument to it.
17186
17187 2007-05-25  Reiner Steib  <Reiner.Steib@gmx.de>
17188
17189         * mm-decode.el (mm-file-name-rewrite-functions): Make it customizable.
17190         Improve doc string.
17191
17192 2007-05-25  Katsumi Yamaoka  <yamaoka@jpl.org>
17193
17194         * gnus-art.el (gnus-header-from, gnus-header-subject, gnus-header-name)
17195         (gnus-header-content):
17196         * gnus-cite.el (gnus-cite-10):
17197         * gnus-srvr.el (gnus-server-closed):
17198         * gnus.el (gnus-group-mail-1, gnus-group-mail-1-empty)
17199         (gnus-group-mail-2, gnus-group-mail-2-empty, gnus-group-mail-3)
17200         (gnus-group-mail-3-empty, gnus-group-mail-low)
17201         (gnus-group-mail-low-empty, gnus-splash):
17202         * message.el (message-header-to, message-header-cc)
17203         (message-header-subject, message-header-other, message-header-name)
17204         (message-header-xheader, message-separator, message-cited-text)
17205         (message-mml): Lighten colors of faces used for dark background.
17206
17207 2007-05-24  Simon Josefsson  <simon@josefsson.org>
17208
17209         * nnimap.el (nnimap-need-unselect-to-notice-new-mail): Change default
17210         to t as an experiment.  Suggested by Greg Troxel <gdt@work.lexort.com>.
17211
17212 2007-05-24  Katsumi Yamaoka  <yamaoka@jpl.org>
17213
17214         * message.el (message-narrow-to-headers-or-head):
17215         Ignore mail-header-separator in the body.
17216
17217 2007-05-23  Katsumi Yamaoka  <yamaoka@jpl.org>
17218
17219         * mm-decode.el (mm-image-fit-p): Return t if image size is just the
17220         same as window size.
17221
17222 2007-05-22  Kevin Ryde  <user42@zip.com.au>
17223
17224         * message.el (message-font-lock-keywords): Use message-header-xheader
17225         face for "X-Foo", its apparent intended purpose.  Move "X-" pattern
17226         ahead of the anything pattern, to get it recognized.
17227
17228 2007-05-22  Katsumi Yamaoka  <yamaoka@jpl.org>
17229
17230         * dgnushack.el: Autoload ad-add-advice for XEmacs.  bbdb-com.el that
17231         spam.el loads uses it in the compiled defadvice form.
17232
17233 2007-05-12  Michaël Cadilhac  <michael@cadilhac.name>
17234
17235         * gnus-sum.el (gnus-articles-to-read)
17236         (gnus-summary-insert-old-articles): Don't truncate group name for
17237         `read-string'.
17238
17239         * gnus-util.el (gnus-limit-string): Delete this function.
17240
17241         * gnus-sum.el (gnus-simplify-subject-fully):
17242         Use `truncate-string-to-width' instead.
17243
17244 2007-05-11  Michaël Cadilhac  <michael@cadilhac.name>
17245
17246         * gnus-sum.el (gnus-summary-next-group-on-exit): New variable.
17247         Tell if, on summary exit, the next group has to be selected.
17248         (gnus-summary-exit): Use it.
17249
17250 2007-05-10  Reiner Steib  <Reiner.Steib@gmx.de>
17251
17252         * gnus-art.el (gnus-article-mode): Fix comment about displaying
17253         non-break space.
17254
17255 2007-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
17256
17257         * nnfolder.el (nnfolder-request-group, nnfolder-request-create-group):
17258         Check if group is not a directory.
17259         (nnfolder-request-expire-articles): Don't delete articles if the target
17260         group is not available.
17261
17262         * nnml.el (nnml-request-create-group): Properly check if group is not a
17263         file.
17264         (nnml-request-expire-articles): Don't delete articles if the target
17265         group is not available.
17266
17267         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
17268         Don't quote characters that are within parentheses.
17269
17270 2007-05-09  Katsumi Yamaoka  <yamaoka@jpl.org>
17271
17272         * gnus-sum.el (gnus-auto-select-on-ephemeral-exit): New variable.
17273         (gnus-handle-ephemeral-exit): Select article according to it.
17274
17275 2007-05-08  Reiner Steib  <Reiner.Steib@gmx.de>
17276
17277         * message.el (message-insert-formated-citation-line): Remove newline.
17278         (message-citation-line-format): Add final \n here so that the user can
17279         avoid a blank line.
17280
17281 2007-05-03  Dan Christensen  <jdc@uwo.ca>
17282
17283         * nndoc.el (nndoc-type-alist, nndoc-lanl-gov-announce-type-p)
17284         (nndoc-transform-lanl-gov-announce, nndoc-generate-lanl-gov-head):
17285         Update lanl/arXiv support.
17286
17287 2007-05-02  Reiner Steib  <Reiner.Steib@gmx.de>
17288
17289         * gnus.el: Bump version number.
17290
17291 2007-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17292
17293         * gnus.el (gnus-version-number): Bump version.
17294
17295 2007-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
17296
17297         * gnus.el: No Gnus v0.6 is released.
17298
17299 2007-04-27  Didier Verna  <didier@xemacs.org>
17300
17301         * gnus-util.el (gnus-orify-regexp): Move and rename to ...
17302         * gmm-utils.el (gmm-regexp-concat): ... here.
17303         * message.el: Don't require 'gnus-util.
17304         (message-dont-reply-to-names): Handle name change above.
17305         * gnus-sum.el (gnus-ignored-from-addresses): Ditto.
17306
17307 2007-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
17308
17309         * mm-util.el (mm-charset-synonym-alist): Don't make it a user option
17310         since the initial value varies according to the system.
17311
17312 2007-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
17313
17314         * mm-util.el (mm-charset-synonym-alist): Defcustom.
17315
17316 2007-04-25  NAKAJI Hiroyuki  <nakaji@jp.freebsd.org>  (tiny change)
17317
17318         * mm-util.el (mm-charset-synonym-alist): Map iso8859-1 to iso-8859-1.
17319
17320 2007-04-24  Didier Verna  <didier@xemacs.org>
17321
17322         Improve the type of gnus-ignored-from-addresses.
17323         * gnus-util.el (gnus-orify-regexp): New function.
17324         * message.el (gnus-util): Require it.
17325         * message.el (message-dont-reply-to-names): Use gnus-orify-regexp.
17326         * gnus-sum.el (gnus-ignored-from-addresses): New function.
17327         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Use it.
17328
17329 2007-04-24  Didier Verna  <didier@xemacs.org>
17330
17331         * gnus-sum.el:
17332         * gnus-utils.el: Fix some trailing whitespaces.
17333
17334 2007-04-23  Katsumi Yamaoka  <yamaoka@jpl.org>
17335
17336         * gnus-msg.el (gnus-summary-resend-message-edit): Add Gcc header.
17337         (gnus-summary-resend-bounced-mail): Ditto; search whole body for parent
17338         article's Message-ID; refer parent article in summary buffer.
17339
17340         * message.el (message-bounce): Call mime-to-mml.
17341
17342         * dgnushack.el (byte-optimize-form-code-walker): Fix the form which was
17343         not helpful to Emacs 21.1 and 21.2 for detecting a bug that does not
17344         optimize and/or forms properly.
17345
17346 2007-04-22  Reiner Steib  <Reiner.Steib@gmx.de>
17347
17348         * dgnushack.el (with-syntax-table): XEmacs bug has been fixed.  Add
17349         URL.
17350
17351 2007-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
17352
17353         * gnus-msg.el (gnus-summary-supersede-article): Add Gcc header.
17354
17355 2007-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
17356
17357         * gnus-art.el (gnus-mime-strip-charset-parameters): New function.
17358         (gnus-mime-view-part-as-charset): Use it; redisplay subpart currently
17359         displayed of multipart/alternative part if it is invoked from summary
17360         buffer.
17361
17362         * mm-view.el (mm-inline-text-html-render-with-w3m)
17363         (mm-inline-text-html-render-with-w3m-standalone)
17364         (mm-inline-render-with-function): Use mail-parse-charset by default.
17365
17366 2007-04-18  Levin Du  <zslevin@gmail.com>  (tiny change)
17367
17368         * parse-time.el (parse-time-string-chars): Check if CHAR
17369         is less than the length of parse-time-syntax.
17370
17371 2007-04-17  Katsumi Yamaoka  <yamaoka@jpl.org>
17372
17373         * gnus-uu.el (gnus-uu-digest-mail-forward): Pull articles processed
17374         from gnus-newsgroup-processable.
17375
17376 2007-04-16  Didier Verna  <didier@xemacs.org>
17377
17378         * gnus-msg.el (gnus-configure-posting-styles):
17379         Handle message-signature-directory properly with :file syntax.
17380         Reported by "Leo".
17381
17382 2007-04-11  Didier Verna  <didier@xemacs.org>
17383
17384         New user option: message-signature-directory.
17385         * gnus-msg.el (gnus-configure-posting-styles): Support it.
17386         * message.el (message-insert-signature): Ditto.
17387         * message.el (message-signature-file): Doc update.
17388         * message.el (message-signature-directory): New.
17389
17390 2007-04-10  Katsumi Yamaoka  <yamaoka@jpl.org>
17391
17392         * gnus-msg.el (gnus-inews-yank-articles):
17393         Use message-exchange-point-and-mark instead of exchange-point-and-mark.
17394
17395 2007-04-09  Katsumi Yamaoka  <yamaoka@jpl.org>
17396
17397         * message.el (message-yank-original): Make sure cited text ends with
17398         newline; don't exchange point and mark.
17399
17400 2007-04-07  Chong Yidong  <cyd@stupidchicken.com>
17401
17402         * tls.el (open-tls-stream): Properly handle case where there
17403         is no associated buffer.
17404
17405 2007-04-03  Thien-Thi Nguyen  <ttn@gnu.org>
17406
17407         * gnus-msg.el (gnus-inews-yank-articles): Fix bug: After
17408         message-yank-original, make sure (< mark TEXT point).
17409
17410 2007-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
17411
17412         * message.el (message-fill-column): New variable.
17413         (message-mode): Use it.  Add comment on a possible new hook.
17414
17415         * nnmail.el (nnmail-spool-file): Mark as obsolete.
17416         (nnmail-get-new-mail): Reformat.
17417
17418         * gnus-registry.el (gnus-registry-cache-save): Add FIXME comment.
17419
17420         * gmm-utils.el: Fix Commentary.
17421         (gmm-tool-bar-from-list): Fix typo in doc string.
17422
17423 2007-03-27  Thien-Thi Nguyen  <ttn@gnu.org>
17424
17425         * message.el (message-yank-original): Don't switch point and mark
17426         unnecessarily to put point and mark as documented.
17427
17428 2007-03-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17429
17430         * message.el (message-put-addresses-in-ecomplete): Only fetch headers
17431         from the message heads.
17432
17433 2007-03-25  Kevin Greiner  <kevin.greiner@compsol.cc>
17434
17435         * gnus-art.el (gnus-article-set-window-start): Do nothing when the
17436         article buffer does not have a window.  This may not be the best
17437         solution but is certainly better than setting the start of the null,
17438         that is the current, window.
17439
17440 2007-03-24  Reiner Steib  <Reiner.Steib@gmx.de>
17441
17442         * gnus-draft.el (gnus-draft-setup-hook): New hook.
17443         (gnus-draft-setup): Run it.
17444
17445         * gnus-score.el (gnus-inhibit-slow-scoring): New variable, renamed from
17446         gnus-score-fast-scoring.  Allow regexp.
17447         (gnus-score-headers): Use it.
17448
17449         * gnus-util.el (gnus-emacs-version): Include "no MULE" in no-MULE
17450         XEmacs.
17451
17452         * gnus-art.el (gnus-article-browse-html-article): Fix typo in doc
17453         string.
17454         (gnus-button-alist): Also catch `<f1> k ...'.
17455         (gnus-treat-display-x-face): Fix doc string.
17456
17457 2007-03-25  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17458
17459         * gnus-msg.el (gnus-setup-message, gnus-inews-add-send-actions): Move
17460         evaluation of gnus-extended-version to ensure correct generation of the
17461         User-Agent header when message-generate-headers-first is used.
17462
17463 2007-03-24  Simon Josefsson  <simon@josefsson.org>
17464
17465         * hashcash.el (hashcash-generate-payment-async): Don't crash if
17466         hashcash-path is nil.  Don't call callback with incorrect number of
17467         parameters if val is 0.
17468
17469 2007-03-20  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17470
17471         * message.el (message-required-news-headers):
17472         * gnus-util.el (gnus-intern-safe): Fix typo in docstring.
17473
17474 2007-03-18  Thien-Thi Nguyen  <ttn@gnu.org>
17475
17476         * tls.el (open-tls-stream): In handshake-waiting loop,
17477         don't wait more if there is output available to process.
17478
17479 2007-03-17  Thien-Thi Nguyen  <ttn@gnu.org>
17480
17481         * tls.el (tls-program): Doc fix.
17482
17483 2007-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
17484
17485         * message.el (message-generate-new-buffers): Change the meaning of the
17486         nil value; add `standard' to the choices; treat t as `unique'; improve
17487         doc string.
17488         (gnus-select-frame-set-input-focus): Autoload.
17489         (message-buffer-name): Search for the existing message buffer if
17490         message-generate-new-buffers is nil or `standard'; treat the value t of
17491         message-generate-new-buffers as `unique'.
17492         (message-pop-to-buffer): Raise the frame already displaying the message
17493         buffer; clear the echo area after querying.
17494         (message-setup): Pass the `continue' argument to compose-mail.
17495         (message-mail): Prefer `switch-function' if it is given; search for the
17496         existing message buffer if the `continue' argument is non-nil; pass
17497         continue and switch-function arguments to compose-mail by way of
17498         message-setup.
17499         (message-mail-other-window): Adjust argument of message-setup.
17500         (message-mail-other-frame): Ditto.
17501
17502 2007-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>
17503
17504         * gnus-cite.el (font-lock-set-defaults): Autoload it for Emacs.
17505         (gnus-message-citation-mode): Require font-lock for XEmacs; make sure
17506         to turn font-lock on when turning gnus-message-citation-mode on.
17507
17508 2007-03-06  Daiki Ueno  <ueno@unixuser.org>
17509
17510         * mml-smime.el (mml-smime-use): New variable; default to use openssl.
17511         (mml-smime-function-alist): New variable; add epg as the backend.
17512         * mml-sec.el (mml-smime-sign): Don't require mml-smime, autoload
17513         mml-smime- functions instead.
17514         * mm-view.el: Require smime.
17515
17516 2007-03-05  Didier Verna  <didier@xemacs.org>
17517
17518         * gnus-topic.el (gnus-topic-hierarchical-parameters): Perform merging
17519         instead of just inheritance for posting styles.
17520         * gnus.el (gnus-group-fast-parameter): Fix typo in comment.
17521
17522 2007-02-24  Chris Moore  <dooglus@gmail.com>
17523
17524         * pgg-pgp5.el (pgg-pgp5-encrypt-region):
17525         * pgg-pgp.el (pgg-pgp-encrypt-region):
17526         * pgg-gpg.el (pgg-gpg-encrypt-region):
17527         Check pgg-encrypt-for-me if no other recipients.
17528
17529 2007-02-24  John Paul Wallington  <jpw@pobox.com>
17530
17531         * tls.el (tls-certtool-program): Fix custom type.
17532
17533 2007-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
17534
17535         * gnus-cite.el (gnus-message-search-citation-line): Use point-at-bol
17536         and point-at-eol instead of line-(beginning|end)-position.
17537
17538         * assistant.el (assistant-parse-buffer): Ditto.
17539
17540         * netrc.el (netrc-parse-services): Ditto.
17541
17542 2007-02-28  Daiki Ueno  <ueno@unixuser.org>
17543
17544         * mml2015.el (mml2015-epg-find-usable-key): New function.
17545         (mml2015-epg-sign): Use it.
17546         (mml2015-epg-encrypt): Use it.
17547
17548 2007-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
17549
17550         * message.el (message-make-in-reply-to): Quote name containing
17551         non-ASCII characters.  It will make the RFC2047 encoder cause an error
17552         if there are special characters.  Reported by NAKAJI Hiroyuki
17553         <nakaji@jp.freebsd.org>.
17554
17555 2007-02-27  Didier Verna  <didier@xemacs.org>
17556
17557         Include the group parameters as well as the topic ones in the
17558         inheritance filter process.
17559         * gnus-topic.el (gnus-topic-hierarchical-parameters): New optional
17560         argument GROUP-PARAMS-LIST.
17561         * gnus-topic.el (gnus-group-topic-parameters): Use it.
17562
17563 2007-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
17564
17565         * nntp.el (nntp-never-echoes-commands)
17566         (nntp-open-connection-functions-never-echo-commands): New variables.
17567         (nntp-send-command): Use them.
17568
17569 2007-02-20  Daiki Ueno  <ueno@unixuser.org>
17570
17571         * mml2015.el (mml2015-epg-verify): Simplify.
17572
17573 2007-02-19  Katsumi Yamaoka  <yamaoka@jpl.org>
17574
17575         * mml.el (mml-content-disposition-alist): New user option.
17576         (mml-content-disposition): New function.
17577         (mml-insert-mime-headers, mml-minibuffer-read-disposition): Use it.
17578         (mml-attach-file, mml-dnd-attach-file): Pass file name to it.
17579
17580 2007-02-19  Daiki Ueno  <ueno@unixuser.org>
17581
17582         * mml2015.el (mml2015-epg-verify): Convert LF to CRLF before signature
17583         verification.
17584
17585 2007-02-15  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17586
17587         * nnweb.el (nnweb-google-parse-1): Fix date parsing to also match on
17588         articles posted in the last 24 hours.
17589
17590 2007-02-14  Chong Yidong  <cyd@stupidchicken.com>
17591
17592         * smiley.el (smiley-regexp-alist): Add "dead" smiley.
17593
17594 2007-02-14  Michaël Cadilhac  <michael@cadilhac.name>
17595
17596         * nntp.el (nntp-send-command): Don't wait for echoes when
17597         nntp-open-ssl-stream is used.
17598
17599 2007-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
17600
17601         * gnus-cite.el (gnus-test-font-lock-add-keywords)
17602         (gnus-message-add-citation-keywords)
17603         (gnus-message-remove-citation-keywords): Remove.
17604         (gnus-message-citation-mode): Instead of modifying font-lock-keywords
17605         directly, make the variables in font-lock-defaults buffer-local, add
17606         gnus-message-citation-keywords to them and then update the value of
17607         font-lock-keywords.
17608
17609 2007-02-09  Katsumi Yamaoka  <yamaoka@jpl.org>
17610
17611         * message.el (message-cite-original-1): Don't call
17612         gnus-article-highlight-citation.
17613
17614         * gnus-cite.el (gnus-cite-parse): Work with two or more MS-type
17615         citations; fix line count.
17616
17617 2007-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
17618
17619         * gnus-cite.el (gnus-test-font-lock-add-keywords): New function.
17620         (gnus-message-add-citation-keywords)
17621         (gnus-message-remove-citation-keywords): Use it; fix the emulating
17622         versions of font-lock-add-keywords and font-lock-remove-keywords to
17623         work with XEmacs correctly.
17624
17625 2007-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
17626
17627         * gnus-cite.el (gnus-cite-face-list): Set the values of
17628         gnus-message-max-citation-depth and gnus-message-citation-keywords.
17629         (gnus-message-max-citation-depth): Use defvar rather than defconst.
17630         (gnus-message-cite-prefix-regexp): New variable.
17631         (gnus-message-search-citation-line): Use it; protect against long
17632         citation prefix; fill match data with nil rather than 0 for XEmacs; set
17633         the 0th match data for Emacs.
17634         (gnus-message-citation-keywords): Set LAXMATCH flag in every HIGHLIGHT.
17635         (gnus-message-add-citation-keywords): Append keywords rather than
17636         prepending; emulate font-lock-add-keywords if it is not available.
17637         (gnus-message-remove-citation-keywords):
17638         Emulate font-lock-remove-keywords if it is not available.
17639
17640         * gnus-msg.el (gnus-message-highlight-citation): Default to t.
17641
17642         * message.el (message-cite-prefix-regexp): Set the value of
17643         gnus-message-cite-prefix-regexp.
17644
17645 2007-02-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17646
17647         * nnweb.el (nnweb-google-parse-1): Update parser.
17648
17649 2007-01-29  Juanma Barranquero  <lekktu@gmail.com>
17650
17651         * gnus-art.el (gnus-button-prefer-mid-or-mail): Fix typo in docstring.
17652
17653 2007-01-28  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17654
17655         * nnslashdot.el (nnslashdot-request-article): Update end-of-article
17656         regexp.
17657
17658 2007-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
17659
17660         * uudecode.el (uudecode-string-to-multibyte): New function emulating
17661         string-to-multibyte.
17662         (uudecode-decode-region-internal): Use it.
17663
17664         * lpath.el: Fbind string-as-multibyte for XEmacs.
17665
17666 2007-01-23  Reiner Steib  <Reiner.Steib@gmx.de>
17667
17668         * gnus-score.el (gnus-home-score-file, gnus-home-adapt-file):
17669         Fix custom choice.
17670
17671         * gnus-art.el (gnus-signature-limit): Fix custom choice.
17672
17673 2007-01-22  Daiki Ueno  <ueno@unixuser.org>
17674
17675         * mm-util.el (mm-inhibit-file-name-handlers): Add epa-file-handler.
17676
17677         * mm-decode.el (mm-save-part-to-file): Use `mm-write-region' instead of
17678         `write-region' to respect `mm-inhibit-file-name-handlers'.
17679
17680 2007-01-19  Reiner Steib  <Reiner.Steib@gmx.de>
17681
17682         * nnsoup.el (nnsoup-directory, nnsoup-packer, nnsoup-packet-directory):
17683         Use gnus-home-directory instead of "~/" or "$HOME".
17684
17685 2007-01-17  Teodor Zlatanov  <tzz@lifelogs.com>
17686
17687         * encrypt.el (encrypt-insert-file-contents): Add better prompt
17688         to mention filename.
17689         Add comments at beginning regarding usage.
17690         (encrypt-write-file-contents): Change interactive so a string is
17691         acceptable.  If the file has no associated model, show an error instead
17692         of a nonsense prompt.
17693
17694 2007-01-16  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
17695
17696         * spam.el (spam-bsfilter-ham-switch): Fix typo.
17697         Thanks to Yoshihiko Yamada for kind notification of this typo.
17698
17699 2007-01-12  Kenichi Handa  <handa@m17n.org>
17700
17701         * uudecode.el (uudecode-decode-region-internal): Make it work in a
17702         multibyte buffer.
17703
17704 2007-01-14  Reiner Steib  <Reiner.Steib@gmx.de>
17705
17706         * gnus-score.el (gnus-score-fast-scoring): New variable.
17707         (gnus-score-headers): Use it.
17708
17709         * gnus-sum.el (gnus-auto-select-first): Improve doc string.
17710
17711         * message.el (message-cite-original-1):
17712         Call gnus-article-highlight-citation if requested.
17713         (message-make-from): Allow name and address as optional arguments.
17714
17715         * gnus-cite.el (gnus-article-highlight-citation): Add SAME-BUFFER arg.
17716
17717         * gnus-art.el (gnus-article-browse-html-article): Add warning about web
17718         bugs to doc string.
17719         (gnus-button-alist): Add mid\\|message-id.
17720         (gnus-button-fetch-group): Extend for use in
17721         `browse-url-browser-function'.
17722         (gnus-button-url-regexp): Try to catch paired parentheses like in
17723         Wikipedia URLs.
17724
17725         * gnus-sum.el (gnus-summary-reparent-children): Another doc string fix.
17726         Suggested by Simon Krahnke <overlord@gmx.li>.
17727
17728 2007-01-13  Romain Francoise  <romain@orebokech.com>
17729
17730         * nnml.el (nnml-use-compressed-files): Fix typo in docstring.
17731         Update copyright.
17732
17733 2007-01-13  Patric Mueller  <bhaak@bigfoot.com>  (tiny change)
17734
17735         * gnus-sum.el (gnus-summary-reparent-children): Fix typo in doc string.
17736
17737 2007-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
17738
17739         * gnus-registry.el (gnus-registry-unfollowed-groups)
17740         (gnus-registry-split-fancy-with-parent): Fix documentation.
17741
17742 2007-01-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17743
17744         * spam-report.el (spam-report-gmane-internal): Speed up spam reporting
17745         from nnweb groups.
17746
17747 2006-12-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17748
17749         * spam-report.el (spam-report-gmane-internal): Add necessary "/" to
17750         Xref urls.  Erase buffer before requesting head.
17751
17752         * mm-decode.el (mm-display-external): Use itimer function for XEmacs.
17753
17754 2007-01-07  Reiner Steib  <Reiner.Steib@gmx.de>
17755
17756         * gnus-soup.el (gnus-soup): New custom group.  Make user variables
17757         customizable.
17758
17759 2007-01-05  Daiki Ueno  <ueno@unixuser.org>
17760
17761         * mml2015.el (mml2015-epg-sign): Ask user whether to skip or abort if
17762         no signing key is found.
17763         (mml2015-epg-encrypt): Ask user whether to skip or abort if
17764         no encrypting and/or signing key is found.
17765
17766 2007-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
17767
17768         * spam-report.el (spam-report-gmane-spam): Remove redundant message.
17769
17770 2007-01-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17771
17772         * nnweb.el (nnweb-gmane-create-mapping): Put back code to merge the
17773         headers read from disk with the ones newly found in the current search.
17774         This should no longer cause problems, because the article numbers in
17775         Gmane's `nov.php' output are ignored since the previous change.
17776
17777 2007-01-02  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17778
17779         * gmm-utils.el (gmm-tool-bar-style): Fix custom type.
17780
17781 2007-01-01  Katsumi Yamaoka  <yamaoka@jpl.org>
17782
17783         * lpath.el: Fbind clear-string and cp-supported-codepages; don't fbind
17784         replace-regexp-in-string; bind url-version; fbind display-images-p and
17785         timer-set-function for XEmacs; bind timer-list for XEmacs; fbind
17786         find-face and set-itimer-function for Emacs; bind itimer-list for
17787         Emacs.
17788
17789         * mm-decode.el (mm-display-external): Use itimer function for XEmacs.
17790
17791 2007-01-01  Romain Francoise  <romain@orebokech.com>
17792
17793         * gnus-sum.el (gnus-summary-make-menu-bar): Fix typo.
17794
17795 2006-12-31  Steve Youngs  <steve@sxemacs.org>
17796
17797         * gnus-cite.el: Load easy-mmode at compile time for (S)XEmacs to get
17798         `define-minor-mode' macro definition expanded properly.
17799         (gnus-message-citation-mode): This is now OK for (S)XEmacs so don't
17800         exclude it there.
17801
17802         * gnus-msg.el (gnus-message-highlight-citation): Revert Reiner's patch
17803         of 2006-12-30.  The default is nil on (S)XEmacs already because of the
17804         `fboundp' test.
17805         (gnus-message-citation-mode): Revert Reiner's patch of 2006-12-30.
17806         This is OK to autoload in (S)XEmacs now.
17807
17808 2006-12-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17809
17810         * gnus-sum.el (gnus-summary-limit-to-singletons): New command and
17811         keystroke.
17812         (gnus-summary-limit-to-singletons): Fix typo.
17813
17814         * spam-report.el (spam-report-gmane-internal): Fall back on Xref if all
17815         else fails.
17816
17817 2006-12-30  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17818
17819         * gnus-cite.el (turn-off-gnus-message-citation-mode): Fix typo in
17820         docstring.
17821
17822         * gnus-sum.el (gnus-summary-insert-ticked-articles): New command.
17823         (gnus-summary-make-menu-bar, gnus-summary-buffer-map): Bind it.
17824         (gnus-summary-insert-dormant-articles): Fix typo in message.
17825
17826 2006-12-30  Reiner Steib  <Reiner.Steib@gmx.de>
17827
17828         * gnus-msg.el (gnus-message-highlight-citation): Ensure default to be
17829         nil for XEmacs.
17830         (gnus-message-citation-mode): Don't autoload in XEmacs.
17831
17832         * gnus-cite.el (gnus-message-citation-mode): Don't define in XEmacs.
17833
17834 2006-12-29  Jouni K. Seppänen  <jks@iki.fi>
17835
17836         * nnimap.el (nnimap-expunge-search-string):
17837         Mention nnimap-search-uids-not-since-is-evil in docstring.
17838
17839 2006-12-28  Reiner Steib  <Reiner.Steib@gmx.de>
17840
17841         * spam.el: Revert to make-obsolete-variable because
17842         define-obsolete-variable-alias is not supported in Emacs 21.
17843
17844         * spam.el (spam-ifile-path, spam-ifile-database-path)
17845         (spam-bogofilter-path): Use define-obsolete-variable-alias instead of
17846         make-obsolete-variable.
17847         (spam-bsfilter-path, spam-bsfilter-program)
17848         (spam-spamassassin-path, spam-spamassassin-program)
17849         (spam-sa-learn-path, spam-sa-learn-program): Rename variables.
17850         Don't use "path" inappropriately.
17851         (spam-check-spamassassin, spam-spamassassin-register-with-sa-learn)
17852         (spam-check-bsfilter, spam-bsfilter-register-with-bsfilter): Use new
17853         variable names.
17854
17855 2006-12-28  Daiki Ueno  <ueno@unixuser.org>
17856
17857         * gnus-sum.el (gnus-summary-next-article): Make sure we are in the
17858         summary buffer.
17859
17860         * password.el (password-cache-remove): Use clear-string to burn
17861         password, if available.
17862
17863 2006-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
17864
17865         * gnus-msg.el (gnus-message-citation-mode): Fix autoload.
17866
17867         * gnus-cite.el (gnus-message-highlight-citation): Move to gnus-msg.el.
17868
17869         * gnus-msg.el (gnus-setup-message): Add gnus-message-citation-mode.
17870         (gnus-message-highlight-citation): Move defcustom here from
17871         gnus-cite.el.
17872         (gnus-message-citation-mode): Autoload.
17873
17874         * gnus-cite.el: Adjust Oliver's code to Gnus namespace.  Add some
17875         checks to make it compile with XEmacs.
17876         (gnus-message-citation-mode): New minor mode.
17877         (gnus-message-max-citation-depth, gnus-message-citation-keywords)
17878         (gnus-message-highlight-citation): New variables.
17879         (gnus-message-search-citation-line)
17880         (gnus-message-add-citation-keywords)
17881         (gnus-message-remove-citation-keywords)
17882         (turn-on-gnus-message-citation-mode)
17883         (turn-off-gnus-message-citation-mode): New functions.
17884
17885 2006-12-26  Oliver Scholz  <epameinondas@gmx.de>
17886
17887         * gnus-cite.el: Enable highlighting of different citation levels in
17888         message-mode.
17889
17890 2006-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
17891
17892         * message.el (message-make-fqdn): Fix comment.
17893         (message-bogus-system-names): Add ".local".
17894
17895         * spam.el (spam-ifile-path, spam-ifile-program)
17896         (spam-ifile-database-path, spam-ifile-database)
17897         (spam-bogofilter-path, spam-bogofilter-program): Rename variables.
17898         Don't use "path" inappropriately.
17899         (spam-spamoracle-database, spam-get-ifile-database-parameter): Fix doc
17900         strings.
17901         (spam-check-ifile, spam-ifile-register-with-ifile)
17902         (spam-check-bogofilter, spam-bogofilter-register-with-bogofilter):
17903         Use new variable names.
17904
17905         * gnus-art.el (gnus-treat-display-x-face, gnus-treat-display-face)
17906         (gnus-treat-display-smileys): Simplify using
17907         gnus-image-type-available-p.
17908
17909         * gnus-ems.el (gnus-image-type-available-p): Use display-images-p if
17910         available.
17911
17912         * gnus-xmas.el (gnus-xmas-image-type-available-p):
17913         Use `display-images-p' if available.
17914
17915 2006-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
17916
17917         * nnrss.el (nnrss-fetch): Replace buffer's contents with the decoded
17918         one after turning on the buffer's multibyteness instead of decoding
17919         them directly in the unibyte buffer that causes unexpected conversion
17920         in Emacs 23 (unicode).
17921
17922 2006-12-21  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17923
17924         * message.el (message-generate-hashcash): Fix custom type.
17925
17926 2006-12-20  Reiner Steib  <Reiner.Steib@gmx.de>
17927
17928         * gnus-sum.el (gnus-summary-recenter): Remove debug messages.
17929
17930 2006-12-20  Reiner Steib  <Reiner.Steib@gmx.de>
17931
17932         * gnus-group.el (gnus-group-tool-bar-gnome): Exchange connect and
17933         disconnect icons.  Add help text.
17934
17935 2006-12-20  Teodor Zlatanov  <tzz@lifelogs.com>
17936
17937         * spam.el (spam-extra-header-to-number): CRM114 spam score is
17938         negated to be consistent with the others we handle.
17939
17940 2006-12-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17941
17942         * gnus-art.el (gnus-article-setup-buffer): Actually set the local
17943         version of gnus-summary-buffer to something, so that we can use two
17944         article buffers at the same time.
17945
17946 2006-12-18  Teodor Zlatanov  <tzz@lifelogs.com>
17947
17948         * spam.el (spam-necessary-extra-headers): Make spam-use-regex-headers
17949         trigger all the extra headers.
17950         (spam-extra-header-to-number): Don't require spam-use-crm114 for header
17951         sorting.
17952
17953 2006-12-14  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17954
17955         * nnweb.el (nnweb-gmane-create-mapping): Keep the mapping stable for
17956         solid groups.
17957
17958 2006-12-17  Chong Yidong  <cyd@stupidchicken.com>
17959
17960         * pgg-gpg.el (pgg-gpg-use-agent): Default to t.
17961
17962 2006-12-13  Reiner Steib  <Reiner.Steib@gmx.de>
17963
17964         * legacy-gnus-agent.el: Add Copyright notice.
17965
17966 2006-12-12  Chong Yidong  <cyd@stupidchicken.com>
17967
17968         * gnus-sum.el (gnus-make-thread-indent-array): Fix last change.
17969
17970 2006-12-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17971
17972         * nnweb.el (nnweb-gmane-search): Placeholder TOPDOC setting.
17973
17974         * gnus-sum.el (gnus-summary-recenter): Force setting the window start
17975         to make it work reliably in CVS Emacs.
17976         (gnus-summary-limit-strange-charsets-predicate)
17977         (gnus-summary-limit-to-predicate): New functions.
17978
17979 2006-12-08  Chong Yidong  <cyd@stupidchicken.com>
17980
17981         * gnus-sum.el (gnus-make-thread-indent-array): New optional arg
17982         specifying array size.
17983         (gnus-summary-insert-line, gnus-summary-prepare-threads): Regrow indent
17984         array if it is too small.
17985         (gnus-sort-threads-recursive): Rename from gnus-sort-thread-1.
17986         (gnus-sort-threads-loop): New function.
17987
17988 2006-12-06  Chris Moore  <dooglus@gmail.com>
17989
17990         * gnus-sum.el (gnus-sort-threads, gnus-summary-limit-children):
17991         Use `max' to avoid the value of `max-lisp-eval-depth' decreasing.
17992
17993 2006-12-04  Jouni K. Seppänen  <jks@iki.fi>
17994
17995         * mm-url.el (mm-url-predefined-programs): Call curl with correct
17996         options.
17997
17998 2006-12-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17999
18000         * spam-report.el (spam-report-url-ping-plain): Wait for output to avoid
18001         DOS-ing the recipient.
18002
18003         * nnweb.el (nnweb-gmane-create-mapping): Use the article number from
18004         the headers when creating the mapping to avoid mismappings.
18005         (nnweb-gmane-create-mapping): Always nix out old mapping.
18006
18007 2006-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
18008
18009         * message.el (message-signed-or-encrypted-p): Bind mm-decrypt-option
18010         and mm-verify-option to never.
18011
18012 2006-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
18013
18014         * message.el (message-signed-or-encrypted-p): New function.
18015         (message-forward-make-body): Use it.
18016
18017         * mml2015.el (mml2015-pgg-clear-verify, mml2015-epg-clear-verify):
18018         Replace encode-coding-string with mm-encode-coding-string.
18019
18020 2006-11-29  Katsumi Yamaoka  <yamaoka@jpl.org>
18021
18022         * nneething.el (nneething-decode-file-name):
18023         Replace decode-coding-string with mm-decode-coding-string.
18024
18025         * gnus-int.el (gnus-open-server): Say failed server's name.
18026
18027 2006-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
18028
18029         * pgg-pgp.el (pgg-pgp-process-region): Change `args' from a list of
18030         strings to a single string.  Quote `errors-file-name'.
18031         (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region, pgg-pgp-sign-region)
18032         (pgg-pgp-verify-region, pgg-pgp-insert-key, pgg-pgp-snarf-keys-region):
18033         Adjust calls.  Use `shell-quote-argument'.
18034
18035 2006-11-24  Juanma Barranquero  <lekktu@gmail.com>
18036
18037         * gnus-agent.el (gnus-agent-expire-unagentized-dirs)
18038         (gnus-agent-regenerate-group): Fix space/tab mixup in messages.
18039
18040         * gnus-art.el (gnus-article-x-face-command, gnus-numeric-save-name):
18041         * gnus-group.el (gnus-group-sort-function, gnus-group-line-format)
18042         (gnus-group-mode, gnus-group-read-group, gnus-group-delete-group)
18043         (gnus-group-make-directory-group, gnus-group-transpose-groups):
18044         * gnus-start.el (gnus-options-subscribe, gnus-options-not-subscribe)
18045         (gnus-subscribe-newsgroup, gnus-1):
18046         * gnus-sum.el (gnus-summary-make-false-root, gnus-make-threads):
18047         * gnus.el (gnus-nntp-server, gnus-use-cross-reference)
18048         (gnus-valid-select-methods, total-expire, gnus-summary-line-format)
18049         (gnus-group-read-only-p): Fix space/tab mixup in docstrings.
18050
18051 2006-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18052
18053         * gnus-sum.el (gnus-summary-limit-to-headers): New command and
18054         keystroke.
18055         (gnus-summary-limit-to-bodies): Implement headersp.
18056
18057 2006-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18058
18059         * dns.el (query-dns): Protect against "Process dns deleted" strings.
18060
18061 2006-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
18062
18063         * mm-util.el (mm-string-to-multibyte): Alias to identity in XEmacs.
18064
18065 2006-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18066
18067         * message.el (message-generate-hashcash): Expand range of values to
18068         include `opportunistic'.
18069         (message-send-mail): Use it.
18070
18071 2006-11-18  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18072
18073         * mm-uu.el (mm-uu-pgp-signed-extract-1): Make last fix more thorough
18074         and comment it.
18075
18076         * nnslashdot.el (nnslashdot-retrieve-headers-1): Update regexp.
18077
18078 2006-11-15  Reiner Steib  <Reiner.Steib@gmx.de>
18079
18080         * gnus-util.el (gnus-extract-address-components): Improve comment.
18081
18082 2006-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
18083
18084         * gnus-util.el (gnus-extract-address-components): Work with address in
18085         which the name portion contains @.
18086
18087         * lpath.el: Fbind custom-autoload.
18088
18089 2006-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
18090
18091         * gnus.el (gnus-start): Move custom group up.
18092         (gnus-select-method): Don't autoload, but make it available for
18093         `customize-variable'.
18094         (gnus-getenv-nntpserver): Don't autoload.
18095
18096 2006-11-14  Teodor Zlatanov  <tzz@lifelogs.com>
18097
18098         * spam.el: Revert to 7.82 (removed changes since 2006-10-16).
18099
18100 2006-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
18101
18102         * message.el (message-sendmail-extra-arguments): New variable.
18103         (message-send-mail-with-sendmail): Use it.
18104
18105 2006-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
18106
18107         * mml.el (mml-generate-mime-1): Use mm-string-as-unibyte instead of
18108         mm-with-unibyte-current-buffer to make string unibyte.
18109
18110         * mm-decode.el (mm-insert-part): Use mm-string-to-multibyte instead of
18111         mm-string-as-multibyte.
18112
18113 2006-11-14  Daiki Ueno  <ueno@unixuser.org>
18114
18115         * mml2015.el (mml2015-epg-sign): Prefix "pgp-" to a micalg value.
18116         Reported by Werner Koch <wk@gnupg.org>.
18117
18118 2006-11-14  Daiki Ueno  <ueno@p360>
18119
18120         * mml2015.el: Autoload epa-select-keys when compiling.
18121
18122 2006-11-13  Daiki Ueno  <ueno@unixuser.org>
18123
18124         * mml2015.el (mml2015-epg-sign): Save the signing keys in
18125         message-options.
18126         (mml2015-epg-encrypt): Save the recipient keys in message-options.
18127
18128 2006-11-13  Daiki Ueno  <ueno@unixuser.org>
18129
18130         * mml2015.el (mml2015-epg-encrypt): Remove backward compatibility for
18131         EasyPG (< 0.0.6).
18132         (mml2015-always-trust): New user option.
18133         (mml2015-epg-passphrase-callback): Display key ID on the passphrase
18134         prompt.
18135
18136 2006-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
18137
18138         * nntp.el (nntp-authinfo-force): New variable.
18139         (nntp-send-authinfo): Use it.
18140
18141 2006-11-09  Reiner Steib  <Reiner.Steib@gmx.de>
18142
18143         * message.el (message-strip-subject-encoded-words): Allow _not_ to
18144         decode encoded words.  Improve prompt.  Add comment about forwarding.
18145         (message-replacement-char): Move up.
18146
18147 2006-11-08  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
18148
18149         * gnus-sum.el (gnus-summary-catchup): Use gnus-sorted-intersection
18150         instead of gnus-intersection because arguments of gnus-sorted-nunion
18151         must be sorted.  This avoids corruption of gnus-newsgroup-unreads.
18152
18153 2006-11-07  Reiner Steib  <Reiner.Steib@gmx.de>
18154
18155         * message.el (message-strip-subject-encoded-words): Reformat prompt.
18156         (message-simplify-subject-functions):
18157         Enable message-strip-subject-encoded-words by default.
18158
18159 2006-11-06  Reiner Steib  <Reiner.Steib@gmx.de>
18160
18161         * message.el (message-strip-subject-encoded-words): New function.
18162         (message-simplify-subject-functions): New variable.
18163         (message-simplify-subject): Use it.  Fix typo in doc string.
18164         Support message-strip-subject-encoded-words.
18165
18166 2006-11-03  Juanma Barranquero  <lekktu@gmail.com>
18167
18168         * gnus-diary.el (gnus-diary-delay-format-function):
18169         * nndiary.el (nndiary-reminders):
18170         * nnsoup.el (nnsoup-always-save): Use "non-nil" in docstrings.
18171
18172 2006-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
18173
18174         * gnus-art.el (article-hide-boring-headers): Fetch date from
18175         gnus-original-article-buffer to avoid problems with localized date
18176         strings.
18177
18178 2006-10-30  Katsumi Yamaoka  <yamaoka@jpl.org>
18179
18180         * html2text.el (html2text-format-tags): Avoid infloop on open tags.
18181
18182 2006-10-29  Reiner Steib  <Reiner.Steib@gmx.de>
18183
18184         * mm-util.el (mm-codepage-iso-8859-list, mm-codepage-ibm-list):
18185         New variables.
18186         (mm-setup-codepage-iso-8859, mm-setup-codepage-ibm): New functions.
18187         (mm-charset-synonym-alist): Move some entries to
18188         mm-codepage-iso-8859-list.
18189         (mm-charset-synonym-alist, mm-charset-override-alist):
18190         Add iso-8859-8/windows-1255 and iso-8859-9/windows-1254.
18191
18192 2006-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
18193
18194         * gnus-sum.el (gnus-set-mode-line): Quote % in group name.
18195
18196 2006-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
18197
18198         * gnus-agent.el (gnus-agent-make-mode-line-string): Make it compatible
18199         with Emacs 21 and XEmacs.
18200
18201 2006-10-27  Teodor Zlatanov  <tzz@lifelogs.com>
18202
18203         * spam.el (spam-parse-address): New function for better parsing,
18204         catching errors, etc.
18205         (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list): Use it.
18206
18207 2006-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
18208
18209         * mm-view.el: Add interactive arg to html2text autoload.
18210
18211 2006-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
18212
18213         * gnus-sum.el (gnus-summary-move-article): Use no-encode for `B B'.
18214
18215 2006-10-24  Reiner Steib  <Reiner.Steib@gmx.de>
18216
18217         * mm-util.el (mm-codepage-iso-8859-list, mm-codepage-ibm-list):
18218         New variables.
18219         (mm-setup-codepage-iso-8859, mm-setup-codepage-ibm): New functions.
18220         (mm-charset-synonym-alist): Move some entries to
18221         mm-codepage-iso-8859-list.
18222
18223         * gnus.el (gnus-getenv-nntpserver, gnus-select-method): Autoload.
18224
18225 2006-10-23  Reiner Steib  <Reiner.Steib@gmx.de>
18226
18227         * message.el (message-citation-line-format)
18228         (message-insert-formated-citation-line): Fix implementation of %E, %N
18229         and %n according to the doc string.
18230
18231 2006-10-20  Teodor Zlatanov  <tzz@lifelogs.com>
18232
18233         * spam.el (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list):
18234         Use car-safe to avoid bad parses.
18235
18236 2006-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
18237
18238         * gnus-group.el (gnus-group-make-doc-group): Work for non-ASCII group
18239         names.
18240
18241         * gnus-sum.el (gnus-select-newsgroup): Decode group name.
18242
18243 2006-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
18244
18245         * gnus-draft.el (gnus-draft-edit-message): Make sure to remove Date
18246         header.
18247
18248         * message.el (message-draft-headers): Add Date.
18249         (message-headers-to-generate): Fix typo in docstring.
18250
18251         * nndraft.el (nndraft-required-headers): New variable.
18252         (nndraft-generate-headers): Use it.
18253
18254         * gnus-registry.el (gnus-registry-wash-for-keywords): Bind `word'.
18255
18256 2006-10-16  Teodor Zlatanov  <tzz@lifelogs.com>
18257
18258         * gnus-registry.el (gnus-registry-wash-for-keywords)
18259         (gnus-registry-find-keywords): New functions to allow easy searching of
18260         articles that are in the registry.
18261
18262 2006-10-16  Teodor Zlatanov  <tzz@lifelogs.com>
18263
18264         * spam.el (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list):
18265         Use ietf-drums-parse-address instead of gnus-extract-address-components.
18266         Reported by Damien Elmes <damien@repose.cx>.
18267
18268 2006-10-19  Reiner Steib  <Reiner.Steib@gmx.de>
18269
18270         * gnus.el (gnus-mime): Remove unused custom group.
18271
18272 2006-10-13  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18273
18274         * mm-uu.el (mm-uu-pgp-signed-extract-1): Use RFC 2440 definition of
18275         "blank line" when searching for end of armor headers.
18276
18277 2006-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
18278
18279         * gmm-utils.el (gmm-write-region): Fix variable name.
18280
18281 2006-10-10  Reiner Steib  <Reiner.Steib@gmx.de>
18282
18283         * gmm-utils.el (gmm-write-region): New function based on compatibility
18284         code from `mm-make-temp-file'.
18285
18286         * mm-util.el (mm-make-temp-file): Use `gmm-write-region'.
18287
18288         * nnmaildir.el (nnmaildir--update-nov)
18289         (nnmaildir-request-replace-article, nnmaildir-request-accept-article):
18290         Use `gmm-write-region'.
18291
18292 2006-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
18293
18294         * mm-util.el (mm-charset-synonym-alist, mm-charset-override-alist):
18295         Add iso-8859-8/windows-1255 and iso-8859-9/windows-1254.
18296
18297         * nnheader.el (nnheader-find-file-noselect): Inhibit version-control.
18298
18299         * message.el (message-replacement-char): New variable.
18300         (message-fix-before-sending): Use it.
18301         (message-simplify-subject): New function to remove duplicate code.
18302         (message-reply, message-followup): Use it.
18303
18304         * gnus-sum.el (gnus-summary-make-menu-bar):
18305         Clarify gnus-summary-limit-to-articles.
18306
18307 2006-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
18308
18309         * gnus-util.el (gnus-with-local-quit): New macro.
18310
18311         * gnus-demon.el (gnus-demon): Replace with-local-quit with it.
18312
18313 2006-10-02  Teodor Zlatanov  <tzz@lifelogs.com>
18314
18315         * gnus-util.el (gnus-string-remove-all-properties): Another fix to
18316         ignore non-string data.
18317
18318 2006-09-29  Teodor Zlatanov  <tzz@lifelogs.com>
18319
18320         * gnus-util.el (gnus-string-remove-all-properties): Fix to ignore
18321         non-string data (needs to be done in the registry too).
18322
18323 2006-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
18324
18325         * gnus-registry.el (gnus-registry-save, gnus-registry-cache-save)
18326         (gnus-registry-remove-alist-text-properties, gnus-registry-action)
18327         (gnus-registry-split-fancy-with-parent)
18328         (gnus-registry-fetch-simplified-message-subject-fast)
18329         (gnus-registry-fetch-sender-fast, gnus-registry-store-extra-entry):
18330         Remove text properties on ingress into the registry and when it's saved.
18331         (gnus-registry-clean-empty-function): Fix bug with cleaning the
18332         registry from entries with no groups.
18333
18334 2006-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
18335
18336         * gnus-util.el (gnus-string-remove-all-properties): Add utility
18337         function to remove string properties.
18338
18339 2006-09-28  Reiner Steib  <Reiner.Steib@gmx.de>
18340
18341         * gmm-utils.el (gmm): Adjust custom version.
18342
18343         * mm-util.el (mm-charset-override-alist, mm-charset-eval-alist):
18344         Adjust custom version.
18345
18346         * gnus-draft.el (gnus-draft-mode): Don't call `mml-mode'.
18347
18348 2006-09-27  Reiner Steib  <Reiner.Steib@gmx.de>
18349
18350         * gnus-art.el (gnus-insert-prev-page-button)
18351         (gnus-insert-next-page-button): Simplify.  Reformat.
18352
18353 2006-09-27  Maxime Edouard Robert Froumentin  <max@lapin-bleu.net>
18354
18355         * gnus-art.el (gnus-insert-prev-page-button)
18356         (gnus-insert-next-page-button): Apply gnus-article-button-face.
18357
18358 2006-09-25  Chong Yidong  <cyd@stupidchicken.com>
18359
18360         * gnus-demon.el (gnus-demon): Use with-local-quit to avoid hangs.
18361
18362 2006-09-20  Maxime Edouard Robert Froumentin  <max@lapin-bleu.net>
18363
18364         * gnus-art.el (gnus-insert-mime-button)
18365         (gnus-insert-mime-security-button):
18366         Apply gnus-article-button-face to MIME and security buttons.
18367
18368 2006-09-20  Reiner Steib  <Reiner.Steib@gmx.de>
18369
18370         * gnus-art.el (gnus-button-url-regexp): Try to make the value more
18371         readable.
18372
18373 2006-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
18374
18375         * dgnushack.el: Autoload browse-url-of-file for XEmacs.
18376
18377 2006-09-20  Steve Youngs  <steve@sxemacs.org>
18378
18379         * gnus-art.el (gnus-article-browse-html-parts): They're files, so use
18380         `browse-url-of-file' instead of `browse-url'.
18381
18382 2006-09-19  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18383
18384         * nnslashdot.el (nnslashdot-request-article): Update end-of-article
18385         regexp.  Articles containing quotation were cut prematurely.
18386
18387 2006-09-16  Katsumi Yamaoka  <yamaoka@jpl.org>
18388
18389         * message.el (message-cite-original-1): Use nobody by default for the
18390         value of From header.
18391         (message-reply): Ditto.
18392
18393 2006-09-11  Daiki Ueno  <ueno@unixuser.org>
18394
18395         * mml2015.el (mml2015-epg-clear-decrypt): Don't append verify results
18396         to the gnus-info.  This fixes a bug of inline-PGP message verification.
18397         Reported by Michael Piotrowski <mxp@dynalabs.de>.
18398
18399 2006-09-09  Reiner Steib  <Reiner.Steib@gmx.de>
18400
18401         * pop3.el (pop3-leave-mail-on-server): Mention problem of duplicate
18402         mails in the doc string.  Add some URLs in comment.
18403         (pop3-movemail): Warn about pop3-leave-mail-on-server.
18404
18405 2006-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
18406
18407         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings): Fix
18408         backslashes handling and the way to find boundaries of quoted strings.
18409
18410 2006-09-07  Daiki Ueno  <ueno@unixuser.org>
18411
18412         * mml1991.el (mml1991-epg-encrypt): Simply throw an error if
18413         mml1991-encrypt-to-self is set and mml1991-signers is not set.
18414         * mml2015.el (mml2015-epg-encrypt): Simply throw an error if
18415         mml2015-encrypt-to-self is set and mml2015-signers is not set.
18416
18417 2006-09-06  Reiner Steib  <Reiner.Steib@gmx.de>
18418
18419         * gnus-art.el (gnus-button-marker-list): Move up.  Convert comment into
18420         doc string.
18421         (gnus-button-regexp, gnus-button-last): Remove unused variables.
18422
18423 2006-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
18424
18425         * lpath.el: Fbind epg-check-configuration.
18426
18427 2006-09-06  Simon Josefsson  <jas@extundo.com>
18428
18429         * mml2015.el (mml2015-use): Doc fix, mention epg.
18430
18431 2006-09-06  Daiki Ueno  <ueno@unixuser.org>
18432
18433         * mml2015.el (mml2015-use): Default to epg, if available.
18434
18435 2006-09-06  Daiki Ueno  <ueno@unixuser.org>
18436
18437         * mml1991.el (mml1991-epg-sign): Don't lookup a private key by
18438         message-sender.
18439         (mml1991-epg-encrypt): Ditto.
18440         * mml2015.el (mml2015-epg-sign): Don't lookup a private key by
18441         message-sender.
18442         (mml2015-epg-encrypt): Ditto.
18443
18444 2006-09-04  Chong Yidong  <cyd@stupidchicken.com>
18445
18446         * message.el (message-send-mail-with-sendmail): Look for sendmail in
18447         several common directories.
18448
18449 2006-09-05  Daiki Ueno  <ueno@unixuser.org>
18450
18451         * mml2015.el (mml2015-epg-encrypt): Expand group configuration.
18452         * mml1991.el (mml1991-epg-encrypt): Expand group configuration.
18453
18454 2006-09-04  Katsumi Yamaoka  <yamaoka@jpl.org>
18455
18456         * gnus-art.el (article-decode-encoded-words): Make it fast.
18457
18458 2006-09-04  Katsumi Yamaoka  <yamaoka@jpl.org>
18459
18460         * gnus-art.el (article-decode-encoded-words): Don't infloop in XEmacs.
18461
18462         * rfc2047.el (rfc2047-strip-backslashes-in-quoted-strings): Decode `\\'
18463         in quoted string into `\'.
18464
18465 2006-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
18466
18467         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
18468         Use standard-syntax-table.
18469
18470 2006-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
18471
18472         * gnus-art.el (gnus-decode-address-function): New variable.
18473         (article-decode-encoded-words): Use it to decode headers which are
18474         assumed to contain addresses.
18475         (gnus-mime-delete-part): Remove useless `or'.
18476
18477         * gnus-sum.el (gnus-decode-encoded-address-function): New variable.
18478         (gnus-summary-from-or-to-or-newsgroups): Use it to decode To header.
18479         (gnus-nov-parse-line): Use it to decode From header.
18480         (gnus-get-newsgroup-headers): Ditto.
18481         (gnus-summary-enter-digest-group): Use it to decode `to-address'.
18482
18483         * mail-parse.el (mail-decode-encoded-address-region): New alias.
18484         (mail-decode-encoded-address-string): New alias.
18485
18486         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
18487         New function.
18488         (rfc2047-encode-message-header, rfc2047-encode-region): Use it.
18489         (rfc2047-strip-backslashes-in-quoted-strings): New fnction.
18490         (rfc2047-decode-region): Use it; add optional argument `address-mime'.
18491         (rfc2047-decode-string): Ditto.
18492         (rfc2047-decode-address-region): New function.
18493         (rfc2047-decode-address-string): New function.
18494
18495 2006-08-31  Reiner Steib  <Reiner.Steib@gmx.de>
18496
18497         * message.el (message-caesar-buffer-body): Allow rotating headers.
18498
18499         * gnus-sum.el (gnus-summary-caesar-message): Allow rotating headers.
18500
18501         * message.el (message-insert-formated-citation-line): Fix %f.
18502         Reported by Torsten Bronger <bronger@physik.rwth-aachen.de> .
18503
18504 2006-08-18  Katsumi Yamaoka  <yamaoka@jpl.org>
18505
18506         * gnus-bookmark.el (gnus-bookmark-file-coding-system): New variable.
18507         (gnus-bookmark-mouse-available-p): New macro.
18508         (gnus-bookmark-bmenu-list): Use it; use gnus-mouse-2.
18509         (gnus-bookmark-bmenu-show-infos): Use it.
18510         (gnus-bookmark-insert-details): Use it; use gnus-mouse-2.
18511         (gnus-bookmark-bmenu-hide-infos): Ditto.
18512         (gnus-bookmark-remove-properties): New function.
18513         (gnus-bookmark-set, gnus-bookmark-make-cell): Use it.
18514         (gnus-bookmark-set-bookmark-name): Don't use 2nd arg of split-string.
18515         (gnus-bookmark-write-file): Bind coding-system-for-write.
18516         (gnus-bookmark-insert-file-format-version-stamp): Add coding cookie.
18517         (gnus-bookmark-jump): Make completing-read work with XEmacs; activate
18518         group before selecting it.
18519         (gnus-bookmark-get-bookmark): Use assoc instead of assoc-string.
18520         (gnus-bookmark-bmenu-mode-map): Bind `q' to bury-buffer instead of
18521         quit-window if it is not available; use gnus-mouse-2 and bind it to
18522         gnus-bookmark-bmenu-select-by-mouse.
18523         (gnus-bookmark-show-details): Remove unused variable `details-list'.
18524         (gnus-bookmark-bmenu-select-by-mouse): New function.
18525
18526 2006-08-13  Romain Francoise  <romain@orebokech.com>
18527
18528         * mm-extern.el (mm-extern-mail-server): End `y-or-n-p' prompt with a
18529         space.
18530
18531 2006-08-10  Romain Francoise  <romain@orebokech.com>
18532
18533         * dns-mode.el: Alias `zone-mode' to `dns-mode'.
18534         (dns-mode-soa-auto-increment-serial): New user option.
18535         (dns-mode-soa-maybe-increment-serial): New function.
18536         (dns-mode): Add the latter to `write-contents-functions'.
18537
18538 2006-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
18539
18540         * compface.el (uncompface): Use binary rather than raw-text-unix.
18541
18542 2006-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
18543
18544         * compface.el (uncompface): Make sure the eol conversion doesn't take
18545         place when communicating with the external programs.
18546         Reported by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
18547
18548 2006-07-31  Katsumi Yamaoka  <yamaoka@jpl.org>
18549
18550         * nnheader.el (nnheader-insert-head): Fix typo in comment.
18551
18552 2006-07-31  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18553
18554         * nnweb.el (nnweb-google-parse-1): Update regexp for author and date.
18555         Make it more robust by parsing author and date independently.
18556
18557 2006-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
18558
18559         * nnheader.el (nnheader-insert-head): Make it work with Mac as well.
18560
18561 2006-07-28  Daiki Ueno  <ueno@unixuser.org>
18562
18563         * mml2015.el (mml2015-epg-sign): If mml2015-signers is not set, use the
18564         first matching secret key.
18565         (mml2015-epg-encrypt): Ditto.
18566
18567         * mml1991.el (mml1991-epg-sign): If mml1991-signers is not set, use the
18568         first matching secret key.
18569         (mml1991-epg-encrypt): Ditto.
18570
18571         * mml2015.el (mml2015-encrypt-to-self): New user option.
18572         (mml2015-epg-encrypt): Append mml2015-signers to recipients list if
18573         mml2015-epg-encrypt-to-self is set.
18574
18575         * mml1991.el (mml1991-encrypt-to-self): New variable.
18576         (mml1991-epg-encrypt): Append mml1991-signers to recipients list if
18577         mml1991-epg-encrypt-to-self is set.
18578
18579         * mml2015.el (mml2015-signers): New user option.
18580         (mml2015-epg-sign): Reflect the value of mml2015-signers.
18581         (mml2015-epg-encrypt): Allow to select signing keys.
18582
18583         * mml1991.el (mml1991-signers): New variable.
18584         (mml1991-epg-sign): Reflect the value of mml1991-signers.
18585         (mml1991-epg-encrypt): Allow to select signing keys.
18586
18587 2006-07-27  Katsumi Yamaoka  <yamaoka@jpl.org>
18588
18589         * nnheader.el (nnheader-insert-head): Make it work even if the file
18590         uses CRLF for the line-break code.
18591
18592 2006-07-25  Daiki Ueno  <ueno@unixuser.org>
18593
18594         * mml2015.el: Require mml-sec instead of password.
18595         (mml2015-verbose): Inherit the default value from mml-secure-verbose.
18596         (mml2015-cache-passphrase): Inherit the default value from
18597         mml-secure-cache-passphrase.
18598         (mml2015-passphrase-cache-expiry): Inherit the default value from
18599         mml-secure-passphrase-cache-expiry.
18600
18601         * mml1991.el: Require mml-sec instead of password.
18602         (mml1991-verbose): Inherit the default value from mml-secure-verbose.
18603         (mml1991-cache-passphrase): Inherit the default value from
18604         mml-secure-cache-passphrase.
18605         (mml1991-passphrase-cache-expiry): Inherit the default value from
18606         mml-secure-passphrase-cache-expiry.
18607
18608         * mml-sec.el: Require password.
18609         (mml-secure-verbose): New user option.
18610         (mml-secure-cache-passphrase): New user option.
18611         (mml-secure-passphrase-cache-expiry): New user option.
18612
18613 2006-07-24  David Smith  <davidsmith@acm.org>  (tiny change)
18614             Andreas Vögele  <andreas@altroot.de>   (tiny change)
18615
18616         * pgg-def.el (pgg-truncate-key-identifier):
18617         Truncate the key ID to 8 letters from the end.
18618
18619 2006-07-19  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18620
18621         * mm-url.el (mm-url-insert-file-contents): Inhibit Connection: close
18622         workaround for the url package included with Emacs.
18623
18624         * nnweb.el (nnweb-google-create-mapping): Update regexp.
18625
18626 2006-07-19  Katsumi Yamaoka  <yamaoka@jpl.org>
18627
18628         * gnus-sum.el (gnus-select-newsgroup): Setup the article buffer
18629         correctly.  This fixes a bug caused by the 2006-05-12 change.
18630
18631 2006-07-18  Karl Fogel  <kfogel@red-bean.com>
18632
18633         * nnmail.el (nnmail-article-group): If splitting raises an error, give
18634         some information about the error when saying that the `bogus' mail
18635         group will be used.
18636
18637 2006-07-17  Reiner Steib  <Reiner.Steib@gmx.de>
18638
18639         * gnus-sum.el (gnus-summary-delete-article): Don't use TAB in doc
18640         string.
18641
18642 2006-07-16  NAKAJI Hiroyuki  <nakaji@heimat.jp>  (tiny change)
18643
18644         * mm-util.el (mm-charset-synonym-alist): Map windows-31j to cp932.
18645
18646 2006-07-14  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18647
18648         * gnus-start.el (gnus-subscribe-options-newsgroup-method): Doc fix.
18649
18650 2006-07-10  Daiki Ueno  <ueno@unixuser.org>
18651
18652         * mml1991.el (mml1991-function-alist): Add epg.
18653         (mml1991-epg-passphrase-callback, mml1991-epg-sign)
18654         (mml1991-epg-encrypt): New functions.
18655
18656 2006-07-10  Daiki Ueno  <ueno@unixuser.org>
18657
18658         * mml2015.el (mml2015-verbose): New variable.
18659         (mml2015-cache-passphrase): Ditto.
18660         (mml2015-passphrase-cache-expiry): Ditto.
18661         (mml2015-function-alist): Add epg.
18662         (mml2015-epg-passphrase-callback, mml2015-epg-decrypt)
18663         (mml2015-epg-clear-decrypt, mml2015-epg-verify)
18664         (mml2015-epg-clear-verify, mml2015-epg-sign, mml2015-epg-encrypt):
18665         New functions.
18666
18667 2006-07-08  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18668
18669         * message.el (message-cite-original-1): Preserve region when removing
18670         quoted text due to X-No-Archive in order to avoid bogus attribution
18671         when citing multiple messages.
18672
18673 2006-06-27  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18674
18675         * gnus-group.el (gnus-group-sort-by-unread): Fix typo.
18676         Reported by Kenneth Jacker <khj@be.cs.appstate.edu>.
18677
18678 2006-06-26  Reiner Steib  <Reiner.Steib@gmx.de>
18679
18680         * gnus-diary.el (gnus-user-format-function-d)
18681         (gnus-user-format-function-D): Autoload.
18682
18683         * imap.el (Commentary): Fix typo.
18684
18685         * gnus-util.el (kill-empty-logs, gnus-byte-compile): Remove anonymous
18686         2006-04-22 contribution.
18687
18688 2006-06-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18689
18690         * gnus.el (gnus-valid-select-methods): Revert last change for nnweb.
18691         It didn't really fix the bogosity I'm seeing with solid web groups.
18692
18693 2006-06-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18694
18695         * gnus.el (gnus-valid-select-methods): Declare nnweb with 'address.
18696         Since revision 6.95 (2003-01-05) of gnus-group.el, solid web groups are
18697         created using server names.  If we use the feature without declaring
18698         it, Gnus does not properly manage server and group state.
18699
18700         * nnweb.el (nnweb-google-search): Respect nnweb-max-hits as upper
18701         bound.
18702
18703 2006-06-25  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18704
18705         * gnus.el (gnus-find-method-for-group): On killed/unknown groups, try
18706         looking up the method using GROUP's prefix before inventing a new one.
18707         It is used on killed/unknown groups in various places where returning
18708         an all-new method isn't expected by the caller.
18709
18710         * gnus-util.el (gnus-group-server): Fix for empty virtual server names
18711         and match semantics of gnus-group-real-prefix.
18712
18713 2006-06-22  Reiner Steib  <Reiner.Steib@gmx.de>
18714
18715         * nnmail.el (nnmail-broken-references-mailers): New variable.
18716         (nnmail-ignore-broken-references): New function generalizing
18717         nnmail-fix-eudora-headers.
18718         (nnmail-fix-eudora-headers): Now obsolete.
18719
18720         * gnus-art.el (gnus-button-handle-custom):
18721         Support `customize-apropos*'.
18722
18723 2006-06-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18724
18725         * gnus-art.el (article-hide-headers): Inhibit read-only stuff.
18726
18727         * gnus-group.el (gnus-fetch-group): Document ARTICLES and select those
18728         articles.
18729
18730 2006-06-21  Reiner Steib  <Reiner.Steib@gmx.de>
18731
18732         * message.el (message-cite-reply-above): New variable.
18733         (message-yank-original): Use it.
18734
18735 2006-06-20  Katsumi Yamaoka  <yamaoka@jpl.org>
18736
18737         * rfc2231.el (rfc2231-parse-string): Allow `*'s in parameter values.
18738
18739 2006-06-20  Reiner Steib  <Reiner.Steib@gmx.de>
18740
18741         * gnus-bookmark.el (gnus-bookmark-jump): Don't mark unrelated articles
18742         as read.
18743
18744         * gnus-group.el (gnus-group-quick-select-group): Add GROUP argument.
18745
18746 2006-06-19  Reiner Steib  <Reiner.Steib@gmx.de>
18747
18748         * gnus-bookmark.el: Fix Copyright, keywords, whitespace, etc.
18749         (gnus-bookmark-default-file): Use gnus-directory.
18750         (gnus-bookmark-bmenu-file-column, gnus-bookmark-use-annotations):
18751         Remove "*" in doc string.
18752         (gnus-bookmark-write-file): Simplify.
18753         (gnus-bookmark-maybe-sort-alist): Use `when'.
18754         (gnus-bookmark-get-bookmark): Fix typo in doc string.
18755         (gnus-bookmark-set-bookmark-name, gnus-bookmark-get-bookmark):
18756         Add FIXME about Emacs 21 and XEmacs compatibility.
18757         (gnus-bookmark-set-bookmark-name): Use `gnus-replace-in-string' for
18758         compatibility.
18759         (gnus-bookmark-bmenu-mode): Use `gnus-run-mode-hooks' for
18760         compatibility.
18761         (gnus-bookmark-menu-heading): Fix version.
18762
18763 2006-06-19  Bastien Guerry  <bzg@altern.org>
18764
18765         * gnus-bookmark.el: New file.
18766
18767 2006-06-19  Katsumi Yamaoka  <yamaoka@jpl.org>
18768
18769         * message.el (message-syntax-checks): Doc fix.
18770
18771 2006-06-17  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18772
18773         * gnus-srvr.el (gnus-browse-unsubscribe-group): Don't subscribe
18774         unsubscribed groups as if they were killed ones.  It causes duplicate
18775         entries in gnus-newsrc-alist.
18776
18777 2006-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
18778
18779         * message.el (message-syntax-checks): Doc fix.
18780         (message-send-mail): Add check for continuation headers.
18781         (message-check-news-header-syntax): Fix regexp used to check for
18782         continuation headers.
18783
18784 2006-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
18785
18786         * gnus-art.el (gnus-display-mime): Make sure body ends with newline.
18787
18788 2006-06-11  Reiner Steib  <Reiner.Steib@gmx.de>
18789
18790         * gnus-art.el (gnus-article-toggle-truncate-lines): Fix code.
18791
18792 2006-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
18793
18794         * gnus-art.el (gnus-article-truncate-lines): Default to the value of
18795         default-truncate-lines.
18796
18797 2006-06-06  Katsumi Yamaoka  <yamaoka@jpl.org>
18798
18799         * mm-util.el (mm-mime-mule-charset-alist): Use unicode-precedence-list
18800         to fill the utf-8 entry.
18801
18802         * lpath.el: Fbind unicode-precedence-list.
18803
18804 2006-06-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18805
18806         * nnweb.el (nnweb-google-parse-1): Update regexp for author and date.
18807
18808 2006-05-30  Kevin Greiner  <kevin.greiner@compsol.cc>
18809
18810         * gnus-agent.el (directory-files-and-attributes): Move all the way
18811         forward (the third and final move).
18812         (gnus-agent-read-agentview): Trap reconstruction errors due to
18813         nonexistent directory.  Handle by returning nil.
18814
18815 2006-05-30  Didier Verna  <didier@xemacs.org>
18816
18817         * message.el (message-dont-reply-to-names): Update the custom type.
18818         * message.el (message-dont-reply-to-names): New defsubst: potentially
18819         convert a list of regexps into a single one.
18820         * message.el (message-get-reply-headers): Use it.
18821         * nnmail.el (nnmail-fancy-expiry-target): Ditto.
18822
18823 2006-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
18824
18825         * gnus-agent.el (directory-files-and-attributes): Move forward.
18826
18827 2006-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
18828
18829         * gnus-ml.el (gnus-mailing-list-subscribe)
18830         (gnus-mailing-list-unsubscribe, gnus-mailing-list-owner)
18831         (gnus-mailing-list-message): Fix doc strings.
18832
18833 2006-05-29  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18834
18835         * gnus-ml.el (gnus-mailing-list-message): Use gnus-url-mailto instead
18836         of doing it manually.
18837
18838 2006-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
18839
18840         * gnus-art.el (gnus-article-toggle-truncate-lines): Fix typo in
18841         comment.
18842
18843 2006-05-29  Kevin Greiner  <kevin.greiner@compsol.cc>
18844
18845         * gnus-agent.el: Add gnus-agent-flush* to purge agent info.
18846         (gnus-agent-read-agentview): Fix handling of end-of-file error.
18847         (gnus-agent-read-local): All symbols allocated in my-obarray.
18848         (gnus-agent-set-local): Skip invalid entries (min and/or max is nil).
18849         (gnus-agent-regenerate-group): Check numeric names to see if they are
18850         messages or groups.
18851         (gnus-agent-total-fetched-for): Ignore 'dummy.group' (there should be a
18852         better way of do this...)
18853
18854         * gnus-cache.el (gnus-agent-total-fetched-for):
18855         Ignore 'dummy.group' (there should be a better way of do this...)
18856
18857 2006-05-29  Katsumi Yamaoka  <yamaoka@jpl.org>
18858
18859         * gnus-art.el (gnus-save-all-headers): Mention it might be overridden.
18860         (gnus-saved-headers): Ditto.
18861         (gnus-default-article-saver): Mention functions may have properties.
18862         (gnus-article-save): Override gnus-save-all-headers and
18863         gnus-saved-headers by :headers property which saver function may have.
18864         (gnus-summary-save-in-file): Add :headers property.
18865         (gnus-summary-write-to-file): Ditto.
18866
18867         * gnus-sum.el (gnus-summary-save-article): Bind
18868         gnus-prompt-before-saving to t when saving many articles in a file;
18869         always show all headers.
18870
18871         * dgnushack.el: Autoload toggle-truncate-lines for XEmacs.
18872
18873 2006-05-26  Reiner Steib  <Reiner.Steib@gmx.de>
18874
18875         * deuglify.el (gnus-outlook-rearrange-article): Add missing citation
18876         marks.
18877
18878         * message.el (message-indent-citation): Add optional arguments to allow
18879         using it outside of message buffers.
18880
18881         * gnus-art.el (gnus-article-unfold-long-headers): New variable.
18882         (gnus-article-treat-unfold-headers): Use it.
18883         (gnus-article-truncate-lines): New variable.
18884         (gnus-article-mode): Use it.
18885         (gnus-article-toggle-truncate-lines): New function.
18886
18887         * gnus-sum.el (gnus-summary-wash-map, gnus-summary-make-menu-bar):
18888         Add gnus-article-toggle-truncate-lines.
18889
18890         * uudecode.el (uudecode-decode-region-external): nil isn't a valid
18891         coding system in XEmacs, use binary.
18892
18893 2006-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
18894
18895         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): Don't edit
18896         after-load-alist.
18897
18898         * gnus-art.el (gnus-summary-save-in-file): Use property to specify
18899         this function should save decoded articles.
18900         (gnus-summary-write-to-file): Use property to specify this function
18901         should save decoded articles and specify gnus-summary-save-in-file
18902         should be used to save articles other than the first one when saving
18903         many articles.
18904         (gnus-summary-save-body-in-file): Use property to specify this
18905         function should save decoded articles.
18906         (gnus-summary-write-body-to-file): Use property to specify this
18907         function should save decoded articles and specify
18908         gnus-summary-save-body-in-file should be used to save articles other
18909         than the first one when saving many articles.
18910
18911         * gnus-sum.el (gnus-summary-save-article): Simplify.
18912
18913 2006-05-25  Katsumi Yamaoka  <yamaoka@jpl.org>
18914
18915         * gnus-art.el (gnus-default-article-saver):
18916         Add gnus-summary-write-body-to-file.
18917         (gnus-article-save-coding-system): Don't use coding system object
18918         in XEmacs.
18919         (gnus-read-save-file-name): Add optional `dir-var' argument which
18920         specifies directory in which files are saved; work even if optional
18921         `variable' argument is not specified.
18922         (gnus-summary-write-to-file): Read file name.
18923         (gnus-summary-save-body-in-file): Add optional `overwrite' argument.
18924         (gnus-summary-write-body-to-file): New function.
18925
18926         * gnus-sum.el (gnus-newsgroup-last-directory): New variable.
18927         (gnus-summary-local-variables): Add it.
18928         (gnus-summary-save-map): Add gnus-summary-write-article-body-file.
18929         (gnus-summary-save-article): Remove optional `decode' argument;
18930         determine whether to decode articles by the value of
18931         gnus-default-article-saver; when saving many files using
18932         gnus-summary-write-to-file or gnus-summary-write-body-to-file, use
18933         it first and use gnus-summary-save-in-file or
18934         gnus-summary-save-body-in-file thereafter unless
18935         gnus-prompt-before-saving is always; move point to article which
18936         will be saved.
18937         (gnus-summary-save-article-file): Revert.
18938         (gnus-summary-write-article-file): Revert.
18939         (gnus-summary-save-article-body-file): Revert.
18940         (gnus-summary-write-article-body-file): New function.
18941
18942 2006-05-24  Katsumi Yamaoka  <yamaoka@jpl.org>
18943
18944         * gnus-art.el (gnus-default-article-saver): Doc fix.
18945         (gnus-article-save-coding-system): Move from gnus-sum.el, rename
18946         from gnus-summary-save-article-coding-system, and default to a
18947         certain coding system.
18948         (gnus-output-to-file): Add coding cookie and encode text according
18949         to gnus-article-save-coding-system; don't use mm-append-to-file.
18950
18951         * gnus-sum.el (gnus-summary-save-article-coding-system): Move to
18952         gnus-art.el and rename to gnus-article-save-coding-system.
18953         (gnus-summary-save-article): Require gnus-art; don't show all
18954         headers if it decodes articles; don't add coding cookie here;
18955         don't bind mm-text-coding-system-for-write.
18956         (gnus-summary-save-article-file): Save decoded articles.
18957         (gnus-summary-write-article-file): When saving many files, use
18958         gnus-summary-write-to-file first and gnus-summary-save-in-file
18959         thereafter unless gnus-prompt-before-saving is always.
18960         (gnus-summary-save-article-body-file): Save decoded articles.
18961
18962         * lpath.el: Fbind select-safe-coding-system for XEmacs.
18963
18964 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
18965
18966         * nnrss.el (nnrss-check-group): Bind hash-index.
18967
18968 2006-05-23  Michaël Cadilhac  <michael.cadilhac@lrde.org>
18969
18970         * nnrss.el (nnrss-check-group): Use the md5sum of the whole RSS item as
18971         its hash index.  Store this hash in `nnrss-group-data'.
18972         (nnrss-read-group-data): Update accordingly.
18973
18974 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
18975
18976         * gnus-art.el (gnus-button-alist): Improve gnus-button-handle-symbol
18977         entry.
18978
18979         * gnus-sum.el (gnus-summary-make-menu-bar):
18980         Add gnus-article-browse-html-article.
18981
18982 2006-05-23  Hynek Schlawack  <hynek@ularx.de>
18983
18984         * gnus-sum.el (gnus-summary-mime-map):
18985         Add gnus-article-browse-html-article.
18986
18987         * gnus-art.el (gnus-article-browse-html-article): Remove comment.
18988
18989 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
18990
18991         * gnus-sum.el (gnus-summary-save-article-coding-system): Offer some
18992         suitable coding systems in customize.
18993
18994 2006-05-22  Reiner Steib  <Reiner.Steib@gmx.de>
18995
18996         * mail-source.el (mail-sources): Fix custom type.
18997
18998 2006-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
18999
19000         * gnus-sum.el (gnus-summary-save-article-mail): Clarify doc string.
19001         (gnus-summary-expire-articles-now): Shorten prompt.
19002
19003         * gmm-utils.el (wid-edit): Require.
19004         (defun-gmm): Rename from `gmm-defun-compat'.
19005         (gmm-image-search-load-path): Use it.
19006         (gmm-image-load-path-for-library): Use it.  Sync with `mh-compat.el'.
19007
19008 2006-05-17  Katsumi Yamaoka  <yamaoka@jpl.org>
19009
19010         * gnus-sum.el (gnus-summary-save-article-coding-system):
19011         New variable.
19012         (gnus-summary-save-article): Add optional `decode' argument.
19013         If it is set and gnus-summary-save-article-coding-system is non-nil,
19014         save decoded article.
19015         (gnus-summary-write-article-file): Save decoded article if
19016         gnus-summary-save-article-coding-system is non-nil.
19017
19018         * ecomplete.el (ecomplete-database-file-coding-system): Fix custom
19019         type.
19020
19021 2006-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
19022
19023         * gnus-art.el (easy-menu-define): Use :active instead of :enable.
19024
19025 2006-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
19026
19027         * gnus-art.el (gnus-article-setup-buffer): Go to summary buffer
19028         first to test gnus-single-article-buffer which may be buffer-local.
19029
19030         * gnus-sum.el (gnus-summary-setup-buffer):
19031         Make gnus-single-article-buffer buffer-local and nil in ephemeral
19032         group; make gnus-article-buffer, gnus-article-current, and
19033         gnus-original-article-buffer always buffer-local.
19034         (gnus-summary-exit): Kill article buffer belonging to ephemeral
19035         group.
19036         (gnus-handle-ephemeral-exit): Don't move to next summary line.
19037
19038 2006-05-08  Reiner Steib  <Reiner.Steib@gmx.de>
19039
19040         * nnml.el (nnml-request-compact-group): Compressed files might not
19041         have .gz extension.
19042
19043 2006-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
19044
19045         * mm-decode.el (mm-dissect-buffer): Remove spurious double assignment.
19046         (mm-copy-to-buffer): Use with-current-buffer.
19047         (mm-display-part): Simplify.
19048         (mm-inlinable-p): Add optional arg `type'.
19049
19050 2006-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
19051
19052         * gnus-art.el (gnus-mime-view-part-as-type): Add optional PRED arg.
19053         (gnus-mime-view-part-externally, gnus-mime-view-part-internally):
19054         Try harder to show the attachment internally or externally using
19055         gnus-mime-view-part-as-type.
19056
19057 2006-05-02  Reiner Steib  <Reiner.Steib@gmx.de>
19058
19059         * message.el (message-from-style, message-signature-separator)
19060         (message-user-organization-file, message-send-mail-function)
19061         (message-citation-line-function, message-yank-prefix)
19062         (message-indent-citation-function, message-signature)
19063         (message-signature-file, message-signature-insert-empty-line):
19064         Remove autoloads.
19065
19066         * gnus-art.el (gnus-buttonized-mime-types):
19067         Remove "multipart/signed".  Revert 2006-04-26 change.
19068
19069 2006-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19070
19071         * gnus.el (gnus-version-number): Bump version.
19072
19073 2006-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
19074
19075         * gnus.el: No Gnus v0.5 is released.
19076
19077 2006-04-30  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
19078
19079         * nnweb.el (nnweb-request-article): Do proper xwfu encoding when
19080         fetching articles by message-id.
19081
19082 2006-04-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19083
19084         * message.el (hashcash): Require hashcash as normal.
19085
19086         * ecomplete.el (ecomplete-highlight-match-line):
19087         Use point-at-eol.
19088         (ecomplete-highlight-match-line): Use `highlight', because that
19089         face exists in both Emacs and XEmacs.
19090
19091         * message.el (message-display-abbrev): Use point-at-bol.
19092
19093         * mail-source.el: Don't require timer/timer-funcs.
19094
19095         * gnus-async.el: Ditto.
19096
19097         * password.el: Ditto.
19098
19099         * nnheaderxm.el (nnheader-cancel-timer): Ditto.
19100
19101         * mm-url.el: Ditto.
19102
19103         * gnus-xmas.el: Don't require timer-funcs.
19104
19105         * mm-util.el: Require timer/timer-funcs.
19106
19107 2006-04-23  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
19108
19109         * mm-url.el (mm-url-insert-file-contents): Don't set Connection:
19110         Close.
19111
19112 2006-04-28  Katsumi Yamaoka  <yamaoka@jpl.org>
19113
19114         * mm-uu.el (mm-uu-pgp-encrypted-extract-1): Assume buffer is made
19115         unibyte after clear-decrypt function runs.
19116
19117         * mml2015.el (mml2015-pgg-clear-decrypt): Treat data which pgg
19118         returns as a unibyte string.
19119
19120 2006-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
19121
19122         * lpath.el: Revert.
19123
19124         * pgg-gpg.el (pgg-string-to-multibyte): Remove.
19125         (pgg-gpg-process-sentinel): Revert.
19126
19127         * pgg-pgp.el (pgg-pgp-process-region): Revert.
19128         (pgg-pgp-lookup-key): Revert.
19129
19130         * pgg-pgp5.el (pgg-pgp5-process-region): Revert.
19131         (pgg-pgp5-lookup-key): Revert.
19132
19133         * pgg.el (pgg-fetch-key): Revert.
19134
19135 2006-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
19136
19137         * lpath.el: Fbind string-as-multibyte for XEmacs.
19138
19139         * mml1991.el (mml1991-pgg-sign): No need to load pgg.el, which is
19140         always loaded by way of gnus-art.el -> mm-uu.el -> mml2015.el.
19141         (mml1991-pgg-encrypt): Ditto.
19142
19143         * pgg-gpg.el (pgg-string-to-multibyte): New function.
19144         (pgg-gpg-process-sentinel): Make sure pgg-output-buffer is always
19145         a multibyte buffer.
19146
19147         * pgg-pgp.el (pgg-pgp-process-region): Ditto.
19148         (pgg-pgp-lookup-key): Ditto.
19149
19150         * pgg-pgp5.el (pgg-pgp5-process-region): Ditto.
19151         (pgg-pgp5-lookup-key): Ditto.
19152
19153         * pgg.el (pgg-fetch-key): Ditto.
19154
19155 2006-04-26  Reiner Steib  <Reiner.Steib@gmx.de>
19156
19157         * message.el (message-user-organization-file): Check several
19158         locations of the organization file.
19159
19160         * gnus-sum.el (gnus-summary-mime-map, gnus-summary-make-menu-bar):
19161         Add gnus-article-view-part-as-type.
19162
19163         * gnus-art.el (gnus-article-view-part-as-type): New function.
19164
19165         * message.el (message-valid-fqdn-regexp): Add TLDs .cat, jobs,
19166         .mobi and .travel.  Remove .nato, .bitnet and .uucp.
19167
19168         * mml.el: Simplify autoload.
19169         (mml-mode): defvar dnd-protocol-alist instead of using
19170         symbol-value.
19171         (mml-default-directory): New variable.
19172         (mml-minibuffer-read-file): Use it.
19173         (mml-dnd-protocol-alist, mml-dnd-attach-options): Adjust :version.
19174
19175         * message.el (message-citation-line-format): New variable.
19176         (message-insert-formated-citation-line): New function.
19177         (message-citation-line-function):
19178         Add `message-insert-formated-citation-line' to custom type.
19179
19180         * mm-decode.el (mm-verify-option): Add gnus-buttonized-mime-types
19181         to doc string.
19182
19183         * gnus-art.el (gnus-buttonized-mime-types): Add "multipart/signed"
19184         depending on mm-verify-option.
19185
19186 2006-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
19187
19188         * mml1991.el (mml1991-pgg-sign): Make sure to load pgg.el before
19189         binding pgg-* variables; reimplement the section which prevents
19190         MIME header from being signed.
19191         (mml1991-pgg-encrypt): Make sure to load pgg.el before binding
19192         pgg-text-mode; remove a blank line at the top of body.
19193
19194         * mm-uu.el (mm-uu-pgp-encrypted-extract-1): Don't remove blank
19195         lines at the top of body; use gnus-newsgroup-charset if there's no
19196         Charset header.
19197
19198 2006-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
19199
19200         * message.el (message-self-insert-commands): Doc fix.
19201
19202         * mm-uu.el (mm-uu-pgp-signed-test): Erase prompt.
19203         (mm-uu-pgp-encrypted-test): Ditto.
19204         (mm-uu-pgp-encrypted-extract-1): Make sure there's a blank line
19205         between header and body; return application/pgp-encrypted handle
19206         if decryption failed; decode decrypted body by charset.
19207
19208         * mm-decode.el (mm-automatic-display): Don't make application/pgp
19209         element match to application/pgp-*.
19210
19211 2006-04-23  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
19212
19213         * nnweb.el (nnweb-google-wash-article): Sync up to new Google
19214         HTML.
19215
19216 2006-04-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19217
19218         * mail-source.el (mail-source-call-script): Message the error
19219         string.
19220
19221 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19222
19223         * gnus-util.el (gnus-byte-compile): Use it.
19224
19225 2006-04-22  xyblor  <fake@invalid.email>  (tiny change)
19226
19227         * gnus-util.el (kill-empty-logs): New function.
19228
19229 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19230
19231         * message.el (message-mail-alias-type): Doc fix.
19232         (message-mail-alias-type-p): New function.
19233         (message-send): Use it.
19234         (message-mode): Ditto.
19235         (message-strip-forbidden-properties): Ditto.
19236
19237         * ecomplete.el (ecomplete-database-file-coding-system):
19238         New variable.
19239         (ecomplete-save): Use it.
19240         (ecomplete-setup): Use it.
19241
19242 2006-04-22  Katsumi Yamaoka  <yamaoka@jpl.org>
19243
19244         * message.el (message-self-insert-commands): New variable.
19245         (message-strip-forbidden-properties): Use it.
19246
19247 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19248
19249         * message.el (message-put-addresses-in-ecomplete): Use a regexp
19250         that doesn't make XEmacs choke.
19251
19252 2006-04-20  Reiner Steib  <Reiner.Steib@gmx.de>
19253
19254         * gnus-util.el (gnus-replace-in-string):
19255         Prefer replace-regexp-in-string over of replace-in-string.
19256
19257 2006-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
19258
19259         * gnus-util.el (gnus-select-frame-set-input-focus):
19260         Use select-frame-set-input-focus if it is available in XEmacs; use
19261         definition defined in Emacs 22 for old Emacsen.
19262
19263         * dgnushack.el: Autoload unmorse-region for XEmacs.
19264
19265         * lpath.el: Bind cursor-in-non-selected-windows and
19266         select-frame-set-input-focus for XEmacs.
19267
19268 2006-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
19269
19270         * mm-view.el (mm-inline-text): Use equal instead of equalp.
19271
19272 2006-04-18  Teodor Zlatanov  <tzz@lifelogs.com>
19273
19274         * gnus-registry.el (gnus-registry-cache-save): Remove text
19275         properties when saving via the temp buffer.
19276
19277 2006-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
19278
19279         * message.el (message-generate-hashcash): Honor custom type.
19280
19281 2006-04-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19282
19283         * message.el (message-generate-hashcash): Default to non-nil when
19284         hashcash is found.
19285
19286         * gnus-sum.el (gnus-summary-expire-articles-now): Clarify prompt.
19287         (gnus-refer-thread-limit): Increase default to 500.
19288
19289         * mm-view.el (mm-inline-text): Supply delsp to flow-fill.
19290
19291         * flow-fill.el (fill-flowed): Allow delete-space.
19292
19293 2006-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
19294
19295         * deuglify.el (gnus-outlook-deuglify-unwrap-min)
19296         (gnus-outlook-deuglify-unwrap-max, gnus-outlook-display-hook):
19297         Remove autoloads.
19298
19299 2006-04-18  Simon Josefsson  <jas@extundo.com>
19300
19301         * message.el (message-generate-hashcash): Default to.
19302
19303 2006-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
19304
19305         * rfc2231.el (rfc2231-parse-string): Decode encoded value after
19306         concatenating segments rather than before concatenating them.
19307
19308 2006-04-17  Reiner Steib  <Reiner.Steib@gmx.de>
19309
19310         * gnus-group.el: Move comment to gnus-group-update-tool-bar.
19311
19312 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19313
19314         * rfc2231.el (rfc2231-parse-string): Sort the parameters first.
19315
19316         * message.el (message-forward-make-body-plain):
19317         Allow message-forward-ignored-headers to be a list.
19318         (message-remove-ignored-headers): Factor out into function.
19319         (message-forward-make-body-mml): Use it.
19320
19321         * imap.el (imap-quote-specials): New function.
19322         (imap-login-auth): Quote specials.
19323
19324         * rfc2231.el (rfc2231-parse-string): Remove dead code.
19325         (rfc2231-parse-string): Allow concatanation of parameters that
19326         aren't contiguous.  The test case is
19327           (mail-header-parse-content-type "message/external-body;
19328             name*0*=us-ascii''~%2ffoo%2fbar%2fbaz%2fxyzzy%2f;
19329             access-type=LOCAL-FILE;
19330             name*1*=plugh%2fhello-sailor%2fbing.pdf")
19331
19332 2006-04-17  Stefan Monnier  <monnier@iro.umontreal.ca>
19333
19334         * nntp.el (nntp-accept-process-output): Return the value of
19335         `nnheader-accept-process-output'.
19336
19337 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19338
19339         * gnus-art.el (gnus-article-treat-types): Add text/x-patch.
19340         (gnus-button-alist): Recognize more diff formats.
19341         (gnus-button-patch): Strip directory.
19342
19343 2006-04-17  Reiner Steib  <Reiner.Steib@gmx.de>
19344
19345         * gnus-util.el (gnus-select-frame-set-input-focus): Check for
19346         Emacs 22 when setting focus.
19347
19348 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19349
19350         * gnus-art.el (gnus-article-treat-types): Do treatment of
19351         text/x-verbatim parts.
19352         (gnus-button-patch): New command.
19353
19354         * ietf-drums.el (ietf-drums-parse-address): Attempt parsing
19355         addresses that contain invalid characters.
19356
19357 2006-04-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19358
19359         * message.el (message-put-addresses-in-ecomplete):
19360         Use gnus-replace-in-string.
19361         (message-is-yours-p): Use the more correct
19362         mail-header-parse-address instead of
19363         mail-extract-address-components.
19364         (message-put-addresses-in-ecomplete): Fix typo.
19365
19366         * gnus-sum.el (gnus-summary-limit-to-bodies): New command and
19367         keystroke.
19368
19369         * gnus-art.el (gnus-treatment-function-alist): Change order of
19370         newsgroups/generic header folding to avoid double-folding.
19371
19372         * message.el (message-hidden-headers): Add X-Draft-From.
19373
19374         * gnus-sum.el (gnus-summary-repeat-search-article-forward):
19375         New command.
19376         (gnus-summary-repeat-search-article-backward): New command.
19377
19378         * gnus-topic.el (gnus-topic-display-missing-topic): Skip past
19379         groups in the parent topic.
19380
19381 2006-04-16  João Cachopo  <joao.cachopo@inesc-id.pt>  (tiny change)
19382
19383         * spam.el (spam-necessary-extra-headers): Add X-CRM114-Status.
19384         (spam-extra-header-to-number): Return the CRM114 number as a
19385         number instead of a string.
19386
19387 2006-04-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19388
19389         * gnus-art.el (gnus-face-properties-alist): Move here from
19390         gnus-fun.
19391
19392         * gnus-fun.el (gnus-face-properties-alist): Move to gnus-art.
19393
19394 2006-04-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19395
19396         * message.el (message-strip-forbidden-properties): Only display on
19397         self-insert-command.
19398
19399         * hashcash.el (hashcash-insert-payment-async): Remove dead code;
19400         reindent.
19401         (hashcash-insert-payment-async-2): Make sure the buffer is alive.
19402
19403 2006-04-15  NAKAJI Hiroyuki  <nakaji@takamatsu-nct.ac.jp>  (tiny change)
19404
19405         * smiley.el (smiley-style): Fix typo.
19406
19407 2006-03-23  Kenichi Handa  <handa@m17n.org>
19408
19409         * rfc2231.el (rfc2231-encode-string): Use mm-disable-multibyte
19410         instead of set-buffer-multibyte.
19411
19412 2006-03-23  Kenichi Handa  <handa@m17n.org>
19413
19414         * rfc2231.el (rfc2231-decode-encoded-string): Work on unibyte
19415         buffer and then decode the buffer text if necessary.
19416         (rfc2231-encode-string): Be sure to work on multibyte buffer at
19417         first, and after mm-encode-body, change the buffer to unibyte.
19418
19419 2006-04-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19420
19421         * hashcash.el (hashcash-insert-payment-async-2):
19422         Use message-goto-eoh instead of doing it manually.
19423         (mail-add-payment): Use message-narrow-to-header instead of trying
19424         to do the same itself.
19425
19426         * message.el (message-hidden-headers): Add Face.
19427
19428         * gnus-sum.el (gnus-summary-reparent-thread): Factor out
19429         reparenting code.
19430         (gnus-summary-reparent-children): Refactored out code.
19431         (gnus-summary-thread-map): New keystroke.
19432         (gnus-summary-reparent-children): Make into command.
19433
19434         * smiley.el (smiley-style): Default to `medium' if using a large
19435         font.
19436
19437         * gnus-sum.el (unmorse-region): Remove autoload, because morse.el
19438         does it itself.
19439
19440         * message.el (message-point-in-header-p): Simplify definition.
19441
19442 2006-04-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19443
19444         * nnagent.el (nnagent-request-set-mark): Silence log file
19445         writing.
19446         (nnagent-request-set-mark): Use write-region instead of
19447         append-to-file.
19448
19449         * gnus-sum.el (gnus-read-header): Fudge article number if using a
19450         strange select method.
19451
19452         * ecomplete.el (ecomplete-display-matches): Get highlightling
19453         right.
19454         (ecomplete-display-matches): Use literals.
19455         (ecomplete-display-matches): Disable message logging.
19456
19457         * message.el (message-display-abbrev): Small optimization.
19458
19459         * ecomplete.el (ecomplete-display-matches): Allow automatic
19460         display.
19461
19462         * message.el (message-strip-forbidden-properties):
19463         Display abbrevs.
19464         (message-display-abbrev): Get automatic display right.
19465
19466         * ecomplete.el (ecomplete-display-matches): Use M-n/M-p
19467         keystrokes.
19468
19469 2006-04-13  Romain Francoise  <romain@orebokech.com>
19470
19471         TODO: Backport to v5-10!
19472
19473         * gnus-util.el (gnus-alist-to-hashtable, gnus-hashtable-to-alist):
19474         Move here (and rename) from gnus-registry.el.
19475
19476         * gnus-registry.el: Require gnus-util.
19477         Use `gnus-alist-to-hashtable' and `gnus-hashtable-to-alist'.
19478
19479 2006-04-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19480
19481         * gnus-group.el (gnus-group-catchup-current):
19482         Change if-then-else-if-then-else into cond.
19483         (gnus-group-catchup): Indent.
19484         (group-name-at-point): New function.
19485         (gnus-fetch-group): Provide default from thing at point.
19486
19487 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19488
19489         * message.el (message-display-abbrev): Fix regexp.
19490
19491         * ecomplete.el (ecomplete-highlight-match-line):
19492         Reimplement choosing.
19493         (ecomplete-highlight-match-line): Fix up code rewrite, remove
19494         dead variables.
19495
19496         * message.el (message-newline-and-indent): Remove debugging.
19497         (message-display-abbrev): Use new implementation.
19498
19499 2006-04-12  Reiner Steib  <Reiner.Steib@gmx.de>
19500
19501         * gnus-art.el (gnus-article-mode):
19502         Set cursor-in-non-selected-windows to nil.
19503
19504         * smiley.el: Revert previous change.
19505         (smiley-data-directory): defvar it before using it in the
19506         defcustom of `smiley-style'.
19507
19508 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19509
19510         * message.el (message-newline-and-indent): New function.
19511
19512         * ecomplete.el: Implement more bits.
19513
19514         * message.el (message-put-addresses-in-ecomplete): Clean up the
19515         string.
19516
19517         * ecomplete.el (ecomplete-add-item): Chop off decimals.
19518
19519         * gnus-sum.el (gnus-summary-save-parts):
19520         Bind gnus-summary-save-parts-counter and use it to make unique file
19521         names.
19522
19523         * gnus-art.el (gnus-ignored-headers): Add some more headers.
19524
19525         * ietf-drums.el (ietf-drums-parse-addresses): Take a RAWP
19526         parameter to say whether to actually parse the individual
19527         addresses.
19528
19529         * message.el (message-put-addresses-in-ecomplete): New function.
19530         (ecomplete): Require.
19531         (message-mail-alias-type): Add ecomplete as an option.
19532
19533 2006-04-12  Ralf Angeli  <angeli@iwi.uni-sb.de>
19534
19535         * flow-fill.el (fill-flowed): Remove trailing space from blank
19536         quoted lines.
19537
19538 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19539
19540         * smiley.el (smiley-style): Move definition later to avoid a
19541         compilation warning.
19542
19543 2006-04-12  Kenichi Handa  <handa@m17n.org>
19544
19545         * rfc2231.el (rfc2231-decode-encoded-string): Work on unibyte
19546         buffer and then decode the buffer text if necessary.
19547         (rfc2231-encode-string): Be sure to work on multibyte buffer at
19548         first, and after mm-encode-body, change the buffer to unibyte.
19549         Use mm-disable-multibyte instead of set-buffer-multibyte.
19550
19551 2006-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
19552
19553         * gnus-art.el (gnus-mime-copy-part): Find name parameter in
19554         Content-Type header instead of Content-Disposition header.
19555         (gnus-mime-inline-part): Ditto.
19556         (gnus-mime-view-part-as-charset): Ignore charset that the part
19557         specifies.
19558
19559         * mm-decode.el (mm-display-part): Work with external parts and
19560         usual parts similarly.
19561
19562         * mm-extern.el (mm-inline-external-body): Use mm-display-part
19563         instead of gnus-display-mime.
19564
19565         * mm-util.el (mm-decompress-buffer): Use mm-with-unibyte-buffer
19566         instead of with-temp-buffer.
19567
19568         * gnus-uu.el (gnus-uu-save-article): Put mml tags instead of part
19569         tag to summarized topics part in order to encode non-ASCII text.
19570
19571 2006-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
19572
19573         * smiley.el (smiley-style): New variable.
19574         (smiley-directory): New function.
19575         (smiley-data-directory): Derive from `smiley-style' using
19576         `smiley-directory'.
19577         (smiley-regexp-alist): Add new entries.
19578
19579         * gnus-art.el (gnus-button-valid-localpart-regexp): Exclude `@'.
19580         (gnus-article-browse-delete-temp): Add :version.
19581
19582 2006-04-11  Arne Jørgensen  <arne@arnested.dk>
19583
19584         * gnus-sieve.el (gnus-sieve-generate): Delete from the start of
19585         the sieve region.
19586
19587 2006-04-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19588
19589         * gnus.el (gnus-version-number): Bump version.
19590
19591 2006-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
19592
19593         * gnus.el: No Gnus v0.4 is released.
19594
19595 2006-04-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19596
19597         * nnslashdot.el (nnslashdot-retrieve-headers-1): Fix up to new
19598         layout.
19599
19600         * rfc2047.el (rfc2047-decode-encoded-words): Don't message about
19601         unknown charset.
19602
19603         * message.el (message-header-synonyms): Add Original-To to the
19604         default.
19605
19606         * gnus-sum.el (gnus-get-newsgroup-headers-xover): group is an
19607         optional parameter.
19608
19609 2006-04-06  Reiner Steib  <Reiner.Steib@gmx.de>
19610
19611         * gnus-fun.el (gnus): Require it for gnus-directory.
19612
19613 2006-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
19614
19615         * gnus-fun.el (gnus-face-properties-alist): Add :version.
19616
19617 2006-04-05  Daiki Ueno  <ueno@unixuser.org>
19618
19619         * pgg-gpg.el (pgg-gpg-process-filter): Fix.
19620
19621 2006-04-05  Simon Josefsson  <jas@extundo.com>
19622
19623         * password.el (password-reset): New function.
19624
19625 2006-04-05  Daiki Ueno  <ueno@unixuser.org>
19626
19627         * pgg-gpg.el (pgg-gpg-encrypt-region, pgg-gpg-sign-region):
19628         Wait for BEGIN_SIGNING too, new in GnuPG 1.4.3.
19629
19630 2006-04-04  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
19631
19632         * nnweb.el (nnweb-google-create-mapping): Update regexp.
19633         Some whitespace was matched into the url, which broke browsing hits
19634         > 100 when mm-url-use-external was nil.
19635
19636 2006-04-04  Reiner Steib  <Reiner.Steib@gmx.de>
19637
19638         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups):
19639         Check gnus-extra-headers for 'Newsgroups.
19640
19641         * message.el (message-tool-bar-gnome): Check if `flyspell-mode' is
19642         bound.
19643
19644 2006-04-04  Daiki Ueno  <ueno@unixuser.org>
19645
19646         * pgg-gpg.el: Clean up process buffers every time gpg processes
19647         complete.
19648
19649 2006-04-03  Reiner Steib  <Reiner.Steib@gmx.de>
19650
19651         * gnus-fun.el (gnus-convert-image-to-face-command): Fix typo in
19652         doc string.
19653
19654 2006-04-03  Daiki Ueno  <ueno@unixuser.org>
19655
19656         * pgg-gpg.el (pgg-gpg-process-filter)
19657         (pgg-gpg-wait-for-completion): Check if buffer is alive.
19658
19659         * pgg-gpg.el (pgg-gpg-process-sentinel): Don't remove GNUPG:
19660         lines, temporary fix.
19661
19662 2006-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
19663
19664         * gnus-group.el (gnus-group-update-tool-bar): Add :initialize and :set.
19665
19666 2006-03-29  Daiki Ueno  <ueno@unixuser.org>
19667
19668         * pgg-gpg.el (pgg-gpg-start-process): Don't bind
19669         default-enable-multibyte-characters.  This reverts the change from
19670         revision 6.17 which is no longer necessary because the passphrase
19671         is sent separately now.  GnuPG messages are unreadable under
19672         multibyte locales with default-enable-multibyte-characters set to
19673         nil.
19674
19675 2006-03-28  Reiner Steib  <Reiner.Steib@gmx.de>
19676
19677         * message.el (message-tool-bar-gnome): Move "spell".
19678
19679 2006-03-27  Reiner Steib  <Reiner.Steib@gmx.de>
19680
19681         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Don't use
19682         XEmacs-only `replace-in-string'.  Use `gnus-group-real-name'
19683         instead.
19684
19685 2006-03-27  Karl Kleinpaste  <karl@charcoal.com>
19686
19687         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups):
19688         Improve newsgroups handling for NNTP overviews which don't include
19689         Newsgroups.
19690
19691 2006-03-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
19692
19693         * message.el (message-resend): Bind message-generate-hashcash to nil.
19694
19695 2006-03-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
19696
19697         * hashcash.el (hashcash-already-paid-p): Bind case-fold-search
19698         when searching for already-paid recipients.
19699
19700 2006-03-27  Daiki Ueno  <ueno@unixuser.org>
19701
19702         * pgg-gpg.el: Invoke gpg asynchronous, to avoid querying for
19703         passphrases when it is not needed.
19704         (pgg-gpg-use-agent): Add, to hard code that pgg shouldn't wait for
19705         passphrase stuff from gpg, should only be necessary when you use
19706         gpg with a smartcard.
19707
19708 2006-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
19709
19710         * mml.el (mml-insert-mime): Ignore cached contents of
19711         message/external-body part.
19712
19713         * mm-decode.el (mm-get-part): Add optional 'no-cache' argument.
19714         (mm-insert-part): Ditto.
19715
19716 2006-03-23  Simon Josefsson  <jas@extundo.com>
19717
19718         * pgg-gpg.el (pgg-gpg-update-agent): Add again, with fixes from
19719         Reiner.
19720         (pgg-gpg-use-agent-p): Use it again.
19721
19722 2006-03-23  Simon Josefsson  <jas@extundo.com>
19723
19724         * pgg-gpg.el (pgg-gpg-update-agent): Remove, doesn't work with
19725         older emacsen.
19726         (pgg-gpg-use-agent-p): Don't use it.
19727
19728 2006-03-23  Reiner Steib  <Reiner.Steib@gmx.de>
19729
19730         * pgg-gpg.el (pgg-gpg-update-agent): Only use make-network-process
19731         if we can.
19732
19733 2006-03-22  Sascha Wilde  <wilde@sha-bang.de>
19734
19735         * pgg-gpg.el (pgg-gpg-use-agent): Disable by default.
19736         (pgg-gpg-update-agent): New function.
19737         (pgg-gpg-use-agent-p): New function.
19738         (pgg-gpg-process-region, pgg-gpg-encrypt-region)
19739         (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
19740         (pgg-gpg-sign-region): Use it.
19741
19742 2006-03-22  Katsumi Yamaoka  <yamaoka@jpl.org>
19743
19744         * gnus-sum.el (gnus-map-articles): Don't funcall symbol macro.
19745         Reported by Ralf Wachinger <rwachinger@gmx.de>.
19746
19747 2006-03-21  Simon Josefsson  <jas@extundo.com>
19748
19749         * pgg-gpg.el: Ideas below based on patch from Sascha Wilde
19750         <wilde@sha-bang.de>.
19751         (pgg-gpg-use-agent): New variable.
19752         (pgg-gpg-process-region): Use it.
19753         (pgg-gpg-encrypt-region): Likewise.
19754         (pgg-gpg-encrypt-symmetric-region): Likewise.
19755         (pgg-gpg-decrypt-region): Likewise.
19756         (pgg-gpg-sign-region): Likewise.
19757         (pgg-gpg-possibly-cache-passphrase): Don't cache a nil password.
19758
19759 2006-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
19760
19761         * gnus-agent.el (gnus-agent-queue-mail): Fix custom tag for `t'.
19762
19763         * spam.el (spam-mark-new-messages-in-spam-group-as-spam):
19764         Add comment on version.
19765
19766 2006-03-20  Reiner Steib  <Reiner.Steib@gmx.de>
19767
19768         * smiley.el: Add missing test smiley.
19769
19770 2006-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
19771
19772         * mm-decode.el (mm-with-part): New macro.
19773         (mm-get-part): Use it; work with message/external-body as well.
19774         (mm-save-part): Treat name and filename equally.
19775
19776         * mm-extern.el (mm-extern-cache-contents): New function.
19777         (mm-inline-external-body): Use it; force the part to be displayed;
19778         move undisplayer added to the cached handle to the parent.
19779
19780         * gnus-art.el (gnus-mime-save-part-and-strip): Add name parameter.
19781         (gnus-mime-view-part-as-type): Work with message/external-body.
19782
19783         * gnus-util.el (gnus-tool-bar-update): Bind tool-bar-mode.
19784
19785 2006-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
19786
19787         * gmm-utils.el (gmm-image-load-path-for-library): Prefer user's
19788         images in image-load-path.  [Sync with image.el, revision 1.60, in
19789         Emacs.]
19790
19791 2006-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
19792
19793         * gmm-utils.el (gmm-image-load-path-for-library): Pass value of
19794         path rather than symbol.  Always return list of directories.
19795         Guarantee that image directory comes first.  [Sync with image.el,
19796         revision 1.59, in Emacs.]
19797
19798         * message.el (message-make-tool-bar): Adjust to new API of
19799         `gmm-image-load-path-for-library'.
19800
19801         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
19802
19803         * gnus-group.el (gnus-group-make-tool-bar): Ditto.
19804
19805 2006-03-15  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
19806
19807         * gnus-art.el (gnus-article-only-boring-p):
19808         Bind inhibit-point-motion-hooks to avoid infinite loop when entering
19809         intangible text.
19810         Reported by Ralf Wachinger <rwnewsmampfer@geekmail.de>.
19811
19812 2006-03-14  Reiner Steib  <Reiner.Steib@gmx.de>
19813
19814         * gmm-utils.el (gmm-image-load-path-for-library): Fix typo.
19815         Use `defun' instead of `gmm-defun-compat'.
19816
19817 2006-03-14  Simon Josefsson  <jas@extundo.com>
19818
19819         * message.el (message-unique-id): Don't use message-number-base36
19820         if (user-uid) is a float.
19821         Reported by Bjorn Solberg <bjorn_ding1@hekneby.org>.
19822
19823 2006-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>
19824
19825         * mm-uu.el (mm-uu-dissect): Dissect all parts correctly.
19826
19827         * gnus-art.el (gnus-mime-display-single): Make sure there is an
19828         empty line between a part and a message part.
19829
19830 2006-03-10  Reiner Steib  <Reiner.Steib@gmx.de>
19831
19832         * smiley.el: Add more test smileys.
19833         (smiley-data-directory, smiley-regexp-alist)
19834         (gnus-smiley-file-types): Fix doc strings.
19835         (smiley-update-cache): Clear smiley-cached-regexp-alist before
19836         adding new elements.
19837         (smiley-mouse-map): Unused code.  Make it a comment.
19838
19839 2006-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
19840
19841         * gnus-nocem.el (gnus-nocem-scan-groups): Add autoload cookie;
19842         scan latest NoCeM messages instead of old ones.
19843         (gnus-nocem-check-article): Fix regexps so as to match to PGP
19844         delimiters that are recently used.
19845         (gnus-nocem-load-cache): Add autoload cookie.
19846
19847         * gnus.el (gnus-use-nocem): Enable it to be set to also a number.
19848
19849         * gnus-start.el (gnus-setup-news): Scan NoCeM messages if a group
19850         level which is larger than gnus-use-nocem is specified.
19851
19852         * gnus-group.el (gnus-group-get-new-news): Ditto.
19853
19854 2006-03-08  Reiner Steib  <Reiner.Steib@gmx.de>
19855
19856         * gnus-util.el (gnus-tool-bar-update): New function.
19857
19858         * gnus-group.el (gnus-group-update-tool-bar): New variable.
19859         (gnus-group-insert-group-line): Add gnus-tool-bar-update.
19860
19861         * gnus-topic.el (gnus-topic-prepare-topic): Add gnus-tool-bar-update.
19862
19863         * gnus-group.el (gnus-group-redraw-when-idle)
19864         (gnus-group-redraw-check): Remove.
19865         (gnus-group-make-tool-bar): Remove gnus-group-redraw-check.
19866
19867 2006-03-08  Katsumi Yamaoka  <yamaoka@jpl.org>
19868
19869         * nnmail.el (nnmail-split-it): Invert match-partial-words behavior
19870         if optional last element is specified in splits (FIELD VALUE...).
19871
19872 2006-03-07  Reiner Steib  <Reiner.Steib@gmx.de>
19873
19874         * message.el (message-make-tool-bar): Rename gmm-image-load-path
19875         to gmm-image-load-path-for-library.  Call with no-error argument.
19876         (message-tool-bar-gnome): Rename "mail/attach" to "attach".
19877
19878         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
19879
19880         * gnus-group.el (gnus-group-make-tool-bar): Ditto.
19881
19882         * gmm-utils.el (gmm-image-load-path): Remove alias.
19883
19884 2006-03-06  Reiner Steib  <Reiner.Steib@gmx.de>
19885
19886         * gmm-utils.el (gmm-image-load-path): Add alias.
19887
19888         * nnml.el (nnml-generate-nov-databases-directory): Rename from
19889         nnml-generate-nov-databases-1.
19890         (nnml-generate-nov-databases): Use it.
19891         (nnml-generate-nov-databases-directory): Document no-active
19892         argument.
19893
19894         * gmm-utils.el (gmm-image-load-path-for-library): Return single
19895         directory if path is t.  Add no-error.
19896
19897         * gnus-group.el (gnus-group-make-tool-bar): Use add-hook.
19898         Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
19899
19900         * gnus-art.el (gnus-article-browse-delete-temp-files):
19901         Simplify resetting gnus-article-browse-html-temp-list.
19902
19903         * gmm-utils.el (gmm-image-load-path-for-library): Sync with
19904         mh-compat.el revision 1.9 in Emacs.  Rename `gmm-image-load-path'.
19905         Add example to docstring.  Rename local variables.  Move error
19906         checks to default case in cond and simplify.
19907
19908 2006-03-06  Katsumi Yamaoka  <yamaoka@jpl.org>
19909
19910         * mm-view.el (mm-w3m-cid-retrieve-1): Check carefully whether
19911         handle is multipart when calling it recursively.
19912         (mm-w3m-cid-retrieve): Display warning if retrieving fails.
19913
19914 2006-03-03  Daniel Pittman  <daniel@rimspace.net>
19915
19916         * nnimap.el (nnimap-request-update-info-internal): Optimize.
19917         Don't `gnus-uncompress-range' to avoid excessive memory usage.
19918
19919 2006-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
19920
19921         * gnus-group.el (gnus-group-tool-bar-gnome): Check if gnus-topic.el
19922         is loaded.
19923
19924         * gnus-sum.el (gnus-summary-tool-bar-gnome): Check if spam.el is
19925         loaded.
19926
19927 2006-03-03  Reiner Steib  <Reiner.Steib@gmx.de>
19928
19929         * mm-util.el (mm-with-unibyte-current-buffer): Change "Emacs 23"
19930         to "Emacs 23 (unicode)" in doc string.
19931
19932         * gnus-sum.el (gnus-summary-set-display-table): Change "Emacs 23" to
19933         "Emacs 23 (unicode)" in comment.
19934
19935 2006-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
19936
19937         * mm-decode.el (mm-get-part): Don't use mm-with-unibyte-current-buffer.
19938
19939         * gnus-sum.el (gnus-summary-set-display-table): Don't nix out
19940         characters 160 through 255 in Emacs 23.
19941
19942 2006-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
19943
19944         * gnus-art.el (gnus-article-browse-html-temp-list): Rename from
19945         gnus-article-browse-html-temp.
19946         (gnus-article-browse-delete-temp): Make it customizable.
19947         Add `file'.  Adjust doc string.
19948         (gnus-article-browse-delete-temp-files): Add argument.
19949         Allow query for each file.  Adjust doc string.
19950         (gnus-article-browse-html-parts):
19951         Add `gnus-article-browse-delete-temp-files' to
19952         `gnus-summary-prepare-exit-hook' and `gnus-exit-gnus-hook'.
19953
19954 2006-03-02  Hynek Schlawack  <hynek@ularx.de>
19955
19956         * gnus-art.el (gnus-article-browse-html-temp)
19957         (gnus-article-browse-delete-temp): New variables.
19958         (gnus-article-browse-delete-temp-files): New function.
19959         (gnus-article-browse-html-parts): Use it.
19960
19961 2006-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
19962
19963         * gnus-group.el (gnus-group-redraw-check): Remove redundant tests.
19964
19965         * gmm-utils.el (gmm-image-load-path): Mention ../etc search in doc
19966         string.
19967
19968         * gnus-sum.el (gnus-summary-tool-bar-gnome): Don't use
19969         gnus-summary-insert-new-articles when unplugged.
19970         Remove gnus-summary-search-article-forward.
19971
19972         * gmm-utils.el (gmm-tool-bar-style): Test tool-bar-mode and
19973         display-visual-class instead of display-color-cells.
19974
19975 2006-03-02  Katsumi Yamaoka  <yamaoka@jpl.org>
19976
19977         * dgnushack.el: Autoload customize-group for XEmacs.
19978
19979         * mml.el (mml-generate-mime-1): Encode parts other than text/* or
19980         message/* containing non-ASCII text properly.
19981
19982 2006-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
19983
19984         * message.el: Require gmm-utils, remove autoloads.
19985         (message-tool-bar): Set default based on
19986         gmm-tool-bar-style.
19987         (message-tool-bar-gnome): Add gmm-customize-mode.
19988
19989         * gnus-sum.el (gnus-summary-tool-bar): Set default based on
19990         gmm-tool-bar-style.
19991         (gnus-summary-tool-bar-gnome): Add gmm-customize-mode.
19992
19993         * gnus-group.el (gnus-group-tool-bar): Set default based on
19994         gmm-tool-bar-style.
19995         (gnus-group-tool-bar-gnome): Add gmm-customize-mode.
19996
19997         * gmm-utils.el (gmm-image-directory): Rename variable from
19998         gmm-image-load-path.
19999         (gmm-image-load-path): Use gmm-image-directory.
20000         (gmm-customize-mode): New function.
20001         (gmm-tool-bar-style): New variable.
20002
20003         * gnus-group.el (gnus-group-redraw-when-idle): Rename from
20004         gnus-group-redraw-line-number.
20005         (gnus-group-redraw-check): Simplify.
20006         (gnus-group-tool-bar-update): Remove redraw check.
20007         (gnus-group-make-tool-bar): Add redraw check.
20008
20009 2006-03-01  Michael Piotrowski  <mxp@dynalabs.de>  (tiny change)
20010
20011         * gnus-art.el (gnus-button): Add missing parentheses.
20012
20013 2006-03-01  Katsumi Yamaoka  <yamaoka@jpl.org>
20014
20015         * lpath.el: Fbind line-number-at-pos.
20016
20017 2006-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
20018
20019         * mm-util.el (mm-with-unibyte-current-buffer): Add note.
20020
20021 2006-02-28  Reiner Steib  <Reiner.Steib@gmx.de>
20022
20023         * gnus-art.el (gnus-button): New face.
20024         (gnus-article-button-face): Use it.
20025
20026         * gnus-sum.el (gnus-summary-tool-bar-gnome):
20027         Add gnus-summary-next-page.  Re-order.
20028
20029         * gnus-group.el (gnus-group-tool-bar-gnome): prev-node and
20030         next-node are now included.
20031         (gnus-group-redraw-line-number): New internal variable.
20032         (gnus-group-redraw-check): Helper function for updating the tool
20033         bar.
20034         (gnus-group-tool-bar-update): Add gnus-group-redraw-check.
20035
20036         * gmm-utils.el (gmm-tool-bar-item): Add TODO about modifiers.
20037
20038         * spam.el (spam-spamassassin-score-regexp): New internal variable.
20039         (spam-extra-header-to-number, spam-check-spamassassin-headers):
20040         Use it to match format of Spamassassin 3.0 and later.
20041         Reported by IRIE Tetsuya <irie@t.email.ne.jp>.
20042         (spam-check-bogofilter)
20043         (spam-bogofilter-register-with-bogofilter): Fix args of
20044         `gnus-error' calls.
20045
20046 2006-02-28  Reiner Steib  <Reiner.Steib@gmx.de>
20047
20048         * gnus-draft.el (gnus-draft-send): Bind message-signature to avoid
20049         unnecessary interaction when sending queued mails.
20050         Reported by TAKAHASHI Yoshio <tkh@jp.fujitsu.com>.
20051
20052 2006-02-27  Reiner Steib  <Reiner.Steib@gmx.de>
20053
20054         * gnus-sum.el (gnus-sequence-of-unread-articles): Return nil if
20055         first or last are nil.
20056
20057 2006-02-24  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
20058
20059         * nnweb.el (nnweb-gmane-create-mapping): Don't choke on ^M.
20060
20061 2006-02-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20062
20063         * gnus-int.el (gnus-open-server): Respect gnus-batch-mode.
20064
20065 2006-02-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20066
20067         * dns.el (query-dns): Protect more against buggy tcp output.
20068
20069 2006-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
20070
20071         * nnweb.el (nnweb-type-definition, nnweb-gmane-search): Use new
20072         nov.php.
20073
20074 2006-02-24  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
20075
20076         * nnweb.el (nnweb-type-definition, nnweb-gmane-create-mapping)
20077         (nnweb-gmane-wash-article, nnweb-gmane-search): Fix Gmane web
20078         groups.  Kudos to Olly Betts <olly@survex.com> for providing NOV
20079         output on the server side.
20080         (nnweb-google-create-mapping): Update regexps and add some
20081         progress indication.
20082
20083 2006-02-23  Reiner Steib  <Reiner.Steib@gmx.de>
20084
20085         * gnus-group.el (gnus-group-tool-bar-gnome):
20086         Fix gnus-agent-toggle-plugged.  Re-order icons.
20087         (gnus-group-tool-bar-gnome):
20088         Add gnus-group-{prev,next}-unread-group.
20089         (gnus-group-tool-bar-gnome): Re-order icons.
20090
20091         * gnus-sum.el (gnus-summary-tool-bar-gnome):
20092         Move gnus-summary-insert-new-articles.
20093
20094         * message.el (message-tool-bar-gnome, message-tool-bar-retro):
20095         Fix comments.
20096
20097         * utf7.el (utf7-utf-16-coding-system): Fix comment.  utf-16-be is
20098         also available in Emacs 21.3.
20099
20100         * message.el (message-fix-before-sending): Change "Emacs 22" to
20101         "Emacs 23 (unicode)" in comment.
20102
20103         * qp.el (quoted-printable-encode-region): Change "Emacs 22" to
20104         "Emacs 23 (unicode)" in comment.
20105
20106         * mm-util.el: Change "Emacs 22" to "Emacs 23 (unicode)" in
20107         comment.
20108         (mm-coding-system-p): Add comment about no-MULE XEmacs.
20109
20110         * mm-view.el (mm-fill-flowed): Add :version.
20111
20112 2006-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
20113
20114         * gmm-utils.el (gmm-image-load-path): Don't modify image-load-path
20115         and load-path.
20116
20117 2006-02-22  Reiner Steib  <Reiner.Steib@gmx.de>
20118
20119         * message.el: Autoload gmm-image-load-path.
20120         (message-tool-bar-retro): Prepend "gnus/" subdirectory to some
20121         icon file names.  Use old Emacs 21 "mail_send.xpm" icon for
20122         consitency.
20123
20124         * gmm-utils.el (gmm-image-load-path): Also search in
20125         "../etc/images".  Don't set gmm-image-load-path if we don't find
20126         the image.
20127
20128 2006-02-22  Katsumi Yamaoka  <yamaoka@jpl.org>
20129
20130         * gmm-utils.el (gmm-image-load-path): Don't make
20131         `gmm-image-load-path' include subdirectories which the second arg
20132         `image' might specify.
20133
20134         * gnus-group.el (gnus-group-tool-bar-retro): Prepend the "gnus/"
20135         subdirectory to icon file names.
20136
20137         * gnus-sum.el (gnus-summary-tool-bar-retro): Ditto.
20138
20139 2006-02-21  Reiner Steib  <Reiner.Steib@gmx.de>
20140
20141         * gnus-group.el (gnus-group-make-tool-bar): Add IMAGE argument to
20142         gmm-image-load-path calls.
20143
20144         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
20145
20146         * message.el (message-make-tool-bar): Ditto.
20147
20148         * mml.el (mml-preview): Add comment concerning tool bar icons.
20149
20150         * gnus-group.el (gnus-group-tool-bar-gnome): Use new icon names.
20151         (gnus-group-make-tool-bar): Use `gmm-image-load-path'.
20152
20153         * gnus-sum.el (gnus-summary-tool-bar-gnome): Use new icon names.
20154         (gnus-summary-make-tool-bar): Use `gmm-image-load-path'.
20155
20156         * message.el (message-tool-bar-gnome): Use new icon names.
20157         (message-make-tool-bar): Use `gmm-image-load-path'.
20158
20159         * gmm-utils.el (gmm-defun-compat, gmm-image-search-load-path):
20160         New functions from MH-E.
20161         (gmm-image-load-path): New variable from MH-E.
20162         (gmm-image-load-path): New function from MH-E.  Add arguments
20163         LIBRARY, IMAGE and PATH.  Don't modify paths.  Don't use
20164         *-image-load-path-called-flag.
20165
20166 2006-02-21  Milan Zamazal  <pdm@brailcom.org>
20167
20168         * mm-view.el (mm-view-pkcs7-verify): Implement using smime.el.
20169
20170 2006-02-21  Wolfram Fenske  <wolfram.fenske@student.uni-magdeburg.de>  (tiny change)
20171
20172         * nnimap.el (nnimap-request-move-article): Change folder back to
20173         source group before deleting.
20174
20175 2006-02-20  Reiner Steib  <Reiner.Steib@gmx.de>
20176
20177         * mm-util.el (mm-charset-override-alist): Fix type in doc string.
20178
20179         * gnus-art.el (mm-url-insert-file-contents-external):
20180         Autoload mm-url.
20181
20182         * mm-uu.el (mm-uu-type-alist): Improve `LaTeX'.
20183
20184 2006-02-20  Katsumi Yamaoka  <yamaoka@jpl.org>
20185
20186         * rfc2047.el (rfc2047-charset-to-coding-system): Don't check the
20187         coding system which mm-charset-to-coding-system returns for a
20188         given charset is valid.
20189
20190 2006-02-16  Juanma Barranquero  <lekktu@gmail.com>
20191
20192         * html2text.el (html2text-remove-tag-list):
20193         * spam-stat.el (spam-stat-buffer-words): Fix typo in docstring.
20194
20195 2006-02-14  Chong Yidong  <cyd@stupidchicken.com>
20196
20197         * gnus-cus.el: Revert 2005-10-17 change.
20198
20199 2006-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
20200
20201         * gnus-art.el (article-strip-banner):
20202         Call article-really-strip-banner only when the regexp match is made.
20203
20204 2006-02-16  Katsumi Yamaoka  <yamaoka@jpl.org>
20205
20206         * gnus-art.el (article-strip-banner):
20207         Use gnus-extract-address-components instead of
20208         mail-header-parse-addresses to make it work with non-ASCII text;
20209         remove mail-encode-encoded-word-string.
20210
20211         * rfc2231.el (rfc2231-parse-string): Attempt to parse parameter
20212         values which are surrounded with \"...\"; make it never cause a
20213         Lisp error; give up parsing of parameters if it failed in
20214         extracting type.
20215
20216 2006-02-14  Arne Jørgensen  <arne@arnested.dk>
20217
20218         * smime.el (smime-cert-by-ldap-1): Fix bug where
20219         `smime-ldap-search' returns results without userCertificates.
20220
20221 2006-02-15  Katsumi Yamaoka  <yamaoka@jpl.org>
20222
20223         * mm-util.el (mm-make-temp-file): Don't catch file-error in Emacs.
20224
20225 2006-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
20226
20227         * spam.el (spam-check-spamassassin-headers): Adapt format for
20228         Spamassassin 3.0 or later.  Reported by ARISAWA Akihiro
20229         <ari@mbf.ocn.ne.jp>.
20230         (spam-list-of-processors): Add spam-use-gmane.
20231
20232 2006-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
20233
20234         * mm-util.el (mm-make-temp-file): Import the Emacs 22 version of
20235         make-temp-file; make it work with XEmacs as well.
20236
20237         * gnus-art.el (gnus-article-browse-html-parts): Use the 3rd arg of
20238         mm-make-temp-file.
20239
20240         * mm-decode.el (mm-display-external): Use the 3rd arg of
20241         mm-make-temp-file.
20242         (mm-create-image-xemacs): Ditto.
20243
20244 2006-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
20245
20246         * gnus-draft.el (gnus-draft-send): Replace message-narrow-to-head
20247         with message-narrow-to-headers.
20248         (gnus-draft-setup): Narrow to header to run message-fetch-field.
20249         (gnus-draft-check-draft-articles): New function.
20250         (gnus-draft-edit-message, gnus-draft-send-message): Use it.
20251
20252 2006-02-13  Reiner Steib  <Reiner.Steib@gmx.de>
20253
20254         * gnus-art.el (gnus-article-browse-html-parts):
20255         `hs-show-html-list' should read `gnus-article-browse-html-parts'.
20256         Don't use suffix argument for mm-make-temp-file for Emacs 21
20257         compatibility.  Remove useless `format'.
20258
20259 2006-02-13  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
20260
20261         * nnweb.el (nnweb-google-wash-article): Update regexps.
20262         (nnweb-group-alist): Use defvoo instead of defvar.
20263
20264 2006-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
20265
20266         * nnoo.el (nnoo-declare): Don't generate duplicate entries when
20267         re-loading nn* modules.
20268
20269 2006-02-10  Reiner Steib  <Reiner.Steib@gmx.de>
20270
20271         * gnus-group.el (gnus-group-make-tool-bar): Remove duplicate check
20272         for `tool-bar-mode' and don't check it's default-value.
20273
20274         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
20275
20276         * message.el (message-make-tool-bar): Ditto.
20277
20278         * gnus-art.el (gnus-article-browse-html-parts): Remove useless
20279         `substring'.  Shorten tmp-file name.
20280
20281         * gnus.el: Remove bogus comment.
20282
20283 2006-02-10  Hynek Schlawack  <hynek@ularx.de>
20284
20285         * gnus-art.el (gnus-article-browse-html-parts): New function.
20286         (gnus-article-browse-html-article): New function for viewing html
20287         articles with a browser.
20288
20289 2006-02-09  Daiki Ueno  <ueno@unixuser.org>
20290
20291         * pgg-gpg.el (pgg-gpg-encrypt-region): Don't convert line-endings
20292         in elisp.
20293         (pgg-gpg-encrypt-symmetric-region): Ditto.
20294         (pgg-gpg-sign-region): Ditto.
20295
20296         * pgg-def.el (pgg-text-mode): New variable.
20297
20298         * mml2015.el (mml2015-pgg-sign): Enable pgg-text-mode.
20299         (mml2015-pgg-encrypt): Ditto.
20300
20301         * mml1991.el (mml1991-pgg-sign): Enable pgg-text-mode.
20302         (mml1991-pgg-encrypt): Ditto.
20303
20304 2006-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
20305
20306         * nnfolder.el (nnfolder-insert-newsgroup-line):
20307         Use message-make-date instead of current-time-string.
20308
20309         * mm-view.el (mm-inline-message): Don't set gnus-newsgroup-charset
20310         to gnus-decoded which mm-uu might set.
20311
20312 2006-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
20313
20314         * rfc2231.el (rfc2231-parse-string): Sort segmented parameters;
20315         don't decode quoted parameters; remove misimported Emacs code.
20316         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
20317         (rfc2231-decode-encoded-string): Don't use split-string which
20318         behaves differently according to Emacs version; use
20319         mm-decode-coding-region to convert charset to coding-system.
20320         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
20321         (rfc2231-encode-string): Remove misimported Emacs code.
20322
20323 2006-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
20324
20325         * gnus-art.el (article-decode-charset): Don't use ignore-errors
20326         when calling mail-header-parse-content-type.
20327         (article-de-quoted-unreadable): Ditto.
20328         (article-de-base64-unreadable): Ditto.
20329         (article-wash-html): Ditto.
20330
20331         * mm-decode.el (mm-dissect-buffer): Don't use ignore-errors when
20332         calling mail-header-parse-content-type and
20333         mail-header-parse-content-disposition.
20334         (mm-find-raw-part-by-type): Don't use ignore-errors when calling
20335         mail-header-parse-content-type.
20336
20337         * mml.el (mml-insert-mime-headers): Use mml-insert-parameter to
20338         insert charset and format parameters; encode description after
20339         inserting it to buffer.
20340         (mml-insert-parameter): Fold lines properly even if a parameter is
20341         segmented into two or more lines; change the max column to 76.
20342
20343         * rfc1843.el (rfc1843-decode-article-body): Don't use
20344         ignore-errors when calling mail-header-parse-content-type.
20345
20346         * rfc2231.el (rfc2231-parse-string): Return at least type if
20347         possible; don't cause an error even if it fails in parsing of
20348         parameters.  Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
20349         (rfc2231-encode-string): Don't break lines at the beginning, leave
20350         it to mml-insert-parameter.
20351
20352         * webmail.el (webmail-yahoo-article): Don't use ignore-errors when
20353         calling mail-header-parse-content-type.
20354
20355 2006-02-06  Reiner Steib  <Reiner.Steib@gmx.de>
20356
20357         * spam-report.el (spam-report-gmane-use-article-number):
20358         Improve doc string.
20359         (spam-report-gmane-internal): Check if a suitable header was found
20360         in the article.
20361
20362 2006-02-04  Katsumi Yamaoka  <yamaoka@jpl.org>
20363
20364         * rfc2231.el (rfc2231-parse-string): Revert 2006-02-03 change.
20365         (rfc2231-encode-string): Make param*=value always begin with LWSP.
20366
20367 2006-02-05  Romain Francoise  <romain@orebokech.com>
20368
20369         Update copyright notices of all files in the gnus directory.
20370
20371 2006-02-03  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
20372
20373         * nnweb.el (nnweb-request-group): Avoid growing overview files.
20374
20375 2006-02-03  Katsumi Yamaoka  <yamaoka@jpl.org>
20376
20377         * rfc2231.el (rfc2231-parse-string): Add missing semicolons to
20378         segmented lines of parameter value to cope with Thunderbird 1.5
20379         bug (cf. https://bugzilla.mozilla.org/show_bug.cgi?id=323318).
20380         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
20381         (rfc2231-encode-string): Don't make lines exceeding 76 column.
20382
20383 2006-02-01  Max Froumentin  <max@lapin-bleu.net>  (tiny change)
20384
20385         * mml.el (mml-generate-mime-1): Correct the order of inline signed
20386         parts.
20387
20388 2006-01-31  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
20389
20390         * nnweb.el (nnweb-group-alist): Use defvar instead of defvoo,
20391         there's only one active file for all servers.
20392         (nnweb-request-scan): Make sure nnweb-articles is initialized on
20393         solid groups.  Gnus might have used a FAST request to select the group.
20394         (nnweb-request-group, nnweb-google-parse-1): Don't keep nnweb-type
20395         and nnweb-search redundantly in the active file.
20396         (nnweb-request-list): Don't list bogus groups.  There can only be one.
20397         (nnweb-request-create-group): Don't use ARGS.
20398         (nnweb-possibly-change-server, nnweb-request-group): Remove some
20399         initializations.  Let nnoo do the work.
20400
20401 2006-01-31  Katsumi Yamaoka  <yamaoka@jpl.org>
20402
20403         * mm-uu.el (mm-uu-emacs-sources-extract, mm-uu-diff-extract):
20404         Say the part has been decoded.
20405
20406         * mm-view.el (mm-display-inline-fontify): Get decoded part rightly.
20407
20408 2006-01-31  Kevin Ryde  <user42@zip.com.au>
20409
20410         * mailcap.el (mailcap-viewer-passes-test): Don't put "(nil t)" into
20411         mailcap-viewer-test-cache when there's no 'test clause, since that
20412         will invert the meaning of a "nil" test previously determined by
20413         mailcap-mailcap-entry-passes-test.
20414
20415 2006-01-30  Katsumi Yamaoka  <yamaoka@jpl.org>
20416
20417         * gnus-group.el: Bind tool-bar-mode instead of tool-bar-map when
20418         compiling.
20419
20420         * gnus-sum.el: Ditto.
20421
20422         * message.el: Don't bind tool-bar-map when compiling.
20423
20424 2006-01-30  Reiner Steib  <Reiner.Steib@gmx.de>
20425
20426         * nnweb.el (nnweb-google-parse-1): Clarify some comments.
20427
20428 2006-01-30  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
20429
20430         * nnweb.el (nnweb-type-definition, nnweb-google-parse-1)
20431         (nnweb-google-create-mapping, nnweb-google-search): Adapt to
20432         current Google Groups.
20433
20434 2006-01-26  Reiner Steib  <Reiner.Steib@gmx.de>
20435
20436         * gnus-sum.el (gnus-summary-make-tool-bar): Add checks for XEmacs
20437         and tool-bar-mode.
20438
20439         * gnus-group.el (gnus-group-make-tool-bar): Add checks for XEmacs
20440         and tool-bar-mode.
20441
20442         * message.el (message-tool-bar-update): Simplify.
20443         (message-make-tool-bar): Add checks for XEmacs and tool-bar-mode.
20444
20445         * gnus-sum.el (gnus-summary-tool-bar-update): Check for
20446         gnus-summary-buffer.
20447         (gnus-summary-tool-bar-gnome): Use "reply-author" icon for
20448         gnus-summary-reply.
20449
20450         * gmm-utils.el (gmm): Add :version.
20451
20452 2006-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
20453
20454         * Makefile.in (clean): New rule.
20455         (distclean): Use it.
20456
20457 2006-01-26  Steve Youngs  <steve@sxemacs.org>
20458
20459         * gmm-utils.el (gmm-tool-bar-item, gmm-tool-bar-zap-list):
20460         Don't autoload.
20461
20462 2006-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
20463
20464         * gmm-utils.el (gmm-verbose): Add :group.
20465
20466 2006-01-25  Reiner Steib  <Reiner.Steib@gmx.de>
20467
20468         * message.el: Change some comments WRT tool-bars.
20469
20470         * gnus-sum.el (gnus-summary-tool-bar)
20471         (gnus-summary-tool-bar-gnome, gnus-summary-tool-bar-retro)
20472         (gnus-summary-tool-bar-zap-list): New variables.
20473         (gnus-summary-make-tool-bar): Complete rewrite using
20474         `gmm-tool-bar-from-list'.
20475
20476         * gnus-group.el (gnus-group-tool-bar, gnus-group-tool-bar-gnome)
20477         (gnus-group-tool-bar-retro, gnus-group-tool-bar-zap-list):
20478         New variables.
20479         (gnus-group-make-tool-bar): Complete rewrite using
20480         `gmm-tool-bar-from-list'.
20481         (gnus-group-tool-bar-update): New function.
20482
20483         * message.el (message-mode-field-menu): Add "Show hidden Headers".
20484
20485 2006-01-25  Katsumi Yamaoka  <yamaoka@jpl.org>
20486
20487         * mm-uu.el (mm-uu-dissect-text-parts): Ignore it if a given part
20488         is dissected into a single part of which the type is the same as
20489         the given one; decode charset.
20490
20491 2006-01-21  Kevin Ryde  <user42@zip.com.au>
20492
20493         * mailcap.el (mailcap-parse-mailcap-extras): "test" key must go
20494         into alists as symbol not string, since that's what
20495         mailcap-viewer-passes-test and mailcap-mailcap-entry-passes-test
20496         look for.
20497
20498 2006-01-24  Reiner Steib  <Reiner.Steib@gmx.de>
20499
20500         * gmm-utils.el (gmm-tool-bar-item): Add "Separator".
20501         (gmm-tool-bar-from-list): Suppress tooltip for `gmm-ignore'.
20502
20503         * message.el (message-tool-bar-gnome): Use gmm-ignore.
20504
20505 2006-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
20506
20507         * gnus-xmas.el (gnus-mime-security-button-menu): New alias.
20508         (gnus-xmas-mime-security-button-menu): New function.
20509
20510         * gnus-art.el (gnus-mime-security-button-commands): New variable.
20511         (gnus-mime-security-button-menu): New definition.
20512         (gnus-mime-security-button-map): Use them.
20513         (gnus-mime-security-button-menu): New function.
20514         (gnus-insert-mime-security-button): Addition to help echo.
20515         (gnus-mime-security-run-function, gnus-mime-security-save-part)
20516         (gnus-mime-security-pipe-part): New functions.
20517
20518         * mm-uu.el (mm-uu-buttonize-original-text-parts): Remove.
20519         (mm-uu-dissect-text-parts): Revert a part of 2006-01-23 change.
20520
20521         * mm-decode.el (mm-handle-set-disposition): Remove.
20522         (mm-handle-set-description): Remove.
20523
20524 2006-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
20525
20526         * mm-view.el (mm-w3m-standalone-supports-m17n-p): New variable.
20527         (mm-w3m-standalone-supports-m17n-p): New function.
20528         (mm-inline-text-html-render-with-w3m-standalone): Use it to alter
20529         w3m usage.
20530
20531         * gnus-art.el (gnus-article-wash-html-with-w3m-standalone):
20532         Use mm-w3m-standalone-supports-m17n-p to alter w3m usage.
20533
20534 2006-01-23  Reiner Steib  <Reiner.Steib@gmx.de>
20535
20536         * message.el (message-tool-bar-zap-list):
20537         Use gmm-tool-bar-zap-list as custom type.
20538         (message-tool-bar-update): New function.
20539         (message-tool-bar, message-tool-bar-gnome)
20540         (message-tool-bar-retro): Add message-tool-bar-update.
20541         (message-tool-bar-gnome): Add flyspell-buffer.
20542
20543         * gnus-util.el (gnus-error): Describe `args'.
20544
20545         * gmm-utils.el (gmm-error): Describe `args'.
20546         (gmm-tool-bar-zap-list): New widget.
20547         (gmm-tool-bar-from-list): Improve description of `zap-list'.
20548
20549 2006-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
20550
20551         * mm-uu.el (mm-uu-buttonize-original-text-parts): New variable.
20552         (mm-uu-dissect-text-parts): Buttonize original text parts; reduce
20553         the number of recursive calls.
20554
20555         * mm-decode.el (mm-handle-set-disposition): New macro.
20556         (mm-handle-set-description): New macro.
20557
20558 2006-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
20559
20560         * mm-uu.el (mm-uu-dissect-text-parts): Decode content transfer
20561         encoding.
20562
20563 2006-01-20  Reiner Steib  <Reiner.Steib@gmx.de>
20564
20565         * message.el (message-tool-bar-zap-list, message-tool-bar)
20566         (message-tool-bar-gnome, message-tool-bar-retro): New variables.
20567         (message-tool-bar-local-item-from-menu): Remove.
20568         (message-tool-bar-map): Replace by `message-make-tool-bar'.
20569         (message-make-tool-bar): New function.
20570         (message-mode): Use `message-make-tool-bar'.
20571
20572         * gmm-utils.el: New file.
20573         (gmm-verbose, gmm-message, gmm-error): From gnus-utils.el.
20574         (gmm-lazy): New widget copied from `nnmail.el'.
20575         (gmm-tool-bar-from-list): New function for creating customizable
20576         tool bars.
20577         (gmm-tool-bar-from-list): Fix typos in doc string.  Remove debug
20578         output.
20579         (gmm): Add :prefix to defgroup.
20580
20581 2006-01-20  Per Abrahamsen  <abraham@dina.kvl.dk>
20582
20583         * gmm-utils.el (gmm-widget-p): New function.
20584
20585 2006-01-20  Reiner Steib  <Reiner.Steib@gmx.de>
20586
20587         * mml.el (mml-attach-file): Describe `description' in doc string.
20588         (mml-menu): Add Emacs MIME manual and PGG manual.
20589
20590 2006-01-20  Richard M. Stallman  <rms@gnu.org>
20591
20592         * mm-url.el (mm-url-load-url): Require url-parse and url-vars.
20593
20594 2006-01-20  Kevin Greiner  <kevin.greiner@compsol.cc>
20595
20596         * nntp.el (nntp-end-of-line): Doc fix.
20597
20598 2006-01-20  Chong Yidong  <cyd@stupidchicken.com>
20599
20600         * imap.el (imap-open): Handle case where buffer is a buffer
20601         object.
20602
20603 2005-01-20  Stefan Monnier  <monnier@iro.umontreal.ca>
20604
20605         * gnus-delay.el (gnus-delay): Don't autoload.
20606         It's useless and could trigger a bug in cus-dep.el causing ldefs-boot
20607         to be re-loaded when customizing the `gnus-delay' group.
20608
20609 2005-01-20  Chong Yidong  <cyd@stupidchicken.com>
20610
20611         * message.el (message-insert-citation-line): Use newlines.
20612
20613 2006-01-19  Ken Manheimer  <ken.manheimer@gmail.com>
20614
20615         * pgg-pgp.el (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region)
20616         (pgg-pgp-sign-region): Add optional 'passphrase' argument to all
20617         these routines, so the passphrase can be managed externally and
20618         passed in to the system.
20619         (pgg-pgp-decrypt-region, pgg-pgp-sign-region): Use new name for
20620         pgg-add-passphrase-to-cache function.
20621
20622         * pgg-pgp5.el (pgg-pgp5-encrypt-region, pgg-pgp5-decrypt-region)
20623         (pgg-pgp5-sign-region): Add optional 'passphrase' argument to all
20624         these routines, so the passphrase can be managed externally and
20625         passed in to the system.
20626         (pgg-pgp5-sign-region): Use new name of
20627         pgg-add-passphrase-to-cache function.
20628
20629 2006-01-19  Ken Manheimer  <ken.manheimer@gmail.com>
20630
20631         * pgg-gpg.el (pgg-gpg-select-matching-key): Fix: look at the right
20632         part of the decoded armor to find the key-identifier.
20633         (pgg-gpg-lookup-key-owner): New function to return the
20634         human-readable identifier of a key owner.
20635         (pgg-gpg-key-id-from-key-owner): Make it easy to identify the key
20636         itself.
20637         (pgg-gpg-decrypt-region): Prompt with the key owner (rather than
20638         the key value) if we have a key and can match it against a secret
20639         key.  Also, added a note pointing out fact that the prompt only
20640         indicates the first matching key.
20641
20642         * pgg.el (pgg-decrypt): Passing along 'passphrase' in call to
20643         pgg-decrypt-region.
20644         (pgg-add-passphrase-to-cache): Rename from
20645         `pgg-add-passphrase-cache' to reduce confusion (all callers
20646         changed).
20647         (pgg-remove-passphrase-from-cache): Rename from
20648         `pgg-remove-passphrase-cache' to reduce confusion (all callers
20649         changed).
20650         (pgg-read-passphrase, pgg-add-passphrase-cache)
20651         (pgg-remove-passphrase-cache): Add informative docstrings.
20652         (pgg-decrypt): Convey provided passphrase in subordinate call to
20653         pgg-decrypt-region.
20654
20655 2006-01-19  Ken Manheimer  <ken.manheimer+emacs@gmail.com>
20656
20657         * pgg.el (pgg-encrypt-region, pgg-encrypt-symmetric-region)
20658         (pgg-encrypt-symmetric, pgg-encrypt, pgg-decrypt-region)
20659         (pgg-decrypt, pgg-sign-region, pgg-sign): Add optional
20660         'passphrase' argument, so the passphrase can be managed externally
20661         and then passed in to the system.
20662
20663         * pgg.el (pgg-read-passphrase, pgg-add-passphrase-cache)
20664         (pgg-remove-passphrase-cache): Add optional 'notruncate' argument,
20665         so the passphrase cache can be used reliably with identifiers
20666         besides a pgp packet's key id.
20667
20668         * pgg-gpg.el (pgg-gpg-encrypt-region)
20669         (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
20670         (pgg-gpg-sign-region): Add optional 'passphrase' argument to all
20671         these routines, so the passphrase can be managed externally and
20672         passed in to the system.
20673
20674         * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Add optional
20675         'notruncate' argument, so the passphrase cache can be used
20676         reliably with identifiers besides a pgp packet's key id.
20677
20678 2006-01-19  Sascha Wilde  <swilde@sha-bang.de>
20679
20680         * pgg-gpg.el (pgg-gpg-encrypt-symmetric-region): New function for
20681         symmetric encryption.
20682         (pgg-gpg-symmetric-key-p): New function to check for an symmetric
20683         encrypted session key.
20684         (pgg-gpg-decrypt-region): When decrypting a symmetric encrypted
20685         message ask for the passphrase in a proper way.
20686
20687         * pgg.el (pgg-encrypt-symmetric, pgg-encrypt-symmetric-region):
20688         New user commands for symmetric encryption.
20689
20690 2006-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
20691
20692         * mm-bodies.el (mm-decode-body): Don't decode decoded body.
20693
20694         * mm-uu.el (mm-uu-dissect-text-parts): Dissect dissected parts.
20695
20696 2006-01-19  Mark D. Baushke  <mdb@gnu.org>
20697
20698         * pgg-gpg.el (pgg-gpg-encrypt-region): Add --textmode to gpg args.
20699
20700 2006-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
20701
20702         * mm-decode.el (mm-inlined-types): Add application/pgp.
20703         (mm-automatic-display): Ditto.
20704
20705         * mm-uu.el (mm-uu-dissect-text-parts): Recognize application/pgp
20706         part as text.
20707
20708 2006-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
20709
20710         * nnrss.el: Update copyright.
20711         (nnrss-opml-import): Query whether to subscribe to each entry.
20712
20713         * gnus-art.el:
20714         * gnus-sum.el:
20715         * gnus-xmas.el:
20716         * messagexmas.el:
20717         * mm-uu.el:
20718         * mm-view.el: Update copyright.
20719
20720 2006-01-16  Reiner Steib  <Reiner.Steib@gmx.de>
20721
20722         * message.el (message-info): New function.
20723         (message-mode-menu): Add it.
20724         Update copyright.
20725
20726         * ChangeLog: Fix and update copyright.
20727
20728 2006-01-13  Romain Francoise  <romain@orebokech.com>
20729
20730         * message.el (message-forward-subject-name-subject): Prefer the
20731         address to 'nowhere' if the sender has no name.
20732         Fix typo.  Update copyright year.
20733
20734 2006-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
20735
20736         * gnus-art.el (article-wash-html):
20737         Use gnus-summary-show-article-charset-alist if a numeric arg is given.
20738         (gnus-article-wash-html-with-w3m-standalone): New function.
20739
20740         * mm-view.el (mm-text-html-renderer-alist): Map w3m-standalone to
20741         mm-inline-text-html-render-with-w3m-standalone.
20742         (mm-text-html-washer-alist): Map w3m-standalone to
20743         gnus-article-wash-html-with-w3m-standalone.
20744         (mm-inline-text-html-render-with-w3m-standalone): New function.
20745
20746 2006-01-12  Reiner Steib  <Reiner.Steib@gmx.de>
20747
20748         * mm-uu.el (mm-uu-type-alist): Fix previous message-marks commit.
20749         Improve LaTeX.
20750
20751 2006-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
20752
20753         * nnrss.el (nnrss-wash-html-in-text-plain-parts): New variable.
20754         (nnrss-request-article): Render text/plain parts as HTML.
20755
20756         * gnus-art.el (gnus-article-wash-html-with-w3m): No need to narrow
20757         the buffer.
20758
20759 2006-01-08  Reiner Steib  <Reiner.Steib@gmx.de>
20760
20761         * gnus-cus.el (gnus-group-parameters): Sync posting-style with
20762         custom definition of `gnus-posting-styles'.
20763
20764         * gnus-start.el (gnus-gnus-to-quick-newsrc-format):
20765         Bind print-circle.  Suggested by Kalle Olavi Niemitalo <kon@iki.fi>.
20766
20767 2006-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
20768
20769         * gnus-group.el (gnus-useful-groups): Use Gmane for ding.
20770         Use nntp for bug archive.
20771
20772 2006-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
20773
20774         * nnrss.el (nnrss-request-article): Fix the way to fill text/plain
20775         parts.
20776         (nnrss-normalize-date): New function converts ISO 8601 date into
20777         RFC822 style.  Suggested by Mark Plaksin <happy@mcplaksin.org>.
20778         (nnrss-check-group): Use it.
20779
20780 2006-01-01  Katsumi Yamaoka  <yamaoka@jpl.org>
20781
20782         * gnus-sum.el (gnus-summary-work-articles): Remove useless `min'.
20783
20784         * nnrss.el (nnrss-fetch): Make it fail gracefully when it can't
20785         fetch a feed.  Suggested by Mark Plaksin <happy@mcplaksin.org>.
20786         (nnrss-insert-w3): Ditto.
20787
20788 2005-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
20789
20790         * gnus-uu.el (gnus-uu-digest-mail-forward): Reverse the order of
20791         the articles to be forwarded including the case where neither a
20792         number of articles nor a region is specified.
20793
20794 2005-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
20795
20796         * nnrss.el (nnrss-request-article): Fix last change; fill
20797         text/plain parts.
20798
20799 2005-12-20  Katsumi Yamaoka  <yamaoka@jpl.org>
20800
20801         * nnrss.el (nnrss-request-article): Replace <br />s with newlines
20802         in text/plain part.
20803         (nnrss-check-group): Don't add excessive newline to dc:subject.
20804
20805 2005-12-19  Mark Plaksin  <happy@mcplaksin.org>  (tiny change)
20806
20807         * nnrss.el (nnrss-check-group): Put the RSS dc:subject in the
20808         article.
20809
20810 2005-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
20811
20812         * nnml.el: Don't require gnus-bcklg.  Autoload it.
20813         (nnml-use-compressed-files, nnml-save-mail): Support other
20814         comression programs such as bzip2.
20815
20816 2005-12-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20817
20818         * dns.el (query-dns): Make sure we check the buffer size before
20819         removing tcp headers.
20820
20821 2005-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
20822
20823         * gnus-art.el (gnus-article-delete-text-of-type): Enable it to
20824         remove MIME buttons associated with multipart/alternative parts.
20825         (gnus-mime-display-alternative): Tag buttons using `article-type'
20826         text property.
20827
20828         * gnus-msg.el (gnus-copy-article-buffer): Remove MIME buttons
20829         associated with multipart/alternative parts.
20830
20831         * gnus-art.el (gnus-signature-separator): Fix custom type.
20832
20833         * mm-decode.el (mm-inlined-types): Fix custom type.
20834         (mm-keep-viewer-alive-types): Ditto.
20835         (mm-automatic-display): Ditto.
20836         (mm-attachment-override-types): Ditto.
20837         (mm-inline-override-types): Ditto.
20838         (mm-automatic-external-display): Ditto.
20839
20840 2005-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
20841
20842         * spam-report.el (spam-report-user-mail-address)
20843         (spam-report-user-agent): New variables.
20844         (spam-report-url-ping-plain): Use spam-report-user-agent.
20845
20846 2005-12-14  Ralf Angeli  <angeli@iwi.uni-sb.de>
20847
20848         * gnus-art.el (gnus-button-handle-custom): Do not just use
20849         `customize-apropos' for any "M-x customize-*" button but the
20850         function called for.  Accept both the function name and its
20851         argument in order to achieve this.
20852         (gnus-button-alist): Remove support for "custom:" URL's.
20853         Pass function name to `gnus-button-handle-custom' in case of "M-x
20854         customize-*" buttons.
20855
20856 2005-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
20857
20858         * gnus-art.el (gnus-buttonized-mime-types): Mention addition of
20859         multipart/alternative and add xref to mm-discouraged-alternatives
20860         in doc string.
20861
20862         * mm-decode.el (mm-discouraged-alternatives): Add xref to
20863         gnus-buttonized-mime-types in doc string.
20864
20865 2005-12-08  Reiner Steib  <Reiner.Steib@gmx.de>
20866
20867         * mm-decode.el (mm-discouraged-alternatives): Fix custom type.
20868         Suggest image/.* in the doc string.
20869
20870 2005-12-12  Reiner Steib  <Reiner.Steib@gmx.de>
20871
20872         * mm-uu.el (mm-uu-type-alist): Don't depend on message.el for
20873         message-marks (Debian bug#342521).
20874
20875 2005-12-12  Simon Josefsson  <jas@extundo.com>
20876
20877         * password.el (password-read-from-cache): Add.
20878         (password-read): Use it.
20879
20880 2005-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
20881
20882         * rfc2047.el (rfc2047-charset-to-coding-system):
20883         Recognize us-ascii as a MIME charset.
20884
20885         * mm-bodies.el (mm-decode-content-transfer-encoding):
20886         Protect against the case where the 2nd arg TYPE is nil.
20887
20888 2005-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
20889
20890         * pop3.el (pop3-stream-type): Fix custom version.
20891
20892         * mm-uu.el (mm-uu-type-alist): Simplify uu regexp.
20893
20894 2005-12-09  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
20895
20896         * mm-decode.el (mm-display-external): Add missing cdr.
20897
20898 2005-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
20899
20900         * mm-decode.el (mm-display-external): Use nametemplate (defined in
20901         RFC1524) if it is in mailcap or add a suffix according to
20902         mailcap-mime-extensions when generating a temp filename; postpone
20903         deleting a temp file for 2 seconds for some wrappers, shell
20904         scripts, and so on, which might exit right after having started a
20905         viewer command as a background job.
20906
20907 2005-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
20908
20909         * nntp.el (nntp-marks-directory): Fix custom group.
20910
20911         * gnus-fun.el (gnus-face-from-file): Decrease quant in smaller
20912         steps when < 10.
20913
20914         * gnus-start.el (gnus-no-server-1):
20915         Mention `gnus-level-default-subscribed' in doc string.
20916
20917 2005-12-02  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
20918
20919         * mm-view.el (mm-inline-text-html-render-with-w3m): Fix misplaced
20920         parens.
20921
20922 2005-12-01  Katsumi Yamaoka  <yamaoka@jpl.org>
20923
20924         * gnus-xmas.el (gnus-use-toolbar): Revert.
20925         (gnus-xmas-setup-toolbar): Use global default-toolbar if
20926         gnus-use-toolbar is default.
20927
20928         * messagexmas.el (message-use-toolbar): Revert.
20929         (message-setup-toolbar): Use global default-toolbar if
20930         message-use-toolbar is default.
20931
20932 2005-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
20933
20934         * gnus-xmas.el (gnus-use-toolbar): Determine the default value
20935         according to default-toolbar-visible-p.
20936
20937         * messagexmas.el (message-use-toolbar): Ditto.
20938
20939 2005-11-26  Dave Love  <fx@gnu.org>
20940
20941         * tls.el (open-tls-stream): Rename arg SERVICE to PORT.
20942         (tls-program, tls-success): Provide openssl alternative.
20943
20944         * starttls.el: Doc fixes.
20945         (starttls-open-stream-gnutls, starttls-open-stream): Rename arg
20946         SERVICE to PORT.
20947
20948         * pop3.el (pop3-open-server) <ssl>: Clarify a loop.  Deal with
20949         port null or service name.
20950         (starttls-negotiate): Autoload.
20951
20952 2005-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
20953
20954         * message.el (message-kill-to-signature): Fix interactive spec.
20955
20956 2005-11-24  Katsumi Yamaoka  <yamaoka@jpl.org>
20957
20958         * pop3.el (pop3-open-server): Recognize a string as a service name.
20959
20960 2005-11-24  Pascal Rigaux  <pixel@mandriva.com>  (tiny change)
20961
20962         * rfc2231.el (rfc2231-parse-string): Support non-ascii chars.
20963
20964 2005-11-23  Dave Love  <fx@gnu.org>
20965
20966         Add pop3s, pop3/starttls.
20967
20968         * pop3.el (pop3-authentication-scheme): Clarify doc.
20969         (open-tls-stream, starttls-open-stream): Autoload.
20970         (pop3-stream-type): New.
20971         (pop3-open-server): Use it.
20972
20973         * mail-source.el (mail-sources): Fix some :types.  Add stream type
20974         for POP.
20975         (mail-source-keyword-map): Add :stream for POP.
20976         (mail-source-fetch-pop): Use pop3-stream-type.
20977
20978 2005-11-22  Katsumi Yamaoka  <yamaoka@jpl.org>
20979
20980         * nnmail.el (nnmail-fancy-expiry-target): Use current-time instead
20981         of current-time-string.
20982
20983 2005-11-20  Stefan Schimanski  <schimmi@debian.org>  (tiny change)
20984
20985         * nnmail.el (nnmail-fancy-expiry-target): Protect against invalid
20986         date header.
20987
20988 2005-11-19  Kevin Greiner  <kevin.greiner@compsol.cc>
20989
20990         * gnus-sum.el (gnus-fetch-old-headers): Updated docs to warn that
20991         it can seriously impact performance as it bypasses the agent's
20992         local caches.
20993
20994 2005-11-19  Kevin Greiner  <kevin.greiner@compsol.cc>
20995
20996         * gnus-agent.el (gnus-agent-possibly-synchronize-flags): A server
20997         must be explicitly online rather than "not explicitly offline" for
20998         its flags to be synchronized.
20999
21000         * gnus-sum.el (gnus-summary-remove-process-mark): Always return t so
21001         that gnus-uu-unmark-thread will function correctly.
21002
21003         * gnus-group.el (gnus-total-fetched-for): Reduced cutoff so that
21004         1024K is instead displayed as 1M.
21005
21006 2005-11-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21007
21008         * flow-fill.el (fill-flowed): Bind adaptive-fill-mode to nil.
21009
21010 2005-11-16  Boris Samorodov  <bsam@ipt.ru>  (tiny change)
21011
21012         * imap.el (imap-kerberos4-open): Ignore SSL stuff.
21013
21014 2005-11-13  Kevin Greiner  <kevin.greiner@compsol.cc>
21015
21016         * gnus-agent.el (gnus-agent-read-local): Trivial fix to format of
21017         error message to display actual error condition.
21018         (gnus-agent-save-local): Avoid saving symbols that are bound to
21019         nil as they simply result in a warning message in
21020         gnus-agent-read-local.
21021
21022 2005-11-13  Katsumi Yamaoka  <yamaoka@jpl.org>
21023
21024         * gnus-start.el (gnus-dribble-read-file): Use make-local-variable
21025         rather than make-variable-buffer-local for file-precious-flag.
21026
21027 2005-11-12  Kevin Greiner  <kevin.greiner@compsol.cc>
21028
21029         * gnus-agent.el (gnus-agent-braid-nov): Now tests new nov entries
21030         for duplicates which are removed.  The invalid sort check then
21031         triggers a rescan after the sort as sorting may have moved
21032         duplicate entries such that they can be cheaply detected.
21033
21034 2005-11-13  Katsumi Yamaoka  <yamaoka@jpl.org>
21035
21036         * gnus-start.el (gnus-dribble-read-file): Quote file-precious-flag.
21037
21038 2005-11-12  Kevin Greiner  <kevin.greiner@compsol.cc>
21039
21040         * gnus-agent.el (gnus-agent-article-alist-save-format):
21041         Change internal variable to a custom variable.  Change default value
21042         from compressed(2) to uncompressed(1).
21043         (gnus-agent-read-agentview): Reversed revision 7.8 to restore
21044         support for uncompressed agentview files.  Taken together, reading
21045         the agentview file should now be 6-7 times faster.
21046
21047 2005-11-11  Jan Nieuwenhuizen  <janneke@gnu.org>
21048
21049         * gnus-start.el (gnus-dribble-read-file): Set file-precious-flag,
21050         as a buffer-local variable.  This avoids creating truncated
21051         dribble files as a result of a hang up, eg.
21052
21053 2006-01-03  Rodrigo Ventura  <yoda@isr.ist.utl.pt>  (tiny change)
21054
21055         * gnus-xmas.el (gnus-xmas-group-startup-message): Typo
21056         gnus-splash-face -> gnus-splash.  Fixes starting from a TTY in
21057         XEmacs.
21058
21059 2005-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
21060
21061         * gnus-start.el (gnus-start-draft-setup):
21062         Enforce `gnus-draft-mode' for nndraft:drafts at startup.
21063
21064         * gnus.el (gnus-splash): Change custom group.
21065         (gnus-group-get-parameter, gnus-group-parameter-value):
21066         Describe allow-list argument.
21067
21068         * gnus-agent.el (gnus-agent-article-alist-save-format): Format doc
21069         string.
21070
21071 2005-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
21072
21073         * gnus-art.el (gnus-default-article-saver): Add user-defined
21074         `function' to custom type.
21075
21076 2005-10-30  Chong Yidong  <cyd@stupidchicken.com>
21077
21078         * imap.el (imap-open): Handle case where buffer is a buffer
21079         object.
21080
21081 2005-11-29  Reiner Steib  <Reiner.Steib@gmx.de>
21082
21083         * gnus-cache.el (gnus-cache-rename-group): Wrap doc strings and
21084         long lines.
21085         (gnus-cache-delete-group): Wrap doc strings.
21086
21087         * gnus-agent.el (gnus-agent-rename-group)
21088         (gnus-agent-delete-group): Wrap doc strings.
21089
21090 2005-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
21091
21092         * messagexmas.el (message-use-toolbar): Change the valid values
21093         into default, top, bottom, left, and right.
21094         (message-toolbar-thickness): New variable.
21095         (message-xmas-setup-toolbar): Locate gnus-xmas-glyph-directory as
21096         well.
21097         (message-setup-toolbar): Make it work.
21098
21099         * gnus-xmas.el (gnus-xmas-update-toolbars): New function.
21100         (gnus-use-toolbar): Change the valid values into default, top,
21101         bottom, left, and right.
21102         (gnus-toolbar-thickness): New variable.
21103         (gnus-xmas-setup-toolbar): New function.
21104         (gnus-xmas-setup-group-toolbar): Use it.
21105         (gnus-xmas-setup-summary-toolbar): Use it.
21106
21107 2005-11-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21108
21109         * gnus-start.el (gnus-1): Add "native" to
21110         gnus-predefined-server-alist.
21111
21112         * gnus.el (gnus-method-to-server): Don't add "native" to the
21113         lists here, because that leads to problems when
21114         gnus-select-method is bound.
21115
21116 2005-11-09  Simon Josefsson  <jas@extundo.com>
21117
21118         * gnus-sum.el (gnus-article-sort-by-date-reverse): Remove,
21119         use (not sort-by-date) instead.
21120
21121 2005-11-30  Stefan Monnier  <monnier@iro.umontreal.ca>
21122
21123         * gnus-delay.el (gnus-delay-group): Don't autoload.
21124         It's useless and could trigger a bug in cus-dep.el causing ldefs-boot
21125         to be re-loaded when customizing the `gnus-delay' group.
21126
21127 2005-11-19  Chong Yidong  <cyd@stupidchicken.com>
21128
21129         * message.el: Revert last changes.
21130         (message-insert-citation-line): Use newlines.
21131
21132 2005-11-17  Chong Yidong  <cyd@stupidchicken.com>
21133
21134         * message.el (message-courtesy-message)
21135         (message-mark-insert-begin, message-mark-insert-end)
21136         (message-elide-ellipsis, message-cancel-message)
21137         (message-add-header, message-change-subject)
21138         (message-cross-post-followup-to-header)
21139         (message-cross-post-insert-note, message-reduce-to-to-cc)
21140         (message-widen-reply, message-delete-not-region)
21141         (message-kill-to-signature, message-insert-signature)
21142         (message-insert-importance-high, message-insert-importance-low)
21143         (message-insert-or-toggle-importance)
21144         (message-insert-disposition-notification-to)
21145         (message-indent-citation, message-yank-original)
21146         (message-cite-original-without-signature, message-cite-original)
21147         (message-insert-citation-line, message-position-on-field)
21148         (message-fix-before-sending, message-send-mail-partially)
21149         (message-send-mail, message-send-mail-with-sendmail)
21150         (message-send-mail-with-qmail, message-send-news)
21151         (message-check-news-header-syntax, message-generate-headers)
21152         (message-insert-courtesy-copy, message-fill-address)
21153         (message-fill-header, message-shorten-references)
21154         (message-setup-1, message-cancel-news)
21155         (message-forward-make-body-plain, message-forward-make-body-mime)
21156         (message-forward-make-body-mml, message-encode-message-body)
21157         (message-forward-make-body-digest-plain)
21158         (message-forward-make-body-digest-mime)
21159         (message-use-alternative-email-as-from): Insert `hard-newline'
21160         instead of ordinary newlines.
21161
21162 2005-11-09  Katsumi Yamaoka  <yamaoka@jpl.org>
21163
21164         * message.el (message-generate-headers): Downcase the argument
21165         given to message-check-element.
21166
21167 2005-11-08  Kevin Greiner  <kevin.greiner@compsol.cc>
21168
21169         * nntp.el (nntp-authinfo-rejected): New error condition.
21170         (nntp-wait-for): Use new error condition to signal authentication
21171         error.
21172         (nntp-retrieve-data): Rethrow new error condition to break out of
21173         recursive call to nntp-send-authinfo.
21174
21175 2005-11-08  Romain Francoise  <romain@orebokech.com>
21176
21177         * gnus-sum.el (gnus-summary-catchup-and-goto-prev-group): New function.
21178         (gnus-summary-exit-map): Bind to `Z p'.
21179         (gnus-summary-make-menu-bar): Add menu item.
21180
21181 2005-11-02  Reiner Steib  <Reiner.Steib@gmx.de>
21182
21183         * gnus-art.el (gnus-article-treat-custom): Add `first'.
21184         (gnus-treat-*): Add `first' in all doc strings.
21185
21186         * gnus-group.el (gnus-group-compact-group): Fix typo.
21187
21188 2005-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
21189
21190         * gnus.el (gnus-parameters-case-fold-search): New variable.
21191         (gnus-parameters-get-parameter): Use it.
21192
21193         * gnus-score.el (gnus-home-score-file): Doc fix.
21194
21195 2005-11-01  Xavier Maillard  <zedek@gnu-rox.org>  (tiny change)
21196
21197         * gnus-score.el (gnus-update-score-entry-dates): Doc fix.
21198
21199 2005-10-31  Katsumi Yamaoka  <yamaoka@jpl.org>
21200
21201         * mm-util.el (mm-special-display-p): New function.
21202
21203         * mml.el (mml-preview): Use it; doc fix.
21204
21205 2005-10-30  Chong Yidong  <cyd@stupidchicken.com>
21206
21207         * imap.el (imap-open): Handle case where buffer is a buffer object.
21208
21209 2005-10-29  Romain Francoise  <romain@orebokech.com>
21210
21211         * message.el (message-fix-before-sending): Fix comment.
21212
21213 2005-10-29  Jari Aalto  <jari.aalto@cante.net>
21214
21215         * gnus-sum.el (gnus-article-sort-by-date-reverse): New function.
21216
21217 2005-10-29  Jari Aalto  <jari.aalto@cante.net>
21218
21219         * score-mode.el (gnus-score-edit-done-hook): Introduce variable.
21220         Used in gnus-score.el.
21221
21222 2005-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
21223
21224         * mm-util.el (mm-codepage-setup): Remove bogus alias test.
21225
21226 2005-10-27  Reiner Steib  <Reiner.Steib@gmx.de>
21227
21228         * flow-fill.el (fill-flowed-encode-tests): Restore trailing
21229         whitespace removed in revision 7.8.  Use concatenated string to
21230         protect trailing whitespace.
21231
21232 2005-10-27  Jouni K. Seppänen  <jks@iki.fi>
21233
21234         * nnimap.el (nnimap-search-uids-not-since-is-evil): Add variable.
21235         (nnimap-request-expire-articles): Use it to avoid sending 'UID
21236         SEARCH UID ... NOT SINCE' queries, for inefficient servers like
21237         Courier IMAP ("some version from 2004").  Mostly based on similar
21238         code in the same function.
21239
21240 2005-10-26  Didier Verna  <didier@xemacs.org>
21241
21242         * gnus-group.el (gnus-group-compact-group): Invalidate original
21243         article buffer.
21244         * gnus-srvr.el (gnus-server-compact-server): Ditto.
21245         * nnml.el (nnml-request-compact-group): Handle self Xref: field in
21246         NOV database and in article itself.
21247         Invalidate article backlog.
21248
21249 2005-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
21250
21251         * mm-uu.el (mm-uu-hide-markers): Fix XEmacs case.
21252
21253 2005-10-26  Simon Josefsson  <jas@extundo.com>
21254
21255         * flow-fill.el (fill-flowed): Flow-fill unquoted lines too, revert
21256         part of 2004-07-25 change.
21257
21258 2005-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
21259
21260         * message.el (message-display-completion-list): New function.
21261         (message-expand-group): Use it; make sure the Completions buffer
21262         is modifiable.
21263 2005-10-23  Chong Yidong  <cyd@stupidchicken.com>
21264
21265         * gnus-sum.el (gnus-ignored-from-addresses): Handle case where
21266         user-mail-name is an empty string.
21267
21268 2005-10-25  Reiner Steib  <Reiner.Steib@gmx.de>
21269
21270         * gnus-score.el (gnus-default-adaptive-score-alist): Set defaults
21271         depending on gnus-score-decay-constant.
21272
21273         * encrypt.el (encrypt-insert-file-contents)
21274         (encrypt-write-file-contents): Don't use `gnus-message'.
21275
21276         * mm-uu.el (mm-uu-verbatim-marks-extract): Add four start and end
21277         arguments.
21278         (mm-uu-type-alist): Add message-marks and insert-marks.
21279         Pass arguments to mm-uu-verbatim-marks-extract.
21280         (mm-uu-hide-markers): New variable.
21281         (mm-uu-extract): Use face similar to `gnus-cite-3'.
21282
21283         * gnus-fun.el (gnus-convert-image-to-x-face-command)
21284         (gnus-convert-image-to-face-command): Use "convert" by default to
21285         allow other input image formats.
21286         (gnus-x-face-from-file, gnus-face-from-file): Adjust doc strings
21287         accordingly.
21288
21289 2005-10-23  Simon Josefsson  <jas@extundo.com>
21290
21291         * imap.el (imap-gssapi-program): Align command line parameters
21292         with latest GNU SASL.
21293         (imap-gssapi-open): Ignore 'Trying ...' messages from GNU SASL.
21294
21295 2005-10-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21296
21297         * nnslashdot.el (nnslashdot-retrieve-headers-1): Update to new
21298         HTML.
21299         (nnslashdot-request-article): Ditto.
21300
21301         * lpath.el (featurep): Add nobreak-char-display.
21302
21303 2005-10-20  Hiroshi Fujishima  <hiroshi.fujishima@gmail.com>  (tiny change)
21304
21305         * mail-source.el (mail-source-fetch-pop): Require pop3.
21306         (mail-source-check-pop): Ditto.
21307
21308 2005-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
21309
21310         * rfc2047.el (rfc2047-decode-encoded-words): Fix the handling of
21311         errors.
21312
21313 2005-10-19  Reiner Steib  <Reiner.Steib@gmx.de>
21314
21315         * gnus-art.el (gnus-treat-strip-trailing-blank-lines)
21316         (gnus-treat-strip-leading-blank-lines): Improve doc string.
21317
21318         * message.el (message-tool-bar-local-item-from-menu): Fix comment.
21319
21320         * mm-bodies.el (mm-decode-string):
21321         Call `mm-charset-to-coding-system' with allow-override argument.
21322
21323 2005-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
21324
21325         * rfc2047.el (rfc2047-allow-incomplete-encoded-text): New variable.
21326         (rfc2047-charset-to-coding-system): New function.
21327         (rfc2047-decode-encoded-words): New function.
21328         (rfc2047-decode-region): Use them.
21329         (rfc2047-decode-cte): Remove.
21330         (rfc2047-parse-and-decode): Remove.
21331         (rfc2047-decode): Remove.
21332
21333 2005-10-15  Kenichi Handa  <handa@m17n.org>
21334
21335         * rfc2047.el (rfc2047-decode-cte): New function.
21336         (rfc2047-decode-region): Change the way to decode successive
21337         encoded-words: decode B- or Q-encoding in each encoded-word,
21338         concatenate them, and decode it as charset.
21339
21340 2005-10-14  Katsumi Yamaoka  <yamaoka@jpl.org>
21341
21342         * lpath.el: Fbind codepage-setup for XEmacs.
21343
21344 2005-10-17  Chong Yidong  <cyd@stupidchicken.com>
21345
21346         * gnus-cus.el (gnus-custom-map): New variable.  Bind mouse-1 to
21347         widget-move-and-invoke.
21348         (gnus-custom-mode): Use gnus-custom-map.
21349
21350 2005-10-15  Bill Wohler  <wohler@newt.com>
21351
21352         * message.el (message-tool-bar-map): Rename image file from
21353         mail_send to mail/send.
21354
21355 2005-10-16  Masatake YAMATO  <jet@gyve.org>
21356
21357         * message.el (message-expand-group): Pass the common
21358         prefix substring of completion to `display-completion-list'.
21359
21360 2005-10-13  Reiner Steib  <Reiner.Steib@gmx.de>
21361
21362         * mml-sec.el (mml-secure-method): New internal variable.
21363         (mml-secure-sign, mml-secure-encrypt, mml-secure-message-sign)
21364         (mml-secure-message-sign-encrypt, mml-secure-message-encrypt):
21365         New functions using mml-secure-method.
21366
21367         * mml.el (mml-mode-map): Add key bindings for those functions.
21368         (mml-menu): Simplify security menu entries.  Suggested by Jesper
21369         Harder <harder@myrealbox.com>.
21370         (mml-attach-file, mml-attach-buffer, mml-attach-external):
21371         Goto end of message if point is the headers of the message.
21372
21373         * message.el (message-in-body-p): New function.
21374
21375         * assistant.el: Autoload gnus-util and netrc.
21376
21377         * mm-util.el (mm-charset-to-coding-system): Add allow-override.
21378         Use `mm-charset-override-alist' only when decoding.
21379
21380         * mm-bodies.el (mm-decode-body):
21381         Call `mm-charset-to-coding-system' with allow-override argument.
21382
21383         * gnus-art.el (gnus-mime-view-part-as-type-internal): Try to fetch
21384         `filename' from Content-Disposition if Content-Type doesn't
21385         provide `name'.
21386         (gnus-mime-view-part-as-type): Set default instead of
21387         initial-input.
21388
21389 2005-10-09  Daniel Brockman  <daniel@brockman.se>
21390
21391         * format-spec.el (format-spec): Propagate text properties of % spec.
21392
21393 2005-10-12  Reiner Steib  <Reiner.Steib@gmx.de>
21394
21395         * gnus-art.el (gnus-treat-predicate): Add `first'.
21396
21397 2005-10-11  Reiner Steib  <Reiner.Steib@gmx.de>
21398
21399         * mm-util.el (mm-charset-synonym-alist): Improve doc string.
21400         (mm-charset-override-alist): New variable.
21401         (mm-charset-to-coding-system): Use it.
21402         (mm-codepage-setup): New helper function.
21403         (mm-charset-eval-alist): New variable.
21404         (mm-charset-to-coding-system): Use mm-charset-eval-alist.
21405         Warn about unknown charsets.
21406
21407         * dgnushack.el (with-syntax-table): Add some URLs WRT the XEmacs bug.
21408
21409 2005-10-04  David Hansen  <david.hansen@gmx.net>
21410
21411         * nnrss.el (nnrss-request-article): Add support for the comments tag.
21412         (nnrss-check-group): Ditto.
21413
21414 2005-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
21415
21416         * mm-uu.el (mm-uu-verbatim-marks-extract, mm-uu-latex-extract):
21417         Rename x-gnus-verbatim to x-verbatim.
21418         (mm-uu-type-alist): Fix regexp for verbatim-marks.
21419
21420         * mm-decode.el (mm-automatic-display): Rename x-gnus-verbatim to
21421         x-verbatim.
21422
21423         * mm-url.el (mm-url-predefined-programs): Add switches for curl.
21424
21425         * gnus-util.el (gnus-remove-duplicates): Remove.
21426
21427         * nnmail.el (nnmail-article-group): Use mm-delete-duplicates
21428         instead of gnus-remove-duplicates.
21429
21430         * message.el (message-remove-duplicates): Remove.
21431         (message-idna-to-ascii-rhs-1): Use mm-delete-duplicates instead of
21432         message-remove-duplicates.
21433
21434         * mm-util.el (mm-delete-duplicates): Use `delete-dups' if
21435         available, else use implementation from `delete-dups'.
21436
21437         * message.el (message-insert-expires): New function.
21438         (message-mode-map): Add key binding.
21439         (message-mode-field-menu): Add menu entry.
21440         (message-mode): Document it.
21441         (message-make-expires-date): Use `message-make-date'.
21442
21443 2005-10-04  Josh Huber  <huber@alum.wpi.edu>
21444
21445         * message.el (message-make-expires-date): New function.
21446
21447 2005-10-04  Katsumi Yamaoka  <yamaoka@jpl.org>
21448
21449         * Makefile.in (list-installed-shadows): New entry.
21450         (install): Use it.
21451         (remove-installed-shadows): New entry.
21452
21453         * dgnushack.el (dgnushack-default-load-path): New variable.
21454         (dgnushack-find-lisp-shadows): New function.
21455         (dgnushack-remove-lisp-shadows): New function.
21456
21457 2005-10-02  Katsumi Yamaoka  <yamaoka@jpl.org>
21458
21459         * Makefile.in (install-el-elc): New entry.
21460         (install): Use it so that .el files are necessarily installed.
21461
21462 2005-09-30  Katsumi Yamaoka  <yamaoka@jpl.org>
21463
21464         * time-date.el: Autoload parse-time-string, XEmacs needs it.
21465
21466 2005-09-30  Stefan Monnier  <monnier@iro.umontreal.ca>
21467
21468         * mm-decode.el (mm-inline-media-tests): Check presence of the diff-mode
21469         function rather than the diff-mode.el package.
21470         (mm-display-external): Use with-current-buffer.
21471         (mm-viewer-completion-map, mm-viewer-completion-map):
21472         Move initialization inside declaration.
21473
21474 2005-09-29  Simon Josefsson  <jas@extundo.com>
21475
21476         * spam.el: Load hashcash when compiling, to avoid warnings.
21477         Don't autoload mail-check-payment.
21478         (spam-check-hashcash): Define unconditionally, since hashcash.el
21479         is part of Gnus now.  Ignore errors from payment checking.
21480
21481 2005-09-28  Reiner Steib  <Reiner.Steib@gmx.de>
21482
21483         * message.el (message-bold-region, message-unbold-region):
21484         Rename from `bold-region' and `unbold-region'.
21485
21486         * message.el: Remove useless autoloads.
21487
21488 2005-09-28  Simon Josefsson  <jas@extundo.com>
21489
21490         * message.el (message-use-idna): Default to t.
21491         (message-use-idna): Test whether encoding works too.  Doc fix.
21492
21493 2005-09-28  Katsumi Yamaoka  <yamaoka@jpl.org>
21494
21495         * nntp.el (nntp-warn-about-losing-connection): Remove.
21496
21497 2005-09-27  Reiner Steib  <Reiner.Steib@gmx.de>
21498
21499         * mm-uu.el (mm-uu-emacs-sources-regexp): Make variable
21500         customizable.  Change default value.
21501         (mm-uu-diff-groups-regexp): Change default value.
21502         (mm-uu-type-alist): Add doc string.
21503         (mm-uu-configure): Add doc string.  Make it interactive.
21504         (mm-uu-tex-groups-regexp): New variable.
21505         (mm-uu-latex-extract, mm-uu-latex-test): New functions.
21506         (mm-uu-type-alist): Add LaTeX documents.
21507         (mm-uu-verbatim-marks-extract): Use "text/x-gnus-verbatim" instead
21508         of "text/verbatim".
21509         (mm-uu-diff-groups-regexp): Fix missing quotes from previous commit.
21510
21511         * mm-decode.el (mm-automatic-display): Use "text/x-gnus-verbatim"
21512         instead of "text/verbatim".
21513
21514         * message.el (message-mark-inserted-region)
21515         (message-mark-insert-file): Use slrn style marks when called with
21516         prefix argument.
21517
21518 2005-09-27  Simon Josefsson  <jas@extundo.com>
21519
21520         * message.el (message-idna-to-ascii-rhs-1): Reformat.
21521
21522 2005-09-27  Arne Jørgensen  <arne@arnested.dk>
21523
21524         * message.el (message-remove-duplicates): New function.
21525         Implementation borrowed from `gnus-remove-duplicates'.
21526         (message-idna-to-ascii-rhs): Also encode idna addresses in
21527         Reply-To:, Mail-Reply-To: and Mail-Followup-To:.
21528         (message-idna-to-ascii-rhs-1): When `message-use-idna' is 'ask
21529         only ask about the same idna domain once per header and also tell
21530         in what header to replace the idna domain.
21531
21532         * gnus-art.el (article-decode-idna-rhs): Also decode idna
21533         addresses in Reply-To:, Mail-Reply-To: and Mail-Followup-To:.
21534         (article-decode-idna-rhs): Fix regexp so that all idna-address in
21535         a header is decoded and not just the last one.
21536
21537 2005-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
21538
21539         * gnus-art.el (gnus-mime-display-single): Don't modify text if it
21540         has been decoded.
21541
21542         * mm-decode.el (mm-automatic-display): Add text/verbatim.
21543         (mm-insert-part): Don't modify text if it has been decoded.
21544
21545         * mm-uu.el (mm-uu-verbatim-marks-extract): Say text has been
21546         decoded.
21547
21548         * mm-view.el (mm-inline-text): Don't strip text props unless
21549         decoding enriched or richtext parts.
21550
21551 2005-09-25  Romain Francoise  <romain@orebokech.com>
21552
21553         * gnus-agent.el (gnus-agent-expire-group, gnus-agent-expire):
21554         * gnus-start.el (gnus-subscribe-interactively):
21555         * gnus-uu.el (gnus-uu-grab-articles):
21556         End `yes-or-no-p' and `y-or-n-p' prompts with question mark and
21557         space.
21558
21559 2005-09-24  Emilio C. Lopes  <eclig@gmx.net>
21560
21561         * smime.el (smime-sign-buffer, smime-decrypt-buffer):
21562         * mm-view.el (mm-view-pkcs7-decrypt):
21563         * gnus-sum.el (gnus-summary-limit-to-extra)
21564         (gnus-summary-respool-article, gnus-read-move-group-name):
21565         * gnus-score.el (gnus-summary-increase-score):
21566         * gnus-util.el (gnus-completing-read-with-default):
21567         * gnus-art.el (gnus-read-save-file-name)
21568         (gnus-summary-save-in-rmail, gnus-summary-save-in-mail)
21569         (gnus-summary-save-in-file, gnus-summary-save-body-in-file):
21570         * message.el (message-check-news-header-syntax):
21571         Follow convention for reading with the minibuffer.
21572
21573 2005-09-22  Reiner Steib  <Reiner.Steib@gmx.de>
21574
21575         * spam-report.el (spam-report-url-ping-plain):
21576         Use gnus-extended-version as User-Agent.
21577
21578         * gnus-agent.el (gnus-agent-synchronize-flags): Explain why the
21579         default value is nil.
21580
21581         * mm-uu.el (mm-uu-type-alist): Add slrn style verbatim-marks.
21582         (mm-uu-verbatim-marks-extract): New function.
21583         (mm-uu-extract): New face.
21584         (mm-uu-copy-to-buffer): Use it.
21585
21586         * spam-report.el (spam-report-gmane-ham): Rename from
21587         `spam-report-gmane-unspam'.
21588         (spam-report-gmane-internal): Rename from `spam-report-gmane'.
21589         Simplify use of UNSPAM argument.  Fetch "X-Report-Unspam" header.
21590
21591         * spam.el (spam-report-gmane-spam, spam-report-gmane-ham):
21592         Autoload.
21593         (spam-report-gmane-unregister-routine):
21594         Rename `spam-report-gmane-unspam' to `spam-report-gmane-ham'.
21595
21596 2005-09-21  Teodor Zlatanov  <tzz@lifelogs.com>
21597
21598         * spam.el (spam-use-gmane, spam-report-gmane-register-routine)
21599         (spam-report-gmane-unregister-routine): Add support for gmane
21600         unregistration.
21601
21602         * spam-report.el (spam-report-gmane-unspam)
21603         (spam-report-gmane-spam): Add new wrappers around spam-report-gmane.
21604         (spam-report-gmane): Change to take a single article and do unspam
21605         registration.
21606
21607 2005-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
21608
21609         * mm-url.el (mm-url-decode-entities): Fix regexp.
21610
21611 2005-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21612
21613         * gnus-agent.el (gnus-agent-synchronize-flags): Switch the
21614         default to nil, to be able to use Gnus at all.  If the default
21615         switches to something else, then the function should be fixed not
21616         be exceedingly slow.
21617
21618 2005-09-20  Teodor Zlatanov  <tzz@lifelogs.com>
21619
21620         * gnus-start.el (gnus-activate-group): If the server is nil, don't
21621         fail hard.
21622
21623         * spam-report.el: Add better Keywords line.
21624
21625         * spam.el: Add Maintainer and better Keywords line.
21626
21627 2005-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
21628
21629         * gnus-art.el (gnus-article-replace-part)
21630         (gnus-mime-replace-part): New functions.
21631         (gnus-mime-action-alist, gnus-mime-button-commands)
21632         (gnus-mime-save-part-and-strip): Add file argument.
21633         (gnus-article-part-wrapper): Add interactive argument.
21634
21635         * gnus-sum.el (gnus-summary-mime-map):
21636         Add `gnus-article-replace-part'.
21637
21638 2005-09-19  Didier Verna  <didier@xemacs.org>
21639
21640         The nnml compaction feature:
21641         * nnml.el (nnml-request-compact-group): New function.
21642         * nnml.el (nnml-request-compact): New function.
21643         * gnus-int.el (gnus-request-compact-group): New function.
21644         * gnus-int.el (gnus-request-compact): New function.
21645         * gnus-group.el (gnus-group-compact-group): New function.
21646         * gnus-group.el (gnus-group-group-map): Bind it to 'G z'.
21647         * gnus-group.el (gnus-group-make-menu-bar): Add an entry for it.
21648         * gnus-srvr.el (gnus-server-compact-server): New function.
21649         * gnus-srvr.el (gnus-server-mode-map): Bind it to 'z'.
21650         * gnus-srvr.el (gnus-server-make-menu-bar): Add an entry for it.
21651
21652 2005-09-18  Deepak Goel  <deego@gnufans.org>
21653
21654         * sieve.el (sieve-help): Fix `message' call: first arg should be a
21655         format spec.
21656
21657 2005-09-16  Katsumi Yamaoka  <yamaoka@jpl.org>
21658
21659         * gnus.el (gnus-group-startup-message): Bind image-load-path.
21660
21661 2005-09-15  Romain Francoise  <romain@orebokech.com>
21662
21663         * message.el (message-fill-paragraph): Clarify docstring.
21664
21665 2005-09-14  Katsumi Yamaoka  <yamaoka@jpl.org>
21666
21667         * gnus-art.el (gnus-mime-display-part): Protect against broken
21668         MIME messages.
21669
21670 2005-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
21671
21672         * gnus-sum.el (gnus-summary-edit-article-done): Remove text props
21673         before parsing header.
21674
21675 2005-09-11  Jari Aalto  <jari.aalto@cante.net>
21676
21677         * html2text.el (html2text-replace-list): Add new entities.
21678
21679 2005-09-11  Romain Francoise  <romain@orebokech.com>
21680
21681         * message.el (message-alternative-emails): Improve docstring.
21682         (message-setup-1): Call `message-use-alternative-email-as-from'
21683         after `message-setup-hook' to give it precedence over posting
21684         styles, etc.
21685         (message-use-alternative-email-as-from): Add docstring.
21686         Remove the original From header if present.
21687
21688         * nnml.el (nnml-compressed-files-size-threshold): New variable.
21689         (nnml-save-mail): Use it.
21690
21691         * gnus-uu.el (gnus-uu-mark-series): Return number of marked
21692         articles.  Add new argument `silent'.
21693         (gnus-uu-mark-all): Report the total number of marked articles.
21694
21695 2005-09-10  Romain Francoise  <romain@orebokech.com>
21696
21697         * gnus-uu.el (gnus-message-process-mark): Use gnus-message.
21698         (gnus-uu-mark-series): Likewise.
21699
21700 2005-09-10  Reiner Steib  <Reiner.Steib@gmx.de>
21701
21702         * spam-report.el (spam-report-gmane): Fix generation of spam
21703         report URL.
21704
21705 2005-09-10  Simon Josefsson  <jas@extundo.com>
21706
21707         * gnus-agent.el (gnus-agent-synchronize-flags): Make the default
21708         t, based on discussion on the ding list with Robert Epprecht
21709         <epprecht@solnet.ch>.
21710
21711 2005-09-07  Reiner Steib  <Reiner.Steib@gmx.de>
21712
21713         * spam-report.el (spam-report-gmane): Make it work without
21714         X-Report-Spam header.  Gmane now only provides Archived-At.
21715         This is only used if `spam-report-gmane-use-article-number' is nil.
21716         (spam-report-gmane-spam-header): Remove.  Not used anymore.
21717
21718         * gnus-sum.el (gnus-thread-sort-by-recipient): New function to
21719         make `gnus-summary-sort-by-recipient' work with threading.
21720
21721         * nnweb.el (nnweb-google-wash-article): Print a message if article
21722         is not available.
21723
21724 2005-09-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
21725
21726         * gnus-art.el (gnus-mime-display-single): Revert 2004-10-07
21727         change.  Decode text/* parts content before displaying.
21728
21729 2005-09-06  Reiner Steib  <Reiner.Steib@gmx.de>
21730
21731         * mml-smime.el: Remove defvar of gnus-extract-address-components.
21732
21733 2005-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
21734
21735         * mm-view.el (mm-display-inline-fontify): Disable support modes.
21736
21737         * lpath.el: Don't bind mc-pgp-always-sign, url-current-object,
21738         url-package-name, url-package-version,
21739         w3m-cid-retrieve-function-alist, w3m-current-buffer,
21740         w3m-display-inline-images, and w3m-minor-mode-map.
21741
21742 2005-09-05  Reiner Steib  <Reiner.Steib@gmx.de>
21743
21744         * message.el (message-tab-body-function): Fix mismatched custom type.
21745
21746         * gnus.el (gnus-group-change-level-function): Ditto.
21747
21748         * gnus-msg.el (gnus-outgoing-message-group): Ditto.
21749
21750         * gnus-art.el (gnus-signature-limit)
21751         (gnus-article-mime-part-function): Ditto.
21752
21753 2005-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
21754
21755         * mml.el (mml-mode): Silence the byte compiler.
21756
21757         * gnus-art.el (gnus-article-jump-to-part): Redisplay the article
21758         using `(sit-for 0)' before moving the point to the specified part;
21759         skip unbuttonized parts.
21760         (gnus-article-part-wrapper): Don't use save-window-excursion; don't
21761         return to the summary window if gnus-auto-select-part is non-nil.
21762
21763 2005-09-04  Reiner Steib  <Reiner.Steib@gmx.de>
21764
21765         * mml.el (mml-dnd-protocol-alist, mml-dnd-attach-options):
21766         New variables.
21767         (mml-dnd-attach-file, mml-mode): Use them.
21768
21769         * nnweb.el (nnweb-type-definition, nnweb-google-wash-article):
21770         Make fetching article by MID work again for Google Groups.
21771         Add FIXME concerning gnus-group-make-web-group.
21772
21773         * mml-smime.el (mml-smime-sign-query, mml-smime-get-dns-cert):
21774         Don't depend on Gnus by using mail-extract-address-components if
21775         gnus-extract-address-components is not bound.
21776
21777 2005-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21778
21779         * gnus-art.el (gnus-mime-display-security): Don't display the
21780         signature, but only the signed part.
21781
21782 2005-09-02  Katsumi Yamaoka  <yamaoka@jpl.org>
21783
21784         * gnus-sum.el (gnus-thread-hide-subtree): Doc fix.
21785
21786         * gnus-msg.el (gnus-inews-insert-gcc): Fix the mistake of using
21787         list, not listp.
21788
21789 2005-09-02  Hrvoje Niksic  <hniksic@xemacs.org>
21790
21791         * mm-encode.el (mm-encode-content-transfer-encoding):
21792         Likewise when encoding.
21793
21794         * mm-bodies.el (mm-decode-content-transfer-encoding):
21795         De-canonicalize CRLF for all text content types, not just
21796         text/plain.
21797
21798 2005-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
21799
21800         * gnus-art.el (gnus-article-part-wrapper): Error if there's no
21801         valid article; point arrow and cursor at the MIME button.
21802
21803 2005-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
21804
21805         * gnus-art.el (gnus-mime-save-part-and-strip): Clarify prompt.
21806         Suggested by Dan Christensen <jdc@uwo.ca>.
21807
21808         * mm-decode.el (mm-save-part): Enable change of prompt.
21809
21810 2005-08-29  Jari Aalto  <jari.aalto@cante.net>
21811
21812         * gnus-msg.el (gnus-inews-add-send-actions):
21813         Make `message-post-method' lambda parameter ARG `&optional'.
21814
21815 2005-08-29  Reiner Steib  <Reiner.Steib@gmx.de>
21816
21817         * gnus-sum.el (gnus-summary-mime-map):
21818         Add gnus-article-save-part-and-strip, gnus-article-delete-part and
21819         gnus-article-jump-to-part.
21820
21821         * gnus-art.el (gnus-article-edit-article): Add quiet argument.
21822         (gnus-article-edit-part): Use it.
21823         (gnus-article-part-wrapper): Add no-handle argument.
21824         (gnus-article-save-part-and-strip, gnus-article-delete-part):
21825         New functions.
21826
21827 2005-08-29  Romain Francoise  <romain@orebokech.com>
21828
21829         * gnus-fun.el (gnus-convert-image-to-face-command): Fix typo in
21830         docstring.
21831         (gnus-face-from-file): Likewise.
21832
21833 2005-08-29  Reiner Steib  <Reiner.Steib@gmx.de>
21834
21835         * gnus-art.el (gnus-mime-save-part-and-strip): Don't prompt.
21836         (gnus-mime-delete-part): Don't prompt if `gnus-expert-user' is
21837         non-nil.
21838         (gnus-auto-select-part): New variable.
21839         (gnus-article-jump-to-part): New function.
21840         (gnus-article-edit-part, gnus-mime-save-part-and-strip)
21841         (gnus-mime-delete-part): Allow selecting specified part after
21842         deleting or stripping parts.
21843         (gnus-article-jump-to-part): Don't use `read-number'.  Use last
21844         part if argument is bogus.
21845
21846 2005-08-31  Juanma Barranquero  <lekktu@gmail.com>
21847
21848         * gnus-art.el (w3m-minor-mode-map):
21849         * gnus-spec.el (gnus-newsrc-file-version):
21850         * gnus-util.el (nnmail-active-file-coding-system)
21851         (gnus-original-article-buffer, gnus-user-agent):
21852         * gnus.el (gnus-ham-process-destinations)
21853         (gnus-parameter-ham-marks-alist)
21854         (gnus-parameter-spam-marks-alist, gnus-spam-autodetect)
21855         (gnus-spam-autodetect-methods, gnus-spam-newsgroup-contents)
21856         (gnus-spam-process-destinations, gnus-spam-process-newsgroups):
21857         * mm-decode.el (gnus-current-window-configuration):
21858         * mm-extern.el (gnus-article-mime-handles):
21859         * mm-url.el (url-current-object, url-package-name)
21860         (url-package-version):
21861         * mm-view.el (gnus-article-mime-handles, gnus-newsgroup-charset)
21862         (smime-keys, w3m-cid-retrieve-function-alist)
21863         (w3m-current-buffer, w3m-display-inline-images)
21864         (w3m-minor-mode-map):
21865         * mml-smime.el (gnus-extract-address-components):
21866         * mml.el (gnus-article-mime-handles, gnus-mouse-2)
21867         (gnus-newsrc-hashtb, message-default-charset)
21868         (message-deletable-headers, message-options)
21869         (message-posting-charset, message-required-mail-headers)
21870         (message-required-news-headers):
21871         * mml1991.el (mc-pgp-always-sign):
21872         * mml2015.el (mc-pgp-always-sign):
21873         * nnheader.el (nnmail-extra-headers):
21874         * rfc1843.el (gnus-decode-encoded-word-function)
21875         (gnus-decode-header-function, gnus-newsgroup-name):
21876         * spam-stat.el (gnus-original-article-buffer): Add defvars.
21877
21878 2005-08-22  Karl Chen  <quarl@cs.berkeley.edu>
21879
21880         * gnus-art.el (gnus-treatment-function-alist): Move date-lapsed to
21881         the end of the date treatments.
21882
21883 2005-08-15  Simon Josefsson  <jas@extundo.com>
21884
21885         * pgg.el (url-insert-file-contents): Don't autoload it, Emacs has
21886         it in url-handlers.el and XEmacs in url.el.  Reported by Luca
21887         Capello and Romain Francoise.
21888         (pgg-fetch-key-function): Remove, not used?
21889         (pgg-insert-url-with-w3): Require url, to get
21890         url-insert-file-contents regardless of where it is defined.
21891
21892 2005-08-13  Romain Francoise  <romain@orebokech.com>
21893
21894         * message.el (message-cite-original-1): New function.
21895         (message-cite-original): Use it.
21896         (message-cite-original-without-signature): Ditto.
21897
21898 2005-08-08  Romain Francoise  <romain@orebokech.com>
21899
21900         * message.el (message-yank-empty-prefix): New variable.
21901         (message-indent-citation): Use it.
21902         (message-cite-original-without-signature): Respect X-No-Archive.
21903
21904 2005-08-08  Simon Josefsson  <jas@extundo.com>
21905
21906         * pgg.el: Autoload url-insert-file-contents instead of loading
21907         w3/url.
21908         (pgg-insert-url-with-w3): Don't load url here.
21909
21910 2005-08-07  Jesper Harder  <harder@phys.au.dk>
21911
21912         * message.el (message-kill-to-signature): Don't insert newline at
21913         bol.
21914         (message-newline-and-reformat): Bind fill-paragraph-function to nil.
21915
21916 2005-08-06  Romain Francoise  <romain@orebokech.com>
21917
21918         * message.el (message-user-fqdn): Fix typo in docstring.
21919
21920 2005-08-05  Daiki Ueno  <ueno@unixuser.org>
21921
21922         * mml2015.el (mml2015-pgg-sign): Make sure micalg is correct.
21923
21924         * pgg-parse.el (pgg-parse-hash-algorithm-alist): Add SHA-2.
21925
21926 2005-08-05  Katsumi Yamaoka  <yamaoka@jpl.org>
21927
21928         * mm-bodies.el (mm-encode-body): Use coding system rather than
21929         charset to encode text.
21930
21931         * mm-util.el (mm-find-mime-charset-region): Attempt to reduce the
21932         number of charsets if utf-8 is available (XEmacs).
21933
21934 2005-08-04  Reiner Steib  <Reiner.Steib@gmx.de>
21935
21936         * gnus-art.el (gnus-button-valid-localpart-regexp): New variable
21937         taken from `gnus-button-mid-or-mail-regexp'.
21938         (gnus-button-mid-or-mail-regexp, gnus-button-alist): Use it.
21939         (gnus-button-alist): Improve regexp for domain part of the MIDs
21940         for news:localpart@domain buttons.
21941         (gnus-button-ctan-directory-regexp): Update.
21942
21943 2005-08-02  Katsumi Yamaoka  <yamaoka@jpl.org>
21944
21945         * sieve-manage.el (sieve-manage-interactive-login):
21946         Use make-local-variable rather than make-variable-buffer-local.
21947         (sieve-manage-open): Ditto.
21948         (sieve-manage-authenticate): Ditto.
21949
21950         * mml.el (mml-generate-mime-1): Make the content type default to
21951         text/plain if the filename is not specified.
21952
21953 2005-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
21954
21955         * gnus-uu.el (gnus-uu-save-article): Use insert-buffer-substring
21956         instead of insert-buffer.
21957
21958         * message.el (message-yank-original): Ditto; set the mark at the
21959         end of the yanked message.
21960
21961 2005-07-29  Katsumi Yamaoka  <yamaoka@jpl.org>
21962
21963         * gnus-art.el (gnus-article-next-page-1): Reduce the number of
21964         lines to scroll rather than to stop it.
21965
21966         * mml.el (mml-generate-default-type): Add doc string.
21967         (mml-generate-mime-1): Use mm-default-file-encoding or make it
21968         default to application/octet-stream when determining the content
21969         type if it is not specified for the part or the mml contents; add
21970         a comment about mml-generate-default-type.
21971
21972 2005-07-29  Reiner Steib  <Reiner.Steib@gmx.de>
21973
21974         * mml.el (mml-generate-mime-1): Use mm-default-file-encoding or
21975         make it default to application/octet-stream when determining the
21976         content type if it is not specified for the external contents.
21977
21978 2005-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
21979
21980         * rfc2231.el (rfc2231-parse-string): Take care that not only a
21981         segmented parameter but also other parameters might be there.
21982
21983 2005-07-27  Katsumi Yamaoka  <yamaoka@jpl.org>
21984
21985         * mm-decode.el (mm-display-external): Delete temp file, directory
21986         and buffer immediately if the external process is exited.
21987
21988 2005-07-26  Katsumi Yamaoka  <yamaoka@jpl.org>
21989
21990         * gnus-art.el (gnus-article-next-page-1): Don't scroll if there're
21991         fewer lines than that of scroll-margin.
21992         (gnus-article-prev-page): Narrow the range to bind scroll-in-place.
21993
21994 2005-07-25  Katsumi Yamaoka  <yamaoka@jpl.org>
21995
21996         * gnus-art.el (gnus-article-next-page): Revert.
21997         (gnus-article-beginning-of-window): New macro.
21998         (gnus-article-next-page-1): Use it.
21999         (gnus-article-prev-page): Ditto.
22000         (gnus-article-edit-part): Use insert-buffer-substring instead of
22001         insert-buffer.
22002         (gnus-article-edit-exit): Ditto.
22003
22004         * gnus-util.el (gnus-beginning-of-window): Remove.
22005         (gnus-end-of-window): Remove.
22006
22007         * lpath.el: Don't bind header-line-format and scroll-margin.
22008
22009 2005-07-25  Simon Josefsson  <jas@extundo.com>
22010
22011         * pgg.el (pgg-insert-url-with-w3): Don't load w3, it is possible
22012         to have the url package without w3.  Reported by Daiki Ueno
22013         <ueno@unixuser.org> and Luigi Panzeri <matley@muppetslab.org>.
22014
22015 2005-07-20  Didier Verna  <didier@xemacs.org>
22016
22017         * gnus-diary.el: Remove the description comment (nndiary is now
22018         properly documented in the Gnus manual).
22019         Fix the spelling of "Back End".
22020         * nndiary.el: Ditto.
22021         Fix the copyright notice.
22022
22023 2005-07-18  Romain Francoise  <romain@orebokech.com>
22024
22025         * gnus-sum.el (gnus-summary-to-prefix)
22026         (gnus-summary-newsgroup-prefix): New variables.
22027         (gnus-summary-from-or-to-or-newsgroups): Use them.
22028
22029 2005-07-17  Romain Francoise  <romain@orebokech.com>
22030
22031         * mml2015.el (mml2015-clean-buffer): Prefix buffer name with a
22032         space as it's generally not especially interesting to the user.
22033
22034 2005-07-16  Romain Francoise  <romain@orebokech.com>
22035
22036         * nnfolder.el (nnfolder-save-buffer): Bind `copyright-update' to
22037         nil to avoid prompting and file modification if one of the
22038         messages at the top of the nnfolder file contains a copyright
22039         notice.
22040         Update copyright notice.
22041
22042         * gnus-uu.el (gnus-uu-save-article): Use `message-make-date'
22043         instead of `current-time-string' as the latter creates a time
22044         string that is not RFC 2822 compliant (it lacks the zone).
22045         Update copyright notice.
22046
22047 2005-07-21  Stefan Monnier  <monnier@iro.umontreal.ca>
22048
22049         * mml.el (mml-minibuffer-read-disposition): Don't use inline by default
22050         for text/rtf.  Display default in prompt.  Pass default for M-n.
22051
22052         * mm-uu.el (mm-uu-copy-to-buffer): Use with-current-buffer.
22053
22054 2005-07-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
22055
22056         * gnus-msg.el (gnus-button-mailto):
22057         Remove save-selected-window-window hackery because it relies on
22058         save-selected-window internals.
22059
22060 2005-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
22061
22062         * gnus-art.el (gnus-article-next-page): Use gnus-end-of-window.
22063         (gnus-article-next-page-1): Use gnus-beginning-of-window.
22064         (gnus-article-prev-page): Ditto.
22065
22066         * gnus-util.el (gnus-beginning-of-window): New function.
22067         (gnus-end-of-window): New function.
22068
22069         * lpath.el: Bind header-line-format and scroll-margin for XEmacs.
22070
22071 2005-07-14  Hiroshi Fujishima  <hiroshi.fujishima@gmail.com>  (tiny change)
22072
22073         * gnus-score.el (gnus-score-edit-all-score):
22074         Set gnus-score-edit-exit-function to gnus-score-edit-done and call
22075         gnus-message.
22076
22077 2005-07-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
22078
22079         * gnus-msg.el (gnus-button-mailto):
22080         Remove save-selected-window-window hackery because it relies on
22081         save-selected-window internals.
22082
22083 2005-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
22084
22085         * gnus-salt.el (gnus-pick-mode): Remove the 5th arg of
22086         add-minor-mode.
22087         (gnus-binary-mode): Ditto.
22088
22089         * gnus-topic.el (gnus-topic-mode): Ditto.
22090
22091 2005-07-08  Ralf Angeli  <angeli@iwi.uni-sb.de>
22092
22093         * gnus-art.el (gnus-article-next-page, gnus-article-next-page-1)
22094         (gnus-article-prev-page): Take scroll-margin into consideration.
22095
22096 2005-07-04  Lute Kamstra  <lute@gnu.org>
22097
22098         Update FSF's address in GPL notices.
22099
22100 2005-07-04  Juanma Barranquero  <lekktu@gmail.com>
22101
22102         * gnus.el (gnus-exit):
22103         * gnus-group.el (gnus-group-icons):
22104         * nnmail.el (nnmail-prepare): Fix typos in docstrings.
22105
22106         * gnus-nocem.el (gnus-nocem):
22107         * message.el (message-various, message-buffers, message-sending)
22108         (message-interface, message-forwarding, message-insertion)
22109         (message-headers, message-news, message-mail):
22110         * pgg-gpg.el (pgg-gpg):
22111         * pgg-parse.el (pgg-parse):
22112         * pgg-pgp.el (pgg-pgp):
22113         * pgg-pgp5.el (pgg-pgp5):
22114         * pop3.el (pop3): Finish `defgroup' description with period.
22115
22116 2005-07-01  Katsumi Yamaoka  <yamaoka@jpl.org>
22117
22118         * gnus-art.el (article-display-face): Improve the efficiency.
22119         (article-display-x-face): Ditto; remove gray x-face stuff.
22120
22121 2005-06-30  Katsumi Yamaoka  <yamaoka@jpl.org>
22122
22123         * gnus-art.el (article-display-face): Correct the position in
22124         which Faces are inserted.
22125
22126 2005-06-29  Didier Verna  <didier@xemacs.org>
22127
22128         * gnus-art.el (article-display-face): Display faces in correct
22129         order.
22130
22131 2005-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
22132
22133         * gnus-nocem.el (gnus-nocem-verifyer): Default to pgg-verify.
22134         (gnus-fill-real-hashtb): Use hash table instead of obarray.
22135         (gnus-nocem-check-article): Fetch the Type header.
22136         (gnus-nocem-message-wanted-p): Fix the way to examine types.
22137         (gnus-nocem-verify-issuer): Use functionp instead of fboundp.
22138         (gnus-nocem-enter-article): Use hash tables rather than obarrays;
22139         make sure gnus-nocem-hashtb is initialized.
22140         (gnus-nocem-alist-to-hashtb): Use hash table instead of obarray.
22141         (gnus-nocem-unwanted-article-p): Ditto.
22142
22143         * pgg.el (pgg-verify): Return the verification result.
22144
22145 2005-06-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
22146
22147         * gnus-art.el (gnus-mime-copy-part): Check whether coding-system
22148         is ascii.
22149
22150 2005-06-24  Juanma Barranquero  <lekktu@gmail.com>
22151
22152         * gnus-art.el (gnus-article-mode): Set `nobreak-char-display', not
22153         `show-nonbreak-escape'.
22154
22155 2005-06-23  Lute Kamstra  <lute@gnu.org>
22156
22157         * gnus-art.el (gnus-article-mode): Use kill-all-local-variables.
22158
22159         * dig.el (dig-mode):
22160         * smime.el (smime-mode): Use gnus-run-mode-hooks.
22161
22162 2005-06-21  Juanma Barranquero  <lekktu@gmail.com>
22163
22164         * nnimap.el (nnimap-split-download-body): Fix spellings.
22165
22166 2005-06-16  Juanma Barranquero  <lekktu@gmail.com>
22167
22168         * gnus-art.el (gnus-article-encrypt-body):
22169         * gnus-cus.el (gnus-score-customize):
22170         * mm-extern.el (mm-extern-local-file, mm-inline-external-body):
22171         * pop3.el (pop3-user): Don't use `format' on `error' arguments.
22172
22173 2005-06-16  Arne Jørgensen  <arne@arnested.dk>
22174
22175         * smime.el (smime-cert-by-ldap-1): Detect PEM format without
22176         header by looking for magic "MII" at the beginning.
22177
22178 2005-06-16  Miles Bader  <miles@gnu.org>
22179
22180         * gnus-xmas.el (gnus-xmas-group-startup-message):
22181         Use renamed gnus-splash face.
22182
22183         * assistant.el (assistant-field): Remove "-face" suffix from face name.
22184         (assistant-field-face): New backward-compatibility alias for renamed
22185         face.
22186         (assistant-render-text): Use renamed assistant-field face.
22187
22188         * spam.el (spam): Remove "-face" suffix from face name.
22189         (spam-face): New backward-compatibility alias for renamed face.
22190         (spam-face, spam-initialize): Use renamed spam face.
22191
22192         * message.el (message-header-to, message-header-cc)
22193         (message-header-subject, message-header-newsgroups)
22194         (message-header-other, message-header-name)
22195         (message-header-xheader, message-separator, message-cited-text)
22196         (message-mml): Remove "-face" suffix from face names.
22197         (message-header-to-face, message-header-cc-face)
22198         (message-header-subject-face, message-header-newsgroups-face)
22199         (message-header-other-face, message-header-name-face)
22200         (message-header-xheader-face, message-separator-face)
22201         (message-cited-text-face, message-mml-face):
22202         New backward-compatibility aliases for renamed faces.
22203         (message-font-lock-keywords): Use renamed message faces.
22204
22205         * sieve-mode.el (sieve-control-commands, sieve-action-commands)
22206         (sieve-test-commands, sieve-tagged-arguments):
22207         Remove "-face" suffix from face names.
22208         (sieve-control-commands-face, sieve-action-commands-face)
22209         (sieve-test-commands-face, sieve-tagged-arguments-face):
22210         New backward-compatibility aliases for renamed faces.
22211         (sieve-control-commands-face, sieve-action-commands-face)
22212         (sieve-test-commands-face, sieve-tagged-arguments-face):
22213         Use renamed sieve faces.
22214
22215         * gnus.el (gnus-group-news-1, gnus-group-news-1-empty)
22216         (gnus-group-news-2, gnus-group-news-2-empty, gnus-group-news-3)
22217         (gnus-group-news-3-empty, gnus-group-news-4)
22218         (gnus-group-news-4-empty, gnus-group-news-5)
22219         (gnus-group-news-5-empty, gnus-group-news-6)
22220         (gnus-group-news-6-empty, gnus-group-news-low)
22221         (gnus-group-news-low-empty, gnus-group-mail-1)
22222         (gnus-group-mail-1-empty, gnus-group-mail-2)
22223         (gnus-group-mail-2-empty, gnus-group-mail-3)
22224         (gnus-group-mail-3-empty, gnus-group-mail-low)
22225         (gnus-group-mail-low-empty, gnus-summary-selected)
22226         (gnus-summary-cancelled, gnus-summary-high-ticked)
22227         (gnus-summary-low-ticked, gnus-summary-normal-ticked)
22228         (gnus-summary-high-ancient, gnus-summary-low-ancient)
22229         (gnus-summary-normal-ancient, gnus-summary-high-undownloaded)
22230         (gnus-summary-low-undownloaded)
22231         (gnus-summary-normal-undownloaded, gnus-summary-high-unread)
22232         (gnus-summary-low-unread, gnus-summary-normal-unread)
22233         (gnus-summary-high-read, gnus-summary-low-read)
22234         (gnus-summary-normal-read, gnus-splash):
22235         Remove "-face" suffix from face names.
22236         (gnus-group-news-1-face, gnus-group-news-1-empty-face)
22237         (gnus-group-news-2-face, gnus-group-news-2-empty-face)
22238         (gnus-group-news-3-face, gnus-group-news-3-empty-face)
22239         (gnus-group-news-4-face, gnus-group-news-4-empty-face)
22240         (gnus-group-news-5-face, gnus-group-news-5-empty-face)
22241         (gnus-group-news-6-face, gnus-group-news-6-empty-face)
22242         (gnus-group-news-low-face, gnus-group-news-low-empty-face)
22243         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face)
22244         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face)
22245         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face)
22246         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face)
22247         (gnus-summary-selected-face, gnus-summary-cancelled-face)
22248         (gnus-summary-high-ticked-face, gnus-summary-low-ticked-face)
22249         (gnus-summary-normal-ticked-face)
22250         (gnus-summary-high-ancient-face, gnus-summary-low-ancient-face)
22251         (gnus-summary-normal-ancient-face)
22252         (gnus-summary-high-undownloaded-face)
22253         (gnus-summary-low-undownloaded-face)
22254         (gnus-summary-normal-undownloaded-face)
22255         (gnus-summary-high-unread-face, gnus-summary-low-unread-face)
22256         (gnus-summary-normal-unread-face, gnus-summary-high-read-face)
22257         (gnus-summary-low-read-face, gnus-summary-normal-read-face)
22258         (gnus-splash-face):
22259         New backward-compatibility aliases for renamed faces.
22260         (gnus-group-startup-message): Use renamed gnus faces.
22261
22262         * gnus-srvr.el (gnus-server-agent, gnus-server-opened)
22263         (gnus-server-closed, gnus-server-denied, gnus-server-offline)
22264         (gnus-server-agent): Remove "-face" suffix from face names.
22265         (gnus-server-agent-face, gnus-server-opened-face)
22266         (gnus-server-closed-face, gnus-server-denied-face)
22267         (gnus-server-offline-face):
22268         New backward-compatibility aliases for renamed faces.
22269         (gnus-server-agent-face, gnus-server-opened-face)
22270         (gnus-server-closed-face, gnus-server-denied-face)
22271         (gnus-server-offline-face): Use renamed gnus faces.
22272
22273         * gnus-picon.el (gnus-picon-xbm, gnus-picon):
22274         Remove "-face" suffix from face names.
22275         (gnus-picon-xbm-face, gnus-picon-face):
22276         New backward-compatibility aliases for renamed faces.
22277
22278         * gnus-cite.el (gnus-cite-attribution, gnus-cite-1, gnus-cite-2)
22279         (gnus-cite-3, gnus-cite-4, gnus-cite-5, gnus-cite-6)
22280         (gnus-cite-7, gnus-cite-8, gnus-cite-9, gnus-cite-10)
22281         (gnus-cite-11): Remove "-face" suffix from face names.
22282         (gnus-cite-attribution-face, gnus-cite-face-1, gnus-cite-face-2)
22283         (gnus-cite-face-3, gnus-cite-face-4, gnus-cite-face-5)
22284         (gnus-cite-face-6, gnus-cite-face-7, gnus-cite-face-8)
22285         (gnus-cite-face-9, gnus-cite-face-10, gnus-cite-face-11):
22286         New backward-compatibility aliases for renamed faces.
22287         (gnus-cite-attribution-face, gnus-cite-face-list)
22288         (gnus-article-boring-faces): Use renamed gnus faces.
22289
22290         * gnus-art.el (gnus-signature, gnus-header-from)
22291         (gnus-header-subject, gnus-header-newsgroups, gnus-header-name)
22292         (gnus-header-content): Remove "-face" suffix from face names.
22293         (gnus-signature-face, gnus-header-from-face)
22294         (gnus-header-subject-face, gnus-header-newsgroups-face)
22295         (gnus-header-name-face, gnus-header-content-face):
22296         New backward-compatibility aliases for renamed faces.
22297         (gnus-signature-face, gnus-header-face-alist): Use renamed gnus faces.
22298
22299         * gnus-sum.el (gnus-summary-selected-face)
22300         (gnus-summary-highlight): Use renamed gnus faces.
22301         * gnus-group.el (gnus-group-highlight): Likewise.
22302
22303 2005-06-14  Juanma Barranquero  <lekktu@gmail.com>
22304
22305         * gnus-sieve.el (gnus-sieve-article-add-rule):
22306         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days):
22307         * spam-stat.el (spam-stat-buffer-change-to-spam)
22308         (spam-stat-buffer-change-to-non-spam): Follow error conventions.
22309
22310         * message.el (message-is-yours-p):
22311         * gnus-sum.el (gnus-auto-select-subject): Fix quoting in docstring.
22312
22313 2005-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
22314
22315         * mm-view.el (mm-inline-text): Withdraw the last change.
22316
22317 2005-06-09  Katsumi Yamaoka  <yamaoka@jpl.org>
22318
22319         * mm-view.el (mm-inline-text): Turn off adaptive-fill-mode while
22320         executing enriched-decode.
22321
22322 2005-06-07  Katsumi Yamaoka  <yamaoka@jpl.org>
22323
22324         * mm-util.el (mm-find-buffer-file-coding-system): Don't examine
22325         charset of tar files.
22326
22327 2005-06-04  Luc Teirlinck  <teirllm@auburn.edu>
22328
22329         * gnus-art.el (article-update-date-lapsed): Use `save-match-data'.
22330
22331 2005-06-04  Lute Kamstra  <lute@gnu.org>
22332
22333         * nnfolder.el (nnfolder-read-folder): Make sure that undo
22334         information is never recorded.
22335
22336 2005-06-03  Stefan Monnier  <monnier@iro.umontreal.ca>
22337
22338         * gnus-art.el (gnus-emphasis-alist): Disable the strikethru thingy.
22339
22340 2005-06-02  Katsumi Yamaoka  <yamaoka@jpl.org>
22341
22342         * pop3.el (pop3-apop): Run md5 in the binary mode.
22343
22344         * starttls.el (starttls-set-process-query-on-exit-flag):
22345         Use eval-and-compile.
22346
22347 2005-05-31  Simon Josefsson  <jas@extundo.com>
22348
22349         * smime.el (smime-replace-in-string): Define.
22350         (smime-cert-by-ldap-1): Use it.
22351
22352 2005-05-31  Katsumi Yamaoka  <yamaoka@jpl.org>
22353
22354         * gnus-art.el (article-display-x-face): Replace
22355         process-kill-without-query by gnus-set-process-query-on-exit-flag.
22356
22357         * gnus-util.el (gnus-set-process-query-on-exit-flag): Alias to
22358         set-process-query-on-exit-flag or process-kill-without-query.
22359
22360         * html2text.el (html2text-fix-paragraphs): Use `while - re-search'
22361         loop instead of replace-regexp.
22362
22363         * imap.el (imap-ssl-open): Use set-process-query-on-exit-flag
22364         instead of process-kill-without-query if it is available.
22365
22366         * lpath.el: Fbind ldap-search-entries.
22367
22368         * mm-util.el (mm-insert-file-contents): Bind find-file-hook
22369         instead of find-file-hooks if it is available.
22370
22371         * mml1991.el: Bind pgg-default-user-id when compiling.
22372
22373         * mml2015.el: Bind pgg-default-user-id when compiling.
22374
22375         * nndraft.el (nndraft-request-associate-buffer):
22376         Use write-contents-functions instead of write-contents-hooks if it is
22377         available.
22378
22379         * nnheader.el (nnheader-find-file-noselect): Bind find-file-hook
22380         instead of find-file-hooks if it is available.
22381
22382         * nntp.el (nntp-open-connection): Replace
22383         process-kill-without-query by gnus-set-process-query-on-exit-flag.
22384         (nntp-open-ssl-stream): Ditto.
22385         (nntp-open-tls-stream): Ditto.
22386
22387         * starttls.el (starttls-set-process-query-on-exit-flag): Alias to
22388         set-process-query-on-exit-flag or process-kill-without-query.
22389         (starttls-open-stream-gnutls): Use it instead of
22390         process-kill-without-query.
22391         (starttls-open-stream): Ditto.
22392
22393 2005-05-31  Ulf Stegemann  <ulf@zeitform.de>  (tiny change)
22394
22395         * smime.el (smime-cert-by-ldap-1): Don't use
22396         replace-regexp-in-string.
22397
22398 2005-05-31  Arne Jørgensen  <arne@arnested.dk>
22399
22400         * smime-ldap.el (smime-ldap-search): Add compatibility for XEmacs.
22401
22402         * smime.el (smime-cert-by-ldap-1): Handle certificates distributed
22403         in PEM format.  Adjust to the XEmacs compatibility.
22404
22405 2005-05-30  Reiner Steib  <Reiner.Steib@gmx.de>
22406
22407         * encrypt.el (encrypt-xor-process-buffer): Replace `string-to-int'
22408         by `string-to-number'.
22409         * gnus-agent.el (gnus-agent-regenerate-group)
22410         (gnus-agent-fetch-articles): Ditto.
22411         * gnus-art.el (gnus-button-fetch-group): Ditto.
22412         * gnus-cache.el (gnus-cache-generate-active)
22413         (gnus-cache-articles-in-group): Ditto.
22414         * gnus-group.el (gnus-group-set-current-level)
22415         (gnus-group-insert-group-line): Ditto.
22416         * gnus-score.el (gnus-score-set-expunge-below)
22417         (gnus-score-set-mark-below, gnus-summary-score-effect)
22418         (gnus-summary-score-entry): Ditto.
22419         * gnus-soup.el (gnus-soup-send-packet, gnus-soup-parse-areas)
22420         (gnus-soup-pack): Ditto.
22421         * gnus-spec.el (gnus-xmas-format): Ditto.
22422         * gnus-start.el (gnus-newsrc-to-gnus-format): Ditto.
22423         * gnus-sum.el (gnus-create-xref-hashtb): Ditto.
22424         * gnus-uu.el (gnus-uu-expand-numbers): Ditto.
22425         * nnbabyl.el (nnbabyl-article-group-number): Ditto.
22426         * nndb.el (nndb-get-remote-expire-response): Ditto.
22427         * nndiary.el (nndiary-parse-schedule-value)
22428         (nndiary-string-to-number, nndiary-request-replace-article)
22429         (nndiary-request-article): Ditto.
22430         * nndoc.el (nndoc-rnews-body-end, nndoc-mbox-body-end): Ditto.
22431         * nndraft.el (nndraft-articles, nndraft-request-group): Ditto.
22432         * nneething.el (nneething-make-head): Ditto.
22433         * nnfolder.el (nnfolder-request-article)
22434         (nnfolder-retrieve-headers): Ditto.
22435         * nnheader.el (nnheader-file-to-number): Ditto.
22436         * nnkiboze.el (nnkiboze-request-article): Ditto.
22437         * nnmail.el (nnmail-process-unix-mail-format)
22438         (nnmail-process-babyl-mail-format): Ditto.
22439         * nnmbox.el (nnmbox-read-mbox, nnmbox-article-group-number): Ditto.
22440         * nnmh.el (nnmh-update-gnus-unreads, nnmh-active-number)
22441         (nnmh-request-create-group, nnmh-request-list-1)
22442         (nnmh-request-group, nnmh-request-article): Ditto.
22443         * nnml.el (nnml-request-replace-article, nnml-request-article): Ditto.
22444         * nnrss.el (nnrss-find-rss-via-syndic8): Ditto.
22445         * nnsoup.el (nnsoup-make-active): Ditto.
22446         * nnspool.el (nnspool-find-id, nnspool-request-group): Ditto.
22447         * nntp.el (nntp-find-group-and-number)
22448         (nntp-retrieve-headers-with-xover): Ditto.
22449         * pgg-gpg.el (pgg-gpg-snarf-keys-region): Ditto.
22450         * pgg-parse.el (pgg-read-body, pgg-read-bytes)
22451         (pgg-format-key-identifier): Ditto.
22452         * pop3.el (pop3-last, pop3-stat): Ditto.
22453         * qp.el (quoted-printable-decode-region): Ditto.
22454
22455         * spam-report.el (spam-report-url-ping-mm-url): Use format instead
22456         of concat.
22457
22458 2005-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
22459
22460         * gnus-agent.el (gnus-category-mode): Use gnus-run-mode-hooks.
22461
22462         * gnus-art.el (gnus-article-mode): Use gnus-run-mode-hooks.
22463
22464         * gnus-cus.el (gnus-custom-mode): Use gnus-run-mode-hooks.
22465
22466         * gnus-eform.el (gnus-edit-form-mode): Use gnus-run-mode-hooks.
22467
22468         * gnus-group.el (gnus-group-mode): Use gnus-run-mode-hooks.
22469
22470         * gnus-kill.el (gnus-kill-file-mode): Use gnus-run-mode-hooks.
22471
22472         * gnus-salt.el (gnus-tree-mode): Use gnus-run-mode-hooks.
22473         (gnus-carpal-mode): Ditto.
22474
22475         * gnus-srvr.el (gnus-server-mode): Use gnus-run-mode-hooks.
22476         (gnus-browse-mode): Ditto.
22477
22478         * gnus-sum.el (gnus-summary-mode): Use gnus-run-mode-hooks.
22479
22480         * gnus-util.el (gnus-run-mode-hooks): Save current buffer.
22481
22482 2005-05-29  Richard M. Stallman  <rms@gnu.org>
22483
22484         * gnus-cite.el (gnus-cite-add-face): Set overlay's evaporate property.
22485
22486 2005-05-27  Katsumi Yamaoka  <yamaoka@jpl.org>
22487
22488         * gnus-util.el (gnus-run-mode-hooks): New function.
22489
22490         * score-mode.el (gnus-score-mode): Use gnus-run-mode-hooks.
22491
22492         * dgnushack.el: Advise byte-optimize-form-code-walker to avoid the
22493         ``...called for effect'' warnings for Emacs 21.4 as well as 21.3.
22494
22495 2005-05-27  Lute Kamstra  <lute@gnu.org>
22496
22497         * dns-mode.el (dns-mode): Specify customization group.
22498
22499 2005-05-26  Luc Teirlinck  <teirllm@auburn.edu>
22500
22501         * gnus-agent.el (gnus-agent-make-mode-line-string):
22502         Use mode-line-highlight as mouse-face.
22503
22504 2005-05-17  Katsumi Yamaoka  <yamaoka@jpl.org>
22505
22506         * canlock.el (canlock): Change the parent group to news.
22507
22508         * deuglify.el (gnus-outlook-deuglify): Add :group.
22509
22510         * dig.el (dig): Add :group.
22511
22512         * dns-mode.el (dns-mode): Add :group.
22513
22514         * encrypt.el (encrypt): Add :group.
22515
22516         * gnus-cite.el (gnus-cite-attribution-face): Add :group.
22517         (gnus-cite-face-1, gnus-cite-face-2, gnus-cite-face-3): Ditto.
22518         (gnus-cite-face-4, gnus-cite-face-5, gnus-cite-face-6): Ditto.
22519         (gnus-cite-face-7, gnus-cite-face-8, gnus-cite-face-9): Ditto.
22520         (gnus-cite-face-10, gnus-cite-face-11): Ditto.
22521
22522         * gnus-diary.el (gnus-diary): Add :group.
22523
22524         * gnus.el (gnus-group-news-1-face): Add :group.
22525         (gnus-group-news-1-empty-face): Ditto.
22526         (gnus-group-news-2-face, gnus-group-news-2-empty-face): Ditto.
22527         (gnus-group-news-3-face, gnus-group-news-3-empty-face): Ditto.
22528         (gnus-group-news-4-face, gnus-group-news-4-empty-face): Ditto.
22529         (gnus-group-news-5-face, gnus-group-news-5-empty-face): Ditto.
22530         (gnus-group-news-6-face, gnus-group-news-6-empty-face): Ditto.
22531         (gnus-group-news-low-face, gnus-group-news-low-empty-face): Ditto.
22532         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face): Ditto.
22533         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face): Ditto.
22534         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face): Ditto.
22535         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face): Ditto.
22536         (gnus-summary-selected-face, gnus-summary-cancelled-face): Ditto.
22537         (gnus-summary-high-ticked-face): Ditto.
22538         (gnus-summary-low-ticked-face): Ditto.
22539         (gnus-summary-normal-ticked-face): Ditto.
22540         (gnus-summary-high-ancient-face): Ditto.
22541         (gnus-summary-low-ancient-face): Ditto.
22542         (gnus-summary-normal-ancient-face): Ditto.
22543         (gnus-summary-high-undownloaded-face): Ditto.
22544         (gnus-summary-low-undownloaded-face): Ditto.
22545         (gnus-summary-normal-undownloaded-face): Ditto.
22546         (gnus-summary-high-unread-face): Ditto.
22547         (gnus-summary-low-unread-face): Ditto.
22548         (gnus-summary-normal-unread-face): Ditto.
22549         (gnus-summary-high-read-face, gnus-summary-low-read-face): Ditto.
22550         (gnus-summary-normal-read-face, gnus-splash-face): Ditto.
22551
22552         * hashcash.el (hashcash): New custom group.
22553         (hashcash-default-payment): Add :group.
22554         (hashcash-payment-alist): Ditto.
22555         (hashcash-default-accept-payment): Ditto.
22556         (hashcash-accept-resources): Ditto.
22557         (hashcash-path): Ditto.
22558         (hashcash-extra-generate-parameters): Ditto.
22559         (hashcash-double-spend-database): Ditto.
22560         (hashcash-in-news): Ditto.
22561
22562         * message.el (message-minibuffer-local-map): Add :group.
22563
22564         * netrc.el (netrc): Add :group.
22565
22566         * sieve-manage.el (sieve-manage-log): Add :group.
22567         (sieve-manage-default-user): Diito.
22568         (sieve-manage-server-eol, sieve-manage-client-eol): Ditto.
22569         (sieve-manage-streams, sieve-manage-stream-alist): Ditto.
22570         (sieve-manage-authenticators): Ditto.
22571         (sieve-manage-authenticator-alist): Ditto.
22572         (sieve-manage-default-port): Ditto.
22573
22574         * sieve-mode.el (sieve-control-commands-face): Add :group.
22575         (sieve-action-commands-face): Ditto.
22576         (sieve-test-commands-face): Ditto.
22577         (sieve-tagged-arguments-face): Ditto.
22578
22579         * smime.el (smime): Add :group.
22580
22581         * spam-report.el (spam-report): Add :group.
22582
22583         * spam.el (spam, spam-face): Add :group.
22584
22585 2005-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
22586
22587         * nntp.el (nntp-next-result-arrived-p): Some news servers may
22588         return \n.\n.\n at the end of articles.  Protect against that.
22589         (nntp-with-open-group): Allow debugging.
22590
22591         * nnheader.el (mail-header-set-extra): Make into a function
22592         because I just could't understand how to quote the list properly.
22593
22594         * dns.el (query-dns-cached): New function.
22595
22596 2005-05-26  Lute Kamstra  <lute@gnu.org>
22597
22598         * score-mode.el (gnus-score-mode): Use run-mode-hooks.
22599
22600 2005-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
22601
22602         * dgnushack.el: Autoload mail-extract-address-components for XEmacs.
22603
22604         * gnus-art.el: Don't autoload mail-extract-address-components.
22605
22606         * gnus.el: Remove duplicated autoload for message-y-or-n-p; use
22607         eval-and-compile to evaluate it.
22608
22609         * hashcash.el: Don't autoload executable-find.
22610
22611         * nndb.el: Don't declare the nndb back end two or more times; don't
22612         autoload news-reply-mode, news-setup, cancel-timer and telnet.
22613
22614         * nntp.el: Autoload format-spec instead of format; use
22615         eval-and-compile to evaluate autoload forms.
22616
22617 2005-05-09  Georg C. F. Greve  <greve@gnu.org>  (tiny change)
22618
22619         * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Fix PIN caching.
22620
22621 2005-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
22622
22623         * gnus.el (gnus-version-number): Bump version.
22624
22625 2005-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
22626
22627         * gnus.el: No Gnus v0.3 is released.
22628
22629 2005-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
22630
22631         * lpath.el (featurep): Bind show-nonbreak-escape.
22632
22633 2005-04-28  Katsumi Yamaoka  <yamaoka@jpl.org>
22634
22635         * gnus-art.el (gnus-article-edit-part): Disable undo.
22636
22637 2005-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
22638
22639         * gnus-art.el (article-date-ut): Don't delete X-Sent header when
22640         gnus-article-date-lapsed-new-header is t if date timer is active;
22641         skip headers in which the original date value is empty.
22642         (gnus-article-save-original-date): Redefine it as a macro.
22643         (gnus-display-mime): Use it.
22644
22645 2005-04-22  Katsumi Yamaoka  <yamaoka@jpl.org>
22646
22647         * gnus-art.el (article-date-ut): Support converting date in
22648         forwarded parts as well.
22649         (gnus-article-save-original-date): New function.
22650         (gnus-display-mime): Use it.
22651
22652 2005-04-22  David Hansen  <david.hansen@physik.fu-berlin.de>
22653
22654         * nnrss.el (nnrss-check-group, nnrss-request-article): Support the
22655         enclosure element of <item>.
22656
22657 2005-04-21  Reiner Steib  <Reiner.Steib@gmx.de>
22658
22659         * message.el (message-kill-buffer-query): Rename from
22660         `message-kill-buffer-query-if-modified'.  Add :version.
22661
22662 2005-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
22663
22664         * mml.el (mml-preview): Bind gnus-message-buffer while setting the
22665         window layout.
22666
22667 2005-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
22668
22669         * mml.el: Autoload dnd when compiling.
22670
22671 2005-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
22672
22673         * mml.el (mml-mode, mml-dnd-attach-file): Use dnd-* instead of
22674         x-dnd-*.
22675
22676 2005-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
22677
22678         * qp.el (quoted-printable-encode-region): Save excursion.
22679
22680 2005-04-14  Teodor Zlatanov  <tzz@lifelogs.com>
22681
22682         * message.el (message-kill-buffer-query-if-modified): Add new variable
22683         so the user can kill a modified message buffer quickly.
22684         (message-kill-buffer): Use it.
22685
22686 2005-04-13  Katsumi Yamaoka  <yamaoka@jpl.org>
22687
22688         * lpath.el: Fbind display-time-event-handler; don't fbind
22689         string-to-multibyte.
22690
22691         * qp.el (quoted-printable-encode-region): Use mm-string-to-multibyte.
22692
22693 2005-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
22694
22695         * nnrss.el (nnrss-node-text): Replace CRLFs (which might be
22696         contained in text because xml.el decodes entities) with LFs.
22697
22698 2005-04-11  Lute Kamstra  <lute@gnu.org>
22699
22700         * nnimap.el (nnimap-date-days-ago): Handle byte-compiler warnings
22701         differently.
22702
22703 2005-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
22704
22705         * mm-util.el (mm-detect-coding-region): Typo.
22706
22707 2005-04-11  Katsumi Yamaoka  <yamaoka@jpl.org>
22708
22709         * gnus-art.el (gnus-article-read-summary-keys): Fix misplaced parens.
22710
22711 2005-04-06  Deepak Goel  <deego@gnufans.org>
22712
22713         * spam-stat.el (spam-stat-score-buffer): Add a call to a
22714         user-function allow user modifications of the scores.
22715         (spam-stat-score-buffer-user): New function, to allow
22716         user-computed modifications to the score.
22717         (spam-stat-score-buffer-user-functions): List of additional
22718         scoring functions.
22719         (spam-stat-error-holder): Global temporary error holder.
22720         (spam-stat-split-fancy): Use the new `spam-stat-error-holder'
22721         variable.
22722
22723 2005-04-06  Teodor Zlatanov  <tzz@lifelogs.com>
22724
22725         * gnus-registry.el (gnus-registry-clean-empty-function)
22726         (gnus-registry-trim, gnus-registry-fetch-groups)
22727         (gnus-registry-delete-group): Groups that match
22728         `gnus-registry-ignored-groups' are removed from the registry
22729         entries, not just ignored for splitting.  This helps clean up the
22730         registry.  Also, `gnus-registry-fetch-groups' is a convenient way
22731         to get all the groups a message ID is in.
22732
22733         * spam-stat.el (spam-stat-split-fancy-spam-threshold)
22734         (spam-stat-split-fancy): Change "threshhold" to "threshold".
22735         (spam-stat-score-buffer-user-functions): Add :number custom type.
22736
22737 2005-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
22738
22739         * mm-util.el (mm-coding-system-p): Don't return binary for the nil
22740         argument in XEmacs.
22741
22742         * nnrss.el (nnrss-compatible-encoding-alist): New variable.
22743         (nnrss-request-group): Decode group name first.
22744         (nnrss-request-article): Make a text/plain article if mml-to-mime
22745         failed.
22746         (nnrss-get-encoding): Return a compatible encoding according to
22747         nnrss-compatible-encoding-alist.
22748         (nnrss-find-el): Use consp instead of listp.
22749         (nnrss-opml-export, nnrss-order-hrefs, nnrss-find-el): Use dolist.
22750
22751 2005-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
22752
22753         * time-date.el (time-to-seconds): Don't use the #xhhhh syntax
22754         which Emacs 20 doesn't support.
22755         (seconds-to-time, days-to-time, time-subtract, time-add): Ditto.
22756
22757 2005-04-04  Reiner Steib  <Reiner.Steib@gmx.de>
22758
22759         * nnimap.el (nnimap-date-days-ago): Add defvars in order to
22760         silence the byte compiler inside the defun.
22761
22762         * gnus-demon.el (parse-time-string): Add autoload.
22763
22764         * gnus-delay.el (parse-time-string): Add autoload.
22765
22766         * gnus-art.el (parse-time-string): Add autoload.
22767
22768         * nnultimate.el (parse-time): Require for `parse-time-string'.
22769
22770 2005-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
22771
22772         * gnus-art.el (gnus-copy-article-ignored-headers): Update :version.
22773
22774         * gnus-score.el (gnus-adaptive-pretty-print): Ditto.
22775
22776         * smime.el (smime-ldap-host-list): Add :version.
22777
22778 2005-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
22779
22780         * gnus-srvr.el (gnus-browse-select-group): Add NUMBER argument and
22781         pass it to `gnus-browse-read-group'.
22782         (gnus-browse-read-group): Add NUMBER argument and pass it to
22783         `gnus-group-read-ephemeral-group'.
22784
22785         * gnus-group.el (gnus-group-read-ephemeral-group): Add NUMBER
22786         argument and pass it to `gnus-group-read-group'.
22787
22788 2005-03-19  Aidan Kehoe  <kehoea@parhasard.net>
22789
22790         * mm-util.el (mm-xemacs-find-mime-charset): Only call
22791         mm-xemacs-find-mime-charset-1 if we have the mule feature
22792         available at runtime.
22793
22794 2005-03-25  Werner Lemberg  <wl@gnu.org>
22795
22796         * nnmaildir.el: Replace `illegal' with `invalid'.
22797
22798 2005-03-23  Lute Kamstra  <lute@gnu.org>
22799
22800         * time-date.el: Add comment on time value formats.
22801         Don't require parse-time.
22802         (with-decoded-time-value): New macro.
22803         (encode-time-value): New function.
22804         (time-to-seconds, time-less-p, time-subtract, time-add): Use them.
22805         (days-to-time): Return a valid time value when arg is huge.
22806         (time-since): Use time-subtract.
22807         (time-to-number-of-days): Use time-to-seconds.
22808
22809 2005-03-22  Stefan Monnier  <monnier@iro.umontreal.ca>
22810
22811         * gnus-start.el (gnus-display-time-event-handler):
22812         Check display-time-timer at runtime rather than only at load time
22813         in case display-time-mode is turned off in the mean time.
22814
22815 2005-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
22816
22817         * nnimap.el (nnimap-open-connection): Print which authinfo file is
22818         used.
22819
22820         * nneething.el (nneething-map-file-directory): Derive from
22821         `gnus-directory'.
22822
22823         * gnus-art.el (gnus-header-button-alist): Use `gnus-msg-mail' for
22824         the To/Cc button.
22825
22826 2005-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
22827
22828         * nnmaildir.el (nnmaildir-request-accept-article):
22829         Use `nnheader-cancel-timer' for compatibility with current XEmacs.
22830
22831 2005-03-13  Andrey Slusar  <anrays@gmail.com>  (tiny change)
22832
22833         * gnus-async.el: Require timer-funcs at compile time when in
22834         XEmacs for `run-with-idle-timer'.
22835
22836 2005-03-13  Andrey Slusar  <anrays@gmail.com>  (tiny change)
22837
22838         * gnus.el: Don't try and mark `gnus-agent-save-groups' as an
22839         autoloaded function.
22840
22841 2005-03-10  Stefan Monnier  <monnier@iro.umontreal.ca>
22842
22843         * nnimap.el (nnimap-retrieve-headers-from-server): Fix last change.
22844
22845 2005-03-10  Arne Jørgensen  <arne@arnested.dk>  (tiny change)
22846
22847         * nnimap.el (nnimap-retrieve-headers-from-server): Fix off-by-one flaw.
22848
22849 2005-03-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
22850
22851         * gnus-msg.el (gnus-confirm-mail-reply-to-news):
22852         Add gnus-expert-user to default.
22853
22854 2005-03-08  Juergen Kreileder  <jk@blackdown.de>  (tiny change)
22855
22856         * nnimap.el (nnimap-open-server): Ditto.
22857
22858         * imap.el (imap-authenticate): Fix typo.
22859
22860 2005-03-08  Bjorn Solberg  <bjorn_ding@hekneby.org>  (tiny change)
22861
22862         * nnimap.el (nnimap-retrieve-headers-from-server): Sort NOV
22863         buffer (since IMAP server might return FETCH response out of
22864         order, and the nntp buffer must be sorted).
22865
22866 2005-03-06  Kevin Greiner  <kevin.greiner@compsol.cc>
22867
22868         * gnus-start.el (gnus-convert-old-newsrc): Fix numeric
22869         comparison on string.
22870
22871         * gnus-agent.el (gnus-agent-long-article, gnus-agent-short-article)
22872         (gnus-agent-score): Rename category keywords to match gnus-cus.
22873         (gnus-agent-summary-fetch-series): Modify to protect against
22874         gnus-agent-summary-fetch-group clearing processable flags.
22875         (gnus-agent-synchronize-group-flags): Update live group buffer as
22876         synchronization may occur due to the user toggle the plugged
22877         status.
22878         (gnus-agent-fetch-group-1): Clear downloadable flag when article
22879         successfully downloaded.
22880         (gnus-agent-expire-group-1): Avoid using markers when the overview
22881         is in ascending order; greatly improves performance.
22882         (gnus-agent-regenerate-group):
22883         Use gnus-agent-synchronize-group-flags to reset read status in both
22884         gnus and server.
22885         (gnus-agent-update-files-total-fetched-for): Fix initial size.
22886
22887 2005-03-04  Reiner Steib  <Reiner.Steib@gmx.de>
22888
22889         * message.el: Don't autoload former message-utils variables.
22890         (message-strip-subject-trailing-was): Change doc string.
22891
22892         * nnweb.el: Fixes for `gnus-group-make-web-group'.
22893         (nnweb-type-definition): Don't add "hl=en" in `address'.  Add `base'.
22894         (nnweb-google-search): Add "hl=en" here.
22895         (nnweb-google-parse-1, nnweb-google-create-mapping):
22896         Don't hardcode URL.
22897
22898 2005-03-03  Reiner Steib  <Reiner.Steib@gmx.de>
22899
22900         * message.el (message-get-reply-headers, message-followup):
22901         Mention related variables `message-use-followup-to' and
22902         `message-use-mail-followup-to', in the information buffer.
22903
22904         * nnweb.el (nnweb-type-definition): Use groups.google.de instead
22905         of broken groups(-beta).google.com.
22906
22907 2005-03-03  Teodor Zlatanov  <tzz@lifelogs.com>
22908
22909         * gnus-sum.el (gnus-summary-move-article): Pass move-is-internal
22910         parameter to invoked gnus-request-move-article; remove the
22911         redundant gnus-sum-hint-move-is-internal variable; apply the marks
22912         all at once instead of once per article.
22913         (gnus-summary-remove-process-mark): Accept a list of articles as
22914         well as a single article for processing.
22915
22916         * gnus-int.el (gnus-request-move-article): Add move-is-internal
22917         parameter.
22918
22919         * nnml.el (nnml-request-move-article): Add move-is-internal parameter.
22920
22921         * nnmh.el (nnmh-request-move-article): Add move-is-internal parameter.
22922
22923         * nnmbox.el (nnmbox-request-move-article): Add move-is-internal
22924         parameter.
22925
22926         * nnmaildir.el (nnmaildir-request-move-article): Add move-is-internal
22927         parameter.
22928
22929         * nnimap.el (nnimap-request-move-article): Add move-is-internal
22930         parameter and remove the gnus-sum-hint-move-is-internal variable.
22931
22932         * nnfolder.el (nnfolder-request-move-article): Add move-is-internal
22933         parameter.
22934
22935         * nndraft.el (nndraft-request-move-article): Add move-is-internal
22936         parameter.
22937
22938         * nndiary.el (nndiary-request-move-article): Add move-is-internal
22939         parameter.
22940
22941         * nndb.el (nndb-request-move-article): Add move-is-internal parameter.
22942
22943         * nnbabyl.el (nnbabyl-request-move-article): Add move-is-internal
22944         parameter.
22945
22946         * nnagent.el (nnagent-request-move-article): Add move-is-internal
22947         parameter.
22948
22949 2005-03-01  Stefan Monnier  <monnier@iro.umontreal.ca>
22950
22951         * gnus-sum.el (gnus-summary-exit): Undo last change and fix it in
22952         a more conservative way.
22953
22954 2005-02-26  Stefan Monnier  <monnier@iro.umontreal.ca>
22955
22956         * gnus-sum.el (gnus-summary-exit): Move point after displaying the
22957         buffer, so it moves the window's cursor.
22958
22959 2005-02-26  Arne Jørgensen  <arne@arnested.dk>
22960
22961         * mm-decode.el (mm-dissect-buffer): Pass the from field on to
22962         `mm-dissect-multipart' and receive the from field as an (optional)
22963         argument from `mm-dissect-multipart'.
22964         (mm-dissect-multipart): Receive the from field as an argument and
22965         pass it on when we call `mm-dissect-buffer' on MIME parts.
22966         Fixes verification/decryption of signed/encrypted MIME parts.
22967
22968 2005-02-25  Teodor Zlatanov  <tzz@lifelogs.com>
22969
22970         * gnus-sum.el (gnus-summary-move-article):
22971         Set gnus-sum-hint-move-is-internal for gnus-request-move-article and
22972         whatever it calls (right now, only nnimap-request-move article
22973         respects it).
22974
22975         * nnimap.el (nnimap-request-move-article):
22976         When gnus-sum-hint-move-is-internal is set, don't do the extra
22977         nnimap-request-article.
22978
22979 2005-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
22980
22981         * nnheader.el (nnheader-find-file-noselect): Add doc string.
22982
22983         * nnfolder.el (nnfolder-read-folder): Use RAWFILE for
22984         `nnheader-find-file-noselect' to avoid `large-file-warning-threshold'.
22985
22986         * gnus-sum.el (gnus-summary-caesar-message):
22987         Apply `gnus-treat-article' after rotation.
22988
22989         * gnus-group.el (gnus-group-clear-data): Mention process/prefix in
22990         doc string.
22991
22992 2005-02-22  Simon Josefsson  <jas@extundo.com>
22993
22994         * encrypt.el (encrypt-password-cache-expiry): Remove (use
22995         `password-cache-expiry' instead).  Reported by Arne Jørgensen
22996         <arne@arnested.dk>.
22997         (encrypt): Add password-cache and password-cache-expiry as group
22998         members.
22999
23000 2005-02-22  Arne Jørgensen  <arne@arnested.dk>
23001
23002         * smime.el (smime-ldap-host-list): Doc fix.
23003         (smime-ask-passphrase): Use `password-read-and-add' to read (and
23004         cache) password.
23005         (smime-sign-region): Use it.
23006         (smime-decrypt-region): Use it.
23007         (smime-sign-buffer): Signal an error if `smime-sign-region' fails.
23008         (smime-encrypt-buffer): Signal an error if `smime-encrypt-region'
23009         fails.
23010         (smime-cert-by-ldap-1): Use `base64-encode-string' to convert
23011         certificate from DER to PEM format rather than calling openssl.
23012
23013         * mml-smime.el (mml-smime-encrypt-query): Remove obsolete comment.
23014
23015         * mml-sec.el (mml-secure-message): Insert keyfile/certfile tags
23016         for signing/encryption.
23017
23018         * mml.el (mml-parse-1): Use them.
23019
23020 2005-02-21  Arne Jørgensen  <arne@arnested.dk>
23021
23022         * nnrss.el (nnrss-verbose): Remove.
23023         (nnrss-request-group): Use `nnheader-message' instead.
23024
23025 2005-02-19  Mark Plaksin  <happy@usg.edu>  (tiny change)
23026
23027         * nnrss.el (nnrss-verbose): New variable.
23028         (nnrss-request-group): Make it say nnrss is requesting a group.
23029
23030 2005-02-21  Reiner Steib  <Reiner.Steib@gmx.de>
23031
23032         * gnus-art.el (gnus-parse-news-url, gnus-button-handle-news):
23033         Handle news URL with given port correctly.
23034
23035 2005-02-19  Katsumi Yamaoka  <yamaoka@jpl.org>
23036
23037         * gnus-msg.el (gnus-copy-article-buffer): Quote decoded words
23038         containing special characters.
23039
23040         * gnus-sum.el (gnus-summary-edit-article): Ditto.
23041
23042         * mml.el (mime-to-mml): Ditto.
23043
23044         * rfc2047.el (rfc2047-encode-parameter): Use ietf-drums-tspecials.
23045         (rfc2047-quote-decoded-words-containing-tspecials): New variable.
23046         (rfc2047-decode-region): Quote decoded words containing special
23047         characters when rfc2047-quote-decoded-words-containing-tspecials
23048         is non-nil.
23049
23050 2005-02-16  Teodor Zlatanov  <tzz@lifelogs.com>
23051
23052         * gnus-registry.el (gnus-registry-delete-group): Add minor bug fix.
23053
23054         * gnus.el (gnus-install-group-spam-parameters): Add minor doc fix.
23055
23056 2005-02-15  Simon Josefsson  <jas@extundo.com>
23057
23058         * nnimap.el (nnimap-debug): Doc fix.
23059
23060         * imap.el (imap-debug): Doc fix.
23061
23062 2005-02-15  Katsumi Yamaoka  <yamaoka@jpl.org>
23063
23064         * gnus-art.el: Avoid "Recursive load suspected" error in Emacs 21.1.
23065
23066 2005-02-14  Teodor Zlatanov  <tzz@lifelogs.com>
23067
23068         * gnus.el (spam-contents): Improve docs for spam-contents
23069         parameter in its variable incarnation.
23070
23071 2005-02-14  Simon Josefsson  <jas@extundo.com>
23072
23073         * smime-ldap.el: Use require instead of load-library for ldap.
23074         (smime-ldap-search): Indent.
23075         (smime-ldap-search-internal): Shorten line.
23076
23077         * smime.el (smime-cert-by-dns): Add doc-string.
23078         (smime-cert-by-ldap-1): Indent.
23079
23080         * mml-smime.el (mml-smime-get-ldap-cert): Rename from
23081         mml-smime-get-dns-ldap.
23082         (mml-smime-encrypt-query): Use new function.  Default to ldap.
23083
23084 2005-02-14  Arne Jørgensen  <arne@arnested.dk>
23085
23086         * smime.el: Require smime-ldap.
23087         (smime-ldap-host-list): New variable.
23088         (smime-cert-by-ldap, smime-cert-by-ldap-1): New functions.
23089
23090         * mml-smime.el (mml-smime-encrypt-query): New function.
23091         (mml-smime-encrypt-query): Use it.
23092
23093         * smime-ldap.el: New file.
23094
23095 2005-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
23096
23097         * gnus-agent.el: Remove garbage made while merging the Emacs trunk.
23098
23099 2005-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
23100
23101         * gnus-group.el (gnus-group-make-doc-group): Mention prefix
23102         argument in doc string.  Make query for type more clear.
23103
23104 2005-02-13  Reiner Steib  <Reiner.Steib@gmx.de>
23105
23106         * gnus.el (gnus-group-startup-message): Search for gnus images in
23107         etc/images/gnus.
23108         * mm-util.el (mm-image-load-path): Likewise.
23109         * smiley.el (smiley-data-directory): Search for smilies in
23110         etc/images/smilies.
23111
23112 2005-02-09  Kim F. Storm  <storm@cua.dk>
23113
23114         Change Emacs release version from 21.4 to 22.1 throughout.
23115         Change Emacs development version from 21.3.50 to 22.0.50.
23116
23117 2005-02-12  Katsumi Yamaoka  <yamaoka@jpl.org>
23118
23119         * gnus-art.el (gnus-mime-copy-part): Don't decode compressed parts.
23120
23121         * mm-util.el (mm-coding-system-to-mime-charset): Make it work with
23122         non-Mule XEmacs as well.
23123         (mm-decompress-buffer): Signal an error intentionally if it does
23124         not decompress compressed data because auto-compression-mode is
23125         disabled.
23126
23127 2005-02-11  Teodor Zlatanov  <tzz@lifelogs.com>
23128
23129         * gnus-registry.el (gnus-registry-delete-group): Fix bug: leaves
23130         an ID in the registry even if it has no groups.
23131
23132 2005-02-10  Katsumi Yamaoka  <yamaoka@jpl.org>
23133
23134         * gnus-art.el (gnus-mime-jka-compr-maybe-uncompress): Remove;
23135         merge it into mm-decompress-buffer.
23136         (gnus-mime-copy-part): Use the MIME part charset, the value which
23137         a user specified or gnus-newsgroup-charset for decoding, like
23138         gnus-mime-inline-part does; set buffer-file-coding-system to tell
23139         save-buffer what was used.  Suggested by Kevin Ryde
23140         <user42@zip.com.au>.
23141         (gnus-mime-inline-part): Allow the name parameter as well as the
23142         filename parameter; force decompressing of compressed data; always
23143         display contents being not decoded as unibyte.
23144
23145         * mm-view.el (mm-display-inline-fontify): Allow the name parameter
23146         as well as the filename parameter.
23147
23148         * mm-util.el (mm-decompress-buffer):
23149         Merge gnus-mime-jka-compr-maybe-uncompress.
23150         (mm-find-buffer-file-coding-system): Doc fix; force decompressing
23151         of compressed data.
23152
23153 2005-02-08  Simon Josefsson  <jas@extundo.com>
23154
23155         * imap.el (imap-log): Doc fix.
23156
23157 2005-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
23158
23159         * gnus-art.el (gnus-mime-inline-part): Decode parts according to
23160         the coding cookies; decompress compressed parts.
23161
23162         * mml.el (mml-generate-mime-1): Add the charset parameter according
23163         to the value which a user specified manually or the coding cookie.
23164
23165         * mm-util.el (mm-string-to-multibyte): New function.
23166         (mm-detect-mime-charset-region): Work with Emacs 22 as well.
23167         (mm-coding-system-to-mime-charset): New function.
23168         (mm-decompress-buffer): New function.
23169         (mm-find-buffer-file-coding-system): New function.
23170
23171         * mm-view.el (mm-insert-inline): Make sure a part ends with a newline.
23172         (mm-display-inline-fontify): Rewrite for decoding and decompressing
23173         parts.
23174
23175 2005-02-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
23176
23177         * mm-view.el (mm-display-inline-fontify): Decode a part according
23178         to the charset parameter.
23179
23180 2005-02-03  Katsumi Yamaoka  <yamaoka@jpl.org>
23181
23182         * gnus-art.el (gnus-mime-inline-part): Show the raw contents if a
23183         prefix arg is neither nil nor a number, as info specifies.
23184
23185 2005-02-02  Katsumi Yamaoka  <yamaoka@jpl.org>
23186
23187         * nntp.el (nntp-marks-changed-p): Use time-less-p to compare the
23188         timestamps.
23189
23190 2005-02-02  Jari Aalto  <jari.aalto@cante.net>
23191
23192         * gnus-sum.el (gnus-list-of-unread-articles): Improve active
23193         groups error checking and notify user.
23194
23195 2005-02-02  Jari Aalto  <jari.aalto@poboxes.com>
23196
23197         * message.el (message-send-mail-function): Check existence of
23198         sendmail-program first before using default value
23199         `message-send-mail-with-sendmail'.  Otherwise use more generic
23200         `smtpmail-send-it'.
23201
23202 2005-02-01  Katsumi Yamaoka  <yamaoka@jpl.org>
23203
23204         * nntp.el (nntp-request-update-info): Always return nil.
23205
23206 2005-01-30  Stefan Monnier  <monnier@iro.umontreal.ca>
23207
23208         * gnus-art.el (gnus-article-mode): Turn off the "\ " non-break space.
23209
23210 2005-01-28  Stefan Monnier  <monnier@iro.umontreal.ca>
23211
23212         * message.el (message-beginning-of-line): Change the behavior when
23213         invoked between BOL and : so that it first moves backward.
23214
23215 2005-01-28  Katsumi Yamaoka  <yamaoka@jpl.org>
23216
23217         * gnus-art.el (gnus-article-setup-buffer): Kill and re-create the
23218         article buffer when editing of the article is discarded.
23219         (gnus-article-prepare): Revert.
23220
23221 2005-01-28  Katsumi Yamaoka  <yamaoka@jpl.org>
23222
23223         * gnus-art.el (gnus-article-prepare):
23224         Remove message-strip-forbidden-properties from the local hook.
23225
23226 2005-01-27  Simon Josefsson  <jas@extundo.com>
23227
23228         * password.el (password-cache-add): Only start one timer per key.
23229         Reported by Derek Atkins <warlord@MIT.EDU>.
23230
23231 2005-01-26  Steve Youngs  <steve@sxemacs.org>
23232
23233         * run-at-time.el: Remove.  It is no longer needed as
23234         timer-funcs.el in the xemacs-base package has a working version of
23235         `run-at-time'.
23236
23237         * gnus-xmas.el: Require timer-funcs instead of run-at-time.
23238
23239         * password.el: Require timer-funcs instead of run-at-time in
23240         XEmacs.
23241         Remove `password-run-at-time' macro.
23242         (password-cache-add): Use `run-at-time' instead of
23243         `password-run-at-time'.
23244
23245         * nnheaderxm.el: Require timer-funcs instead of run-at-time.
23246         Remove `nnheader-cancel-function-timers' alias,
23247         `cancel-function-timers' exists in XEmacs in timer-funcs.
23248
23249         * mail-source.el: Require timer-funcs instead of itimer in XEmacs
23250         for `run-with-idle-timer'.
23251
23252         * gnus-demon.el: Require timer-funcs instead of itimer in XEmacs
23253         for `run-at-time'.
23254
23255         * mm-url.el: Require timer-funcs at compile time when in XEmacs
23256         for `with-timeout'.
23257
23258         * dgnushack.el: Autoload the correct `setenv' for SXEmacs which is
23259         the same as for XEmacs 21.4.
23260         No need to ignore `run-with-idle-timer', this function exists in
23261         XEmacs now in timer-funcs.el in the xemacs-base package.
23262         (dgnushack-compile): No need to delete
23263         run-at-time.el from the list of files to compile because it
23264         doesn't exist anymore.
23265
23266 2005-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
23267
23268         * mml.el (mml-generate-mime-1): Convert string into unibyte when
23269         inserting " *mml*" buffer's contents into a unibyte temp buffer.
23270
23271 2005-01-24  Harald Meland  <harald.meland@usit.uio.no>  (tiny change)
23272
23273         * mail-source.el (mail-source-fetch-imap): Search for ^From case
23274         sensitively.
23275
23276 2005-01-21  Derek Atkins  <warlord@MIT.EDU>  (tiny change)
23277
23278         * pgg-pgp.el (pgg-pgp-decrypt-region): Use passphrase cache.
23279
23280 2005-01-20  Katsumi Yamaoka  <yamaoka@jpl.org>
23281
23282         * mm-decode.el (mm-insert-part): Switch the multibyteness of data
23283         which will be inserted according to the multibyteness of a buffer
23284         rather than the type of contents.  Suggested by ARISAWA Akihiro
23285         <ari@mbf.ocn.ne.jp>.
23286
23287         * nnrss.el (nnrss-find-el): Check carefully whether there's a list
23288         of string which old xml.el may return rather than a string.
23289
23290 2005-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
23291
23292         * gnus-sum.el (gnus-summary-idna-message): Silence byte compiler.
23293
23294 2005-01-16  Simon Josefsson  <jas@extundo.com>
23295
23296         * gnus-sum.el (gnus-summary-idna-message): Fail gracefully if
23297         idn/idna.el isn't available.
23298         (gnus-summary-idna-message): Doc fix.  Suggested by Michael Cook
23299         <michael@waxrat.com>.
23300
23301         * hashcash.el: Remove non-FSF copyright header.
23302
23303         * hashcash.el (hashcash-extra-generate-parameters): New variable.
23304         (hashcash-generate-payment): Use it.
23305         (hashcash-generate-payment-async): Use it.
23306
23307 2005-01-15  Simon Josefsson  <jas@extundo.com>
23308
23309         * message.el (message-idna-to-ascii-rhs): Decode Reply-To too.
23310         Suggested by Raymond Scholz <ray-2005@zonix.de>.
23311
23312         * gnus-sum.el (gnus-summary-wash-map): Bind "W i" to
23313         gnus-summary-idna-message.
23314         (gnus-summary-make-menu-bar): Add De-IDNA menu entry.
23315         (gnus-summary-idna-message): New function.
23316
23317 2005-01-13  Reiner Steib  <Reiner.Steib@gmx.de>
23318
23319         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Change default to
23320         gnus-novice-user.
23321
23322 2005-01-12  Katsumi Yamaoka  <yamaoka@jpl.org>
23323
23324         * nnrss.el (nnrss-request-delete-group): Delete entries in
23325         nnrss-group-alist as well.
23326         (nnrss-save-server-data): Insert newline.
23327
23328 2005-01-10  Reiner Steib  <Reiner.Steib@gmx.de>
23329
23330         * gnus.el (gnus-user-agent): Use list of symbols instead of
23331         symbols.  Display full version number for (S)XEmacs.
23332         Optionally display (S)XEmacs codename.
23333
23334         * gnus-util.el (gnus-emacs-version): Update for new
23335         `gnus-user-agent'.
23336
23337         * gnus-msg.el (gnus-extended-version): Make it possible to omit
23338         Gnus version.
23339
23340 2005-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
23341
23342         * spam.el (spam-face): New face.  Don't use `gnus-splash-face'
23343         which is unreadable in some setups.
23344
23345 2005-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
23346
23347         * gnus-spec.el (gnus-update-format-specifications): Flush the
23348         group format spec cache if it doesn't support decoded group names.
23349
23350 2005-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
23351
23352         * gnus-score.el (gnus-decay-scores, gnus-score-load-file):
23353         Allow to apply decay on score files matching a regexp.
23354
23355 2004-12-30  Katsumi Yamaoka  <yamaoka@jpl.org>
23356
23357         * gnus-group.el (gnus-group-line-format-alist): Keep the forward
23358         compatibility in %g and %c.
23359
23360 2004-12-29  Katsumi Yamaoka  <yamaoka@jpl.org>
23361
23362         * gnus-group.el (gnus-group-line-format-alist): Use decoded group
23363         name for only %g and %c.
23364         (gnus-group-insert-group-line): Bind gnus-tmp-decoded-group instead
23365         of gnus-tmp-group to decoded group name.
23366         (gnus-group-make-rss-group): Exclude `/'s from group names.
23367
23368 2004-12-28  Katsumi Yamaoka  <yamaoka@jpl.org>
23369
23370         * nnrss.el (nnrss-get-encoding): Fix regexp.
23371
23372 2004-12-27  Simon Josefsson  <jas@extundo.com>
23373
23374         * mm-bodies.el (mm-body-encoding): Don't permit 7-bit to be used when
23375         mm-use-ultra-safe-encoding is enabled (e.g., for PGP/MIME) and we have
23376         trailing white space.  Reported by Werner Koch <wk@gnupg.org>.
23377
23378 2004-12-17  Kim F. Storm  <storm@cua.dk>
23379
23380         * gnus-group.el (gnus-group-mode-map): Map follow-link to mouse-face.
23381
23382         * gnus-sum.el (gnus-summary-mode-map): Likewise.
23383
23384 2004-12-26  Tsuyoshi AKIHO  <akiho@kawachi.zaq.ne.jp>
23385
23386         * gnus-sum.el (gnus-summary-walk-group-buffer): Decode group name.
23387
23388 2004-12-26  Katsumi Yamaoka  <yamaoka@jpl.org>
23389
23390         * nnrss.el: Require rfc2047 and mml.
23391         (nnrss-file-coding-system): New variable.
23392         (nnrss-format-string): Redefine it as an inline function.
23393         (nnrss-decode-group-name): New function.
23394         (nnrss-string-as-multibyte): Remove.
23395         (nnrss-retrieve-headers): Decode group name; don't use
23396         nnrss-format-string.
23397         (nnrss-request-group): Decode group name.
23398         (nnrss-request-article): Decode group name; allow a Message-ID as
23399         well as an article number; don't use nnrss-format-string; encode a
23400         Message-ID string which may contain non-ASCII characters; use
23401         mml-to-mime to compose a MIME article.
23402         (nnrss-request-expire-articles): Decode group name.
23403         (nnrss-request-delete-group): Decode group name.
23404         (nnrss-fetch): Clarify error message.
23405         (nnrss-read-server-data): Use insert-file-contents instead of load;
23406         bind file-name-coding-system; use multibyte buffer.
23407         (nnrss-save-server-data): Bind coding-system-for-write to the
23408         value of nnrss-file-coding-system; bind file-name-coding-system;
23409         add coding cookie.
23410         (nnrss-read-group-data): Use insert-file-contents instead of load;
23411         bind file-name-coding-system; use multibyte buffer.
23412         (nnrss-save-group-data): Bind coding-system-for-write to the
23413         value of nnrss-file-coding-system; bind file-name-coding-system.
23414         (nnrss-decode-entities-string): Rename from n-d-e-unibyte-string;
23415         make it work with non-ASCII text.
23416         (nnrss-find-el): Make it work with old xml.el as well.
23417
23418 2004-12-26  Tsuyoshi AKIHO  <akiho@kawachi.zaq.ne.jp>
23419
23420         * nnrss.el (nnrss-get-encoding): New function.
23421         (nnrss-fetch): Use unibyte buffer initially; bind
23422         coding-system-for-read while performing mm-url-insert; remove ^Ms;
23423         decode contents according to the encoding attribute.
23424         (nnrss-save-group-data): Add coding cookie.
23425         (nnrss-mime-encode-string): New function.
23426         (nnrss-check-group): Use it to encode subject and author.
23427
23428 2004-12-23  Teodor Zlatanov  <tzz@lifelogs.com>
23429
23430         * spam.el (spam-check-BBDB): Don't get the symbol-value of an
23431         imaginary variable.
23432
23433 2004-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
23434
23435         * gnus-spec.el (gnus-spec-tab): Make a Lisp form which works
23436         correctly even if there are wide characters.
23437
23438 2004-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
23439
23440         * spam.el (spam-check-BBDB): Fix the BBDB caching code to use
23441         downcased symbol names; make a new cache instead of reusing
23442         bbdb-hashtable.
23443
23444 2004-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
23445
23446         * rfc2231.el (rfc2231-parse-string): Decode encoded value after
23447         concatenating segments rather than before concatenating them.
23448         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
23449
23450         * message.el (message-get-reply-headers): Bind `extra'.
23451
23452 2004-12-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23453
23454         * message.el (message-extra-wide-headers): New variable.
23455         (message-get-reply-headers): Use it.
23456
23457 2004-12-20  Katsumi Yamaoka  <yamaoka@jpl.org>
23458
23459         * gnus-agent.el (gnus-agent-group-path): Decode group name.
23460         (gnus-agent-group-pathname): Ditto.
23461
23462         * gnus-cache.el (gnus-cache-file-name): Decode group name.
23463
23464         * gnus-group.el (gnus-group-make-group): Decode group name.
23465         (gnus-group-make-rss-group): Register the group data after opening
23466         the nnrss group.
23467
23468 2004-12-17  Paul Jarc  <prj@po.cwru.edu>
23469
23470         * nnmaildir.el (nnmaildir-request-expire-articles): Articles moved
23471         by expiry now get marked as read.
23472
23473 2004-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
23474
23475         * mm-util.el (mm-xemacs-find-mime-charset): New macro.
23476
23477 2004-12-17  Aidan Kehoe  <kehoea@parhasard.net>
23478
23479         * mm-util.el (mm-xemacs-find-mime-charset-1): New function used to
23480         unify Latin characters in XEmacs.
23481         (mm-find-mime-charset-region): Use it.
23482
23483 2004-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
23484
23485         * gnus-util.el (gnus-delete-directory): New function.
23486
23487         * gnus-agent.el (gnus-agent-delete-group): Use it.
23488
23489         * gnus-cache.el (gnus-cache-delete-group): Use it.
23490
23491 2004-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
23492
23493         * gnus-group.el (gnus-group-make-rss-group): Unify non-ASCII group
23494         names.
23495
23496 2004-12-16  Simon Josefsson  <jas@extundo.com>
23497
23498         * hashcash.el (hashcash-payment-alist): Fix custom :type.
23499
23500 2004-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
23501
23502         * mm-url.el (mm-url-predefined-programs): Add --silent arg to curl.
23503
23504         * gnus-group.el (gnus-group-expire-articles-1): Decode group name.
23505         (gnus-group-set-current-level): Decode group name.
23506
23507 2004-12-15  Maciek Pasternacki  <maciekp@japhy.fnord.org>  (tiny change)
23508
23509         * nnrss.el (nnrss-fetch): Signal an error if w3-parse-buffer also
23510         failed.
23511
23512 2004-12-14  Katsumi Yamaoka  <yamaoka@jpl.org>
23513
23514         * gnus-group.el (gnus-group-delete-group): Decode group name.
23515         (gnus-group-make-rss-group): Encode group name.
23516         (gnus-group-catchup-current): Decode group name.
23517         (gnus-group-kill-group): Decode group name.
23518
23519 2004-12-08  Stefan Monnier  <monnier@iro.umontreal.ca>
23520
23521         * gnus-art.el (gnus-narrow-to-page): Don't hardcode point-min.
23522
23523 2004-12-13  Katsumi Yamaoka  <yamaoka@jpl.org>
23524
23525         * gnus-group.el (gnus-group-make-rss-group):
23526         Use gnus-group-make-group instead of gnus-group-unsubscribe-group.
23527
23528         * gnus-start.el (gnus-setup-news): Honor user's setting to
23529         gnus-message-archive-method.  Suggested by Lute Kamstra
23530         <lute@gnu.org>.
23531
23532 2004-12-10  Arnaud Giersch  <arnaud.giersch@free.fr>  (tiny change)
23533
23534         * gnus-sum.el (gnus-summary-exit-no-update): Don't clear the
23535         global counterparts of the buffer-local variables.
23536
23537 2004-11-16  Romain Francoise  <romain@orebokech.com>
23538
23539         * gnus-sum.el (gnus-summary-exit): Don't clear the global
23540         counterparts of the buffer-local variables.
23541
23542 2004-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
23543
23544         * message.el (message-forbidden-properties): Fix typo in doc
23545         string.
23546
23547 2004-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
23548
23549         * gnus-util.el (gnus-replace-in-string): Add doc string.
23550
23551         * nnmail.el (nnmail-split-header-length-limit): Increase to 2048
23552         to avoid problems when splitting mails with many recipients.
23553
23554 2004-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
23555
23556         * gnus-sum.el (gnus-summary-exit): Remove redundant and harmful
23557         pop-to-buffer, covered by the subsequent gnus-configure-windows.
23558
23559 2004-12-05  Nelson Ferreira  <nelson.ferreira@ieee.org>
23560
23561         * spam-stat.el (spam-stat-save): Load the hashtable from disk only
23562         if there is no hashtable in memory or file modification time is
23563         newer than cached timestamp.
23564
23565 2004-12-03  Reiner Steib  <Reiner.Steib@gmx.de>
23566
23567         * gnus-sum.el (gnus-summary-limit-to-recipient):
23568         Implement not-matching option.
23569
23570 2004-12-02  Reiner Steib  <Reiner.Steib@gmx.de>
23571
23572         * gnus-sum.el (gnus-summary-limit-to-recipient): New function.
23573         Suggested David Mazieres in analogy to rmail-summary-by-recipients.
23574         (gnus-summary-limit-map, gnus-summary-make-menu-bar): Add it.
23575         (gnus-article-sort-by-recipient, gnus-summary-sort-by-recipient):
23576         New functions.  Suggested by Uwe Brauer <oub@mat.ucm.es>.
23577         (gnus-summary-mode-map, gnus-summary-make-menu-bar): Add it.
23578
23579 2004-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
23580
23581         * message.el (message-forward-make-body-mml): Remove headers
23582         according to message-forward-ignored-headers if a message is decoded.
23583
23584 2004-12-02  Romain Francoise  <romain@orebokech.com>
23585
23586         * message.el (message-forward-make-body-plain): Always remove
23587         headers according to message-forward-ignored-headers.
23588
23589 2004-12-01  Teodor Zlatanov  <tzz@lifelogs.com>
23590
23591         * spam.el (spam-summary-prepare-exit): Remove the
23592         gnus-summary-limit pop for now, it has problems with ham marks for
23593         me.
23594
23595 2004-11-29  Teodor Zlatanov  <tzz@lifelogs.com>
23596
23597         * spam.el (spam-summary-prepare-exit): Use gnus-summary-limit
23598         correctly.
23599
23600 2004-11-28  Carl Henrik Lunde  <chlunde+bugs+@ping.uio.no>  (tiny change)
23601
23602         * format-spec.el (format-spec): Message the char.
23603
23604 2004-11-26  Teodor Zlatanov  <tzz@lifelogs.com>
23605
23606         * gnus-art.el (gnus-split-methods): Reformat comments.
23607
23608         * spam.el (spam-summary-prepare-exit): Remove article limits
23609         before exiting the summary buffer.
23610
23611 2004-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
23612
23613         * lpath.el: Remove bbdb-create-internal, bbdb-records,
23614         spam-BBDB-register-routine and spam-enter-ham-BBDB.
23615
23616         * nnrss.el (nnrss-string-as-multibyte): Redefine it as a macro in
23617         order to silence the byte compiler.
23618
23619         * spam.el: Fix the way to silence the byte compiler, which
23620         complained about bbdb-buffer, bbdb-create-internal, bbdb-records,
23621         bbdb-search-simple, spam-BBDB-register-routine,
23622         spam-enter-ham-BBDB, spam-stat-buffer-change-to-non-spam,
23623         spam-stat-buffer-change-to-spam, spam-stat-buffer-is-non-spam,
23624         spam-stat-buffer-is-spam, spam-stat-load,
23625         spam-stat-register-ham-routine, spam-stat-register-spam-routine,
23626         spam-stat-save and spam-stat-split-fancy.
23627
23628 2004-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
23629
23630         * canlock.el (canlock-password): Remove `:size 0' or `:size 1'
23631         which may confuse users.
23632         (canlock-password-for-verify): Ditto.
23633
23634         * deuglify.el (gnus-outlook-deuglify-unwrap-stop-chars): Ditto.
23635
23636         * gnus-art.el (gnus-emphasis-alist): Ditto.
23637
23638         * gnus-registry.el (gnus-registry-max-entries): Ditto.
23639
23640         * gnus-score.el (gnus-adaptive-word-length-limit): Ditto.
23641
23642         * gnus-start.el (gnus-save-killed-list): Ditto.
23643
23644         * gnus-sum.el (gnus-thread-hide-subtree): Ditto.
23645         (gnus-sum-thread-tree-root): Ditto.
23646         (gnus-sum-thread-tree-false-root): Ditto.
23647         (gnus-sum-thread-tree-single-indent): Ditto.
23648
23649         * message.el (message-courtesy-message): Ditto.
23650         (message-archive-note): Ditto.
23651         (message-subscribed-address-file): Ditto.
23652         (message-user-fqdn): Ditto.
23653
23654         * spam-report.el (spam-report-gmane-regex): Ditto.
23655
23656         * spam.el (spam-blackhole-good-server-regex): Ditto.
23657
23658 2004-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
23659
23660         * mml.el (mml-preview): Widen the message buffer before copying
23661         the contents to the preview buffer; sort headers before previewing.
23662
23663         * message.el (message-hidden-headers): Fix the way to avoid a bug
23664         in the `repeat' widget in Emacs 21.3 or earlier.
23665
23666 2004-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
23667
23668         * message.el (message-hidden-headers): Default to "^References:".
23669         Improve customization type.  Suggested by Reiner Steib
23670         <Reiner.Steib@gmx.de>.
23671
23672 2004-11-25  Romain Francoise  <romain@orebokech.com>
23673
23674         * message.el (message-strip-forbidden-properties): Remove check for
23675         obsolete `message-hidden' text property, hidden headers are not
23676         accessible in the buffer anymore.
23677
23678 2004-11-22  Romain Francoise  <romain@orebokech.com>
23679
23680         * message.el (message-header-format-alist): Add `From' in list
23681         so that it can be sorted.
23682         (message-fix-before-sending): Widen and sort headers before
23683         sending.
23684         (message-hide-headers): Use narrowing to hide headers by moving
23685         them to the top of the buffer and narrowing to the region
23686         underneath.
23687
23688 2004-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23689
23690         * message.el (message-strip-forbidden-properties):
23691         Bind buffer-read-only (etc) to nil.
23692
23693 2004-11-23  Katsumi Yamaoka  <yamaoka@jpl.org>
23694
23695         * rfc2047.el (rfc2047-header-encoding-alist): Add In-Reply-To to
23696         address-mime.  Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
23697
23698 2004-11-22  Marek Martin  <marek.martin@mum.pri.ee>  (tiny change)
23699
23700         * nnfolder.el (nnfolder-request-create-group): Save current buffer.
23701
23702 2004-11-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23703
23704         * dns.el (query-dns): Use sit-for to time instead of
23705         accept-process-output, since that doesn't seem to work on udp
23706         sockets.
23707
23708 2004-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
23709
23710         * rfc2047.el (rfc2047-encode-region): Encode bogus delimiters.
23711
23712 2004-11-15  Jesper Harder  <harder@ifa.au.dk>
23713
23714         * pop3.el (pop3-leave-mail-on-server): Don't quote nil in
23715         doc string.  Improve doc string.
23716
23717 2004-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
23718
23719         * nntp.el (nntp-request-update-info): Return nil if
23720         nntp-marks-is-evil is true so that gnus-get-unread-articles-in-group
23721         may not call gnus-activate-group which uselessly issues the GROUP
23722         commands for all nntp groups and wastes time.  Reported by Romain
23723         Francoise <romain@orebokech.com>.
23724
23725         * gnus-start.el (gnus-get-unread-articles): Remove redundant test.
23726
23727 2004-11-15  Simon Josefsson  <jas@extundo.com>
23728
23729         * gnus-art.el (gnus-header-button-alist): Handle URLs in OpenPGP:
23730         headers separately.
23731         (gnus-button-openpgp): New function, inspired by Jochen Küpper
23732         <jochen-+It19tn3Rl9sbm7dSapR3bNAH6kLmebB@public.gmane.org>.
23733
23734 2004-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
23735
23736         * gnus-start.el (gnus-convert-old-newsrc):
23737         Assign legacy-gnus-agent to 5.10.7.
23738
23739 2004-11-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23740
23741         * gnus-art.el (article-unsplit-urls): Don't anchor urls to the
23742         start of the lines.
23743
23744 2004-11-14  Magnus Henoch  <mange@freemail.hu>
23745
23746         * hashcash.el (hashcash-default-payment): Change default to 20.
23747         (hashcash-default-accept-payment): Change default to 20.
23748         (hashcash-process-alist): New variable.
23749         (hashcash-generate-payment-async): Add.
23750         (hashcash-already-paid-p): Add.
23751         (hashcash-insert-payment): Don't generate payments twice.
23752         (hashcash-insert-payment-async): Add.
23753         (hashcash-insert-payment-async-2): Add.
23754         (hashcash-cancel-async): Add.
23755         (hashcash-wait-async): Add.
23756         (hashcash-processes-running-p): Add.
23757         (hashcash-wait-or-cancel): Add.
23758         (mail-add-payment): New optional argument.  Conditionally start
23759         asynchronous calculation.
23760         (mail-add-payment-async): Add.
23761
23762         * message.el (message-send-mail): Wait for asynchronous hashcash
23763         results.  Don't clobber existing X-Hashcash headers.
23764         (message-setup-1): Call mail-add-payment-async when
23765         message-generate-hashcash is non-nil.
23766
23767 2004-11-11  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
23768
23769         * message.el (message-use-alternative-email-as-from): Examine the
23770         From header as well; use message-make-from in order to include a
23771         user's full name.
23772
23773 2004-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
23774
23775         * gnus-art.el (gnus-emphasis-alist): Don't hide asterisks by
23776         default; improve customization type.
23777         (gnus-emphasis-custom-with-format): New macro.
23778         (gnus-emphasis-custom-value-to-external): New function.
23779         (gnus-emphasis-custom-value-to-internal): New function.
23780
23781 2004-11-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23782
23783         * dns.el (query-dns): Resolve reverse addresses.
23784
23785 2004-10-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23786
23787         * gnus-group.el (gnus-group-get-new-news): Use it.
23788
23789         * gnus-start.el (gnus-check-reasonable-setup): New function.
23790
23791 2004-11-07  Katsumi Yamaoka  <yamaoka@jpl.org>
23792
23793         * gnus-msg.el (gnus-configure-posting-styles): Don't cause the
23794         "Args out of range" error.  Reported by Arnaud Giersch
23795         <arnaud.giersch@free.fr>.
23796
23797 2004-11-07  Stefan Wiens  <s.wi@gmx.net>  (tiny change)
23798
23799         * gnus-sum.el (gnus-summary-clear-local-variables): Use symbolp.
23800
23801 2004-11-04  Richard M. Stallman  <rms@gnu.org>
23802
23803         * spam.el (spam group): Add :version.
23804
23805         * pgg-def.el (pgg group): Add :version.
23806
23807 2004-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
23808
23809         * gnus-art.el (gnus-article-edit-article): Don't associate the
23810         article buffer with a draft file.  This is a temporary measure
23811         against the 2004-08-22 change to gnus-article-edit-mode.
23812
23813 2004-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
23814
23815         * html2text.el (html2text-get-attr): Remove unused argument `tag'.
23816         (html2text-format-tags): Remove unused variable `attr'.
23817
23818 2004-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
23819
23820         * gnus-msg.el (gnus-summary-resend-default-address): Add :version.
23821
23822         * tls.el (tls-process-connection-type, tls-success)
23823         (tls-certtool-program): Add :version.
23824
23825         * starttls.el (starttls-gnutls-program, starttls-use-gnutls)
23826         (starttls-extra-arguments, starttls-process-connection-type)
23827         (starttls-connect, starttls-failure, starttls-success): Add :version.
23828
23829         * spam-stat.el (spam-stat): Add :version.
23830
23831         * sieve.el (sieve): Add :version.
23832
23833         * sha1.el (sha1): Add :version.
23834         (sha1-use-external): Remove redundant version.
23835
23836         * nnmail.el (nnmail-split-fancy-with-parent-ignore-groups)
23837         (nnmail-cache-ignore-groups, nnmail-spool-hook)
23838         (nnmail-split-fancy-match-partial-words)
23839         (nnmail-split-lowercase-expanded): Add :version.
23840
23841         * nndiary.el (nndiary): Add :version.
23842
23843         * mml2015.el (mml2015-unabbrev-trust-alist): Add :version.
23844
23845         * mml-sec.el (mml-default-sign-method)
23846         (mml-default-encrypt-method, mml-signencrypt-style-alist):
23847         Add :version.
23848
23849         * mm-uu.el (mm-uu-diff-groups-regexp): Add :version.
23850
23851         * mm-url.el (mm-url-use-external, mm-url-program)
23852         (mm-url-arguments): Add :version.
23853
23854         * mm-decode.el (mm-inline-text-html-with-w3m-keymap)
23855         (mm-attachment-file-modes, mm-decrypt-option)
23856         (mm-w3m-safe-url-regexp): Add :version.
23857
23858         * message.el (message-cite-prefix-regexp)
23859         (message-sendmail-envelope-from, message-minibuffer-local-map)
23860         (message-user-fqdn, message-completion-alist): Add :version.
23861
23862         * gnus-win.el (gnus-configure-windows-hook)
23863         (gnus-use-frames-on-any-display): Add :version.
23864
23865         * gnus-art.el (gnus-article-address-banner-alist)
23866         (gnus-treat-unsplit-urls, gnus-treat-unfold-headers)
23867         (gnus-treat-from-picon, gnus-treat-mail-picon)
23868         (gnus-treat-x-pgp-sig): Add :version.
23869
23870         * gnus-sum.el (gnus-spam-mark, gnus-recent-mark)
23871         (gnus-undownloaded-mark, gnus-summary-article-move-hook)
23872         (gnus-summary-article-delete-hook)
23873         (gnus-summary-display-while-building): Add :version.
23874
23875         * gnus-start.el (gnus-subscribe-newsgroup-hooks)
23876         (gnus-get-top-new-news-hook): Add :version.
23877
23878         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
23879         (gnus-server-closed-face, gnus-server-denied-face): Add :version.
23880
23881         * gnus-registry.el (gnus-registry): Add :version.
23882
23883         * gnus-spec.el (gnus-use-correct-string-widths)
23884         (gnus-make-format-preserve-properties): Add :version.
23885
23886         * gnus.el (gnus-group-charter-alist)
23887         (gnus-group-fetch-control-use-browse-url)
23888         (gnus-install-group-spam-parameters): Add :version.
23889
23890         * gnus-diary.el (gnus-diary): Add :version.
23891
23892         * gnus-delay.el (gnus-delay): Add :version.
23893
23894         * gnus-cite.el (gnus-cite-unsightly-citation-regexp)
23895         (gnus-cite-ignore-quoted-from, gnus-cite-attribution-face)
23896         (gnus-cite-blank-line-after-header, gnus-article-boring-faces):
23897         Add :version.
23898
23899         * gnus-agent.el (gnus-agent-max-fetch-size)
23900         (gnus-agent-enable-expiration, gnus-agent-queue-mail)
23901         (gnus-agent-prompt-send-queue): Add :version.
23902
23903         * deuglify.el (gnus-outlook-deuglify): Add :version.
23904
23905         * html2text.el: Beautify code.  Improve doc strings.
23906         Some checkdoc cleanup.
23907         (html2text-get-attr, html2text-fix-paragraph): Simplify code.
23908
23909 2004-11-01  Alfred M. Szmidt  <ams@kemisten.nu>  (tiny change)
23910
23911         * html2text.el (html2text-format-tag-list): Add "strong" and "em".
23912
23913 2004-10-29  Teodor Zlatanov  <tzz@lifelogs.com>
23914
23915         * gnus-registry.el (gnus-registry-hashtb): Create the registry
23916         when package is loaded.
23917
23918         * spam.el (spam-summary-score-preferred-header): Add global preference
23919         for people who want to override the default SpamAssassin over
23920         Bogofilter preference (when both are set).
23921         (spam-necessary-extra-headers): Add spam-use-bogofilter as an option.
23922         (spam-user-format-function-S):
23923         Check spam-summary-score-preferred-header.
23924         (spam-extra-header-to-number): Add X-Bogosity header parsing.
23925         (spam-user-format-function-S): Format the score correctly.
23926
23927 2004-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
23928
23929         * gnus-msg.el (gnus-configure-posting-styles): Work with empty
23930         signature file.  Suggested by Manoj Srivastava
23931         <srivasta@golden-gryphon.com>.
23932
23933         * mm-util.el (mm-coding-system-priorities): Prefer iso-8859-1 than
23934         iso-2022-jp even in the Japanese language environment.
23935         Suggested by Jason Rumney <jasonr@gnu.org>.
23936
23937 2004-10-28  Katsumi Yamaoka  <yamaoka@jpl.org>
23938
23939         * gnus-sum.el (gnus-update-summary-mark-positions): Allow users to
23940         use the same characters as the dummy marks; make it free from
23941         getting affected by the language environment.
23942         (gnus-summary-read-group-1): Update mark positions only when the
23943         format spec is updated.
23944
23945         * gnus-spec.el (gnus-update-format-specifications): Return a list
23946         of updated types.
23947
23948 2004-10-27  Katsumi Yamaoka  <yamaoka@jpl.org>
23949
23950         * gnus-start.el (gnus-check-reasonable-setup): Use fboundp instead
23951         of boundp to check if display-warning is available.
23952
23953 2004-10-26  Teodor Zlatanov  <tzz@lifelogs.com>
23954
23955         * nnimap.el (nnimap-open-connection): Fix prog1/prog2 bug.
23956
23957 2004-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
23958
23959         * nnspool.el (nnspool-spool-directory): Use news-path if the
23960         news-directory variable is not bound.
23961
23962         * gnus-start.el (gnus-check-reasonable-setup): Use an alternative
23963         function instead of display-warning if it is not available.
23964
23965 2004-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
23966
23967         * gnus-agent.el (gnus-agent-expire-group-1): Fix last merge from
23968         v5-10: Use `point-at-bol'.
23969
23970 2004-10-26  Simon Josefsson  <jas@extundo.com>
23971
23972         * hashcash.el: Fix URL in comment, reported by Cheng Gao
23973         <chenggao@gmail.com>.
23974
23975 2004-10-25  Reiner Steib  <Reiner.Steib@gmx.de>
23976
23977         * html2text.el (html2text-buffer-head): Remove.  Use `goto-char'
23978         instead.
23979
23980 2004-10-25  Teodor Zlatanov  <tzz@lifelogs.com>
23981
23982         * nnimap.el (nnimap-remove-server-from-buffer-alist): Add function
23983         to remove a server from the nnimap-server-buffer-alist.
23984         (nnimap-open-connection, nnimap-close-server): Use it.
23985
23986         * gnus-encrypt.el: Remove file in favor of encrypt.el.
23987
23988 2004-10-21  Katsumi Yamaoka  <yamaoka@jpl.org>
23989
23990         * mm-view.el (mm-display-inline-fontify): Inhibit font-lock when
23991         running the major-mode function.
23992
23993 2004-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
23994
23995         * gnus-sum.el (gnus-update-summary-mark-positions): Search for
23996         dummy marks in the right way.
23997
23998 2004-10-18  David Edmondson  <dme@dme.org>
23999
24000         * mm-view.el (mm-w3m-cid-retrieve-1): Don't use recursive call
24001         excessively.
24002
24003 2004-10-18  Teodor Zlatanov  <tzz@lifelogs.com>
24004
24005         * gnus-util.el (gnus-split-references): Accept a nil references
24006         string and go on blissfully.
24007
24008         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Catch
24009         cases where the references string is non-nil but has no references.
24010
24011         * encrypt.el: Add autoload tags.
24012
24013         * spam.el (spam-resolve-registrations-routine): Remove article
24014         from unregistration list too.  Reported by David Hanak
24015         <dhanak@isis.vanderbilt.edu>
24016
24017 2004-10-18  Reiner Steib  <Reiner.Steib@gmx.de>
24018
24019         * gnus-art.el (gnus-copy-article-ignored-headers): Default to
24020         nil.  Change custom type.
24021
24022 2004-10-17  Reiner Steib  <Reiner.Steib@gmx.de>
24023
24024         * gnus-art.el (gnus-copy-article-ignored-headers): New variable.
24025
24026         * gnus-sum.el (gnus-summary-move-article): Use it.
24027
24028 2004-10-15  Teodor Zlatanov  <tzz@lifelogs.com>
24029
24030         * encrypt.el: Add autoload cookies.
24031
24032         * spam.el (spam-backend-article-list-property)
24033         (spam-backend-get-article-todo-list)
24034         (spam-backend-put-article-todo-list)
24035         (spam-summary-prepare-exit, spam-resolve-registrations-routine):
24036         Resolve registrations separately.
24037         (spam-register-routine): Format comments.
24038         (spam-unregister-routine, spam-register-routine): Always call with
24039         specific-articles, no default list.
24040         (spam-summary-prepare-exit): Use the spam-classifications function.
24041
24042         * netrc.el (autoload, netrc-parse): Use encrypt.el instead of
24043         gnus-encrypt.el.
24044
24045         * encrypt.el: Copied from gnus-encrypt.el.
24046
24047         * gnus-encrypt.el: Commented that it's obsolete.
24048
24049 2004-10-15  Reiner Steib  <Reiner.Steib@gmx.de>
24050
24051         * gnus-score.el (gnus-adaptive-pretty-print): New variable.
24052         (gnus-score-save): Use it.
24053
24054         * message.el (message-bury): Use `window-dedicated-p'.
24055
24056 2004-10-15  Simon Josefsson  <jas@extundo.com>
24057
24058         * pop3.el (top-level): Don't require nnheader.
24059         (pop3-read-timeout): Add.
24060         (pop3-accept-process-output): Add.
24061         (pop3-read-response, pop3-retr): Use it.
24062
24063 2004-10-14  Teodor Zlatanov  <tzz@lifelogs.com>
24064
24065         * spam.el (spam-register-routine): Move comment.
24066         (spam-verify-bogofilter): Use 'unknown for the initial
24067         spam-bogofilter-valid state, not 'never.
24068
24069         * netrc.el (netrc-machine-user-or-password): Add convenience wrapper
24070         for netrc-machine.
24071
24072         * nnimap.el (nnimap-open-connection):
24073         Use netrc-machine-user-or-password.
24074
24075 2004-10-17  Richard M. Stallman  <rms@gnu.org>
24076
24077         * gnus-registry.el (gnus-registry-unload-hook):
24078         Set as a variable with add-hook.
24079
24080         * nnspool.el (nnspool-spool-directory): Use news-directory instead
24081         of news-path.
24082
24083         * spam-stat.el (spam-stat-unload-hook): Set as a variable w/ add-hook.
24084
24085         * spam.el: Delete duplicate `provide'.
24086         (spam-unload-hook): Set as a variable with add-hook.
24087
24088 2004-10-15  Reiner Steib  <Reiner.Steib@gmx.de>
24089
24090         * pop3.el (pop3-leave-mail-on-server): Describe possible problems
24091         in the doc string.
24092
24093         * message.el (message-ignored-news-headers)
24094         (message-ignored-supersedes-headers)
24095         (message-ignored-resent-headers)
24096         (message-forward-ignored-headers): Improve custom type.
24097
24098 2004-10-13  Katsumi Yamaoka  <yamaoka@jpl.org>
24099
24100         * message.el (message-tokenize-header): Fix 2004-09-06 change
24101         which used point-min in the wrong place.
24102
24103 2004-10-12  Simon Josefsson  <jas@extundo.com>
24104
24105         * tls.el (tls-certtool-program): New variable.
24106         (tls-certificate-information): New function, based on
24107         ssl-certificate-information.
24108
24109 2004-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
24110
24111         * compface.el: Move the version of ELisp-based uncompface program
24112         to the contrib directory because of the copyright problem.
24113
24114 2004-10-12  Reiner Steib  <Reiner.Steib@gmx.de>
24115
24116         * message.el (message-kill-buffer): Raise the current frame.
24117
24118 2004-10-10  Reiner Steib  <Reiner.Steib@gmx.de>
24119
24120         * gnus-sum.el: Mention that multibyte characters don't work as marks.
24121
24122         * gnus.el (message-y-or-n-p): Autoload.
24123
24124         * pop3.el (pop3-maildrop, pop3-mailhost, pop3-port)
24125         (pop3-password-required, pop3-authentication-scheme)
24126         (pop3-leave-mail-on-server): Make customizable.
24127         (pop3): New custom group.
24128         (pop3-retr): Remove `sleep-for' statements.
24129         Suggested by Dave Love <fx@gnu.org>.
24130
24131         * nnheader.el (nnheader-read-timeout): Explain 1.0 timeout for
24132         Windows/DOS.
24133
24134         * imap.el (imap-parse-flag-list, imap-parse-body-extension)
24135         (imap-parse-body): Fix incorrect use of `assert'.
24136         Suggested by Dave Love <fx@gnu.org>.
24137
24138         * mml.el (mml-minibuffer-read-disposition): Require match.
24139         Suggested by Dave Love <fx@gnu.org>.
24140
24141 2004-10-11  Reiner Steib  <Reiner.Steib@gmx.de>
24142
24143         * gnus-group.el (gnus-group-delete-group): Change "\t." to "  " in
24144         doc string.
24145
24146 2004-10-08  Katsumi Yamaoka  <yamaoka@jpl.org>
24147
24148         * mm-uu.el (mm-uu-dissect-text-parts): Support all text/* types.
24149
24150 2004-10-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
24151
24152         * gnus-art.el (gnus-mime-display-single): Call `mm-display-inline'
24153         instead of calling `mm-insert-inline', to decode text/* parts
24154         before displaying them.
24155
24156 2004-10-07  Katsumi Yamaoka  <yamaoka@jpl.org>
24157
24158         * mm-uu.el (mm-uu-text-plain-type): New variable.
24159         (mm-uu-pgp-signed-extract-1): Use it.
24160         (mm-uu-pgp-encrypted-extract-1): Use it.
24161         (mm-uu-dissect): Allow MIME type and parameters as an optional arg;
24162         bind mm-uu-text-plain-type with that value.
24163         (mm-uu-dissect-text-parts): Pass MIME type and parameters to
24164         mm-uu-dissect.
24165
24166 2004-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
24167
24168         * gnus-group.el (gnus-update-group-mark-positions):
24169         * gnus-sum.el (gnus-update-summary-mark-positions):
24170         * message.el (message-check-news-body-syntax):
24171         * gnus-msg.el (gnus-debug): Use mm-string-as-multibyte instead
24172         of string-as-multibyte.
24173
24174 2004-10-05  Juri Linkov  <juri@jurta.org>
24175
24176         * gnus-group.el (gnus-update-group-mark-positions):
24177         * gnus-sum.el (gnus-update-summary-mark-positions):
24178         * message.el (message-check-news-body-syntax):
24179         * gnus-msg.el (gnus-debug): Use `string-as-multibyte' to convert
24180         8-bit unibyte values to a multibyte string for search functions.
24181
24182 2004-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
24183
24184         * mm-uu.el (mm-uu-dissect): Allow optional arg.
24185         (mm-uu-dissect-text-parts): New function.
24186
24187         * gnus-art.el (gnus-display-mime): Use mm-uu-dissect-text-parts to
24188         dissect text parts.
24189
24190         * gnus-sum.el (gnus-summary-insert-subject): Remove redundant setq.
24191         (gnus-summary-force-verify-and-decrypt): Revert 2004-08-18 change.
24192
24193         * mm-decode.el (mm-dissect-singlepart): Revert 2004-08-18 change.
24194
24195         * gnus-topic.el (gnus-topic-hierarchical-parameters):
24196         Use gnus-current-topics instead of gnus-current-topic.
24197
24198 2004-10-06  Jesper Harder  <harder@ifa.au.dk>
24199
24200         * gnus-sum.el (gnus-summary-show-article): Use with-current-buffer.
24201
24202 2004-10-05  Jesper Harder  <harder@ifa.au.dk>
24203
24204         * nnsoup.el (nnsoup-read-active-file): Use dolist, mapc or last
24205         where appropriate.
24206
24207         * nnml.el (nnml-generate-active-info): do.
24208
24209         * nndiary.el (nndiary-generate-active-info): do.
24210
24211         * gnus-topic.el (gnus-topic-hierarchical-parameters): do.
24212         (gnus-topic-move): do.
24213
24214         * gnus-sum.el (gnus-data-enter-list, gnus-summary-process-mark-set)
24215         (gnus-summary-set-local-parameters, gnus-summary-read-document): do.
24216
24217         * gnus-srvr.el (gnus-server-prepare)
24218         (gnus-server-open-all-servers): do.
24219
24220         * gnus-msg.el (gnus-summary-cancel-article)
24221         (gnus-summary-resend-message)
24222         (gnus-summary-mail-crosspost-complaint): do.
24223
24224         * gnus-move.el (gnus-change-server): do.
24225
24226         * gnus-group.el (gnus-group-unmark-all-groups)
24227         (gnus-group-set-current-level): do.
24228
24229 2004-10-04  Simon Josefsson  <jas@extundo.com>
24230
24231         * message.el (message-generate-hashcash): Doc fix.
24232
24233 2004-10-02  Kevin Greiner  <kgreiner@compsol.cc>
24234
24235         * nnagent.el (nnagent-request-type): Bind gnus-agent to nil to
24236         avoid infinite recursion via gnus-get-function.
24237
24238 2004-10-02  Jesper Harder  <harder@ifa.au.dk>
24239
24240         * mm-partial.el (mm-partial-find-parts): Use with-current-buffer.
24241
24242         * nnfolder.el (nnfolder-generate-active-file): Use dolist.
24243
24244         * nnmail.el (nnmail-split-history): do.
24245
24246         * nnml.el (nnml-generate-nov-databases-1, nnml-request-rename-group)
24247         (nnml-request-delete-group): do.
24248
24249         * nnslashdot.el (nnslashdot-read-groups): do.
24250
24251         * nnsoup.el (nnsoup-delete-unreferenced-message-files): do.
24252         (nnsoup-unpack-packets, nnsoup-make-active): Simplify.
24253
24254         * nnspool.el (nnspool-find-id): Use with-temp-buffer.
24255         (nnspool-sift-nov-with-sed): Use last.
24256         (nnspool-retrieve-headers-with-nov): Use mapc.
24257         (nnspool-request-newgroups): Use dolist.
24258         (nnspool-request-group): Use last.
24259
24260         * nntp.el (nntp-read-server-type): Use dolist.
24261
24262         * nnvirtual.el (nnvirtual-create-mapping)
24263         (nnvirtual-update-read-and-marked): Use dolist.
24264         (nnvirtual-convert-headers): Simplify.
24265
24266 2004-10-01  Kevin Greiner  <kgreiner@compsol.cc>
24267
24268         * gnus-agent.el (gnus-agent-synchronize-group-flags):
24269         Add support for sync'ing tick marks.
24270
24271 2004-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
24272
24273         * gnus-sum.el (gnus-summary-toggle-header): Make it work even if
24274         there's no visible header.
24275
24276 2004-10-01  Kevin Greiner  <kgreiner@compsol.cc>
24277
24278         * gnus-agent.el (gnus-agent-synchronize-group-flags):
24279         When necessary, pass full group name to gnus-request-set-marks.
24280
24281 2004-10-01  Simon Josefsson  <jas@extundo.com>
24282
24283         * mailcap.el (mailcap-mime-data): Add pdf.  Remove non-free
24284         acroread.
24285
24286 2004-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24287
24288         * spam-report.el (spam-report-gmane): Fix interactive.
24289
24290         * gnus-art.el (gnus-treat-body-boundary): Only do stuff under X.
24291
24292         * gnus-agent.el (gnus-agent-synchronize-flags-server): Be silent
24293         when writing file.
24294         (gnus-agent-synchronize-flags): Don't default to being
24295         interactive.
24296
24297 2004-09-30  Simon Josefsson  <jas@extundo.com>
24298
24299         * message.el (message-generate-hashcash): Add.
24300         (message-send-mail): Use it, call mail-add-payment.
24301
24302 2004-09-29  Teodor Zlatanov  <tzz@lifelogs.com>
24303
24304         * spam.el (spam-verify-bogofilter): Use -V, not -sV option.
24305
24306 2004-09-28  Kevin Greiner  <kgreiner@compsol.cc>
24307
24308         * gnus-agent.el (gnus-agent-synchronize-group-flags): Replace
24309         gnus-requst-update-info with explicit code to sync the in-memory
24310         info read flags with the marks being sync'd to the backend.
24311
24312         * gnus-util.el (gnus-pp): Add optional stream to match pp API.
24313
24314 2004-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
24315
24316         * spam.el (spam-verify-bogofilter): Add new function.
24317         (spam-check-bogofilter)
24318         (spam-bogofilter-register-with-bogofilter): Use it.
24319         (spam-verify-bogofilter): Add small fixes.
24320
24321 2004-09-28  Simon Josefsson  <jas@extundo.com>
24322
24323         * hashcash.el (hashcash-generate-payment): Revert.
24324
24325 2004-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
24326
24327         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
24328         Use gnus-extract-references instead of gnus-split-references.
24329
24330         * gnus-util.el (gnus-extract-references): Add new function, analogous
24331         to gnus-split-references but extracts only the message-ID without
24332         anything extra.
24333
24334         * hashcash.el (hashcash-generate-payment)
24335         (hashcash-check-payment): Do the right thing if hashcash-path is
24336         nil (because the hashcash program could not be found).
24337
24338         * spam.el (spam-use-hashcash): Remove comment.
24339
24340 2004-09-27  Jesper Harder  <harder@ifa.au.dk>
24341
24342         * gnus-cache.el (gnus-cache-possibly-remove-articles-1)
24343         (gnus-cache-enter-article, gnus-cache-remove-article)
24344         (gnus-cache-braid-heads, gnus-cache-generate-active): Use dolist.
24345
24346         * gnus-async.el (gnus-async-prefetch-remove-group): do.
24347
24348         * gnus-art.el (article-hide-boring-headers)
24349         (article-translate-strings, article-display-face)
24350         (gnus-article-mime-match-handle-first)
24351         (gnus-article-highlight-headers)
24352         (gnus-article-add-buttons-to-head): do.
24353
24354 2004-09-27  Simon Josefsson  <jas@extundo.com>
24355
24356         * hashcash.el: New version, from
24357         http://users.actrix.co.nz/mycroft/hashcash.el.  Previously in
24358         ../contrib/.
24359
24360 2004-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
24361
24362         * mm-decode.el (mm-copy-to-buffer): Don't use set-buffer-multibyte.
24363
24364 2004-09-26  Jesper Harder  <harder@ifa.au.dk>
24365
24366         * gnus-dup.el (gnus-dup-open): Use mapc.
24367         (gnus-dup-enter-articles, gnus-dup-suppress-articles): Use dolist.
24368
24369         (gnus-dup-enter-articles): Remove excess ID's from gnus-dup-hashtb.
24370         Reported by Stefan Wiens <s.wi@gmx.net>.
24371
24372         * gnus.el (gnus-shutdown): Use dolist.
24373
24374         * gnus-undo.el (gnus-undo): Use mapc.
24375
24376         * nnrss.el (nnrss-generate-active): do.
24377
24378         * message.el (message-cite-original-without-signature)
24379         (message-cite-original): Use mapc.
24380         (message-do-actions, message-make-forward-subject): Use dolist.
24381
24382 2004-09-25  Kevin Greiner  <kgreiner@compsol.cc>
24383
24384         * gnus-agent.el (gnus-agent-check-overview-buffer): Fix range of
24385         deletion to remove entire duplicate line.  Fixes merged article
24386         number bug.
24387
24388 2004-09-25  Kevin Greiner  <kgreiner@compsol.cc>
24389
24390         * gnus-agent.el (gnus-agent-possibly-synchronize-flags): Ignore
24391         servers that are offline.  Avoids having gnus-agent-toggle-plugged
24392         first ask if you want to open a server and then, even when you
24393         responded with no, asking if you want to synchronize the server's
24394         flags.
24395         (gnus-agent-synchronize-flags-server): Rewrote read loop to handle
24396         multi-line expressions.
24397         (gnus-agent-synchronize-group-flags): New internal function.
24398         Updates marks in memory (in the info structure) AND in the
24399         backend.
24400
24401         * gnus-util.el (gnus-remassoc): Fix typo in documentation.
24402
24403         * nnagent.el (nnagent-request-set-mark):
24404         Use gnus-agent-synchronize-group-flags, not backend's request-set-mark
24405         method, to ensure that synchronization updates marks in the
24406         backend and in the info (in memory) structure.
24407
24408 2004-09-24  Katsumi Yamaoka  <yamaoka@jpl.org>
24409
24410         * gnus-uu.el (gnus-uu-digest-mail-forward): Obey the process/prefix
24411         convention fully; don't miss the root article of a thread; make
24412         the X-Draft-From header with correct article numbers.
24413
24414 2004-09-23  Kevin Greiner  <kgreiner@compsol.cc>
24415
24416         * gnus-agent.el (gnus-agent-synchronize-flags-server): Do nothing
24417         unless plugged.  Disable the agent so that an open failure causes
24418         an error.
24419
24420         * gnus-int.el (gnus-request-set-mark, gnus-request-update-mark):
24421         Revert 2004-09-21 change.  The backend must be opened while
24422         synchronizing flags even when the backend stores the flags
24423         locally.
24424
24425 2004-09-23  Reiner Steib  <Reiner.Steib@gmx.de>
24426
24427         * gnus-msg.el (gnus-configure-posting-styles): Narrow to headers
24428         in `header' match.  Reported by Svend Tollak Munkejord.
24429
24430         * message.el (message-cite-original): Fix use of
24431         `message-cite-articles-with-x-no-archive'.
24432
24433 2004-09-22  Katsumi Yamaoka  <yamaoka@jpl.org>
24434
24435         * gnus-win.el (gnus-buffer-configuration): Add mml-preview.
24436         (gnus-window-to-buffer): Ditto.
24437
24438         * mml.el (mml-preview-buffer): New variable.
24439         (mml-preview): Manage window layout with gnus-buffer-configuration.
24440
24441         * gnus-msg.el (gnus-setup-message): Put article numbers into the
24442         X-Draft-From header even if those articles aren't quoted.
24443
24444 2004-09-21  Kevin Greiner  <kgreiner@compsol.cc>
24445
24446         * gnus-int.el (gnus-servers-that-use-local-marks): New variable.
24447         (gnus-request-set-mark, gnus-request-update-mark): Use new
24448         g-s-t-u-l-m to decide to use backend even when unplugged.
24449
24450 2004-09-21  Katsumi Yamaoka  <yamaoka@jpl.org>
24451
24452         * gnus-msg.el (gnus-inews-make-draft-meta-information): Don't add
24453         a trailing whitespace.  Suggested by Cheng Gao <chenggao@gmail.com>.
24454
24455 2004-09-20  Simon Josefsson  <jas@extundo.com>
24456
24457         * mm-util.el (mm-charset-synonym-alist): Map "unicode" to
24458         "utf-16-le".
24459
24460 2004-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
24461
24462         * mm-decode.el (mm-copy-to-buffer): Preserve the data's unibyteness.
24463
24464 2004-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
24465
24466         * uudecode.el (uudecode-use-external): Add :version.
24467
24468         * smime.el (smime-CA-file, smime-encrypt-cipher)
24469         (smime-dns-server): Add :version.
24470
24471         * smiley.el (gnus-smiley-file-types): Add :version.
24472
24473         * sha1.el (sha1-use-external): Add :version.
24474
24475         * pgg-def.el (pgg-query-keyserver): Add :version.
24476
24477         * nnmail.el (nnmail-fancy-expiry-targets)
24478         (nnmail-mail-splitting-charset, nnmail-mail-splitting-decodes):
24479         Add :version.
24480
24481         * nnimap.el (nnimap-split-download-body, nnimap-dont-close)
24482         (nnimap-retrieve-groups-asynchronous): Add :version.
24483         (nnimap-close-asynchronous): Add :version.  Fix typo in doc string.
24484
24485         * mml.el (mml-content-disposition-parameters)
24486         (mml-insert-mime-headers-always): Add :version.
24487
24488         * mm-util.el (mm-coding-system-priorities): Add :version.
24489
24490         * mm-decode.el (mm-inline-text-html-with-images)
24491         (mm-keep-viewer-alive-types, mm-external-terminal-program)
24492         (mm-verify-option): Add :version.
24493         (mm-text-html-renderer): Change :version.
24494
24495         * message.el (message-fcc-externalize-attachments)
24496         (message-required-headers, message-draft-headers)
24497         (message-subject-trailing-was-query)
24498         (message-subject-trailing-was-ask-regexp)
24499         (message-subject-trailing-was-regexp, message-mark-insert-begin)
24500         (message-mark-insert-end, message-archive-header)
24501         (message-archive-note, message-cross-post-default)
24502         (message-cross-post-note, message-followup-to-note)
24503         (message-cross-post-note-function, message-use-mail-followup-to)
24504         (message-subscribed-address-functions)
24505         (message-subscribed-address-file, message-subscribed-addresses)
24506         (message-subscribed-regexps, message-allow-no-recipients)
24507         (message-yank-cited-prefix, message-signature-insert-empty-line)
24508         (message-hidden-headers, message-hierarchical-addresses)
24509         (message-mail-user-agent, message-use-idna)
24510         (message-valid-fqdn-regexp)
24511         (message-strip-special-text-properties, message-header-synonyms)
24512         (message-beginning-of-line, message-tab-body-function): Add :version.
24513         (message-insert-canlock, message-wide-reply-confirm-recipients):
24514         Change :version.
24515
24516         * mail-source.el (mail-source-ignore-errors): Add :group, :type
24517         and :version.
24518         (mail-source-delete-old-incoming-confirm)
24519         (mail-source-movemail-program): Add :version.
24520
24521         * gnus.el (gnus-parameters, gnus-user-agent): Add :version.
24522         (gnus-agent-cache, gnus-agent): Change :version.
24523
24524         * gnus-util.el (gnus-use-byte-compile): Change :version.
24525
24526         * gnus-sum.el (gnus-summary-make-false-root-always)
24527         (gnus-summary-default-high-score)
24528         (gnus-summary-default-low-score, gnus-auto-goto-ignores)
24529         (gnus-forwarded-mark, gnus-unseen-mark, gnus-no-mark)
24530         (gnus-read-all-available-headers, gnus-article-emulate-mime)
24531         (gnus-sum-thread-tree-root, gnus-sum-thread-tree-false-root)
24532         (gnus-sum-thread-tree-single-indent)
24533         (gnus-sum-thread-tree-vertical, gnus-sum-thread-tree-indent)
24534         (gnus-sum-thread-tree-leaf-with-other)
24535         (gnus-sum-thread-tree-single-leaf): Add :version.
24536         (gnus-summary-display-arrow, gnus-summary-muttprint-program)
24537         (gnus-article-loose-mime): Change :version.
24538
24539         * gnus-start.el (gnus-backup-startup-file)
24540         (gnus-save-startup-file-via-temp-buffer): Add :version.
24541
24542         * gnus-srvr.el (gnus-server-browse-in-group-buffer)
24543         (gnus-server-offline-face): Add :version.
24544
24545         * gnus-score.el (gnus-adaptive-word-length-limit): Add :version.
24546
24547         * gnus-msg.el (gnus-gcc-externalize-attachments)
24548         (gnus-debug-files, gnus-debug-exclude-variables)
24549         (gnus-discouraged-post-methods): Change :version.
24550         (gnus-confirm-mail-reply-to-news)
24551         (gnus-confirm-treat-mail-like-news): Add :version.
24552
24553         * gnus-int.el (gnus-server-unopen-status): Add :version.
24554
24555         * gnus-group.el (gnus-group-jump-to-group-prompt)
24556         (gnus-large-ephemeral-newsgroup)
24557         (gnus-fetch-old-ephemeral-headers): Add :version.
24558
24559         * gnus-fun.el (gnus-x-face-directory)
24560         (gnus-convert-pbm-to-x-face-command)
24561         (gnus-convert-image-to-x-face-command)
24562         (gnus-convert-image-to-face-command): Add :version.
24563
24564         * gnus-delay.el (gnus-delay-default-hour): Add :version.
24565
24566         * gnus-cite.el (gnus-cite-blank-line-after-header)
24567         (gnus-article-boring-faces): Add :version.
24568
24569         * gnus-art.el (gnus-buttonized-mime-types)
24570         (gnus-inhibit-mime-unbuttonizing)
24571         (gnus-treat-display-face)
24572         (gnus-treat-body-boundary): Change :version.
24573         (gnus-body-boundary-delimiter, gnus-picon-databases)
24574         (gnus-treat-strip-cr, gnus-treat-leading-whitespace)
24575         (gnus-treat-date-english, gnus-treat-fold-headers)
24576         (gnus-article-skip-boring, gnus-treat-fold-newsgroups)
24577         (gnus-treat-mail-picon, gnus-treat-wash-html)
24578         (gnus-article-encrypt-protocol)
24579         (gnus-use-idna, gnus-article-over-scroll)
24580         (gnus-mime-display-multipart-alternative-as-mixed)
24581         (gnus-mime-display-multipart-related-as-mixed)
24582         (gnus-button-valid-fqdn-regexp, gnus-button-man-handler)
24583         (gnus-ctan-url, gnus-button-ctan-handler)
24584         (gnus-button-handle-ctan-bogus-regexp)
24585         (gnus-button-ctan-directory-regexp)
24586         (gnus-button-mid-or-mail-regexp, gnus-button-prefer-mid-or-mail)
24587         (gnus-button-mid-or-mail-heuristic-alist, gnus-button-tex-level)
24588         (gnus-button-man-level, gnus-button-emacs-level)
24589         (gnus-button-message-level, gnus-button-browse-level): Add :version.
24590
24591         * gnus-agent.el (gnus-agent-fetched-hook): Add :version.
24592         (gnus-agent-go-online): Change :version.
24593         (gnus-agent-expire-unagentized-dirs)
24594         (gnus-agent-auto-agentize-methods): Add :version.
24595
24596         * flow-fill.el (fill-flowed-display-column)
24597         (fill-flowed-encode-column): Add :version.
24598
24599         * deuglify.el (gnus-outlook-deuglify-unwrap-min)
24600         (gnus-outlook-deuglify-unwrap-max)
24601         (gnus-outlook-deuglify-cite-marks)
24602         (gnus-outlook-deuglify-unwrap-stop-chars)
24603         (gnus-outlook-deuglify-no-wrap-chars)
24604         (gnus-outlook-deuglify-attrib-cut-regexp)
24605         (gnus-outlook-deuglify-attrib-verb-regexp)
24606         (gnus-outlook-deuglify-attrib-end-regexp)
24607         (gnus-outlook-display-hook): Add :version.
24608
24609         * binhex.el (binhex-use-external): Add :version.
24610
24611 2004-09-16  Reiner Steib  <Reiner.Steib@gmx.de>
24612
24613         * gnus-sum.el (gnus-fetch-old-headers): Add custom choices `t'
24614         and `invisible'.
24615
24616 2004-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
24617
24618         * gnus-registry.el (gnus-registry-trim): Watch out for negatives
24619         in gnus-registry-trim.
24620
24621 2004-09-13  Simon Josefsson  <jas@extundo.com>
24622
24623         * dns-mode.el: Add XEmacs auto-mode-alist autoload cookie.
24624
24625         * nnimap.el (nnimap-demule): Revert 2004-08-30 change.
24626
24627         * dns-mode.el (dns-mode): Fix menu for XEmacs, reported by Steve
24628         Youngs <steve@youngs.au.com> and suggested by Katsumi Yamaoka
24629         <yamaoka@jpl.org>.
24630         (dns-mode-font-lock-keywords): Fix faces, reported by Steve Youngs
24631         <steve@youngs.au.com> and suggested by Katsumi Yamaoka
24632         <yamaoka@jpl.org>.
24633
24634         * sieve.el (sieve-manage-mode): Ditto.
24635
24636 2004-09-13  Reiner Steib  <Reiner.Steib@gmx.de>
24637
24638         * gnus-sum.el (gnus-summary-copy-article): Fix doc string.
24639
24640 2004-09-11  Simon Josefsson  <jas@extundo.com>
24641
24642         * dns-mode.el: Add.
24643
24644         * mm-view.el (mm-display-dns-inline): Add.
24645
24646         * mm-decode.el (mm-inline-media-tests): Add text/dns.
24647         (mm-automatic-display): Ditto.
24648
24649         * mailcap.el (mailcap-mime-data): Add text/dns.
24650         (mailcap-mime-extensions): Map .soa to text/dns.
24651
24652 2004-09-10  Miles Bader  <miles@gnu.ai.mit.edu>
24653
24654         * gnus-art.el (article-decode-mime-words, article-babel)
24655         (gnus-article-highlight-signature, gnus-article-add-buttons)
24656         (gnus-signature-toggle): Remove unnecessary bindings of
24657         `inhibit-read-only' inherited from v5.10 merge.
24658
24659 2004-09-08  Reiner Steib  <Reiner.Steib@gmx.de>
24660
24661         * nntp.el (nntp): New customization group.
24662         (nntp-authinfo-file): Add customization group.
24663
24664         * mml2015.el (mml2015-unabbrev-trust-alist): Add customization group.
24665
24666         * mml-sec.el (mml-signencrypt-style-alist): Ditto.
24667
24668         * gnus.el (to-address, to-list, subscribed)
24669         (large-newsgroup-initial): Ditto.
24670
24671         * flow-fill.el (fill-flowed-display-column)
24672         (fill-flowed-encode-column): Ditto.
24673
24674 2004-09-06  Stefan Monnier  <monnier@iro.umontreal.ca>
24675
24676         * message.el (message-tokenize-header, message-send-mail-with-qmail):
24677         Use point-min rather than 1.
24678         (message-send-mail): Use buffer-size rather than point-max.
24679
24680         * gnus-sum.el (gnus-summary-search-article-forward):
24681         Signal a specific `search-failed' rather than a generic `error'.
24682
24683         * gnus-salt.el (gnus-pick-mouse-pick-region): Switch 1 => point-min.
24684         (gnus-generate-vertical-tree): Usue `bobp' rather than compare to 1.
24685         (gnus-highlight-selected-tree): Use point-min rather than 1 and 2.
24686
24687 2004-09-10  Simon Josefsson  <jas@extundo.com>
24688
24689         * nndb.el (require): Remove tcp and duplicate cl.
24690
24691 2004-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
24692
24693         * gnus-agent.el (directory-files-and-attributes): Move forward.
24694
24695 2004-09-09  Kevin Greiner  <kgreiner@compsol.cc>
24696
24697         * gnus-agent.el (directory-files-and-attributes):
24698         Optionally defined to support XEmacs.
24699
24700 2004-09-09  Kevin Greiner  <kgreiner@compsol.cc>
24701
24702         * gnus-agent.el (gnus-agent-cat-groups): Rewrote avoiding defsetf
24703         to avoid run-time CL dependencies.
24704         (gnus-agent-unfetch-articles): New function.
24705         (gnus-agent-fetch-headers): Use gnus-agent-braid-nov to validate
24706         article numbers even when local .overview file is missing.
24707         (gnus-agent-read-article-number): New function.  Only accepts
24708         27-bit article numbers.
24709         (gnus-agent-copy-nov-line, gnus-agent-uncached-articles):
24710         Use gnus-agent-read-article-number.
24711         (gnus-agent-braid-nov): Rewrote to validate article numbers coming
24712         from backend while recognizing that article numbers in .overview
24713         must be valid.
24714         (gnus-agent-update-files-total-fetched-for):
24715         Use directory-files-and-attributes to improve performance.
24716         * gnus-int.el (gnus-request-move-article):
24717         Use gnus-agent-unfetch-articles in place of gnus-agent-expire to
24718         improve performance.
24719
24720         * gnus-start.el (gnus-convert-old-newsrc): Change message text as
24721         some users confused by references to .newsrc when they only have a
24722         .newsrc.eld file.
24723         (gnus-convert-mark-converter-prompt)
24724         (gnus-convert-converter-needs-prompt): Fix use of property list.
24725         * legacy-gnus-agent.el (gnus-agent-convert-to-compressed-agentview-prompt):
24726         New function.  Used internally to only display 'gnus converting
24727         files' message when actually necessary.
24728
24729         * gnus-sum.el (): Remove (require 'gnus-agent) as required
24730         methods now autoloaded.
24731
24732 2004-09-03  Katsumi Yamaoka  <yamaoka@jpl.org>
24733
24734         * gnus-sum.el (gnus-summary-insert-subject): Remove list
24735         identifiers.
24736
24737 2004-09-02  Reiner Steib  <Reiner.Steib@gmx.de>
24738
24739         * gnus-picon.el: Fix indentation and closing parenthesis.
24740
24741 2004-09-01  Simon Josefsson  <jas@extundo.com>
24742
24743         * message.el (message-canlock-generate): Require sha1, not
24744         sha1-el.  (Can we get rid of this require altogether?  It is ugly
24745         to require within a function.  Sadly, if sha1.el isn't loaded, the
24746         let binding in m-c-g will hide the defcustom definition, which is
24747         bad.)
24748
24749         * canlock.el: Require sha1, not sha1-el.
24750
24751         * message.el: Don't autoload sha1 (there is a autoload cookie in
24752         sha1.el).
24753
24754         * sha1-el.el: Rename to sha1.el.
24755
24756 2004-08-30  Juanma Barranquero  <lektu@terra.es>
24757
24758         * ietf-drums.el (ietf-drums-remove-whitespace): Fix character constant.
24759
24760 2004-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
24761
24762         * nnimap.el (nnimap-demule): Avoid string-as-multibyte.
24763
24764 2004-08-30  Kim F. Storm  <storm@cua.dk>
24765
24766         * nntp.el (nntp-authinfo-file): Add :group 'nntp.
24767
24768         * nnimap.el (nnimap-authinfo-file, nnimap-prune-cache):
24769         Add :group 'nnimap.
24770
24771 2004-08-30  Andreas Schwab  <schwab@suse.de>
24772
24773         * rfc2231.el (rfc2231-parse-string): Restore whitespace syntax for
24774         ?* and ?\;.
24775
24776         * ietf-drums.el (ietf-drums-syntax-table): Set syntax of ?* ?\;
24777         and ?\' to symbol instead of whitespace.
24778
24779 2004-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
24780
24781         * gnus-agent.el (gnus-agent-restore-gcc): Use ^ and regexp-quote.
24782
24783         * gnus-sum.el (gnus-summary-morse-message): Use search-forward
24784         instead of re-search-forward.
24785
24786         * gnus-uu.el (gnus-uu-save-article): Ditto.
24787         (gnus-uu-post-encode-uuencode): Ditto.
24788
24789         * html2text.el (html2text-clean-list-items): Ditto.
24790         (html2text-clean-dtdd): Ditto.
24791         (html2text-format-tags): Ditto.
24792
24793         * message.el (message-send-mail-with-sendmail): Fix regexp.
24794         (message-fill-field-general): Use search-forward instead of
24795         re-search-forward.
24796         (unbold-region): Ditto.
24797
24798         * nnrss.el (nnrss-request-article): Ditto.
24799
24800         * nnslashdot.el (nnslashdot-request-article): Ditto.
24801
24802         * nnweb.el (nnweb-gmane-wash-article): Ditto.
24803
24804         * gnus-sum.el (gnus-summary-make-menu-bar): Avoid the
24805         "Unrecognized menu descriptor" error in XEmacs.
24806
24807 2004-08-26  Stefan Wiens  <s.wi@gmx.net>  (tiny change)
24808
24809         * gnus-sum.el (gnus-read-header): Don't remove a header for the
24810         parent article of a sparse article in the thread hashtb.
24811
24812 2004-08-26  David Hedbor  <dhedbor@real.com>  (tiny change)
24813
24814         * nnmail.el (nnmail-split-lowercase-expanded): New user option.
24815         (nnmail-expand-newtext): Lowercase expanded entries if
24816         nnmail-split-lowercase-expanded is non-nil.
24817
24818 2004-08-26  Katsumi Yamaoka  <yamaoka@jpl.org>
24819
24820         * nndoc.el (nndoc-type-alist): Fix regexp in the rfc822-forward entry.
24821
24822         * gnus-group.el (gnus-group-line-format-alist): Convert the value
24823         of gnus-tmp-news-method into string under XEmacs.  It will be
24824         passed to gnus-correct-length which takes only a string argument.
24825
24826 2004-08-24  Katsumi Yamaoka  <yamaoka@jpl.org>
24827
24828         * gnus-util.el (gnus-bind-print-variables): New macro.
24829         (gnus-prin1): Use it.
24830         (gnus-prin1-to-string): Use it.
24831         (gnus-pp): New function.
24832         (gnus-pp-to-string): New function.
24833
24834         * gnus-cus.el (gnus-agent-cat-prepare-category-field):
24835         Replace pp-to-string with gnus-pp-to-string.
24836         * gnus-eform.el (gnus-edit-form): Replace pp with gnus-pp.
24837         * gnus-group.el (gnus-group-make-kiboze-group): Ditto.
24838         * gnus-msg.el (gnus-debug): Ditto.
24839         * gnus-score.el (gnus-score-save): Ditto.
24840         * gnus-spec.el (gnus-update-format): Replace pp-to-string with
24841         gnus-pp-to-string.
24842         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days): Replace pp
24843         with gnus-pp.
24844         * score-mode.el (gnus-score-pretty-print): Ditto.
24845         * webmail.el (webmail-debug): Ditto.
24846
24847 2004-08-23  Katsumi Yamaoka  <yamaoka@jpl.org>
24848
24849         * gnus-art.el (article-display-face, article-display-x-face):
24850         Use buffer-read-only.
24851
24852 2004-08-22  Katsumi Yamaoka  <yamaoka@jpl.org>
24853
24854         * gnus-art.el (article-hide-list-identifiers):
24855         Bind inhibit-read-only as t.
24856
24857 2004-08-22  Reiner Steib  <Reiner.Steib@gmx.de>
24858
24859         * gnus-mlspl.el (gnus-group-split-update): Fix docstring.
24860
24861 2004-08-22  Stefan Monnier  <monnier@iro.umontreal.ca>
24862
24863         * gnus-art.el: Use inhibit-read-only instead of buffer-read-only.
24864         (gnus-narrow-to-page): Don't assume point-min == 1.
24865         (gnus-article-edit-mode): Derive from message-mode.
24866
24867         * gnus-score.el (gnus-score-find-bnews): Simplify and don't assume
24868         point-min == 1.
24869
24870         * imap.el (imap-parse-address-list, imap-parse-body-ext):
24871         Disable incorrect use of `assert'.
24872
24873         * message.el (message-mode): Set comment-start-skip.
24874
24875
24876 2004-08-22  Sam Steingold  <sds@gnu.org>
24877
24878         * pop3.el (pop3-leave-mail-on-server): New user variable.
24879         (pop3-movemail): Delete mail only when it is nil.
24880
24881 2004-08-21  Reiner Steib  <Reiner.Steib@gmx.de>
24882
24883         * nntp.el (nntp-marks-is-evil): Fix typo in docstring.
24884
24885         * mml.el (mml-preview): Use `pop-to-buffer'.
24886
24887         * message.el (message-goto-mail-followup-to): Insert after "To".
24888         (message-carefully-insert-headers): Add comment.
24889
24890         * gnus.el: Remove unused variable `gnus-article-check-size'.
24891
24892         * gnus-sum.el (gnus-summary-make-menu-bar): Add help texts.
24893
24894         * gnus-art.el (gnus-button-alist):
24895         Improve `gnus-button-handle-library' entry.
24896
24897 2004-08-19  Sebastian Freundt  <hroptatyr@gna.org>  (tiny change)
24898
24899         * nnmaildir.el (nnmaildir--emlink-p, nnmaildir--enoent-p):
24900         Use downcase, since XEmacs capitalizes error messages differently.
24901
24902 2004-08-18  Jesper Harder  <harder@ifa.au.dk>
24903
24904         * nntp.el: Add (require 'gnus) due to reference to
24905         `gnus-directory'.  Reported by Matt Swift <swift@alum.mit.edu>.
24906
24907 2004-08-18  Florian Weimer  <fw@deneb.enyo.de>
24908
24909         * gnus-sum.el (gnus-summary-force-verify-and-decrypt):
24910         Bind `mm-fill-flowed'.
24911
24912         * mm-decode.el (mm-dissect-singlepart): Check it.
24913
24914 2004-08-17  Teodor Zlatanov  <tzz@lifelogs.com>
24915
24916         * nnimap.el (nnimap-open-connection): Add 'imaps' synonym to
24917         'imap' for netrc parsing.
24918
24919 2004-08-16  Reiner Steib  <Reiner.Steib@gmx.de>
24920
24921         * mailcap.el (mailcap-mime-data): Mark as risky.
24922
24923 2004-08-15  Katsumi Yamaoka  <yamaoka@jpl.org>
24924
24925         * rfc2047.el (rfc2047-encode-region): Assume the close parenthesis
24926         may be included in the encoded word.
24927         (rfc2047-encode): Don't append a space if the encoded word
24928         includes close parenthesis.
24929
24930 2004-08-12  Katsumi Yamaoka  <yamaoka@jpl.org>
24931
24932         * rfc2047.el (rfc2047-encode-1, rfc2047-encode): Improve encoding
24933         of text within parentheses.
24934
24935 2004-08-06  Teodor Zlatanov  <tzz@lifelogs.com>
24936
24937         * gnus-encrypt.el (gnus-encrypt-insert-file-contents)
24938         (gnus-encrypt-write-file-contents): Make the password key the file
24939         name PLUS the cipher, not just the cipher.  Also remove failed
24940         passwords from the cache.
24941
24942 2004-08-06  Simon Josefsson  <jas@extundo.com>
24943
24944         * gnus-sum.el (gnus-article-loose-mime): Change default to t.
24945         Doc fix.
24946
24947 2004-08-05  Katsumi Yamaoka  <yamaoka@jpl.org>
24948
24949         * rfc2047.el (rfc2047-fold-region): Use trailing whitespace as
24950         LWSP.
24951
24952 2004-08-04  Teodor Zlatanov  <tzz@lifelogs.com>
24953
24954         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
24955         Try to append in-reply-to: data to the references: header.
24956
24957         * netrc.el: Remove old encryption support, autoload gnus-encrypt.el.
24958         (netrc-parse): Use gnus-encrypt.el functions.
24959
24960         * gnus-encrypt.el: Add new file for encryption support; currently
24961         does only a few GPG ciphers and an internal XOR cipher.
24962
24963         * password.el: Add comments on using password-read-and-add.
24964         (password-read-and-add): Add function to read and add the
24965         password to the cache at once.
24966
24967 2004-07-28  Simon Josefsson  <jas@extundo.com>
24968
24969         * pgg-pgp5.el (pgg-pgp5-encrypt-region): Accept sign
24970         parameter (but don't use it, for now).
24971
24972         * imap.el (imap-ssl-open): Use imap-process-connection-type,
24973         instead of hard coding to nil.
24974
24975 2004-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
24976
24977         * mm-view.el (mm-inline-image-emacs): Open lines under an image
24978         as mm-inline-image-xemacs does.
24979
24980 2004-07-26  Simon Josefsson  <jas@extundo.com>
24981
24982         * gnus-group.el (gnus-group-group-map, gnus-group-make-menu-bar):
24983         Revert part of 2004-07-17 change below.
24984
24985 2004-07-25  Katsumi Yamaoka  <yamaoka@jpl.org>
24986
24987         * rfc2047.el (rfc2047-encode-region): Don't infloop.
24988         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
24989
24990 2004-07-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24991
24992         * flow-fill.el (fill-flowed): Remove space stuffing, and only do
24993         quotes that actually start with ">" at the beginning of the
24994         lines.
24995
24996 2004-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
24997
24998         * rfc2047.el (rfc2047-encode-region): Fix last change.
24999         (rfc2047-encode-parameter): Remove useless concat.
25000
25001 2004-07-22  Katsumi Yamaoka  <yamaoka@jpl.org>
25002
25003         * rfc2047.el (rfc2047-encode-region): Check carefully whether to
25004         encode special characters; fix some kind of misconfigured headers;
25005         signal a real error if debug-on-quit or debug-on-error is non-nil.
25006         (rfc2047-encode-max-chars): New variable.
25007         (rfc2047-encode-1): Use it.
25008         (rfc2047-encode-parameter): New function.
25009
25010         * mml.el (mml-insert-parameter): Remove an excessive space.
25011
25012 2004-07-17  Simon Josefsson  <jas@extundo.com>
25013
25014         * gnus-group.el (gnus-group-make-group-simple): Add, suggested by
25015         Kai Grossjohann <kai@emptydomain.de>.
25016         (gnus-group-group-map): Use it, instead of gnus-group-make-group.
25017         (gnus-group-make-menu-bar): Ditto.
25018
25019         * gnus-util.el (gnus-group-server): Add.
25020
25021 2004-07-16  Jesper Harder  <harder@ifa.au.dk>
25022
25023         * message.el (message-clone-locals): Clone sendmail and smtp
25024         variables.
25025
25026 2004-07-12  Katsumi Yamaoka  <yamaoka@jpl.org>
25027
25028         * rfc2047.el (rfc2047-encode-region): Fix last change.
25029
25030 2004-07-12  Katsumi Yamaoka  <yamaoka@jpl.org>
25031
25032         * rfc2047.el (rfc2047-encode-region): Treat backslash-quoted
25033         characters as non-special.
25034
25035 2004-07-09  Simon Josefsson  <jas@extundo.com>
25036
25037         * gnus-agent.el (gnus-agent-synchronize-flags): Revert to ask.
25038         Users will lose all flag changes made while unplugged with
25039         e.g. nntp unless flag synchronization happens, thus `nil' is not a
25040         good default.  See numerous reports on ding mailing list.
25041
25042 2004-07-09  Katsumi Yamaoka  <yamaoka@jpl.org>
25043
25044         * nndoc.el (nndoc-type-alist): Improve regexp for article-begin,
25045         add generate-head-function and generate-article-function to the
25046         rfc822-forward entry.
25047         (nndoc-rfc822-forward-generate-article): New function.
25048         (nndoc-rfc822-forward-generate-head): New function.
25049
25050         * mm-decode.el (mm-dissect-buffer): Simplify cleaning of CTE.
25051
25052 2004-07-06  Dan Christensen  <jdc@uwo.ca>
25053
25054         * gnus-sum.el (gnus-summary-read-group-1): When summary is unthreaded,
25055         respect display group parameter and gnus-summary-expunge-below.
25056         (gnus-articles-to-read): Remove unused reference to display group
25057         parameter.
25058
25059 2004-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
25060
25061         * nnheader.el (nnheader-uniquify-message-id): New experimental
25062         variable.
25063         (nnheader-nov-read-message-id): Use it.
25064
25065         * spam-report.el (spam-report-gmane): Add interactive.
25066
25067 2004-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
25068
25069         * mm-encode.el (mm-content-transfer-encoding-defaults):
25070         Use qp-or-base64 for the application/* types.
25071
25072 2004-07-02  Joakim Verona  <joakim@verona.se>  (tiny change)
25073
25074         * nnrss.el (nnrss-read-group-data): Fix off-by-one error.
25075
25076 2004-06-30  Teodor Zlatanov  <tzz@lifelogs.com>
25077
25078         * gnus-registry.el (gnus-registry-trim): Don't allow a negative
25079         trim value.
25080
25081 2004-01-25  Paul Jarc  <prj@po.cwru.edu>
25082
25083         * nnmaildir.el (nnmaildir--condcase, nnmaildir--enoent-p):
25084         New macro and function.
25085         (nnmaildir--new-number, nnmaildir-request-set-mark): Use them.
25086
25087 2004-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
25088
25089         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): Fix cleaning of
25090         after-load-alist.
25091
25092 2004-06-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
25093
25094         * gnus-group.el (gnus-group-get-new-news-this-group):
25095         Don't update info that isn't there.
25096
25097 2004-06-29  Ilya N. Golubev  <gin@mo.msk.ru>
25098
25099         * mm-util.el (mm-mime-mule-charset-alist): Add the windows-1251
25100         entry.
25101
25102 2004-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
25103
25104         * mm-view.el (mm-inline-render-with-function): Use multibyte
25105         buffer; decode html source by charset.
25106
25107         * mm-encode.el (mm-content-transfer-encoding-defaults): Doc fix.
25108
25109         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): New function run when
25110         Mule-UCS is loaded under XEmacs.
25111         (mm-mime-mule-charset-alist): Avoid duplicated entries.
25112
25113 2004-06-28  Jesper Harder  <harder@ifa.au.dk>
25114
25115         * nnheader.el (nnheader-max-head-length): Increase to 8192.
25116
25117 2004-06-28  Katsumi Yamaoka  <yamaoka@jpl.org>
25118
25119         * mm-util.el (mm-coding-system-p): Return a coding-system.
25120         (mm-mime-mule-charset-alist): Use shift_jis instead of
25121         iso-2022-jp-2 for the katakana-jisx0201 mule charset; add new
25122         entries for the mime charsets iso-2022-jp-3 and shift_jis.
25123         (mm-coding-system-priorities): Use shift_jis and iso-8859-1
25124         instead of japanese-shift-jis and iso-latin-1 respectively in
25125         order to share the default value with both Emacs and XEmacs-mule.
25126         (mm-mule-charset-to-mime-charset):
25127         Make mm-coding-system-priorities effective.
25128         (mm-sort-coding-systems-predicate): Canonicalize coding-systems
25129         while predicating of candidates upon the priorities.
25130
25131 2004-06-27  Jesper Harder  <harder@ifa.au.dk>
25132
25133         * gnus-sum.el (gnus-summary-make-menu-bar):
25134         Add gnus-uu-invert-processable.
25135
25136         * gnus.el: Autoload gnus-uu-invert-processable.
25137
25138 2004-06-24  Katsumi Yamaoka  <yamaoka@jpl.org>
25139
25140         * mm-util.el (mm-with-multibyte-buffer): New macro.
25141
25142         * rfc2047.el (rfc2047-encode-string): Use it.
25143         (rfc2047-encode-region): Move point to the end of the region after
25144         encoding.  Suggested by IRIE Tetsuya <irie@t.email.ne.jp>.
25145
25146 2004-06-23  Katsumi Yamaoka  <yamaoka@jpl.org>
25147
25148         * gnus-cite.el (gnus-cite-parse): Don't ignore case when finding
25149         ">From ".  Thanks to Reiner Steib <Reiner.Steib@gmx.de>.
25150
25151 2004-06-23  Katsumi Yamaoka  <yamaoka@jpl.org>
25152
25153         * gnus-cite.el (gnus-cite-ignore-quoted-from): New user option.
25154         (gnus-cite-parse): Ignore quoted envelope From_.
25155         Suggested by Karl Chen <quarl@nospam.quarl.org>.
25156
25157 2004-06-23  Jesper Harder  <harder@ifa.au.dk>
25158
25159         * message.el (message-idna-to-ascii-rhs-1): Don't choke on
25160         invalid addresses.
25161
25162 2004-06-21  Teodor Zlatanov  <tzz@lifelogs.com>
25163
25164         * spam.el: Change section markers, revise TODO list.
25165         (spam-backends): Make new master list of all installed backends.
25166         (spam-summary-exit-behavior): Add new variable to determine how
25167         messages moves are done at summary exit.
25168         (spam-move-spam-nonspam-groups-only)
25169         (spam-process-ham-in-nonham-groups)
25170         (spam-process-ham-in-spam-groups): Remove variables, the
25171         spam-summary-exit-behavior variable should be used to manage this
25172         behavior.
25173         (spam-old-ham-articles, spam-old-spam-articles): Remove.
25174         (spam-old-articles): Add variable, replacing spam-old-ham-articles
25175         and spam-old-spam-articles.
25176         (spam-use-copy, spam-use-move, spam-use-gmane, spam-use-resend):
25177         Add empty variables, placeholders for the backends they represent.
25178         (spam-set-difference): Move, unchanged.
25179         (spam-list-of-processors): Declare OBSOLETE, not used anymore
25180         unless the user has a processor variable.
25181         (spam-classifications, spam-classification-valid-p)
25182         (spam-backend-properties, spam-backend-property-valid-p)
25183         (spam-backend-function-type-valid-p)
25184         (spam-process-type-valid-p, spam-list-articles): Add helper functions.
25185         (spam-report-articles-gmane, spam-report-articles-resend):
25186         Remove functions, they are not needed.
25187         (spam-install-backend-super, spam-backend-list)
25188         (spam-backend-check, spam-backend-valid-p, spam-backend-info)
25189         (spam-backend-function, spam-backend-ham-registration-function)
25190         (spam-backend-spam-registration-function)
25191         (spam-backend-ham-unregistration-function)
25192         (spam-backend-spam-unregistration-function)
25193         (spam-backend-statistical-p, spam-backend-mover-p)
25194         (spam-install-backend-alias, spam-install-checkonly-backend)
25195         (spam-install-mover-backend, spam-install-nocheck-backend)
25196         (spam-install-backend, spam-install-statistical-backend)
25197         (spam-install-statistical-checkonly-backend): Add backend installation
25198         support.
25199         (spam-summary-prepare-exit): Rewrite to use the new backend code.
25200         (spam-group-processor-p): Use the new backend code and respect the
25201         summary exit behavior.
25202         (spam-mark-spam-as-expired-and-move-routine): Remove.
25203         (spam-summary-prepare): Change to use the new spam-old-articles
25204         variable.
25205         (spam-copy-or-move-routine, spam-copy-spam-routine)
25206         (spam-move-spam-routine, spam-copy-ham-routine)
25207         (spam-move-ham-routine): Add code to copy/move ham or spam.
25208         (spam-fetch-field-fast): Improve doc and code, plus allow the
25209         'number request.
25210         (spam-list-of-checks, spam-list-of-statistical-checks):
25211         Remove variables.
25212         (spam-split, spam-find-spam): Use the new backend code.
25213         (spam-registration-functions): Remove variable.
25214         (spam-unregister-routine): Add convenience wrapper.
25215         (spam-log-undo-registration, spam-register-routine)
25216         (spam-log-processing-to-registry)
25217         (spam-log-unregistration-needed-p): Rename "check" to "backend"
25218         where possible.
25219         (spam-check-gmane-xref, spam-check-regex-headers)
25220         (spam-check-blackholes, spam-check-stat, spam-check-ifile)
25221         (spam-check-BBDB, spam-check-whitelist, spam-check-blacklist)
25222         (spam-check-bogofilter-headers, spam-check-spamoracle)
25223         (spam-check-spamassassin-headers, spam-check-bsfilter-headers)
25224         (spam-check-crm114-headers): Use the spam-split-group that
25225         spam-split prepares, no need to determine it every time.
25226
25227         * nnimap.el (nnimap-retrieve-headers-progress): Add the message number
25228         to the nnheader-parse-naked-head call.
25229
25230         * nnheader.el (nnheader-generate-fake-message-id): Fix indentation.
25231
25232         * gnus-sum.el (gnus-nov-parse-line): Add the message number to
25233         the nnheader-nov-read-message-id call.
25234
25235 2004-06-21  Katsumi Yamaoka  <yamaoka@jpl.org>
25236
25237         * gnus-group.el (gnus-group-get-new-news-this-group): Don't call
25238         gnus-activate-group twice.  Suggested by Markus Peter
25239         <warp@spin.de>.
25240
25241 2004-06-18  Katsumi Yamaoka  <yamaoka@jpl.org>
25242
25243         * gnus-art.el (gnus-article-time-format): Exchange the order of
25244         day and month in the default value; fix customization type.
25245         (article-date-ut): Use add-text-properties.
25246         (article-make-date-line): Use message-make-date instead of
25247         current-time-string.
25248
25249         * message.el (message-fetch-field): Don't use set-text-properties.
25250         (message-make-date): Simplify.
25251
25252         * messagexmas.el (message-xmas-make-date): New function.
25253         (message-xmas-redefine): Defalias message-make-date to it.
25254
25255 2004-06-17  Katsumi Yamaoka  <yamaoka@jpl.org>
25256
25257         * rfc2047.el (rfc2047-syntax-table): Treat `(' and `)' as is.
25258         (rfc2047-encode-region): Treat text within parentheses as special;
25259         show the original text when error has occurred.
25260
25261         * gnus-group.el (gnus-group-get-new-news-this-group): Pass the
25262         already-computed method to gnus-activate-group.
25263
25264         * gnus-start.el (gnus-make-hashtable-from-newsrc-alist): Make the
25265         same select-methods identical Lisp objects.
25266
25267         * gnus-srvr.el (gnus-server-set-info): Don't make a new Lisp
25268         object when modifying the info.
25269
25270 2004-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
25271
25272         * gnus-srvr.el (gnus-server-set-info): Remove the server from
25273         gnus-opened-servers since it has never been opened with the new
25274         configuration yet.
25275
25276 2004-06-15  Katsumi Yamaoka  <yamaoka@jpl.org>
25277
25278         * nnheader.el (nnheader-nov-read-message-id): Pass the optional
25279         arg to nnheader-generate-fake-message-id.
25280
25281 2004-06-14  Teodor Zlatanov  <tzz@lifelogs.com>
25282
25283         * nnheader.el (nnheader-generate-fake-message-id): Accept a
25284         number and build a fake message ID localized to a group and
25285         article number (so it's repeatable from that point on).
25286         (nnheader-fake-message-id-p): Change regex to accomodate new fake
25287         ID format.
25288
25289         * gnus-sum.el (gnus-get-newsgroup-headers):
25290         Call nnheader-generate-fake-message-id with the article number.
25291
25292 2004-06-12  YAGI Tatsuya  <ynyaaa@ybb.ne.jp>  (tiny change)
25293
25294         * gnus-art.el (gnus-article-next-page): Fix the way to find a real
25295         end-of-buffer.
25296
25297 2004-06-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
25298
25299         * message.el (message-ignored-supersedes-headers): Add Approved.
25300
25301 2004-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
25302
25303         * rfc2047.el (rfc2047-encode-message-header): Remove useless
25304         goto-char.
25305         (rfc2047-encode): Fold the line before encoding.
25306
25307 2004-06-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
25308
25309         * rfc2047.el (rfc2047-encode-message-header): Disabled header
25310         folding -- not all headers can be folded, and this should be done
25311         by the message composition mode.  Probably.  I think.
25312
25313 2004-06-10  Katsumi Yamaoka  <yamaoka@jpl.org>
25314
25315         * gnus-util.el (gnus-remove-text-with-property): Make it slightly
25316         fast.
25317
25318         * gnus-ems.el (gnus-remove-image): Don't use
25319         message-text-with-property; remove only the image found first.
25320
25321         * gnus-xmas.el (gnus-xmas-remove-image): Remove only the image
25322         found first.
25323
25324 2004-06-09  Jesper Harder  <harder@ifa.au.dk>
25325
25326         * message.el (message-send-mail-with-sendmail): Use with-current-buffer.
25327
25328 2004-06-09  Katsumi Yamaoka  <yamaoka@jpl.org>
25329
25330         * message.el (message-text-with-property): Make it fast and accept
25331         optional arguments.
25332         (message-strip-forbidden-properties): Use it.
25333         (message-fix-before-sending): Follow the m-t-w-p change.
25334
25335         * gnus-ems.el (gnus-remove-image): Follow the m-t-w-p change.
25336
25337 2004-06-08  Katsumi Yamaoka  <yamaoka@jpl.org>
25338
25339         * gnus-art.el (article-hide-headers): Don't change the buffer
25340         mistakenly when performing mml-preview even if
25341         gnus-single-article-buffer is nil.
25342
25343 2004-06-08  Kai Grossjohann  <kgrossjo@eu.uu.net>
25344
25345         * message.el (message-expand-name-databases): New user option.
25346         (message-expand-name): Use it.
25347
25348 2004-06-07  Teodor Zlatanov  <tzz@lifelogs.com>
25349
25350         * spam.el (spam-report-articles-resend)
25351         (spam-report-resend-register-routine): Allow ham reporting.
25352         (spam-report-resend-register-ham-routine): Add wrapper.
25353         (spam-registration-functions): Add ham resending functions.
25354         (spam-list-of-processors): Add ham resend processor.
25355
25356         * gnus.el (ham-resend-to): Add new group parameter.
25357         (spam-process): Add ham resend option.
25358
25359         * spam-report.el (spam-report-resend): Allow reporting ham.
25360         (spam-report-resend-ham): Add wrapper.
25361
25362 2004-06-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
25363
25364         * message.el (message-cite-articles-with-x-no-archive):
25365         New variable.
25366         (message-cite-original): Use it.
25367
25368 2004-06-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
25369
25370         * message.el (message-cite-original): Respect X-No-Archive.
25371
25372 2004-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
25373
25374         * gnus-art.el (article-hide-headers): Refer to the values for
25375         gnus-ignored-headers and gnus-visible-headers in the summary
25376         buffer since a user may have set them as group parameters.
25377
25378 2004-06-03  Teodor Zlatanov  <tzz@lifelogs.com>
25379
25380         * assistant.el (assistant-node-name): Add convenience function.
25381         (assistant-render-text, assistant-render-node): Add error handling,
25382         plus handle multiple next nodes.
25383         (assistant-find-next-node): Comment out for now.
25384         (assistant-find-next-nodes): Add function, returns list of next
25385         nodes.
25386
25387 2004-06-02  Reiner Steib  <Reiner.Steib@gmx.de>
25388
25389         * mail-source.el (mail-source-directory): Fix doc-string.
25390
25391 2004-05-29  Teodor Zlatanov  <tzz@lifelogs.com>
25392
25393         * assistant.el (assistant-render-text, assistant-eval): Add :set
25394         widget type, which is different because it takes and returns a
25395         list.  Much hilarity ensues.
25396
25397 2004-05-28  Reiner Steib  <Reiner.Steib@gmx.de>
25398
25399         * gnus-art.el (gnus-button-alist): Fix regexp for manual links.
25400
25401         * gnus-group.el (gnus-group-get-new-news-this-group):
25402         Add doc-string.
25403
25404         * gnus-start.el (gnus-activate-group): Add doc-string.
25405
25406 2004-05-28  Katsumi Yamaoka  <yamaoka@jpl.org>
25407
25408         * mm-encode.el (mm-safer-encoding): Consider 7bit is safe.
25409
25410 2004-05-27  Teodor Zlatanov  <tzz@lifelogs.com>
25411
25412         * assistant.el (assistant-render-text): Try to add a :set
25413         widget, more to come.
25414
25415         * spam.el (spam-group-spam-contents-p): Handle empty groupname
25416         strings.
25417         (spam-report-articles-resend)
25418         (spam-register-routine): Do registration iff any articles warrant
25419         it.
25420         (spam-summary-prepare-exit): Change log message for nil group
25421         destinations.
25422
25423 2004-05-27  Daniel Pittman  <daniel@rimspace.net>
25424
25425         * spam.el (spam-report-resend-register-routine):
25426         Allow spam-report-resend-to to be a group parameter or a global value.
25427
25428 2004-05-26  Simon Josefsson  <jas@extundo.com>
25429
25430         * starttls.el: Merge with my GNUTLS based starttls.el.
25431         (starttls-gnutls-program, starttls-use-gnutls)
25432         (starttls-extra-arguments, starttls-process-connection-type)
25433         (starttls-connect, starttls-failure, starttls-success):
25434         New variables.
25435         (starttls-program, starttls-extra-args): Doc fix.
25436         (starttls-negotiate-gnutls, starttls-open-stream-gnutls):
25437         New functions.
25438         (starttls-negotiate, starttls-open-stream):
25439         Check `starttls-use-gnutls' and pass on to corresponding *-gnutls
25440         function if it is set.
25441
25442 2004-05-27  Katsumi Yamaoka  <yamaoka@jpl.org>
25443
25444         * rfc2047.el (rfc2047-encode-region): Encode encoded words in
25445         structured fields.
25446
25447 2004-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
25448
25449         * message.el (message-resend): Bind rfc2047-encode-encoded-words.
25450
25451 2004-05-26  Teodor Zlatanov  <tzz@lifelogs.com>
25452
25453         * spam.el (spam-mark-new-messages-in-spam-group-as-spam):
25454         Add variable.
25455         (spam-mark-junk-as-spam-routine): Use it.  Allow to disable
25456         assigning the spam-mark to new messages.
25457
25458 2004-05-26  Adam Sjøgren  <asjo@koldfront.dk>  (tiny change)
25459
25460         * spam.el (spam-ham-copy-or-move-routine): Don't declare `todo' twice.
25461
25462 2004-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
25463
25464         * dgnushack.el: Autoload customize-set-variable for XEmacs.
25465
25466         * rfc2047.el (rfc2047-encodable-p): Don't move point.
25467         (rfc2047-decode): Treat the ascii coding-system as raw-text by
25468         default.
25469
25470 2004-05-25  Anand Mitra  <mitramc@yahoo.com>  (tiny change)
25471
25472         * gnus-sum.el (gnus-summary-delete-article): Invoke hook with
25473         correct data.
25474
25475 2004-05-24  Teodor Zlatanov  <tzz@lifelogs.com>
25476
25477         * spam.el (spam-list-of-processors): Use nil for nonexistent processors.
25478         (spam-group-processor-p): Fix function.
25479         (spam-group-processor-multiple-p)
25480         (spam-group-spam-processor-report-gmane-p)
25481         (spam-group-spam-processor-report-resend-p)
25482         (spam-group-spam-processor-bogofilter-p)
25483         (spam-group-spam-processor-blacklist-p)
25484         (spam-group-spam-processor-ifile-p)
25485         (spam-group-ham-processor-ifile-p)
25486         (spam-group-spam-processor-spamoracle-p)
25487         (spam-group-spam-processor-crm114-p)
25488         (spam-group-ham-processor-bogofilter-p)
25489         (spam-group-spam-processor-stat-p)
25490         (spam-group-ham-processor-stat-p)
25491         (spam-group-ham-processor-whitelist-p)
25492         (spam-group-ham-processor-BBDB-p)
25493         (spam-group-ham-processor-spamoracle-p)
25494         (spam-group-ham-processor-copy-p): Remove functions with some
25495         prejudice against unneeded code.
25496         (spam-report-articles-resend)
25497         (spam-report-resend-register-routine): Allow the group/topic
25498         spam-resend-to value to override spam-report-resend-to.
25499         (spam-summary-prepare-exit): Invoke spam-group-processor-p
25500         properly now.
25501
25502         * gnus.el (spam-resend-to): Add group/topic parameter.
25503         (spam-process): Move the OBSOLETE processors to the end of the
25504         choices.
25505
25506 2004-05-24  Daniel Pittman  <daniel@rimspace.net>
25507
25508         * spam-report.el (spam-report-resend-to, spam-report-resend):
25509         Start with resend-to set to nil, and then ask the user if necessary.
25510         (spam-report-resend): spam-report-resend takes a list of articles, not
25511         separate article numbers.
25512
25513 2004-05-23  Katsumi Yamaoka  <yamaoka@jpl.org>
25514
25515         * mm-decode.el (mm-text-html-renderer): Make sure w3m exists in
25516         addition to emacs-w3m.
25517
25518 2004-05-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
25519
25520         * assistant.el (assistant-authinfo-data): New function.
25521         (assistant-eval): Eval for entire assistant.
25522
25523         * netrc.el (netrc-services-file): New variable.
25524         (netrc-parse-services): New function.
25525         (netrc-find-service-name): New function.
25526         (netrc-find-service-number): New function.
25527         (netrc-port-equal): New function.
25528         (netrc-machine): Use it.
25529
25530         * nnimap.el (nnimap-open-connection): Use netrc.
25531
25532         * gnus-util.el (gnus-netrc-get): Remove aliases.
25533
25534         * gnus-sum.el (gnus-auto-center-summary): Change default to 2.
25535
25536         * assistant.el (wid-edit): Fix compilation.
25537
25538         * gnus-util.el (gnus-set-file-modes): Just ignore errors.
25539
25540 2004-05-23  Paul Stodghill  <stodghil@cs.cornell.edu>
25541
25542         * gnus-util.el (gnus-set-file-modes): New function.  (small
25543         patch).
25544
25545 2004-05-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
25546
25547         * gnus-topic.el (gnus-topic-jump-to-topic): Goto missing topic.
25548
25549         * assistant.el (assistant-render-node): Fix up rendering and
25550         read-only text.
25551         (assistant-render-node): Reset.
25552         (assistant-make-read-only): Not sticky.
25553
25554 2004-05-20  Danny Siu  <dsiu@adobe.com>
25555
25556         * gnus-sum.el (gnus-summary-recenter): Summary buffer was not auto
25557         centered even when gnus-auto-center-summary is t.
25558
25559 2004-05-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
25560
25561         * dns.el (dns-get-txt-answer): New function.
25562         (dns-read-txt): Ditto.
25563         (query-dns): Use it.
25564
25565 2004-05-21  Katsumi Yamaoka  <yamaoka@jpl.org>
25566
25567         * gnus-start.el (gnus-get-unread-articles): Don't invalidate
25568         active for foreign groups even if the group level is higher than
25569         the specified value.
25570
25571 2004-05-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
25572
25573         * gnus-group.el (gnus-group-jump-to-group): Don't prompt for
25574         non-active groups.
25575
25576         * gnus-art.el (gnus-picon-databases): Add /usr/share/picons.
25577
25578 2004-05-20  Magnus Henoch  <mange@freemail.hu>
25579
25580         * dns.el (dns-read-type): Add support for SVR.  (small patch)
25581
25582 2004-05-20  Adam Sjøgren  <asjo@koldfront.dk>
25583
25584         * spam.el (spam-use-crm114, spam-crm114, spam-crm114-program)
25585         (spam-crm114-header, spam-crm114-spam-switch)
25586         (spam-crm114-spam-strong-switch, spam-crm114-ham-strong-switch)
25587         (spam-crm114-positive-spam-header)
25588         (spam-crm114-database-directory, spam-list-of-processors)
25589         (spam-group-spam-processor-crm114-p)
25590         (spam-group-ham-processor-crm114-p, spam-extra-header-to-number)
25591         (spam-generic-score, spam-list-of-checks)
25592         (spam-list-of-statistical-checks, spam-registration-functions)
25593         (spam-check-crm114-headers, spam-crm114-score)
25594         (spam-check-crm114, spam-crm114-register-with-crm114)
25595         (spam-crm114-register-spam-routine)
25596         (spam-crm114-unregister-spam-routine)
25597         (spam-crm114-register-ham-routine)
25598         (spam-crm114-unregister-ham-routine): Add CRM114 support.
25599
25600 2004-05-20  Teodor Zlatanov  <tzz@lifelogs.com>
25601
25602         * gnus.el: Add spam-use-crm114.
25603
25604         * spam.el (spam-list-of-processors, spam-registration-functions):
25605         Add spam-use-resend.
25606         (spam-group-spam-processor-report-resend-p): Add utility wrapper.
25607         (spam-report-articles-gmane): Add doc fix.
25608         (spam-report-articles-resend, spam-report-resend-register-routine):
25609         Add wrappers around spam-report-resend-to.
25610
25611         * spam-report.el (spam-report-resend-to, spam-report-resend):
25612         Add support for resending spam.
25613         (spam-report-gmane): Fix line length >80.
25614
25615         * gnus.el (spam-process): Add spam-use-resend.
25616
25617 2004-05-20  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
25618
25619         * spam.el (spam-mark-spam-as-expired-and-move-routine): Return the
25620         number of processed spam messages.
25621         (spam-ham-copy-or-move-routine): Return the number of processed
25622         ham messages.
25623         (spam-summary-prepare-exit): Use the above values to decide
25624         whether status messages shouled be displayed.
25625
25626 2004-05-20  Katsumi Yamaoka  <yamaoka@jpl.org>
25627
25628         * rfc2047.el (rfc2047-encode-function-alist): Rename from
25629         `rfc2047-encoding-function-alist' in order to avoid conflicting
25630         with the old version.
25631         (rfc2047-encode-region): Concatenate words containing non-ASCII
25632         characters in structured fields; don't encode space-delimited
25633         ASCII words even in unstructured fields; don't break words at
25634         char-category boundaries.
25635         (rfc2047-encode-1): New function.
25636         (rfc2047-encode): Use it; encode text so that it occupies the
25637         maximum width within 76-column; work correctly on Q encoding for
25638         iso-2022-* charsets.
25639         (rfc2047-fold-region): Use existing whitespace for LWSP; make it
25640         sure not to break a line just after the header name.
25641         (rfc2047-b-encode-region): Remove.
25642         (rfc2047-b-encode-string): New function.
25643         (rfc2047-q-encode-region): Remove.
25644         (rfc2047-q-encode-string): New function.
25645
25646         * mm-util.el (mm-replace-in-string): New function.
25647
25648 2004-05-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
25649
25650         * gnus-msg.el (gnus-inews-make-draft-meta-information):
25651         Really get it right.
25652         (gnus-inews-make-draft): Really.
25653
25654 2004-05-19  Ben Menasha  <bmenasha@benmenasha.net>
25655
25656         * nnmh.el (nnmh-request-list-1): Don't check the link count
25657         before descending.  (small patch)
25658
25659 2004-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
25660
25661         * gnus-msg.el (gnus-inews-make-draft-meta-information): Fix quote
25662         stuff.
25663
25664         * gnus-start.el (gnus-subscribe-hierarchical-interactive):
25665         Match on real group name.
25666
25667         * gnus-art.el (gnus-signature-limit): Doc fix.
25668
25669         * gnus-msg.el (gnus-inews-make-draft): Quote list.
25670
25671         * pgg-pgp.el (pgg-pgp-verify-region): Clean up.
25672
25673 2004-05-19  Michael Schierl  <schierlm-usenet@gmx.de>  (tiny change)
25674
25675         * pgg-pgp.el (pgg-pgp-verify-region): Default when signature
25676         isn't a string.
25677
25678 2004-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
25679
25680         * gnus-draft.el (gnus-draft-send):
25681         Bind rfc2047-encode-encoded-words.
25682
25683         * rfc2047.el (rfc2047-encode-region): Encode =? strings.
25684         (rfc2047-encodable-p): Say that =? needs encoding.
25685         (rfc2047-encode-encoded-words): New variable.
25686
25687         * gnus-group.el (gnus-group-select-group): Doc fix.
25688
25689         * gnus-draft.el (gnus-draft-setup): Mark all replied as replied.
25690
25691         * gnus-group.el (gnus-group-mode): Set show-trailing-whitespace
25692         to nil.
25693
25694         * gnus-cache.el (gnus-cache-possibly-enter-article): Use it.
25695
25696         * nnheader.el (nnheader-get-lines-and-char): New function.
25697
25698 2004-05-19  Reiner Steib  <Reiner.Steib@gmx.de>
25699
25700         * gnus-msg.el (gnus-summary-followup-with-original):
25701         Document yanking of region when active.
25702
25703 2004-05-19  Katsumi Yamaoka  <yamaoka@jpl.org>
25704
25705         * gnus-start.el (gnus-get-unread-articles): Do nothing for foreign
25706         groups if the group level is higher than the specified value.
25707
25708 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
25709
25710         * gnus-group.el (gnus-group-jump-to-group-prompt): Allow an alist.
25711         (gnus-group-jump-to-group): Add prefix argument using
25712         `gnus-group-jump-to-group-prompt'.  Query before jumping to
25713         non-active group.
25714
25715         * compface.el (uncompface): Be verbose when changing
25716         `uncompface-use-external'.
25717
25718         * gnus-art.el (gnus-button-handle-man, gnus-button-alist): Try to
25719         handle manual section.
25720
25721 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
25722
25723         * gnus-art.el (gnus-button-alist): Revert previous change.
25724
25725 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
25726
25727         * message.el (message-idna-to-ascii-rhs-1): Fix typo.
25728
25729 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
25730
25731         * gnus-msg.el (gnus-inews-do-gcc): Don't use read-only-p to see
25732         whether backend can accept message.
25733
25734         * message.el (message-idna-to-ascii-rhs-1): Don't use equalp.
25735
25736 2004-05-18  Kai Grossjohann  <kgrossjo@eu.uu.net>
25737
25738         * nntp.el (nntp-request-set-mark, nntp-request-update-info):
25739         Avoid creating directory when nntp-marks-is-evil is true.
25740         Reported by Reiner Steib.
25741
25742 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
25743
25744         * gnus-picon.el (gnus-picon-insert-glyph):
25745         Add optional `nostring' argument.
25746
25747 2004-05-18  Jesper Harder  <harder@ifa.au.dk>
25748
25749         * gnus-picon.el (gnus-picon-style): New variable.
25750         (gnus-picon-transform-address): Support `gnus-picon-style'.
25751
25752 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
25753
25754         * message.el (message-fill-field): Return point.
25755         (message-generate-headers): Go to end of field.
25756
25757         * gnus-start.el (gnus-get-unread-articles-in-group): Don't do
25758         stuff for non-living groups.
25759
25760 2004-05-18  Jesper Harder  <harder@ifa.au.dk>
25761
25762         * gnus-art.el (gnus-article-followup-with-original)
25763         (gnus-article-reply-with-original): gnus-mark-active-p ->
25764         gnus-region-active-p.
25765
25766 2004-05-17  Teodor Zlatanov  <tzz@lifelogs.com>
25767
25768         * spam.el (spam-summary-prepare-exit): Fix messages, so they show
25769         only when there is spam or ham to be processed.
25770
25771 2004-05-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
25772
25773         * mail-source.el (mail-source-delete-crash-box): Refactor.
25774         (mail-source-fetch): Use it.
25775         (mail-source-fetch-file): Ditto.
25776         (mail-source-fetch-directory): Run postscript in loop.
25777         (mail-source-fetch-pop): Delete.
25778         (mail-source-fetch-maildir): Ditto.
25779         (mail-source-fetch-imap): Ditto.
25780
25781         * imap.el (imap-authenticators): Comment out sasl.
25782
25783         * message.el (message-skip-to-next-address): New function.
25784         (message-fill-header-address): Refactor.
25785         (message-fill-address): Use it.
25786         (message-delete-address): Use it.
25787         (message-fill-header-general): Refactor.
25788         (message-fill-field-address): Rename.
25789         (message-narrow-to-field): Find the start of the header.
25790         (message-header-format-alist): Don't pre-fill.
25791         (message-fill-header): Remove.
25792         (message-insert-header): New function.
25793         (message-shorten-references): Use it.
25794
25795         * rfc2047.el (rfc2047-field-value): Strip props.
25796
25797         * mail-parse.el (mail-header-make-address): New alias.
25798
25799         * ietf-drums.el (ietf-drums-make-address): New function.
25800
25801         * imap.el: Add compiler directives.
25802
25803         * gnus-score.el (gnus-score-edit-done): run-hook->run-hooks.
25804
25805         * gnus-art.el (article-decode-idna-rhs): Don't use
25806         message-idna-inside-rhs-p.
25807
25808 2004-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
25809
25810         * message.el (message-idna-inside-rhs-p): Remove.
25811         (message-idna-to-ascii-rhs-1): Use proper address parsing.
25812
25813         * gnus-art.el (gnus-emphasis-alist): Remove strikethru; too many
25814         false positives.
25815
25816 2004-05-16  Kim-Minh Kaplan  <kmkaplan-AwwS6Bc0PDVoiYX5Tdu9fQ@public.gmane.org>
25817
25818         * imap.el (imap-sasl-make-mechanisms): Use sasl.
25819
25820 2004-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
25821
25822         * nneething.el (nneething-file-name): Don't create spurious
25823         files.
25824
25825         * gnus-msg.el (gnus-inews-do-gcc): Ignore read-only groups.
25826         (gnus-inews-do-gcc): Remove sleep.
25827
25828         * gnus-art.el (gnus-mime-delete-part): Error message when no MIME
25829         part under point.
25830
25831         * gnus-agent.el (gnus-agent-synchronize-flags): Default to nil.
25832         (gnus-agent-regenerate-group): Using nil messages aren't valid.
25833
25834 2004-05-15  Teodor Zlatanov  <tzz@lifelogs.com>
25835
25836         * spam.el (spam-summary-prepare-exit): Fix (length).
25837
25838 2004-05-14  Teodor Zlatanov  <tzz@lifelogs.com>
25839
25840         * spam.el (spam-summary-prepare-exit): Fix to produce "marking spam
25841         as expired without moving it" message when there are spam
25842         messages left.
25843
25844 2004-05-14  Nelson Ferreira  <nelson.ferreira@verizon.net>  (tiny change)
25845
25846         * gnus-dup.el (gnus-dup-unsuppress-article): Don't assume the mail
25847         header is not nil.
25848
25849 2004-05-14  Kai Grossjohann  <kgrossjo@eu.uu.net>
25850
25851         * nntp.el (nntp-request-set-mark, nntp-request-update-info):
25852         Call nntp-possibly-create-directory, not nntp-possibly-change-group.
25853         (nntp-marks-changed-p): New arg SERVER.
25854         (nntp-request-update-info): Adjust caller.
25855
25856 2004-05-14  Kai Grossjohann  <kai@emptydomain.de>
25857
25858         * nntp.el (nntp-save-marks): Pass missing arg.
25859
25860 2004-05-13  Kai Grossjohann  <kai.grossjohann@gmx.net>
25861
25862         * nntp.el: Support marks.
25863         (nntp-marks-is-evil, nntp-marks-file-name, nntp-marks)
25864         (nntp-marks-modtime, nntp-marks-directory): New variables.
25865         (nntp-request-set-mark, nntp-request-update-info)
25866         (nntp-possibly-create-directory, nntp-marks-changed-p)
25867         (nntp-save-marks, nntp-open-marks, nntp-marks-directory):
25868         New functions.
25869
25870 2004-05-12  Jesper Harder  <harder@ifa.au.dk>
25871
25872         * gnus-xmas.el (gnus-xmas-select-lowest-window)
25873         (gnus-xmas-redefine): Rename.
25874
25875         * gnus-score.el (gnus-score-insert-help):
25876         Use gnus-select-lowest-window.
25877
25878         * gnus-ems.el (gnus-select-lowest-window): Copy definition of
25879         appt-select-lowest-window and rename to gnus-select-lowest-window.
25880
25881         * gnus.el: do.
25882
25883 2004-05-12  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
25884
25885         * rfc2047.el (rfc2047-encode): Use uppercase letters to specify
25886         encodings of MIME-encoded words, in order to improve
25887         interoperability with several broken MUAs.
25888
25889 2004-05-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
25890
25891         * mm-view.el (mm-inline-text-html-render-with-w3): Check META
25892         tags, only when charsets are not specified in headers.
25893         (mm-inline-text-html-render-with-w3m): Ditto.
25894
25895         * lpath.el: Remove `w3m-meta-content-type-charset-regexp' and
25896         `w3m-charset-to-coding-system'.  Add `w3m-detect-meta-charset'.
25897
25898 2004-05-06  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
25899
25900         * gnus-art.el (article-strip-banner): Use MIME-encoded from fields
25901         instead of MIME-decoded from fields when checking
25902         `gnus-article-address-banner-alist'.
25903
25904 2004-05-03  Jesper Harder  <harder@ifa.au.dk>
25905
25906         * nnrss.el (nnrss-check-group, nnrss-read-group-data): Hash on
25907         description rather than subject.
25908
25909 2004-05-02  Steve Youngs  <steve@youngs.au.com>
25910
25911         * dgnushack.el: Autoload `mail-fetch-field' for XEmacs.
25912
25913 2004-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
25914
25915         * gnus.el (gnus-version-number): Bump.
25916
25917 2004-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
25918
25919         * gnus.el: No Gnus v0.2 is released.
25920
25921 2004-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
25922
25923         * gnus-agent.el (gnus-agent-read-agentview):
25924         Inline gnus-uncompress-range.
25925
25926 2004-05-01  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
25927
25928         * spam.el (spam-bsfilter-path): Use `executable-find' instead of
25929         `exec-installed-p'.
25930
25931 2004-04-30  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
25932
25933         * gnus.el (spam-process, spam-autodetect-methods):
25934         Add bsfilter and bsfilter-headers.
25935
25936         * spam.el (spam-bsfilter): New customize group.
25937         (spam-use-bsfilter, spam-use-bsfilter-headers, spam-bsfilter-path)
25938         (spam-bsfilter-header, spam-bsfilter-probability-header)
25939         (spam-bsfilter-spam-switch, spam-bsfilter-ham-switch)
25940         (spam-bsfilter-spam-strong-switch, spam-bsfilter-ham-strong-switch)
25941         (spam-bsfilter-database-directory): New options.
25942         (spam-install-hooks, spam-list-of-processors, spam-list-of-checks)
25943         (spam-list-of-statistical-checks, spam-registration-functions):
25944         Add `spam-use-bsfilter' and `spam-use-bsfilter-headers'.
25945         (spam-bsfilter-score): New command.
25946         (spam-check-bsfilter-headers, spam-check-bsfilter)
25947         (spam-bsfilter-register-with-bsfilter)
25948         (spam-bsfilter-register-spam-routine)
25949         (spam-bsfilter-unregister-spam-routine)
25950         (spam-bsfilter-register-ham-routine)
25951         (spam-bsfilter-unregister-ham-routine): New functions.
25952         (spam-generic-score): Support bsfilter; Accept an optional argument
25953         to recalcurate spam score even if scoring header has already been
25954         added.
25955         (spam-bogofilter-score, spam-spamassassin-score): Accept an
25956         optional argument to recalcurate spam score even if scoring header
25957         has already been added.
25958
25959 2004-04-29  Jesper Harder  <harder@ifa.au.dk>
25960
25961         * nnrss.el (nnrss-get-namespace-prefix): Use string= to compare
25962         strings!  Reported by David D. Smith <davidsmith@acm.org>.
25963         (nnrss-check-group, nnrss-read-group-data): Hash on Subject if
25964         link is missing.
25965
25966 2004-04-28  Jesper Harder  <harder@ifa.au.dk>
25967
25968         * html2text.el (html2text-replace-list): Add &amp; and &apos;.
25969         (html2text-get-attr): Rewrite.
25970
25971         * message.el (message-setup-1): Remove redundant put-text-property
25972         on mail-header-separator.
25973
25974 2004-04-27  Teodor Zlatanov  <tzz@lifelogs.com>
25975
25976         * gnus-registry.el (gnus-registry-cache-whitespace)
25977         (gnus-registry-action, gnus-registry-spool-action)
25978         (gnus-registry-split-fancy-with-parent): Change message levels
25979         from 5 to 3 or 7, as needed.
25980
25981         * spam.el (spam-summary-prepare-exit)
25982         (spam-mark-junk-as-spam-routine, spam-fetch-field-fast)
25983         (spam-split, spam-find-spam, spam-log-undo-registration)
25984         (spam-check-blackholes, spam-enter-ham-BBDB): Change message
25985         level from 5 to 6.
25986
25987 2004-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
25988
25989         * gnus-ems.el: Autoload appt-select-lowest-window (revert
25990         2004-03-04 change).
25991
25992 2004-04-25  Jesper Harder  <harder@ifa.au.dk>
25993
25994         * sieve-manage.el (sieve-manage-open):
25995         * nnweb.el (nnweb-insert-html):
25996         * nnvirtual.el (nnvirtual-catchup-group, nnvirtual-partition-sequence)
25997         (nnvirtual-partition-sequence, nnvirtual-create-mapping):
25998         * nnspool.el (nnspool-request-group):
25999         * nnrss.el (nnrss-opml-export, nnrss-find-el, nnrss-order-hrefs):
26000         * nnml.el (nnml-request-update-info):
26001         * nnmh.el (nnmh-request-group, nnmh-request-list-1, nnmh-active-number)
26002         (nnmh-request-create-group, nnmh-update-gnus-unreads):
26003         * nnimap.el (nnimap-request-close, nnimap-acl-edit)
26004         (nnimap-request-set-mark):
26005         * nnfolder.el (nnfolder-request-update-info):
26006         * mm-view.el (mm-pkcs7-signed-magic, mm-pkcs7-enveloped-magic):
26007         * mml.el (mml-destroy-buffers, mml-compute-boundary-1):
26008         * gnus-uu.el (gnus-uu-find-articles-matching):
26009         * gnus-topic.el (gnus-topic-check-topology, gnus-topic-remove-group):
26010         * gnus-sum.el (gnus-summary-fetch-faq, gnus-read-move-group-name):
26011         * gnus-score.el (gnus-score-load-file, gnus-sort-score-files):
26012         * gnus-nocem.el (gnus-nocem-scan-groups):
26013         * gnus-int.el (gnus-start-news-server):
26014         * gnus-group.el (gnus-group-make-kiboze-group)
26015         (gnus-group-browse-foreign-server):
26016         * spam-stat.el (spam-stat-score-buffer): Simplify mapcar usage.
26017         Use mapc when appropriate.
26018
26019 2004-04-22  Dan Christensen  <jdc@uwo.ca>
26020             Adam Sjøgren  <asjo@koldfront.dk>
26021             Wes Hardaker  <wes@hardakers.net>
26022             Michael Shields  <shields@msrl.com>
26023
26024         * spam.el (spam-necessary-extra-headers): Get the extra headers we
26025         may need for spam sorting and scoring.
26026         (spam-user-format-function-S): Add user format function suitable for
26027         general use.
26028         (spam-article-sort-by-spam-status): Add sorting function for summary
26029         sorting.
26030         (spam-extra-header-to-number): Add function to get a score from a
26031         header.
26032         (spam-summary-score): Add function to get a numeric score from the
26033         headers.
26034         (spam-generic-score): Fix function doc, was in wrong place.
26035         (spam-initialize): Take symbols when it's run, and install the
26036         extra headers that spam-necessary-extra-headers thinks we need.
26037
26038 2004-04-21  Teodor Zlatanov  <tzz@lifelogs.com>
26039
26040         * spam.el (spam-summary-prepare-exit): Add logic and message fix.
26041         Reported by bojohan+news@dd.chalmers.se (Johan Bockgård).
26042
26043 2004-04-17  Jesper Harder  <harder@ifa.au.dk>
26044
26045         * gnus-sum.el (gnus-set-global-variables)
26046         (gnus-build-all-threads, gnus-get-newsgroup-headers)
26047         (gnus-article-get-xrefs, gnus-summary-best-group)
26048         (gnus-summary-next-article, gnus-summary-enter-digest-group)
26049         (gnus-summary-set-bookmark, gnus-offer-save-summaries)
26050         (gnus-summary-update-info, gnus-kill-or-deaden-summary):
26051         Use with-current-buffer.
26052
26053 2004-04-16  Teodor Zlatanov  <tzz@lifelogs.com>
26054
26055         * spam.el (spam-summary-prepare-exit): Simplify logic.
26056         (spam-fetch-article-header): Read the article header if it's not
26057         available.
26058         (spam-list-articles): Simplify logic.
26059         (spam-filelist-register-routine): Fix bug with unregister-list.
26060
26061         * gnus-registry.el: Fix comments at beginning.
26062
26063 2004-04-16  Jesper Harder  <harder@ifa.au.dk>
26064
26065         * message.el (message-cater-to-broken-inn): Remove.
26066         (message-shorten-references): Make sure the total folded length of
26067         References is shorter than 998 characters to cater to a bug in INN
26068         2.3.  Also, don't pretend that references aren't folded -- this
26069         hasn't worked for a while.
26070
26071 2004-04-15  Kevin Greiner  <kgreiner@xpediantsolutions.com>
26072
26073         * gnus-agent.el (gnus-agentize):
26074         gnus-agent-send-mail-real-function no longer set to current value
26075         of message-send-mail-function but rather a lambda that calls
26076         message-send-mail-function.  The change makes the agent real-time
26077         responsive to user changes to message-send-mail-function.
26078
26079 2004-04-15  Kevin Greiner  <kgreiner@xpediantsolutions.com>
26080
26081         * legacy-gnus-agent.el
26082         (gnus-agent-convert-to-compressed-agentview): Fix typos with
26083         help from Florian Weimer <fw@deneb.enyo.de>
26084
26085 2004-04-15  Katsumi Yamaoka  <yamaoka@jpl.org>
26086
26087         * nnmail.el (nnmail-cache-insert): Revert last change.
26088
26089 2004-04-14  Katsumi Yamaoka  <yamaoka@jpl.org>
26090
26091         * nnmail.el (nnmail-cache-insert): Always check whether
26092         nnmail-cache-ignore-groups matches a group name.
26093
26094 2004-04-13  Teodor Zlatanov  <tzz@lifelogs.com>
26095
26096         * spam.el (spam-fetch-field-fast, spam-generate-fake-headers)
26097         (spam-find-spam, spam-log-processing-to-registry)
26098         (spam-log-registered-p, spam-log-unregistration-needed-p)
26099         (spam-log-undo-registration): Use gnus-message instead of
26100         gnus-error, none of these errors are fatal.
26101
26102         * gnus-registry.el (gnus-registry-clean-empty-function)
26103         (gnus-registry-clean-empty): Remove only empty entries without
26104         extra data.
26105
26106 2004-04-12  Teodor Zlatanov  <tzz@lifelogs.com>
26107
26108         * spam-stat.el (spam-stat-buffer-change-to-spam)
26109         (spam-stat-buffer-change-to-non-spam): Change (error) to
26110         (gnus-message 8) invocation.
26111
26112 2004-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
26113
26114         * nntp.el (nntp-via-netcat-command): New variable.
26115         (nntp-via-netcat-switches): New variable.
26116         (nntp-open-via-rlogin-and-netcat): New function.
26117         (nntp-open-connection-function): Doc fix.
26118         (nntp-telnet-command): Doc fix.
26119         (nntp-end-of-line): Doc fix.
26120         (nntp-via-rlogin-command): Doc fix.
26121         (nntp-via-user-name): Doc fix.
26122         (nntp-via-address): Doc fix.
26123
26124 2004-04-09  Katsumi Yamaoka  <yamaoka@jpl.org>
26125
26126         * mml2015.el (mml2015-use): Avoid the "Recursive load suspected"
26127         error in Emacs 21.1.
26128
26129 2004-04-08  Reiner Steib  <Reiner.Steib@gmx.de>
26130
26131         * gnus-start.el (gnus-get-unread-articles): Fix last commit.
26132
26133 2004-04-07  Kevin Greiner  <kgreiner@xpediantsolutions.com>
26134
26135         * gnus-agent.el (gnus-agent-total-fetched-hashtb): New variable.
26136         (gnus-agent-with-refreshed-group): New macro.
26137         (gnus-agent-rename-group): New function.
26138         (gnus-agent-delete-group): New function.
26139         (gnus-agent-save-group-info): Use gnus-command-method when
26140         `method' parameter is nil.  Don't write nil entries into the
26141         active file.
26142         (gnus-agent-get-group-info): New function.
26143         (gnus-agent-fetch-articles):
26144         Use gnus-agent-update-files-total-fetched-for to increment disk space
26145         used.
26146         (gnus-agent-fetch-headers, gnus-agent-save-alist):
26147         Use gnus-agent-update-view-total-fetched-for to increment disk space
26148         used.
26149         (gnus-agent-get-local): Add optional parameters to avoid calling
26150         gnus-group-real-name and gnus-find-method-for-group.
26151         (gnus-agent-set-local): Delete stored entry if either min, or max,
26152         are nil.
26153         (gnus-agent-fetch-session): Reworded error/quit messages.
26154         On quit, use gnus-agent-regenerate-group to record existance of any
26155         articles fetched to disk before the quit occurred.
26156         (gnus-agent-expire-group-1): Use gnus-agent-with-refreshed-group,
26157         gnus-agent-update-view-total-fetched-for, and
26158         gnus-agent-update-files-total-fetched-for to decrement disk space
26159         used.
26160         (gnus-agent-retrieve-headers):
26161         Use gnus-agent-update-view-total-fetched-for to increment disk space
26162         used.
26163         (gnus-agent-regenerate-group): Replace gnus-group-update-group
26164         with gnus-agent-update-files-total-fetched-for to decrement disk
26165         space and fresh group buffer.
26166         (gnus-agent-inhibit-update-total-fetched-for): New variable.
26167         (gnus-agent-need-update-total-fetched-for): New variable.
26168         (gnus-agent-update-files-total-fetched-for): New function.
26169         (gnus-agent-update-view-total-fetched-for): New function.
26170         (gnus-agent-total-fetched-for): New function.
26171
26172         * gnus-cache.el (gnus-cache-save-buffers):
26173         Use gnus-cache-update-overview-total-fetched-for to change disk space
26174         used by this group.
26175         (gnus-cache-possibly-enter-article):
26176         Use gnus-cache-update-file-total-fetched-for to increment disk space
26177         used by this group.
26178         (gnus-cache-possibly-remove-article):
26179         Use gnus-cache-update-file-total-fetched-for to decrement disk space
26180         used by this group.
26181         (gnus-cache-generate-nov-databases): Purge total fetched cache.
26182         (gnus-cache-rename-group): New function.
26183         (gnus-cache-delete-group): New function.
26184         (gnus-cache-inhibit-update-total-fetched-for): New variable.
26185         (gnus-cache-need-update-total-fetched-for): New variable.
26186         (gnus-cache-with-refreshed-group): New macro.
26187         (gnus-cache-update-file-total-fetched-for): New function.
26188         (gnus-cache-update-overview-total-fetched-for): New function.
26189         (gnus-cache-rename-group-total-fetched-for): New function.
26190         (gnus-cache-delete-group-total-fetched-for): New function.
26191         (gnus-cache-total-fetched-for): New function.
26192
26193         * gnus-group.el: Require gnus-sum and autoload functions to
26194         resolve warnings when gnus-group.el compiled alone.
26195         (gnus-group-line-format): Document new %F.
26196         (size of Fetched data) group line format; identifies disk space
26197         used by agent and cache.
26198         (gnus-group-line-format-alist): Define new F format.
26199         (gnus-total-fetched-for): New function.
26200         (gnus-group-delete-group): No longer update
26201         gnus-cache-active-altered as gnus-request-delete-group now keeps
26202         the cache in sync.
26203         (gnus-group-list-active): Let the agent store a server's active
26204         list if currently plugged.
26205
26206         * gnus-int.el (gnus-request-delete-group):
26207         Use gnus-cache-delete-group and gnus-agent-delete-group to keep the
26208         local disk in sync with the server.
26209         (gnus-request-rename-group):
26210         Use gnus-cache-rename-group and gnus-agent-rename-group to keep the
26211         local disk in sync with the server.
26212
26213         * gnus-start.el (gnus-get-unread-articles):
26214         Cosmetic simplification to logic.
26215
26216         * gnus-util.el (gnus-rename-file): New function.
26217
26218 2004-04-07  Christian Neukirchen  <chneukirchen@yahoo.de>  (tiny change)
26219
26220         * mm-util.el (mm-image-load-path): Handle nil in load-path.
26221
26222 2004-04-07  Jesper Harder  <harder@ifa.au.dk>
26223
26224         * rfc2047.el (rfc2047-encoded-word-regexp): Remove unnecessary
26225         '+'.  Reported by Stefan Wiens <s.wi@gmx.net>.
26226
26227 2004-04-06  Jesper Harder  <harder@ifa.au.dk>
26228
26229         * gnus-cache.el (gnus-cache-save-buffers): Check if buffer is
26230         alive.  Reported by Laurent Martelli <laurent@aopsys.com>.
26231
26232 2004-04-03  Jesper Harder  <harder@ifa.au.dk>
26233
26234         * gnus.el (gnus-getenv-nntpserver): Strip whitespace.
26235
26236 2004-04-02  Teodor Zlatanov  <tzz@lifelogs.com>
26237
26238         * spam.el (spam-set-difference): Add function to replace
26239         gnus-set-difference in spam.el.
26240         (spam-summary-prepare-exit): Use spam-set-difference.
26241
26242 2004-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
26243
26244         * gnus-registry.el (gnus-registry-cache-file): Update to use
26245         gnus-dribble-directory OR gnus-home-directory OR ~.
26246         (gnus-registry-split-fancy-with-parent): Fix doc.
26247
26248 2004-03-27  Katsumi Yamaoka  <yamaoka@jpl.org>
26249
26250         * message.el (message-exchange-point-and-mark):
26251         Use message-mark-active-p.  Suggested by Jesper Harder
26252         <harder@ifa.au.dk>.
26253
26254 2004-03-26  Katsumi Yamaoka  <yamaoka@jpl.org>
26255
26256         * message.el (message-exchange-point-and-mark): Don't activate
26257         region if it was inactive.  Suggested by Hiroshi Fujishima
26258         <pooh@nature.tsukuba.ac.jp>.
26259
26260 2004-03-25  Katsumi Yamaoka  <yamaoka@jpl.org>
26261
26262         * gnus-art.el (article-display-face): Display Faces in the same
26263         order as X-Faces.
26264
26265 2004-03-24  Katsumi Yamaoka  <yamaoka@jpl.org>
26266
26267         * nndoc.el (nndoc-forward-type-p): Recognize envelope From_.
26268
26269 2004-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
26270
26271         * gnus-art.el (gnus-mime-recompute-hierarchical-structure): Remove.
26272         (gnus-mime-multipart-functions): Revert 2004-03-19 change.
26273         (gnus-article-mime-hierarchy): Remove.
26274         (gnus-article-mime-hierarchy-next): Remove.
26275         (gnus-article-mode): Revert 2004-03-19 change.
26276         (gnus-article-setup-buffer): Revert 2004-03-19 change.
26277         (gnus-insert-mime-button): Revert 2004-03-19 change.
26278         (gnus-mime-accumulate-hierarchy): Remove.
26279         (gnus-mime-enter-multipart): Remove.
26280         (gnus-mime-leave-multipart): Remove.
26281         (gnus-mime-display-part): Revert 2004-03-19 change.
26282         (gnus-mime-display-alternative): Revert 2004-03-19 change.
26283
26284         * mml.el (mml-preview): Revert 2004-03-19 change.
26285
26286 2004-03-18  Helmut Waitzmann  <Helmut.Waitzmann@web.de>  (tiny change)
26287
26288         * gnus-sum.el (gnus-newsgroup-variables): Doc fix.
26289
26290 2004-03-22  Katsumi Yamaoka  <yamaoka@jpl.org>
26291
26292         * mm-decode.el (mm-save-part): Bind enable-multibyte-characters to
26293         t while entering a file name using the mm-with-multibyte macro.
26294         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
26295
26296         * mm-util.el (mm-with-multibyte): New macro.
26297
26298 2004-03-19  Katsumi Yamaoka  <yamaoka@jpl.org>
26299
26300         * gnus-art.el (gnus-mime-recompute-hierarchical-structure):
26301         New user option.
26302         (gnus-mime-multipart-functions): Doc and customization fix.
26303         (gnus-article-mime-hierarchy): New variable.
26304         (gnus-article-mime-hierarchy-next): New variable.
26305         (gnus-article-mode): Make gnus-article-mime-hierarchy buffer-local.
26306         (gnus-article-setup-buffer): Set gnus-article-mime-hierarchy and
26307         gnus-article-mime-hierarchy-next to nil.
26308         (gnus-insert-mime-button): Show hierarchy numbers.
26309         (gnus-mime-accumulate-hierarchy): New function.
26310         (gnus-mime-enter-multipart): New function.
26311         (gnus-mime-leave-multipart): New function.
26312         (gnus-mime-display-part): Recompute hierarchical MIME structure.
26313         (gnus-mime-display-alternative): Show hierarchy numbers.
26314
26315         * mml.el (mml-preview): Set gnus-article-mime-hierarchy and
26316         gnus-article-mime-hierarchy-next to nil.
26317
26318 2004-03-19  Steve Youngs  <sryoungs@bigpond.net.au>
26319
26320         * dns.el: Don't require gnus-xmas.
26321
26322 2004-03-17  Jesper Harder  <harder@ifa.au.dk>
26323
26324         * mml.el (mml-generate-mime-1): Don't use format=flowed with
26325         inline PGP.
26326         (mml-menu): Disable mml-quote-region if mark is inactive.
26327
26328 2004-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
26329
26330         * gnus-agent.el (gnus-agent-regenerate-group): Activate the group
26331         when the group's active is not available.
26332
26333 2004-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
26334
26335         * gnus-agent.el (gnus-agent-read-agentview): Add a missing arg to
26336         error.
26337
26338 2004-03-12  Reiner Steib  <Reiner.Steib@gmx.de>
26339
26340         * imap.el (imap-store-password): New variable.
26341         (imap-interactive-login): Use it.
26342         Suggested by Mark Plaksin <happy@mcplaksin.org>.
26343
26344 2004-03-12  Katsumi Yamaoka  <yamaoka@jpl.org>
26345
26346         * gnus-art.el (gnus-article-read-summary-keys): Restore new
26347         window-start and hscroll to summary window.
26348
26349 2004-03-12  Kevin Greiner  <kgreiner@xpediantsolutions.com>
26350
26351         * gnus-start.el (gnus-convert-old-newsrc): Only write the
26352         conversion message to newsrc-dribble when an actual conversion is
26353         performed.
26354
26355 2004-03-10  Malcolm Purvis  <malcolmpurvis@optushome.com.au>  (tiny change)
26356
26357         * spam-stat.el (spam-stat-coding-system): Use mm-coding-system-p.
26358
26359 2004-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
26360
26361         * mm-decode.el (mm-complicated-handles): New function reviving
26362         former definition of mm-multiple-handles.
26363
26364         * gnus-art.el (gnus-mime-save-part-and-strip): Use it.
26365         (gnus-mime-delete-part): Use it.
26366
26367 2004-03-09  Kevin Greiner  <kgreiner@xpediantsolutions.com>
26368
26369         * gnus-agent.el (gnus-agent-read-local):
26370         Bind nnheader-file-coding-system to gnus-agent-file-coding-system to
26371         avoid the implicit assumption that they will always be equal.
26372         (gnus-agent-save-local): Bind buffer-file-coding-system, not
26373         coding-system-for-write, as the with-temp-file macro first prints
26374         to a buffer then saves the buffer.
26375
26376 2004-03-09  Katsumi Yamaoka  <yamaoka@jpl.org>
26377
26378         * gnus-art.el (gnus-article-edit-part): New function.
26379         (gnus-mime-save-part-and-strip): Use it; do query instead of
26380         signaling an error; don't use mm-multiple-handles.
26381         (gnus-mime-delete-part): Ditto.
26382
26383 2004-03-08  Kevin Greiner  <kgreiner@xpediantsolutions.com>
26384
26385         * gnus-agent.el (gnus-agent-read-agentview): Remove support for
26386         old file versions.
26387         (gnus-group-prepare-hook): Remove function that converted list
26388         form of gnus-agent-expire-days to group properties.
26389
26390         * gnus-int.el: Autoload gnus-agent-regenerate-group.
26391         (gnus-request-accept-article): Re-indented.
26392
26393         * gnus-start.el (gnus-convert-old-newsrc): Registered new
26394         converters to handle old agent file formats.  Add logic for a
26395         "backup before upgrading warning".
26396         (gnus-convert-mark-converter-prompt): Developers can mark
26397         functions as needing (default), or not needing,
26398         gnus-convert-old-newsrc's "backup before upgrading warning".
26399         (gnus-convert-converter-needs-prompt): Tests whether the user
26400         should be protected from potentially irreversable changes by the
26401         function.
26402
26403         * legacy-gnus-agent.el: New.  Provides converters that are only
26404         loaded when gnus-convert-old-newsrc needs to call them.
26405
26406 2004-03-08  Katsumi Yamaoka  <yamaoka@jpl.org>
26407
26408         * mail-source.el (mail-source-touch-pop): Doc fix.
26409
26410         * message.el (message-smtpmail-send-it): Doc fix.
26411
26412 2004-03-05  Jesper Harder  <harder@ifa.au.dk>
26413
26414         * sha1-el.el (sha1-maximum-internal-length): Doc fix.
26415
26416         * nnmail.el (nnmail-split-fancy): do.
26417
26418         * gnus-kill.el (gnus-kill, gnus-execute): do.
26419
26420 2004-03-05  Per Abrahamsen  <abraham@dina.kvl.dk>
26421
26422         * gnus-sum.el (gnus-widget-reversible-match)
26423         (gnus-widget-reversible-to-internal)
26424         (gnus-widget-reversible-to-external): New functions.
26425         (gnus-widget-reversible): New widget.
26426         (gnus-article-sort-functions, gnus-thread-sort-functions): Use it.
26427
26428 2004-03-05  Kai Grossjohann  <kgrossjo@eu.uu.net>
26429
26430         * gnus-sum.el (gnus-thread-sort-functions)
26431         (gnus-article-sort-functions): Document `(not F)' items.
26432
26433 2004-03-04  Teodor Zlatanov  <tzz@lifelogs.com>
26434
26435         * spam.el (spam-use-gmane-xref): Add new backend.
26436         (spam-gmane-xref-spam-group): Add variable to control the name of the
26437         Gmane spam group.
26438         (spam-blackhole-servers, spam-blackhole-good-server-regex)
26439         (spam-regex-headers-spam, spam-regex-headers-ham)
26440         (spam-regex-body-spam, spam-regex-body-ham): Clarify docs.
26441         (spam-list-of-checks): Add spam-use-gmane-xref to list of
26442         backends and checks.
26443         (spam-check-gmane-xref): Add function for spam-use-gmane-xref.
26444
26445         * gnus.el (spam-autodetect-methods): Add spam-use-gmane-xref as
26446         an autodetect method.
26447
26448 2004-03-04  Kevin Greiner  <kgreiner@xpediantsolutions.com>
26449
26450         * gnus-int.el (gnus-request-accept-article): Inform the agent that
26451         articles are being added to a group.
26452         (gnus-request-replace-article): Inform the agent that articles
26453         need to be uncached as the cached contents are no longer valid.
26454
26455 2004-03-04  Katsumi Yamaoka  <yamaoka@jpl.org>
26456
26457         * binhex.el: Don't autoload executable-find.
26458
26459         * canlock.el: Don't autoload mail-fetch-field.
26460
26461         * dgnushack.el: Autoload c-mode for XEmacs.
26462
26463         * gnus-ems.el: Don't autoload appt-select-lowest-window.
26464
26465         * gnus-msg.el: Don't autoload news-reply-mode, news-setup,
26466         rmail-dont-reply-to and rmail-output.
26467
26468         * gnus-score.el: Don't autoload ffap-string-at-point.
26469
26470         * gnus-setup.el: Don't autoload sc-cite-original.
26471
26472         * imap.el: Don't autoload base64-decode-string,
26473         base64-encode-string and md5.
26474
26475         * message.el: Autoload rmail-dont-reply-to, rmail-msg-is-pruned
26476         and rmail-msg-restore-non-pruned-header.
26477
26478         * mm-decode.el: Don't autoload executable-find.
26479
26480         * mm-url.el: Don't autoload executable-find.
26481
26482         * mm-view.el: Don't autoload diff-mode.
26483
26484         * nndb.el: Don't autoload news-reply-mode, news-setup,
26485         cancel-timer and telnet.
26486
26487         * password.el: Don't autoload run-at-time for Emacs.
26488
26489         * sha1-el.el: Don't autoload executable-find.
26490
26491         * sieve-mode.el: Don't autoload c-mode.
26492
26493         * uudecode.el: Don't autoload executable-find.
26494
26495 2004-03-04  Kevin Greiner  <kgreiner@xpediantsolutions.com>
26496
26497         * gnus-agent.el (gnus-agent-file-header-cache): Remove.
26498         (gnus-agent-possibly-alter-active): Avoid null in numeric
26499         comparison.
26500         (gnus-agent-set-local): Refuse to save null in local object table.
26501         (gnus-agent-regenerate-group): The REREAD parameter can now be a
26502         list of articles that will be marked as unread.
26503
26504 2004-03-04  Katsumi Yamaoka  <yamaoka@jpl.org>
26505
26506         * rfc2047.el (rfc2047-encoded-word-regexp): Mismatched paren.
26507
26508 2004-03-04  Jesper Harder  <harder@ifa.au.dk>
26509
26510         * rfc2047.el (rfc2047-encoded-word-regexp): Support RFC 2231
26511         language tags.
26512
26513 2004-03-03  Per Abrahamsen  <abraham@dina.kvl.dk>
26514
26515         * gnus-agent.el (gnus-agent-read-local, gnus-agent-save-local):
26516         Don't bind "obarray".
26517
26518         * gnus-sum.el (gnus-thread-sort-functions):
26519         Add `gnus-thread-sort-by-most-recent-number' and
26520         `gnus-thread-sort-by-most-recent-date'.
26521         Reported by Kai Grossjohann <kai@emptydomain.de>.
26522
26523 2004-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
26524
26525         * gnus-cus.el (gnus-agent-customize-category): Mismatched paren.
26526
26527 2004-03-02  Kevin Greiner  <kgreiner@xpediantsolutions.com>
26528
26529         * gnus-cus.el (gnus-agent-customize-category):
26530         Remove ignore-errors macro reference that required cl to be loaded at
26531         run-time.
26532
26533         * gnus-range.el (gnus-sorted-range-intersection): Now accepts
26534         single-interval range of the form (min . max).  Previously the
26535         range had to look like ((min . max)).  Likewise, return
26536         (min . max) rather than ((min . max)).
26537         (gnus-range-map): Use gnus-range-normalize to accept
26538         single-interval range.
26539
26540         * gnus-sum.el (gnus-summary-highlight-line): Articles stored in
26541         the cache, but not the agent, now appear with their usual face.
26542
26543         * dgnushack.el (loaddir): New variable that is bound to the
26544         directory containing the dgnushack.el file.  Use loaddir, rather
26545         than srcdir, to update load-path.  Change lets dgnushack compile
26546         code in directories other than GNUS/lisp.
26547
26548 2004-03-01  Katsumi Yamaoka  <yamaoka@jpl.org>
26549
26550         * lpath.el: Don't bind w3m-safe-url-regexp.
26551
26552         * gnus-art.el (gnus-article-wash-html-with-w3m): Don't make the
26553         w3m-safe-url-regexp variable buffer-local.
26554
26555         * mm-view.el (mm-inline-text-html-render-with-w3m): Ditto.
26556
26557 2004-02-27  Simon Josefsson  <jas@extundo.com>
26558
26559         * gnus-sum.el (gnus-move-group-prefix-function): Add, default to
26560         gnus-group-real-prefix.
26561         (gnus-summary-move-article): Use it, instead of
26562         gnus-group-real-prefix.
26563
26564 2004-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
26565
26566         * lpath.el: Bind w3m-safe-url-regexp.
26567
26568         * gnus-art.el (gnus-article-wash-html-with-w3m): Make the
26569         w3m-safe-url-regexp variable buffer-local and set it as the value
26570         of mm-w3m-safe-url-regexp.
26571
26572         * mm-view.el (mm-inline-text-html-render-with-w3m): Ditto.
26573
26574         * gnus-msg.el (gnus-setup-message): Ignore an article copy while
26575         parsing gnus-posting-styles when the message is not for replying.
26576
26577         * dgnushack.el: Autoload sgml-mode for XEmacs.
26578
26579         * nnrss.el (nnrss-opml-export):
26580         Use mm-set-buffer-file-coding-system instead of
26581         set-buffer-file-coding-system.
26582
26583 2004-02-27  Jesper Harder  <harder@ifa.au.dk>
26584
26585         * spam-stat.el: Pedantic docstring and whitespace fixes (courtesy
26586         of checkdoc.el).
26587         * nnrss.el: do.
26588         * gnus-mlspl.el: do.
26589         * gnus-ml.el: do.
26590         * gnus-srvr.el: do.
26591
26592         * nnrss.el (nnrss-opml-export): Turn on sgml-mode.
26593
26594 2004-02-27  Kevin Ryde  <user42@zip.com.au>  (tiny change)
26595
26596         * gnus.el (gnus-group, gnus-summary, gnus-summary-sort):
26597         Corrections to custom-manual links.
26598
26599         * gnus-art.el (gnus-article): Ditto.
26600
26601         * mm-decode.el (mime-display, mime-security): Ditto.
26602
26603 2004-02-26  Jesper Harder  <harder@ifa.au.dk>
26604
26605         * flow-fill.el: Typo.
26606
26607 2004-02-26  Andrew Cohen  <cohen@andy.bu.edu>
26608
26609         * spam-wash.el: New file.
26610
26611 2004-02-26  Mark A. Hershberger  <mah@everybody.org>
26612
26613         * nnrss.el (nnrss-opml-import, nnrss-opml-export): New functions.
26614
26615 2004-02-26  Teodor Zlatanov  <tzz@lifelogs.com>
26616
26617         * spam.el (spam-summary-prepare-exit): Fix gnus-set-difference: needs
26618         to be run with new-articles as LIST1, not LIST2.
26619         (spam-registration-functions): Add spam-use-ham-copy as a nil
26620         registration backend.
26621
26622 2004-02-26  Jesper Harder  <harder@ifa.au.dk>
26623
26624         * spam-stat.el (spam-stat-washing-hook): New option.
26625         (spam-stat-buffer-words): Use it.
26626         (spam-stat-process-directory, spam-stat-test-directory):
26627         Use insert-file-contents-literally.
26628         (spam-stat-coding-system): New variable.
26629         (spam-stat-load, spam-stat-save): Use it.
26630
26631 2004-02-25  Katsumi Yamaoka  <yamaoka@jpl.org>
26632
26633         * spam-report.el (spam-report-plug-agent):
26634         Quote spam-report-url-to-file and spam-report-url-ping-plain.
26635
26636 2004-02-25  Reiner Steib  <Reiner.Steib@gmx.de>
26637
26638         * gnus-art.el (gnus-button-alist, gnus-header-button-alist):
26639         Allow / in mailto URLs.
26640
26641 2004-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
26642
26643         * spam-report.el (spam-report-process-queue): Fix interactive use.
26644         (spam-report-url-ping-temp-agent-function, spam-report-plug-agent)
26645         (spam-report-unplug-agent): Doc fixes.
26646         (spam-report-url-ping-mm-url, spam-report-url-to-file)
26647         (spam-report-agentize, spam-report-deagentize): Autoload.
26648
26649 2004-02-24  Katsumi Yamaoka  <yamaoka@jpl.org>
26650
26651         * dgnushack.el (with-syntax-table): Redefine it for XEmacs 21.5.
26652
26653         * message.el (message-setup-fill-variables): Add mml tags to
26654         paragraph-start and paragraph-separate.  Suggested by Andrew Korty
26655         <ajk@iu.edu>.
26656         (message-mode): Don't modify paragraph-separate there.
26657
26658 2004-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
26659
26660         * compface.el (uncompface-use-external): Default to undecided.
26661         (uncompface-use-external-threshold): New variable.
26662         (uncompface-float-time): New macro.
26663         (uncompface): Determine whether to use the external decoder if
26664         uncompface-use-external is undecided.
26665
26666 2004-02-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26667
26668         * mm-view.el (mm-inline-image-emacs): Don't insert blank lines
26669         after images.
26670
26671         * gnus-art.el (gnus-mime-display-single): Remove dead code.
26672
26673 2004-02-14  Jesper Harder  <harder@ifa.au.dk>
26674
26675         * nnrss.el (nnrss-request-article, nnrss-find-el): Cleanup.
26676
26677         * html2text.el (html2text-get-attr, html2text-fix-paragraph): do.
26678
26679         * gnus-sum.el (gnus-summary-limit-to-age)
26680         (gnus-summary-limit-children): do.
26681
26682         * gnus-int.el (gnus-request-scan): do.
26683
26684         * gnus-group.el (gnus-group-suspend): do.
26685
26686         * gnus-cus.el (gnus-agent-cat-prepare-category-field): do.
26687
26688         * gnus-cite.el (gnus-cite-parse-attributions): do.
26689
26690         * gnus-agent.el (gnus-summary-set-agent-mark)
26691         (gnus-agent-regenerate-group): do.
26692
26693         * deuglify.el (gnus-article-outlook-unwrap-lines): do.
26694
26695         * binhex.el (binhex-decode-region-internal): do.
26696
26697 2004-02-12  Katsumi Yamaoka  <yamaoka@jpl.org>
26698
26699         * gnus-fun.el (gnus-face-properties-alist): New user option.
26700         (gnus-display-x-face-in-from): Use it.
26701
26702         * gnus-art.el (article-display-face): Ditto.
26703
26704         * compface.el (uncompface-use-external): Default to nil.
26705
26706 2004-02-12  Jesper Harder  <harder@ifa.au.dk>
26707
26708         * nntp.el (nntp-erase-buffer): New function.
26709         (nntp-retrieve-data, nntp-send-command)
26710         (nntp-send-buffer, nntp-retrieve-groups, nntp-handle-authinfo)
26711         (nntp-possibly-change-group): Use it.
26712
26713         * nnnil.el (nnnil-retrieve-headers, nnnil-request-list):
26714         Use with-current-buffer.
26715
26716 2004-02-12  TAKAI Kousuke  <tak@kmc.gr.jp>
26717
26718         * compface.el: Merge the ELisp-based uncompface program.
26719         (compface): New customization group.
26720         (uncompface-use-external): New user option.
26721         (uncompface): Call uncompface-internal if uncompface-use-external
26722         is nil.
26723         (uncompface-internal): New function.  Note that there are also
26724         some other functions and variables added for this function.
26725
26726 2004-02-10  Jesper Harder  <harder@ifa.au.dk>
26727
26728         * nnrss.el (nnrss-read-group-data): Initialize nnrss-group-hashtb
26729         if necessary.
26730
26731 2004-02-09  Teodor Zlatanov  <tzz@lifelogs.com>
26732
26733         * spam-report.el (spam-report-unplug-agent)
26734         (spam-report-plug-agent, spam-report-deagentize)
26735         (spam-report-agentize, spam-report-url-ping-temp-agent-function):
26736         Add support for the Agent in spam-report: when unplugged, report to a
26737         file; when plugged, submit all the requests.
26738
26739         * spam.el (spam-register-routine): Fix message about
26740         registration.
26741
26742 2004-02-09  Jesper Harder  <harder@ifa.au.dk>
26743
26744         * rfc2047.el (rfc2047-qp-or-base64): New function to reduce
26745         dependencies.
26746         (rfc2047-encode): Use it.
26747
26748         * gnus-art.el (gnus-button-marker-list): Move before first
26749         reference.
26750
26751         * imap.el (imap-parse-flag-list, imap-parse-body-extension)
26752         (imap-parse-body): Fix format string mismatch.
26753
26754         * gnus-score.el (gnus-summary-increase-score): do.
26755
26756         * nnrss.el (nnrss-close): New function.
26757
26758 2004-02-08  Jesper Harder  <harder@ifa.au.dk>
26759
26760         * nnrss.el (nnrss-make-filename): New function.
26761         (nnrss-request-delete-group, nnrss-read-server-data)
26762         (nnrss-save-server-data, nnrss-read-group-data)
26763         (nnrss-save-group-data): Use it.
26764         (nnrss-save-server-data, nnrss-save-group-data): Use gnus-prin1.
26765         (nnrss-read-server-data, nnrss-read-group-data): Use load.
26766         (nnrss-group-hashtb): Make it a hash table rather than an obarray.
26767
26768 2004-02-07  Jesper Harder  <harder@ifa.au.dk>
26769
26770         * mml.el (mml-compute-boundary-1): Don't uncompress files.
26771
26772 2004-02-06  Jesper Harder  <harder@ifa.au.dk>
26773
26774         * mml.el (mml-mode, mml-x-dnd-attach-file): Attach drop and drag
26775         files.
26776
26777         * message.el (message-generate-headers-first): Don't quote nil
26778         and t in docstrings.
26779
26780         * imap.el (imap-id): do.
26781
26782         * gnus-agent.el (gnus-agent-consider-all-articles)
26783         (gnus-agent-queue-mail): do.
26784
26785 2004-02-05  Reiner Steib  <Reiner.Steib@gmx.de>
26786
26787         * spam-report.el (spam-report-process-queue): New function.
26788         Process requests from `spam-report-requests-file'.
26789         (spam-report-process-queue): Doc fix.
26790
26791 2004-02-05  Teodor Zlatanov  <tzz@lifelogs.com>
26792
26793         * spam.el (spam-register-routine)
26794         (spam-log-processing-to-registry, spam-log-registered-p)
26795         (spam-log-unregistration-needed-p, spam-log-undo-registration):
26796         Change "check" to "spam-check" for semi-clarity.
26797
26798 2004-02-05  Jesper Harder  <harder@ifa.au.dk>
26799
26800         * pop3.el: Require nnheader.
26801
26802         * mml-smime.el: Require cl.  Autoload message-fetch-field.
26803
26804         * mml-sec.el (mml-signencrypt-style): Don't depend on Gnus.
26805
26806         * gnus-picon.el: Require cl.
26807
26808         * gnus-fun.el: Require gnus-ems and gnus-util.
26809
26810         * gnus.el (gnus-method-to-server): Move defsubst before first use.
26811
26812         * gnus-diary.el (gnus-diary-header-schedule): caddr -> car (cddr.
26813
26814         * gnus-art.el (gnus-article-edit-mode): Define before first
26815         reference.
26816
26817 2004-02-04  Jesper Harder  <harder@ifa.au.dk>
26818
26819         * gnus-uu.el (gnus-uu-check-correct-stripped-uucode): Simplify.
26820         (gnus-uu-post-encoded): Use point-at-bol.
26821
26822         * gnus-topic.el (gnus-group-active-topic-p): do.
26823
26824         * gnus-start.el (gnus-newsrc-to-gnus-format): do.
26825
26826         * gnus-group.el (gnus-group-kill-region): do.
26827
26828         * gnus-art.el (article-date-ut): do.
26829
26830         * message.el (message-fetch-field): Remove redundant
26831         case-fold-search binding.
26832         (message-narrow-to-field): Simplify.
26833
26834 2004-02-03  Reiner Steib  <Reiner.Steib@gmx.de>
26835
26836         * spam.el (spam-directory): Derive from `gnus-directory'.
26837
26838         * spam-report.el (spam-report-url-to-file)
26839         (spam-report-requests-file): New function and variable for offline
26840         reporting.
26841         (spam-report-url-ping-function): Add `spam-report-url-to-file'
26842         and user defined function.
26843         (spam-report-url-ping-mm-url): Remove doubled slash.
26844
26845 2004-02-03  Teodor Zlatanov  <tzz@lifelogs.com>
26846
26847         * spam.el (spam-list-of-processors): Fix spamassassin variable names.
26848
26849 2004-02-03  Jesper Harder  <harder@ifa.au.dk>
26850
26851         * spam.el (spam-check-spamoracle, spam-spamoracle-learn):
26852         Fix format string mismatch.
26853
26854         * sieve.el (sieve-deactivate-all): do.
26855
26856         * nnfolder.el (nnfolder-request-set-mark, nnfolder-save-marks): do.
26857
26858         * nnlistserv.el (nnlistserv-kk-wash-article): do.
26859
26860         * nnml.el (nnml-request-set-mark, nnml-save-marks): do.
26861
26862         * mm-bodies.el (mm-7bit-chars): Don't include \r.
26863
26864 2004-02-02  Teodor Zlatanov  <tzz@lifelogs.com>
26865
26866         * spam.el (spam-list-of-checks): Add spam-use-BBDB-eclusive to
26867         the list of checks.
26868
26869 2004-01-31  Jesper Harder  <harder@ifa.au.dk>
26870
26871         * rfc2047.el (rfc2047-pad-base64): Deal with more cases of invalid
26872         padding.
26873
26874 2004-01-27  Ralf Angeli  <angeli@iwi.uni-sb.de>
26875
26876         * mm-view.el (mm-fill-flowed): New variable.
26877         (mm-inline-text): Use it.
26878
26879 2004-01-27  Teodor Zlatanov  <tzz@lifelogs.com>
26880
26881         * spam.el (spam-spamassassin-register-ham-routine)
26882         (spam-spamassassin-register-spam-routine): Fix function names.
26883
26884 2004-01-27  Katsumi Yamaoka  <yamaoka@jpl.org>
26885
26886         * gnus.el (gnus-tmp-grouplens): Remove.
26887         (gnus-summary-line-format): Remove grouplens.
26888
26889         * gnus-group.el (gnus-group-line-format): Ditto.
26890
26891         * gnus-spec.el (gnus-format-specs): Ditto.
26892         (gnus-update-format-specifications): Flush the group format spec
26893         cache if there's the grouplens stuff.
26894         (gnus-parse-simple-format): Replace %l with the empty string.
26895
26896 2004-01-27  Jerry James  <james@xemacs.org>  (tiny change)
26897
26898         * gnus-spec.el (gnus-parse-simple-format): Fix setq value
26899         omission.
26900
26901 2004-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
26902
26903         * gnus-msg.el (gnus-summary-resend-message-edit): Call mime-to-mml.
26904         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
26905
26906 2004-01-25  Paul Jarc  <prj@po.cwru.edu>
26907
26908         * nnmaildir.el (nnmaildir--num-file, nnmaildir--mkfile)
26909         (nnmaildir--emlink-p, nnmaildir--eexist-p, nnmaildir--new-number):
26910         New macros and functions.
26911         * nnmaildir.el (nnmaildir--group-maxnum, nnmaildir--update-nov):
26912         Handle > NLINK_MAX messages.
26913         * nnmaildir.el (nnmaildir-request-set-mark):
26914         Use nnmaildir--emlink-p and nnmaildir--eexist-p.
26915
26916 2004-01-25  Alex Schroeder  <alex@gnu.org>
26917
26918         * spam-stat.el (spam-stat-process-directory-age): New option.
26919         (spam-stat-process-directory): Use it.
26920
26921 2004-01-24  Hiroshi Fujishima  <pooh@nature.tsukuba.ac.jp>  (tiny change)
26922
26923         * spam-stat.el (spam-stat-reduce-size): Set spam-stat-dirty.
26924         (spam-stat-save): Accept prefix argument.
26925
26926 2004-01-23  Paul Jarc  <prj@po.cwru.edu>
26927
26928         * nnmaildir.el (nnmaildir-request-set-mark): Handle the "too many
26929         links" error.
26930
26931 2004-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
26932
26933         * dgnushack.el: Advise byte-optimize-form-code-walker to optimize
26934         the rest of the and/or forms.
26935
26936 2004-01-23  Jesper Harder  <harder@ifa.au.dk>
26937
26938         * gnus.el (gnus-tmp-grouplens): Define for the sake of backward
26939         compatibility with old .newsrc.eld files.
26940
26941         * gnus-xmas.el (gnus-xmas-grouplens-menu-add): Remove.
26942
26943         * gnus-sum.el (gnus-summary-line-format-alist): Remove grouplens.
26944
26945         * gnus-start.el (gnus-1): do.
26946
26947         * gnus-group.el (gnus-group-line-format-alist): do.
26948
26949         * gnus.el (gnus-use-grouplens, gnus-visual): do.
26950
26951         * gnus-gl.el: Remove.
26952
26953 2004-01-23  Kevin Greiner  <kgreiner@xpediantsolutions.com>
26954
26955         * gnus-sum.el (gnus-adjust-marks): Now correctly handles a list of
26956         marks consisting of a single range {for example, (3 . 5)} rather
26957         than a list of a single range { ((3 . 5)) }.
26958
26959 2004-01-23  Jesper Harder  <harder@ifa.au.dk>
26960
26961         * spam-stat.el (spam-stat-store-gnus-article-buffer):
26962         Use with-current-buffer.
26963         (spam-stat-store-current-buffer): Use insert-buffer-substring to
26964         avoid consing a string.
26965
26966         * mm-util.el (mm-charset-synonym-alist): Add ks_c_5601-1987.
26967         Remove obsolete entries for big5 and gb2312.
26968
26969 2004-01-22  Kevin Greiner  <kgreiner@xpediantsolutions.com>
26970
26971         * gnus-sum.el (gnus-adjust-marks): Avoid splicing null INTO the
26972         uncompressed list.
26973
26974 2004-01-22  Jesper Harder  <harder@ifa.au.dk>
26975
26976         * spam-stat.el (spam-stat-strip-xref): New function.
26977         (spam-stat-process-directory): Use it.
26978
26979         * gnus-util.el (gnus-fetch-field): Don't bind case-fold-search
26980         here -- it's done in message-fetch-field.
26981
26982 2004-01-21  Kevin Greiner  <kgreiner@xpediantsolutions.com>
26983
26984         * gnus-agent.el (gnus-agent-queue-mail)
26985         (gnus-agent-prompt-send-queue): New variables.
26986         (gnus-agent-send-mail): Use gnus-agent-queue-mail.
26987         * gnus-draft.el (gnus-group-send-queue): Pass the group name
26988         "nndraft:queue" along to gnus-draft-send.
26989         Use gnus-agent-prompt-send-queue.
26990         (gnus-draft-send): Rebind gnus-agent-queue-mail to nil when group
26991         is "nndraft:queue".  Suggested by Gaute Strokkenes
26992         <gs234@srcf.ucam.org>
26993
26994         * gnus-agent.el (agent-disable-undownloaded-faces): Remove.
26995         (agent-enable-undownloaded-faces): Add.
26996         (gnus-agent-cat-groups): Use eval-and-compile, not
26997         eval-when-compile, to define gnus-agent-set-cat-groups as the setf
26998         method of gnus-agent-cat-groups even when the buffer has been
26999         evaled.
27000         (gnus-agent-save-active, gnus-agent-save-active-1): Merge to
27001         delete gnus-agent-save-active-1.
27002         (gnus-agent-save-groups): Delete.  Identical to
27003         gnus-agent-save-active.
27004         (gnus-agent-write-active): No longer adjust agent's copy of active
27005         file as agent's adjustments are now stored in their own
27006         file.  Remove optional parameter.
27007         (gnus-agent-possibly-alter-active): Ignore groups of unagentized
27008         servers.  Add use of min/max range limits from server's local
27009         file.
27010         (gnus-agent-save-alist): Remove unused optional argument.
27011         (gnus-agent-load-local, gnus-agent-read-and-cache-local)
27012         (gnus-agent-read-local, gnus-agent-save-local, gnus-agent-get-local)
27013         (gnus-agent-set-local): A per-server file that keeps min/max range
27014         limits for articles known to the agent.  Provides a fast mechanism
27015         for altering many active ranges.
27016         (gnus-agent-expire-group, gnus-agent-expire): No longer save the
27017         active file (local makes it unnecessary).
27018         (gnus-agent-regenerate-group): Fix XEmacs compatibility.
27019
27020         * gnus-cus.el (agent-disable-undownloaded-faces): Remove.
27021         (agent-enable-undownloaded-faces): Add.
27022
27023         * gnus-draft.el (gnus-draft-send): Bind gnus-agent-queue-mail to
27024         disable it when sending to "nndraft:queue".
27025         (gnus-group-send-queue): Add safety check to avoid sending queue
27026         when unplugged.
27027
27028         * gnus-group.el (gnus-group-catchup): Use new
27029         gnus-sequence-of-unread-articles, not
27030         gnus-list-of-unread-articles, to avoid exhausting memory with huge
27031         numbers of articles.  Use gnus-range-map to avoid having to
27032         uncompress the unread list.
27033         (gnus-group-archive-directory, gnus-group-recent-archive-directory):
27034         Fix invalid ange-ftp reference.
27035
27036         * gnus-range.el (gnus-range-map): Iterate over list or sequence.
27037         (gnus-sorted-range-intersection): Intersection of two ranges
27038         without requiring that they first be uncompressed.
27039
27040         * gnus-start.el (gnus-activate-group): Unless blocked by the
27041         caller, possibly expand the active range to include both cached
27042         and agentized articles.
27043         (gnus-convert-old-newsrc): Rewrote in anticipation of having
27044         multiple version-dependent converters.
27045         (gnus-groups-to-gnus-format): Replace gnus-agent-save-groups with
27046         gnus-agent-save-active.
27047         (gnus-save-newsrc-file): Save dirty agent range limits.
27048
27049         * gnus-sum.el (gnus-select-newgroup): Replace inline code with
27050         gnus-agent-possibly-alter-active.
27051         (gnus-adjust-marked-articles): Faster handling of simple lists.
27052
27053 2004-01-21  Jesper Harder  <harder@ifa.au.dk>
27054
27055         * spam-stat.el (spam-stat-test-directory): New optional argument
27056         displays a list of files detected.  Suggested by Andrew Cohen
27057         <cohen@andy.bu.edu>.
27058         (spam-stat-buffer-words-with-scores): Don't narrow and change
27059         syntax table here.  Reported by Andrew Cohen <cohen@andy.bu.edu>.
27060
27061 2004-01-20  Hubert Chan  <hubert@uhoreg.ca>
27062
27063         * spam.el (spam-use-spamassassin, spam-use-spamassassin-headers)
27064         (spam-install-hooks, spam-spamassassin, spam-spamassassin-path)
27065         (spam-spamassassin-arguments)
27066         (spam-spamassassin-spam-flag-header)
27067         (spam-spamassassin-positive-spam-flag-header)
27068         (spam-spamassassin-spam-status-header, spam-sa-learn-path)
27069         (spam-sa-learn-rebuild, spam-sa-learn-spam-switch)
27070         (spam-sa-learn-ham-switch, spam-sa-learn-unregister-switch)
27071         (spam-list-of-processors, spam-list-of-checks)
27072         (spam-list-of-statistical-checks, spam-registration-functions)
27073         (spam-check-spamassassin-headers, spam-check-spamassassin)
27074         (spam-spamassassin-score)
27075         (spam-spamassassin-register-with-sa-learn)
27076         (spam-spamassassin-register-spam-routine)
27077         (spam-spamassassin-register-ham-routine)
27078         (spam-assassin-register-spam-routine)
27079         (spam-assassin-register-ham-routine): Add SpamAssassin support.
27080         (spam-bogofilter-score): Fix to show article before scoring.
27081
27082 2004-01-20  Teodor Zlatanov  <tzz@lifelogs.com>
27083
27084         * spam.el (gnus-summary-mode-map): Make spam-generic-score the
27085         default scoring function.
27086         (spam-generic-score): Call spam-spamassassin-score if
27087         spam-use-spamassassin or spam-use-spamassassin-headers is on;
27088         spam-bogofilter-score otherwise.
27089
27090         * gnus.el (spam-process, spam-autodetect-methods):
27091         Add spamassassin and spamassassin-headers.
27092
27093 2004-01-20  Nevin Kapur  <nkapur@cs.caltech.edu>
27094
27095         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
27096         Suppress unnecessary messages.
27097
27098 2004-01-20  Jesper Harder  <harder@ifa.au.dk>
27099
27100         * spam-stat.el (spam-stat-to-hash-table): Use :size keyword in
27101         make-hash-table.
27102
27103 2004-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
27104
27105         * canlock.el (base64-encode-string): Don't autoload it.
27106
27107 2004-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
27108
27109         * run-at-time.el: Remove useless (require 'itimer),
27110         eval-and-compile and (featurep 'xemacs).
27111
27112 2004-01-16  Jesper Harder  <harder@ifa.au.dk>
27113
27114         * gnus-msg.el (gnus-post-news): Use blank Newsgroups line if
27115         GROUP is a virtual group.
27116
27117 2004-01-16  Steve Youngs  <sryoungs@bigpond.net.au>
27118
27119         * gnus.el: Autoload `message-y-or-n-p'.
27120
27121 2004-01-15  Jesper Harder  <harder@ifa.au.dk>
27122
27123         * pgg-parse.el: Remove unnecessary (require 'custom).
27124
27125         * pgg-def.el: do.
27126
27127         * nnmail.el: do.
27128
27129         * gnus-undo.el: do.
27130
27131         * gnus-picon.el: do.
27132
27133         * gnus-util.el: do.
27134
27135 2004-01-15  Reiner Steib  <Reiner.Steib@gmx.de>
27136
27137         * gnus-sum.el (gnus-pick-line-number): Add autoload.
27138
27139 2004-01-15  Katsumi Yamaoka  <yamaoka@jpl.org>
27140
27141         * mm-decode.el (mm-multiple-handles): Recognize a string as a mime
27142         handle, as well as a list.
27143
27144         * mm-view.el (mm-w3m-cid-retrieve-1): Call itself recursively.
27145         Suggested by ARISAWA Akihiro <ari@mbf.sphere.ne.jp>.
27146         (mm-w3m-cid-retrieve): Simplify.
27147
27148 2004-01-14  Vasily Korytov  <deskpot@myrealbox.com>
27149
27150         * message.el (message-kill-to-signature): Allow prefix arg to
27151         specify number of lines to keep before signature.
27152
27153 2004-01-14  Kai Grossjohann  <kai@emptydomain.de>
27154
27155         * message.el (message-kill-to-signature): Change docstring.
27156
27157 2004-01-14  Katsumi Yamaoka  <yamaoka@jpl.org>
27158
27159         * canlock.el: Always require sha1-el.
27160         (canlock-sha1): Bind sha1-maximum-internal-length to nil.
27161
27162         * message.el: Autoload sha1 only when compiling.
27163
27164         * lpath.el: Bind eudc-protocol for both Emacs and XEmacs; fbind
27165         eudc-expand-inline for XEmacs.
27166
27167 2004-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
27168
27169         * message.el (message-canlock-generate): Require sha1-el.
27170
27171 2004-01-13  Jesper Harder  <harder@ifa.au.dk>
27172
27173         * message.el (message-expand-name): Silence the byte compiler.
27174
27175         * lpath.el: Add detect-coding-system.
27176
27177         * dgnushack.el (dgnushack-compile): Remove obsolete check for
27178         cus-edit.
27179
27180 2004-01-13  Simon Josefsson  <jas@extundo.com>
27181
27182         * gnus-score.el (gnus-score-edit-all-score): Fix prototype.
27183         Invoke gnus-score-mode.
27184         Reported by bojohan+news@dd.chalmers.se (Johan Bockgård).
27185
27186         * gnus-range.el (gnus-compress-sequence): Doc fix.
27187         Suggested by Jim Blandy <jimb@redhat.com> (tiny change).
27188
27189 2004-01-12  Jesper Harder  <harder@ifa.au.dk>
27190
27191         * gnus-srvr.el (gnus-browse-foreign-server): Reduce consing.
27192
27193 2004-01-12  Teodor Zlatanov  <tzz@lifelogs.com>
27194
27195         * spam.el (spam-get-article-as-string): Update to use
27196         gnus-request-article-this-buffer, much simpler.
27197         (spam-get-article-as-buffer): Remove.
27198
27199 2004-01-12  Kai Grossjohann  <kai.grossjohann@mci.com>
27200
27201         * message.el (message-expand-name): Use EUDC if the user uses that.
27202
27203 2004-01-12  Jesper Harder  <harder@ifa.au.dk>
27204
27205         * rfc2047.el (rfc2047-parse-and-decode, rfc2047-decode): Use a
27206         character for the encoding to avoid consing a string.
27207
27208         * rfc2047.el (rfc2047-decode-string): Don't cons a string
27209         unnecessarily.
27210
27211         * mm-util.el (mm-replace-chars-in-string): Remove.
27212
27213         * rfc2047.el (rfc2047-decode): Use mm-subst-char-in-string instead
27214         of mm-replace-chars-in-string.
27215
27216 2004-01-11  Jesper Harder  <harder@ifa.au.dk>
27217
27218         * gnus.sum.el (gnus-remove-odd-characters): Don't cons two new strings.
27219
27220         * mm-util.el (mm-subst-char-in-string): Support inplace.
27221
27222         * gnus-sum.el (gnus-summary-remove-list-identifiers): Don't cons
27223         a new string in every iteration.  Use shy groups.
27224
27225 2004-01-10  Jesper Harder  <harder@ifa.au.dk>
27226
27227         * gnus-srvr.el (gnus-browse-unsubscribe-group):
27228         * gnus-soup.el (gnus-soup-group-brew):
27229         * gnus-msg.el (gnus-put-message):
27230         * gnus-move.el (gnus-group-move-group-to-server):
27231         * gnus-kill.el (gnus-batch-score):
27232         * gnus-group.el (gnus-group-prepare-flat, gnus-group-delete-group)
27233         (gnus-group-update-group-line, gnus-group-insert-group-line-info)
27234         (gnus-group-update-group, gnus-group-read-group)
27235         (gnus-group-make-group, gnus-group-make-help-group)
27236         (gnus-group-make-archive-group, gnus-group-make-directory-group)
27237         (gnus-group-make-empty-virtual, gnus-group-sort-selected-flat)
27238         (gnus-group-sort-by-unread, gnus-group-catchup)
27239         (gnus-group-unsubscribe-group, gnus-group-kill-group)
27240         (gnus-group-yank-group, gnus-group-set-info)
27241         (gnus-group-list-groups):
27242         * gnus.el (gnus-generate-new-group-name):
27243         * gnus-delay.el (gnus-delay-send-queue):
27244         * nnvirtual.el (nnvirtual-catchup-group):
27245         * nnkiboze.el (nnkiboze-generate-group, nnkiboze-generate-group):
27246         * gnus-topic.el (gnus-topic-find-groups, gnus-topic-clean-alist)
27247         (gnus-group-prepare-topics, gnus-topic-check-topology):
27248         * gnus-sum.el (gnus-update-read-articles, gnus-select-newsgroup)
27249         (gnus-mark-xrefs-as-read, gnus-compute-read-articles)
27250         (gnus-summary-walk-group-buffer, gnus-summary-move-article)
27251         (gnus-group-make-articles-read):
27252         * gnus-start.el (gnus-subscribe-newsgroup, gnus-start-draft-setup)
27253         (gnus-group-change-level, gnus-kill-newsgroup)
27254         (gnus-check-bogus-newsgroups, gnus-get-unread-articles-in-group)
27255         (gnus-get-unread-articles, gnus-make-articles-unread)
27256         (gnus-make-ascending-articles-unread): Use accessor
27257         macros (gnus-group-entry, gnus-group-unread, gnus-info-marks etc.)
27258         to get group information for improved readability.
27259
27260
27261 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
27262
27263         * gnus-art.el (article-decode-mime-words, article-babel)
27264         (gnus-article-highlight-signature, gnus-article-add-buttons)
27265         (gnus-signature-toggle): Use gnus-with-article-buffer.
27266
27267         * gnus-art.el (gnus-article-highlight-headers)
27268         (gnus-article-add-buttons-to-head): Use gnus-with-article-headers.
27269
27270         * gnus-art.el (gnus-mm-display-part, gnus-article-wash-status)
27271         (gnus-article-set-globals, gnus-request-article-this-buffer)
27272         (gnus-button-message-id, gnus-article-maybe-hide-headers)
27273         (gnus-mime-view-part-externally, gnus-mime-view-part-internally)
27274         (gnus-mime-display-alternative): Use with-current-buffer.
27275
27276 2004-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
27277
27278         * spam.el (spam-generate-fake-headers): Rewrite to be simpler,
27279         also under 80 char limit, and call gnus-error if needed.
27280         (spam-fetch-article-header): Fix - it was a
27281         buffer-local variable (gnus-newsgroup-data).
27282         (spam-find-spam): Use spam-generate-fake-headers, forget about
27283         spam-insert-fake-headers.
27284         (spam-insert-fake-headers): Remove.
27285
27286 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
27287
27288         * deuglify.el (gnus-article-outlook-unwrap-lines)
27289         (gnus-outlook-rearrange-article)
27290         (gnus-outlook-repair-attribution-outlook)
27291         (gnus-outlook-repair-attribution-block)
27292         (gnus-outlook-repair-attribution-other): Remove redundant
27293         save-excursion.
27294
27295 2004-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
27296
27297         * spam.el (spam-fetch-field-fast, spam-fetch-field-from-fast)
27298         (spam-fetch-field-subject-fast)
27299         (spam-fetch-field-message-id-fast, spam-generate-fake-headers)
27300         (spam-fetch-article-header): Add functions to deal with Gnus
27301         internals for fast retrieval of article header data.
27302         (spam-initialize): Put spam-find-spam in the gnus-summary-prepared-hook.
27303
27304 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
27305
27306         * pop3.el (pop3-md5): Remove.
27307         (pop3-apop): Replace pop3-md5 with md5.
27308
27309         * mm-bodies.el: base64 is always built-in.
27310
27311         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups):
27312         Use with-current-buffer.
27313
27314 2004-01-08  Katsumi Yamaoka  <yamaoka@jpl.org>
27315
27316         * canlock.el (canlock-insert-header): Remove excessive grouping in
27317         regexp.
27318
27319         * gnus-sum.el (gnus-summary-read-document): Ditto.
27320
27321         * gnus-uu.el (gnus-uu-part-number): Ditto.
27322
27323         * html2text.el (html2text-remove-tags): Ditto.
27324         (html2text-format-tags): Ditto.
27325         (html2text-format-single-elements): Ditto.
27326
27327         * mml.el (mml-parse-1): Ditto.
27328
27329 2004-01-08  Jesper Harder  <harder@ifa.au.dk>
27330
27331         * gnus-sum.el (gnus-summary-update-mark): Revert previous change.
27332
27333         * gnus-group.el (gnus-group-mark-group): Fix for multibyte marks.
27334
27335         * gnus-sum.el (gnus-summary-update-mark): Fix for multibyte marks.
27336
27337         * gnus-util.el (gnus-replace-in-string): Remove Emacs 20 code.
27338
27339 2003-11-15  Simon Josefsson  <jas@extundo.com>
27340
27341         * pgg-gpg.el (pgg-gpg-lookup-all-secret-keys)
27342         (pgg-gpg-lookup-key): Use regexp match instead of
27343         split-string (split-string is different between emacs 21.2 and
27344         22.1).  Reported by ultrasoul@ultrasoul.com (David D. Smith).
27345
27346 2004-01-08  Jesper Harder  <harder@ifa.au.dk>
27347
27348         * gnus-art.el (gnus-mime-view-all-parts)
27349         (gnus-article-part-wrapper, gnus-article-view-part):
27350         Use with-current-buffer.
27351
27352 2004-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
27353
27354         * spam.el (spam-disable-spam-split-during-ham-respool)
27355         (spam-spamoracle-database, spam-cache-lookups)
27356         (spam-split-last-successful-check, spam-clear-cache, spam-xor)
27357         (spam-group-ham-mark-p, spam-group-spam-mark-p)
27358         (spam-group-ham-marks, spam-group-spam-marks)
27359         (spam-group-spam-contents-p, spam-group-ham-contents-p)
27360         (spam-list-of-processors, spam-list-of-statistical-checks): Fix doc,
27361         also add spam-use-blackholes to the statistical checks.
27362         (spam-fetch-field-fast): Add interface to fetching fields, may
27363         become a macro.
27364         (spam-fetch-field-from-fast, spam-fetch-field-subject-fast)
27365         (spam-fetch-field-message-id-fast): Use spam-fetch-field-fast.
27366         (spam-insert-fake-headers): Fake an article when needed.
27367         (spam-find-spam): Fake article when possible.
27368         (spam-check-blackholes, spam-check-BBDB, spam-from-listed-p)
27369         (spam-check-bogofilter-headers): Use message-fetch-field instead
27370         of nnmail-fetch-field.
27371
27372 2004-01-07  Reiner Steib  <Reiner.Steib@gmx.de>
27373
27374         * gnus-score.el (gnus-score-find-trace): Add `k' (kill-buffer).
27375
27376 2004-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
27377
27378         * spam.el (spam-split): Do not require spam-use-CHECK to be
27379         enabled if that check is passed to spam-split explicitly; also
27380         fix so 'spam doesn't get converted to spam-split-group when
27381         spam-split-symbolic-return is t.
27382         (spam-find-spam): Find registrations of the article and use those
27383         instead of re-running spam-split to find the spam/ham
27384         classification of the article.
27385         (spam-log-processing-to-registry, spam-log-registered-p)
27386         (spam-log-unregistration-needed-p, spam-log-undo-registration):
27387         Use gnus-error instead of gnus-message.
27388         (spam-log-registration-type): Add function to determine the
27389         classification of a message based on registry entries; will
27390         return nil if both 'spam and 'ham are found.
27391         (spam-check-BBDB): Expand all the BBDB macros here so we can have
27392         a reasonably fast local cache without the loading errors.
27393         (spam-cache-lookups): Set to t by default.
27394         (spam-find-spam): Don't try to guess spam-cache-lookups.
27395         (spam-enter-whitelist, spam-enter-blacklist): Clear the
27396         spam-caches entry.
27397         (spam-filelist-build-cache, spam-filelist-check-cache):
27398         Fix caching of whitelist/blacklist entries.
27399         (spam-check-whitelist, spam-check-blacklist):
27400         Invoke spam-from-listed-p with a type, not a cache variable.
27401         (spam-from-listed-p): Wrap around spam-filelist-check-cache.
27402
27403 2004-01-07  Jesper Harder  <harder@ifa.au.dk>
27404
27405         * message.el (message-cite-prefix-regexp): Use with-syntax-table.
27406
27407         * nnmail.el (nnmail-split-fancy): do.
27408
27409         * mml.el (mml-parse): do.
27410
27411         * gnus-score.el (gnus-enter-score-words-into-hashtb)
27412         (gnus-score-adaptive): do.
27413
27414 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
27415
27416         * gnus-art.el (gnus-treat-emphasize): Ignore Emacs version number.
27417         (gnus-mime-button-map): Don't set keymap parent.
27418         (gnus-button-ctan-directory-regexp): Use shy grouping.
27419         (gnus-prev-page-map): Don't set keymap parent.
27420         (gnus-prev-page-map): Remove duplicated one.
27421         (gnus-next-page-map): Don't set keymap parent.
27422         (gnus-mime-security-button-map): Ditto.
27423
27424         * nnheader.el (nnheader-directory-files-is-safe): Ignore Emacs
27425         version number.
27426
27427         * sha1-el.el (sha1-string-external): Use with-temp-buffer.
27428
27429 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
27430
27431         * canlock.el (canlock-sha1-function): Remove.
27432         (canlock-sha1-function-for-verify): Remove.
27433         (canlock-openssl-program): Remove.
27434         (canlock-openssl-args): Remove.
27435         (canlock-ignore-errors): Remove.
27436         (canlock-sha1-with-openssl): Remove.
27437         (canlock-sha1): Use sha1 instead of to call canlock-sha1-function.
27438         (canlock-verify): Don't use canlock-ignore-errors.
27439
27440         * sha1-el.el (sha1-string-external): Make it can return a string
27441         in binary form.
27442         (sha1-region-external): Ditto.
27443         (sha1-string-internal): Ditto.
27444         (sha1-region-internal): Ditto.
27445         (sha1-region): Ditto.
27446         (sha1-string): Ditto.
27447         (sha1): Ditto.
27448
27449 2004-01-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
27450
27451         * spam.el (spam-report-articles-gmane): New command.
27452
27453 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
27454
27455         * gnus.el: Don't make unnecessary *Group* buffer when loading.
27456
27457         * run-at-time.el (run-at-time-saved): Remove.
27458         (run-at-time): Doc fix.
27459
27460 2004-01-07  Jesper Harder  <harder@ifa.au.dk>
27461
27462         * gnus-sum.el (gnus-summary-limit-to-replied): New command.
27463         (gnus-summary-limit-map): Add it.
27464         (gnus-summary-make-menu-bar): do.
27465
27466 2004-01-06  Teodor Zlatanov  <tzz@lifelogs.com>
27467
27468         * spam.el (spam-cache-lookups, spam-caches, spam-clear-cache):
27469         Make attempt at some caching support (done for BBDB only now).
27470         (spam-find-spam): Set spam-cache-lookups if there are more than 2
27471         addresses to be checked.
27472         (spam-clear-cache-BBDB): Add function, to be invoked by
27473         bbdb-change-hook, and triggering spam-clear-cache of 'spam-use-BBDB.
27474         (spam-check-BBDB): Check and use the caches, if
27475         spam-cache-lookups is on, remove superfluous (provide).
27476
27477 2004-01-06  Reiner Steib  <Reiner.Steib@gmx.de>
27478
27479         * gnus-art.el (gnus-treat-ansi-sequences): Change default.
27480
27481 2004-01-07  Steve Youngs  <sryoungs@bigpond.net.au>
27482
27483         * run-at-time.el (run-at-time-saved): Move to after the definition
27484         of `run-at-time'.
27485
27486         * dgnushack.el: Autoload `font-lock-fontify-buffer' in XEmacs.
27487
27488 2004-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
27489
27490         * gnus-art.el (gnus-article-wash-html-with-w3m): Don't use
27491         mm-w3m-local-map-property.
27492
27493         * mm-view.el (mm-w3m-mode-map): Remove.
27494         (mm-w3m-local-map-property): Remove.
27495         (mm-inline-text-html-render-with-w3m): Don't use
27496         mm-w3m-local-map-property.
27497
27498 2004-01-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
27499
27500         * run-at-time.el: New file.
27501
27502         * dgnushack.el (dgnushack-compile): Don't compile run-at-time
27503         under Emacs.
27504
27505         * gnus.el ((fboundp 'gnus-set-text-properties)): Remove definition
27506         of gnus-set-text-properties.
27507
27508         * gnus-uu.el (gnus-uu-save-article): Ditto.
27509
27510         * gnus-salt.el (gnus-carpal-setup-buffer): Ditto.
27511
27512         * gnus-cite.el (gnus-cite-parse): Ditto.
27513
27514         * gnus-art.el (gnus-button-push): Use set-text-properties instead
27515         of gnus-.
27516
27517         * gnus-xmas.el (run-at-time): Require run-at-time.
27518
27519         * gnus.el: Change calls to nnheader-run-at-time and
27520         password-run-at-time throughout to use run-at-time directly.
27521
27522         * password.el: Remove definition of run-at-time.
27523
27524         * nnheaderxm.el: Remove definition of run-at-time.
27525
27526 2004-01-05  Karl Pflästerer  <sigurd@12move.de>  (tiny change)
27527
27528         * mml.el (mml-minibuffer-read-disposition): Show attachment type
27529         in prompt.
27530
27531 2004-01-06  Steve Youngs  <sryoungs@bigpond.net.au>
27532
27533         * messagexmas.el (message-xmas-redefine): Alias
27534         `message-make-caesar-translation-table' to
27535         ``message-xmas-make-caesar-translation-table' regardless of XEmacs
27536         version.
27537
27538         * gnus-xmas.el (gnus-xmas-set-text-properties): Removed.
27539         (gnus-xmas-define): Don't alias `gnus-set-text-properties' to
27540         `gnus-xmas-set-text-properties'.
27541         (gnus-xmas-redefine): Don't alias `gnus-completing-read' to
27542         `gnus-xmas-completing-read'.
27543         (gnus-xmas-completing-read): Removed.
27544         (gnus-xmas-open-network-stream): Removed.
27545
27546         * gnus-ems.el (gnus-mode-line-modified): Don't conditionalize on
27547         XEmacs version.
27548
27549         * dns.el (dns-make-network-process): Use `open-network-stream'
27550         instead of `gnus-xmas-open-network-stream'.
27551
27552         * dgnushack.el: Remove some XEmacs 21.1 specific stuff.
27553
27554         * .cvsignore: Add auto-autoloads.el, custom-load.el.
27555
27556 2004-01-06  Jesper Harder  <harder@ifa.au.dk>
27557
27558         * gnus-art.el (gnus-mime-display-alternative)
27559         (gnus-insert-mime-button, gnus-insert-mime-security-button)
27560         (gnus-insert-prev-page-button, gnus-insert-next-page-button):
27561         Don't use gnus-local-map-property.
27562
27563         * gnus-util.el (gnus-local-map-property): Remove.
27564
27565         * mm-view.el (mm-view-pkcs7-decrypt):
27566         Replace gnus-completing-read-maybe-default with completing-read.
27567
27568         * gnus-util.el (gnus-completing-read): do.
27569         (gnus-completing-read-maybe-default): Remove.
27570
27571 2004-01-06  Steve Youngs  <sryoungs@bigpond.net.au>
27572
27573         * password.el: Only autoload `run-at-time' if not XEmacs.
27574         Only autoload the itimer functions if XEmacs.
27575
27576 2004-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
27577
27578         * gnus-xmas.el (gnus-xmas-define): Defun char-width for non-MULE
27579         XEmacsen.
27580
27581         * dgnushack.el: Autoload executable-find for XEmacs.
27582
27583 2004-01-06  Jesper Harder  <harder@ifa.au.dk>
27584
27585         * gnus-art.el (gnus-read-string): Remove.
27586         (gnus-summary-pipe-to-muttprint): Replace gnus-read-string with
27587         read-string.
27588
27589 2004-01-05  Teodor Zlatanov  <tzz@lifelogs.com>
27590
27591         * netrc.el: Autoload password-read.
27592         (netrc): Add configuration group.
27593         (netrc-encoding-method, netrc-openssl-path):
27594         Add variables for encoding and decoding of files with symmetric
27595         ciphers.
27596         (netrc-encode): Add assistant function to encode a file with
27597         netrc-encoding-method.
27598         (netrc-parse): Add interactive parameter, added optional
27599         decoding if netrc-encoding-method is non-nil but otherwise
27600         behavior is standard.
27601         (netrc-encrypting-method, netrc-encrypt, netrc-parse):
27602         Do s/encode/encrypt/ everywhere.
27603
27604         * spam.el: Remove executable-find autoload.
27605
27606 2004-01-05  Jesper Harder  <harder@ifa.au.dk>
27607
27608         * gnus-registry.el: Remove Emacs 20 hash table compatibility code.
27609
27610         * gnus-uu.el (gnus-uu-post-encoded): bury-buffer is always fbound.
27611
27612 2004-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
27613
27614         * gnus-art.el (gnus-treat-ansi-sequences)
27615         (article-treat-ansi-sequences): New variable and function.
27616         Suggested by Dan Jacobson <jidanni@jidanni.org>.
27617
27618         * gnus-sum.el (gnus-summary-wash-map, gnus-summary-make-menu-bar):
27619         Use it.
27620
27621 2004-01-05  Jesper Harder  <harder@ifa.au.dk>
27622
27623         * mm-util.el (mm-quote-arg): Remove.
27624
27625         * mm-decode.el (mm-mailcap-command): Replace mm-quote-arg with
27626         shell-quote-argument.
27627
27628         * gnus-uu.el (gnus-uu-command): do.
27629
27630         * gnus-sum.el (gnus-summary-insert-pseudos): do.
27631
27632         * ietf-drums.el (ietf-drums-token-to-list): Replace mm-make-char
27633         with make-char.
27634
27635         * mm-util.el (mm-make-char): Remove.
27636
27637         * mml.el (mml-mode): Replace gnus-add-minor-mode with
27638         add-minor-mode.
27639
27640         * gnus-undo.el (gnus-undo-mode): do.
27641
27642         * gnus-topic.el (gnus-topic-mode): do.
27643
27644         * gnus-sum.el (gnus-dead-summary-mode): do.
27645
27646         * gnus-start.el (gnus-slave-mode): do.
27647
27648         * gnus-salt.el (gnus-binary-mode, gnus-pick-mode): do.
27649
27650         * gnus-ml.el (gnus-mailing-list-mode): do.
27651
27652         * gnus-gl.el (gnus-grouplens-mode): do.
27653
27654         * gnus-draft.el (gnus-draft-mode): do.
27655
27656         * gnus-dired.el (gnus-dired-mode): do.
27657
27658         * gnus-ems.el (gnus-add-minor-mode): Remove.
27659
27660         * gnus-spec.el (gnus-correct-length, gnus-correct-substring):
27661         Replace gnus-char-width with char-width.
27662
27663         * gnus-ems.el (gnus-char-width): Remove.
27664
27665         * gnus-spec.el (gnus-correct-length, gnus-correct-substring):
27666         Replace gnus-char-width with char-width.
27667
27668         * gnus-ems.el (gnus-char-width): Remove.
27669
27670         * spam-stat.el (with-syntax-table): Remove with-syntax-table
27671         definition.
27672         Remove Emacs 20 hash table compatibility code.
27673
27674         * rfc2047.el (with-syntax-table): Remove with-syntax-table Emacs
27675         20 compatibility code.
27676
27677         * spam.el (spam-point-at-eol): Replace with point-at-eol.
27678
27679         * smime.el (smime-point-at-eol): Replace with point-at-eol.
27680
27681         * rfc2047.el (rfc2047-point-at-bol, rfc2047-point-at-eol):
27682         Replace with point-at-{eol,bol}.
27683
27684         * netrc.el (netrc-point-at-eol): Replace with point-at-eol.
27685
27686         * imap.el (imap-point-at-eol): Replace with point-at-eol.
27687
27688         * flow-fill.el (fill-flowed-point-at-bol)
27689         (fill-flowed-point-at-eol): Replace with point-at-{eol,bol}.
27690
27691         * gnus-util.el (gnus-point-at-bol, gnus-point-at-eol): Remove.
27692         Replace with point-at-{eol,bol} throughout all files.
27693
27694 2004-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
27695
27696         * ntlm.el (ntlm-string-as-unibyte): New macro.
27697         (ntlm-build-auth-response): Use it.
27698
27699         Remove Emacs 20 stuff:
27700         * dgnushack.el (dgnushack-compile): Don't modify max-specpdl-size.
27701         (butlast, mapc, remove): Remove the compiler macros.
27702         * gnus-msg.el (gnus-summary-news-other-window): Use remove instead
27703         of delq and copy-sequence.
27704         * gnus-art.el (popup-menu): Remove the compiler macro.
27705         * nnmail.el (nnmail-split-fancy): Don't support customizing with
27706         Emacs 20.
27707
27708 2004-01-05  Simon Josefsson  <jas@extundo.com>
27709
27710         * ntlm.el: Fix namespace.  Change smb-passwd-hash into
27711         ntlm-smb-passwd-hash, smb-owf-encrypt into ntlm-smb-owf-encrypt,
27712         smb-passwd-hash into ntlm-smb-passwd-hash, smbdes-e-p16 into
27713         ntlm-smb-des-e-p16, smbdes-e-p24 into ntlm-smb-des-e-p24, smbhash
27714         into ntlm-smb-hash, smb-sp8 into ntlm-smb-sp8, smb-str-to-key into
27715         ntlm-smb-str-to-key, smb-dohash into ntlm-smb-dohash, smb-perm1
27716         into ntlm-smb-perm1, smb-perm2 into ntlm-smb-perm2, smb-perm3 into
27717         ntlm-smb-perm3, smb-perm4 into ntlm-smb-perm4, smb-perm5 into
27718         ntlm-smb-perm5, smb-perm6 into ntlm-smb-perm6, smb-sc into
27719         ntlm-smb-sc, smb-sbox into ntlm-smb-sbox, string-permute into
27720         ntlm-string-permute, string-lshift into ntlm-string-lshift,
27721         string-xor into ntlm-string-xor.
27722         Suggested by Jesper Harder <harder@myrealbox.com>.
27723
27724         * ntlm.el: Don't include poem.
27725
27726         * md4.el (print-int32, print-string-hexa): Remove.
27727         Suggested by Jesper Harder <harder@myrealbox.com>.
27728
27729         * sasl-ntlm.el, ntlm.el, md4.el: New files.
27730
27731         * hmac-md5.el (md5-binary): Fix byte compile warning.  (This
27732         probably breaks emacs with DL patch, but do we care? Is anyone
27733         still using the DL stuff?)
27734
27735         * sieve-manage.el: Use the password package.
27736         (sieve-manage-read-passwd): Remove.
27737         (sieve-manage-interactive-login): Use password.  Re-add
27738         condition-case around loop.
27739
27740         * pgg.el (pgg-passphrase-cache, pgg-run-at-time): Remove.
27741         (pgg-add-passphrase-cache, pgg-remove-passphrase-cache):
27742         Use the password package.
27743
27744 2003-02-19  Simon Josefsson  <jas@extundo.com>
27745
27746         * sieve-manage.el (sieve-sasl-auth): Quote optional initial SASL
27747         token.
27748
27749 2002-08-07  Simon Josefsson  <jas@extundo.com>
27750
27751         * sieve-manage.el (require): Use SASL, not RFC2104/MD5.
27752         (sieve-manage-authenticators)
27753         (sieve-manage-authenticator-alist): Add some SASL mechs.
27754         (sieve-sasl-auth): New function.
27755         (sieve-manage-cram-md5-auth)
27756         (sieve-manage-plain-auth): Rewrite using SASL library.
27757         (sieve-manage-digest-md5-p, sieve-manage-digest-md5-auth)
27758         (sieve-manage-scram-md5-p, sieve-manage-scram-md5-auth)
27759         (sieve-manage-ntlm-p, sieve-manage-ntlm-auth)
27760         (sieve-manage-login-p, sieve-manage-login-auth): Add wrappers.
27761
27762 2004-01-05  Simon Josefsson  <jas@extundo.com>
27763
27764         * sasl.el, sasl-cram.el, sasl-digest.el, hmac-md5.el, hmac-def.el:
27765         New files.
27766
27767 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
27768
27769         * gnus-group.el (gnus-no-groups-message): Update.
27770
27771         * gnus-sum.el (gnus-summary-insert-new-articles): Remove .
27772
27773 2003-11-09  Simon Josefsson  <jas@extundo.com>
27774
27775         * imap.el: Support for ID IMAP extension (RFC 2971).
27776         (imap-local-variables): Add imap-id.
27777         (imap-id): New variable.
27778         (imap-id): New function.
27779         (imap-parse-response): Parse untagged ID response.
27780         * nnimap.el (nnimap-id): New variable.
27781         (nnimap-open-connection): Use it.
27782
27783 2003-12-28  Simon Josefsson  <jas@extundo.com>
27784
27785         * gnus-score.el (gnus-score-edit-all-score): New.
27786         * gnus-group.el (gnus-group-score-map): Bind it to W e.
27787
27788 2004-01-04  Simon Josefsson  <jas@extundo.com>
27789
27790         * password.el: Add.
27791
27792 2004-01-04  Mario Lang  <lang@zid.tugraz.at>
27793
27794         * dns.el (dns-query-types): Fix typo.
27795         (dns-query-types): New function.
27796         (dns-read-type): Add support for AAAA records, see RFC 3596.  Parse MX,
27797         PTR and SOA replies, see RFC 1035.
27798
27799 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
27800
27801         * gnus.el (gnus-logo-color-style): Change colors to `no'.
27802
27803         * Move to Changelog.2.
27804
27805 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
27806
27807         * gnus.el (gnus-version-number): Bump version.
27808
27809 2004-01-04  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
27810
27811         * gnus.el: No Gnus v0.1 is released.
27812
27813 2004-01-04  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
27814
27815         * gnus.el: No Gnus v0.0 is released.
27816
27817 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
27818
27819         * gnus.el (gnus-version-number): Bump.
27820         (gnus-version): No.
27821
27822 See ChangeLog.2 for earlier changes.
27823
27824   Copyright (C) 2004-2014 Free Software Foundation, Inc.
27825
27826   This file is part of GNU Emacs.
27827
27828   GNU Emacs is free software: you can redistribute it and/or modify
27829   it under the terms of the GNU General Public License as published by
27830   the Free Software Foundation, either version 3 of the License, or
27831   (at your option) any later version.
27832
27833   GNU Emacs is distributed in the hope that it will be useful,
27834   but WITHOUT ANY WARRANTY; without even the implied warranty of
27835   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
27836   GNU General Public License for more details.
27837
27838   You should have received a copy of the GNU General Public License
27839   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
27840
27841 ;; Local Variables:
27842 ;; coding: utf-8
27843 ;; fill-column: 79
27844 ;; add-log-time-zone-rule: t
27845 ;; End: