message.el (message-change-subject): Really check whether the subject changed
[gnus] / lisp / ChangeLog
1 2014-12-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2
3         * message.el (message-change-subject): Really check whether the subject
4         changed.
5
6 2014-12-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7
8         * mailcap.el (mailcap-mime-data): Add doc-view-mode as a viewer for
9         PDFs.
10         (mailcap-view-mime): New function.
11
12 2014-12-01  Glenn Morris  <rgm@gnu.org>
13
14         * gnus-cloud.el (gnus-cloud): Add :version tag.
15
16 2014-11-27  Katsumi Yamaoka  <yamaoka@jpl.org>
17
18         * gnus-art.el (gnus-use-idna):
19         * gnus-sum.el (gnus-summary-idna-message):
20         * message.el (message-use-idna):
21         Protect against nil value for idna-program.
22
23         * message.el (message-use-idna): Load Mule-UCS for XEmacs 21.4.
24
25 2014-11-26  John Mastro  <john.b.mastro@gmail.com>  (tiny change)
26
27         * auth-source.el (auth-source-macos-keychain-search-items): Return
28         result of `auth-source-macos-keychain-result-append' (bug#19074).
29
30 2014-11-25  Glenn Morris  <rgm@gnu.org>
31
32         * gnus-start.el (gnus-save-newsrc-file-check-timestamp):
33         Add :version tag.
34
35 2014-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
36
37         * pop3.el (pop3-open-server): Warn unless encrypted.
38
39         * nnimap.el (nnimap-open-connection-1): Warn unless encrypted.
40
41 2014-11-18  Paul Eggert  <eggert@cs.ucla.edu>
42
43         Port new time stamp handling to Emacs 23.2.
44         This fix is for Gnus.  Problem reported by Katsumi Yamaoka.
45         * time-date.el (time-add, time-subtract, time-less-p):
46         Use eval-and-compile, not eval-when-compile.
47
48 2014-11-17  Albert Krewinkel  <albert@zeitkraut.de>
49
50         * message.el (message-valid-fqdn-regexp): Add non-internaional new
51         TLDs.
52
53 2014-11-17  Paul Eggert  <eggert@cs.ucla.edu>
54
55         Port new time stamp handling to old Emacs and to XEmacs.
56         This is needed for Gnus, which copies time-date.el and which
57         runs on older Emacs implementations.
58         * time-date.el (with-decoded-time-value):
59         Handle 'nil' and floating-point arg more compatibly with new Emacs.
60         (encode-time-value, with-decoded-time-value):
61         Obsolete only if new Emacs.
62         (time-add, time-subtract, time-less-p): Define if not new Emacs.
63
64         Improve time stamp handling, and be more consistent about it.
65         This implements a suggestion made in:
66         http://lists.gnu.org/archive/html/emacs-devel/2014-10/msg00587.html
67         Among other things, this means timer.el no longer needs to
68         autoload the time-date module.
69         * time-date.el (seconds-to-time, days-to-time, time-since)
70         (with-decoded-time-value):
71         Treat 'nil' as current time.  This is mostly for XEmacs.
72         (encode-time-value, with-decoded-time-value): Obsolete.
73         (time-add, time-subtract, time-less-p): Use no-op autoloads, for
74         XEmacs.  Define only if XEmacs, as they're now C builtins in Emacs.
75
76 2014-11-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
77
78         * gnus-sum.el (gnus-summary-exit-no-update): Don't query about
79         discarding changes in ephemeral groups.
80
81         * ietf-drums.el (ietf-drums-parse-address): Don't issue warnings about
82         things the user isn't interested in.
83
84 2014-11-13  Julien Danjou  <jd@abydos>
85
86         * gnus-notifications.el (gnus-notifications-notify): Provide both
87         app-icon and image-path.
88
89 2014-11-10  Kenjiro NAKAYAMA  <nakayamakenjiro@gmail.com>
90
91         * mm-url.el (mm-url-encode-multipart-form-data):
92         Restore to handle "multipart/form-data" by eww.
93
94 2014-11-07  Tassilo Horn  <tsdh@gnu.org>
95
96         * gnus-start.el (gnus-activate-group): Fix typo reported by Tim
97         Landscheidt.
98
99 2014-10-29  Paul Eggert  <eggert@cs.ucla.edu>
100
101         Simplify use of current-time and friends.
102         * gnus-delay.el (gnus-delay-article):
103         * gnus-sum.el (gnus-summary-read-document):
104         * gnus-util.el (gnus-seconds-today, gnus-seconds-month):
105         * message.el (message-make-expires-date):
106         Omit unnecessary call to current-time.
107         * gnus-util.el (gnus-float-time): Simplify to an alias because
108         time-to-seconds now behaves like float-time with respect to nil arg.
109         (gnus-seconds-year): Don't call current-time twice to get the current
110         time stamp, as this can lead to inconsistent results.
111         * time-date.el (time-to-seconds) [!float-time]:
112         Use current time if arg is nil, to be compatible with float-time.
113         (time-date--day-in-year): New function, with most of the guts of
114         the old time-to-day-in-year.
115         (time-to-day-in-year): Use it.
116         (time-to-days): Use it, to avoid decoding the same time stamp twice.
117
118 2014-10-27  Katsumi Yamaoka  <yamaoka@jpl.org>
119
120         * gnus.el (gnus-mode-line-buffer-identification):
121         Don't add image data for a non-graphic display (bug#18813).
122
123 2014-10-24  Katsumi Yamaoka  <yamaoka@jpl.org>
124
125         * gnus.el (gnus-mode-line-buffer-identification): Don't shadow
126         load-path, it blocks autoloading of find-image (bug#18813).
127
128 2014-10-24  enami tsugutomo  <tsugutomo.enami@jp.sony.com>
129
130         * nnimap.el (nnimap-wait-for-response): Ignore NOOP response requested
131         to keep connection open (bug#18728).
132
133 2014-10-20  Glenn Morris  <rgm@gnu.org>
134
135         * Merge in all changes up to 24.4 release.
136
137 2014-10-15  Jorge A. Alfaro-Murillo  <jorge.alfaro-murillo@yale.edu>  (tiny change)
138
139         * message.el (message-insert-signature): Use `newline' instead of
140         inserting explicit "\n".
141
142 2014-10-15  Sylvain Chouleur  <sylvain.chouleur@gmail.com>
143
144         * gnus-icalendar.el: Support vcal format timezones.
145         (gnus-icalendar-event--decode-datefield): Use icalendar functions to
146         compute dates with associated timezone.
147         (gnus-icalendar-event-from-ical): Compute all timezones.
148
149 2014-10-14  Teodor Zlatanov  <tzz@lifelogs.com>
150
151         * gnus-start.el (gnus-save-newsrc-file-check-timestamp): New option to
152         check the newsrc.eld file's timestamp before saving it.
153         (gnus-save-newsrc-file): Use it, with a prompt when the newsrc.eld
154         timestamp has changed to be newer.
155
156 2014-10-06  Jan Tatarik  <jan.tatarik@gmail.com>
157
158         * gnus-icalendar.el (gnus-icalendar-identities):
159         Include message-alternative-emails.
160
161 2014-10-05  Katsumi Yamaoka  <yamaoka@jpl.org>
162
163         * ntlm.el (ntlm-string-make-unibyte, ntlm-secure-hash):
164         New compatibility functions.
165         (ntlm-build-auth-response): Use them.
166
167 2014-10-04  Thomas Fitzsimmons  <fitzsim@fitzsim.org>
168
169         * ntlm.el (ntlm-build-auth-request):
170         Add NTLM2 Session support.  (Bug#15603)
171
172 2014-10-04  Alan Schmitt  <alan.schmitt@polytechnique.org>  (tiny change)
173
174         * nnimap.el (nnimap-process-expiry-targets): Reverse the list of
175         expired messages only when it was built in reverse order.
176
177 2014-10-04  Peter Münster  <pmlists@free.fr>  (tiny change)
178
179         * gnus-delay.el (gnus-delay-send-queue): Remove `gnus-delay-header'
180         last so it can be used in `message-send-hook'.
181
182 2014-09-29  Daiki Ueno  <ueno@gnu.org>
183
184         * mml.el (mml-parse-1): Error out if unknown mode is specified in
185         <#secure> tag (bug#18513).
186
187 2014-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
188
189         * parse-time.el: Require cl when compiling.
190
191 2014-09-26  Katsumi Yamaoka  <yamaoka@jpl.org>
192
193         Use cl-lib as much as possible following the 2014-09-26 change
194         in the Emacs trunk.
195         * parse-time.el: Try requiring cl-lib.
196         (parse-time-incf): Alias to cl-incf or incf.
197         (digit-char-p): Remove.
198         (parse-time-integer): Alias to cl-parse-integer or the one defined.
199         (parse-integer): Rename to parse-time-integer.
200         (parse-time-tokenize, parse-time-rules, parse-time-string)
201         Use parse-time-incf and parse-time-integer.
202
203 2014-09-11  Paul Eggert  <eggert@cs.ucla.edu>
204
205         * gnus-cloud.el (gnus-cloud-parse-version-1): Fix misspelling
206         of ":delete".
207
208 2014-08-26  Katsumi Yamaoka  <yamaoka@jpl.org>
209
210         * gnus-art.el (gnus-article-browse-html-save-cid-content)
211         (gnus-article-browse-html-parts):
212         Revert last change that breaks links other than cid contents.
213
214 2014-08-26  Katsumi Yamaoka  <yamaoka@jpl.org>
215
216         * gnus-art.el (gnus-article-browse-html-save-cid-content)
217         (gnus-article-browse-html-parts): Make cid file names relative.
218
219 2014-08-21  Katsumi Yamaoka  <yamaoka@jpl.org>
220
221         * mm-view.el (mm-display-inline-fontify): Make the working buffer
222         temporarily displayed when running a mode function (at least org-mode
223         requires it).
224
225 2014-08-14  Alan Schmitt  <alan.schmitt@polytechnique.org>
226
227         * gnus-sum.el (gnus-summary-expire-articles): Functions registered to
228         the gnus-summary-article-expire-hook should be told where the function
229         is going. In particular, the Gnus registry might want to know.
230
231 2014-08-12  Stefan Monnier  <monnier@iro.umontreal.ca>
232
233         * gnus-art.el (gnus-hidden-properties): Drop the evil `intangible'.
234
235 2014-08-06  Katsumi Yamaoka  <yamaoka@jpl.org>
236
237         * gnus-sum.el (gnus-summary-expire-articles): Revert.
238
239 2014-08-05  Eric Abrahamsen  <eric@ericabrahamsen.net>
240
241         * gnus-sum.el (gnus-summary-expire-articles): Functions registered to
242         the gnus-summary-article-expire-hook should be told where the function
243         is going. In particular, the Gnus registry might want to know.
244
245 2014-08-03  Paul Eggert  <eggert@cs.ucla.edu>
246
247         Don't mishandle year-9999 dates (Bug#18176).
248         * parse-time.el (parse-time-rules):
249         Allow years up to most-positive-fixnum.
250         * time-date.el (date-to-time):
251         Pass "Specified time is not representable" errors through.
252
253 2014-07-31  Tassilo Horn  <tsdh@gnu.org>
254
255         * gnus-msg.el (gnus-inews-insert-gcc): Allow `gcc-self' to be a list of
256         groups and t.
257
258 2014-07-22  Katsumi Yamaoka  <yamaoka@jpl.org>
259
260         * gnus-utils.el (gnus-recursive-directory-files):
261         Unify hard or symbolic links (bug#18063).
262
263 2013-07-17  Albert Krewinkel  <albert@zeitkraut.de>
264
265         * gnus-msg.el (gnus-configure-posting-style):
266         Allow string replacements in values when matching against a header.
267
268 2014-07-07  Katsumi Yamaoka  <yamaoka@jpl.org>
269
270         * gnus-start.el (gnus-dribble-read-file): Don't stop the auto-saving of
271         the dribble buffer even when it is shrunk a lot.
272         <http://thread.gmane.org/gmane.emacs.gnus.user/16923>
273
274 2014-06-26  Glenn Morris  <rgm@gnu.org>
275
276         * mm-util.el (help-function-arglist): Remove outdated declaration.
277
278 2014-06-24  Andreas Schwab  <schwab@linux-m68k.org>
279
280         * html2text.el (html2text-get-attr): Rewrite to handle spaces in quoted
281         attribute values.  (Bug#17834)
282
283 2013-06-22  Dmitry Antipov  <dmantipov@yandex.ru>
284
285         * gnus-sum.el (gnus-summary-edit-article-done):
286         Prefer point-marker to copy-marker of point.
287
288 2014-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
289
290         * Makefile.in (install-el, install-el-elc): Compress .el files.
291         (uninstall): Remove compressed .el files.
292
293 2014-06-05  Katsumi Yamaoka  <yamaoka@jpl.org>
294
295         * gnus-art.el (gnus-article-edit-part): Don't modifiy markers.
296         (gnus-article-read-summary-keys):
297         Don't bug out when there is no article in the summary buffer.
298         (gnus-mime-buttonize-attachments-in-header):
299         Improve criterion that finds parts to display.
300
301         * gnus-art.el (gnus-mm-display-part):
302         * mm-decode.el (mm-shr):
303         * mm-view.el (mm-inline-text-html-render-with-w3m, mm-inline-text)
304         (mm-insert-inline): Revert last changes.
305
306 2014-06-05  Katsumi Yamaoka  <yamaoka@jpl.org>
307
308         * gnus-art.el (gnus-mm-display-part):
309         * mm-decode.el (mm-shr):
310         * mm-view.el (mm-inline-text-html-render-with-w3m, mm-inline-text)
311         (mm-insert-inline): Set insertion type of end-marker, not only
312         start-marker, of undisplayer so as to stay after inserted text.
313
314 2014-06-02  Andreas Schwab  <schwab@linux-m68k.org>
315
316         * html2text.el (html2text-get-attr): Fix typo when splitting value from
317         attribute. (Bug#17613)
318
319 2014-05-29  Stefan Monnier  <monnier@iro.umontreal.ca>
320
321         * mm-view.el (mm-display-inline-fontify): Use font-lock-ensure.
322         * gnus-cite.el (gnus-message-citation-mode): Use font-lock-flush.
323
324 2014-05-15  Katsumi Yamaoka  <yamaoka@jpl.org>
325
326         * gnus-art.el (gnus-mime-inline-part, gnus-mm-display-part): Don't
327         delete next part button; keep spacing between buttons.
328
329 2014-05-14  Katsumi Yamaoka  <yamaoka@jpl.org>
330
331         * gnus-art.el (gnus-mime-inline-part, gnus-mm-display-part):
332         Work for the last MIME part in an article.
333         (gnus-mime-display-single): Suppress excessive newlines between parts.
334
335         * mm-uu.el (mm-uu-dissect): Assume that separators may be accompanied
336         by leading or trailing newline.
337
338 2014-05-12  Sam Steingold  <sds@gnu.org>
339
340         * time-date.el (seconds-to-string): New function to pretty print time
341         delay in seconds.
342
343 2014-05-09  Katsumi Yamaoka  <yamaoka@jpl.org>
344
345         * gnus-art.el (gnus-mm-display-part): Don't put article out of sight
346         while prompting a user for a file name, etc.
347         (gnus-mime-display-single): Display part with a common appearance no
348         matter whether MIME button is omitted or not; don't add duplicate entry
349         to gnus-article-mime-handle-alist.
350         (gnus-mime-buttonize-attachments-in-header): Use copied buttons.
351
352 2014-05-08  Adam Sjøgren  <asjo@koldfront.dk>
353
354         * mml2015.el (mml2015-display-key-image): New variable.
355
356 2014-05-08  Glenn Morris  <rgm@gnu.org>
357
358         * gnus-fun.el (gnus-grab-cam-face):
359         Do not use predictable temp-file name.  (http://bugs.debian.org/747100)
360         This is CVE-2014-3421.
361
362 2014-05-04  Glenn Morris  <rgm@gnu.org>
363
364         * gnus-registry.el (gnus-registry-install-p): Doc fix.
365
366 2014-05-02  Katsumi Yamaoka  <yamaoka@jpl.org>
367
368         * gnus-art.el (gnus-mime-inline-part): Redisplay a button so as to show
369         the displaying state of a part.
370         (gnus-mm-display-part): Don't insert a newline in the beginning of
371         a part like gnus-mime-inline-part doesn't; work for XEmacs.
372
373         * mm-decode.el (mm-display-part): Don't insert a newline in the top.
374         (mm-shr): Make undisplayer unbreakable.
375
376         * mm-view.el (mm-inline-image-emacs, mm-inline-image-xemacs): Don't
377         insert excessive newline.
378         (mm-inline-text-html-render-with-w3m, mm-inline-text)
379         (mm-insert-inline): Make undisplayer unbreakable.
380
381 2014-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
382
383         * gnus.el: Ma Gnus v0.11 is released.
384
385 2014-05-01  Katsumi Yamaoka  <yamaoka@jpl.org>
386
387         * gnus-art.el (gnus-mm-display-part):
388         Highlight header attachment buttons.
389
390 2014-04-30  Katsumi Yamaoka  <yamaoka@jpl.org>
391
392         * gnus-art.el (gnus-mm-display-part): Don't move point while toggling
393         a part; redisplay a button (enbugged in 2014-02-05).
394
395 2014-04-27  Teodor Zlatanov  <tzz@lifelogs.com>
396
397         * auth-source.el (auth-source-search, auth-source-search-backends):
398         Treat :max 0 as an indicator that a boolean return is wanted, as
399         documented. Reported by Joe Bloggs.
400
401 2014-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
402
403         * gnus-icalendar.el: Require gnus-art.
404
405 2014-04-20  Jan Tatarik  <jan.tatarik@gmail.com>
406
407         * gnus-icalendar.el (gnus-icalendar-event->org-entry)
408         (gnus-icalendar--update-org-event): put event timestamp in
409         the org entry body instead of the drawer.
410         (gnus-icalendar-event--get-attendee-names): list of participants should
411         contain even attendees without common name attribute.
412         (gnus-icalendar--update-org-event): don't generate duplicates of empty
413         property tags in org drawers.
414
415 2014-04-15  Katsumi Yamaoka  <yamaoka@jpl.org>
416
417         * gmm-utils.el (gmm-format-time-string): New function.
418
419         * message.el (message-insert-formatted-citation-line): Use the original
420         author's time zone to express a date string.
421
422 2014-04-06  Stefan Monnier  <monnier@iro.umontreal.ca>
423
424         * gnus-srvr.el (gnus-tmp-how, gnus-tmp-name, gnus-tmp-where)
425         (gnus-tmp-status, gnus-tmp-agent, gnus-tmp-cloud)
426         (gnus-tmp-news-server, gnus-tmp-news-method, gnus-tmp-user-defined):
427         Silence compiler warnings.
428         (gnus-server-insert-server-line): Don't use dyn-bind var as argument.
429
430 2014-03-24  Katsumi Yamaoka  <yamaoka@jpl.org>
431
432         * mml.el: Require url when compiling.
433
434         * gnus-cloud.el (gnus-cloud-parse-version-1):
435         Use plist-get rather than CL's getf.
436         (gnus-activate-group, gnus-subscribe-group): Declare.
437
438         * gnus-sum.el (gnus-mime-buttonize-attachments-in-header): Declare.
439
440 2014-03-14  Katsumi Yamaoka  <yamaoka@jpl.org>
441
442         * gnus-sum.el (gnus-summary-toggle-header): Display header attachment
443         buttons when toggling the header off.
444
445 2014-03-14  Juanma Barranquero  <lekktu@gmail.com>
446
447         * tls.el (tls-program): Reflow docstring.
448
449 2014-03-07  Lars Ingebrigtsen  <larsi@gnus.org>
450
451         * nnimap.el (nnimap-request-accept-article): Make respooling to nnimap
452         groups work again.
453
454 2014-03-07  George McNinch  <gmcninch@gmail.com>  (tiny change)
455
456         * nnir.el (nnir-run-namazu): Parse namazu results that are larger than
457         999 correctly (i.e. "1,342").
458
459 2014-03-07  Lars Ingebrigtsen  <larsi@gnus.org>
460
461         * gnus-agent.el (gnus-agent-update-files-total-fetched-for): Don't bug
462         out if the directory doesn't exist.
463
464 2014-03-07  Daiki Ueno  <ueno@gnu.org>
465
466         * mml2015.el (mml2015-use): Don't check the availability of GnuPG
467         commands here; instead, only check if epg-config.el is available.
468
469 2014-03-06  Lars Ingebrigtsen  <larsi@gnus.org>
470
471         * mml.el (mml-expand-html-into-multipart-related): Allow sending HTML
472         messages with embedded images.
473         (mml-generate-mime): Don't bug out if you don't have libxml.
474
475 2014-03-06  Lars Ingebrigtsen  <larsi@gnus.org>
476
477         * message.el (message-make-html-message-with-image-files): New command.
478
479 2014-03-05  Lars Ingebrigtsen  <larsi@gnus.org>
480
481         * gnus-group.el (gnus-group-make-group): Clarify prompt.
482
483         * mml.el (mml-insert-mime-headers): Allow `recipient-filename'.
484
485 2014-02-23  David Engster  <deng@randomsample.de>
486
487         * auth-source.el (auth-source-netrc-saver): Do not depend on `cl-lib'
488         to stay compatible with older Emacsen, so replace `cl-loop' with
489         `loop'.
490
491 2014-02-22  Daniel Colascione  <dancol@dancol.org>
492
493         * auth-source.el (auth-source-secrets-listify-pattern): New function.
494         (auth-source-secrets-search): Don't pass invalid patterns to secrets.el;
495         instead, build list of patterns.
496
497 2014-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
498
499         * gnus-art.el (gnus-article-prepare, gnus-article-prepare-display):
500         Display header attachment buttons by gnus-article-prepare-display
501         rather than gnus-article-prepare so as to view in mml-preview as well.
502
503 2014-02-13  Teodor Zlatanov  <tzz@lifelogs.com>
504
505         * auth-source.el (auth-sources): Add pointer to what the .gpg extension
506         in `auth-sources' means and link to EPA docs.
507
508 2014-02-12  Lars Ingebrigtsen  <larsi@gnus.org>
509
510         * nnmail.el (nnmail-expand-newtext): Further sub-match fixups
511         (bug#12375).
512
513 2014-02-10  Katsumi Yamaoka  <yamaoka@jpl.org>
514
515         * gnus-art.el (gnus-article-goto-part): Find a button in the body first.
516         (gnus-mime-buttonize-attachments-in-header): Number hidden buttons.
517
518 2014-02-09  Lars Ingebrigtsen  <larsi@gnus.org>
519
520         * message.el (message-tab): Mention what happens on normal tabs
521         (bug#11297).
522
523 2014-02-08  Glenn Morris  <rgm@gnu.org>
524
525         * auth-source.el (auth-sources): Doc fix.  (Bug#16642)
526
527 2014-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
528
529         * gnus-art.el (gnus-mime-buttonize-attachments-in-header): Display
530         buttons that are hidden in unselected alternative part as well.
531         (gnus-mime-display-alternative): Redraw attachment buttons in header.
532
533         * gmm-utils.el (gmm-flet, gmm-labels): Add edebug spec.
534
535 2014-02-07  Lars Ingebrigtsen  <larsi@gnus.org>
536
537         * gnus-srvr.el (gnus-server-toggle-cloud-server): New command and
538         keystroke.
539         (gnus-server-toggle-cloud-server): Only allow clouding applicable
540         types.
541
542         * ietf-drums.el (ietf-drums-parse-address): Don't bug out when called
543         with an empty string.
544
545 2014-02-06  Lars Ingebrigtsen  <larsi@gnus.org>
546
547         * gnus-msg.el (gnus-summary-cancel-article): `user-mail-address' is
548         buffer-local in some buffers, so bind it explicitly in the buffer we're
549         trying to cancel the article in (bug#10808).
550
551 2014-02-05  Katsumi Yamaoka  <yamaoka@jpl.org>
552
553         * gnus.el, gnus-xmas.el (gnus-copy-overlay, gnus-overlays-at):
554         New functions.
555
556         * gnus-art.el (gnus-mime-display-attachment-buttons-in-header):
557         New user option.
558         (gnus-mime-buttonize-attachments-in-header): New function.
559         (gnus-article-prepare): Use it.
560         (gnus-mime-inline-part): Suppress extra newline.
561         (gnus-mm-display-part): Save excursion;
562         remove useless deleting and adding of buttons.
563         (gnus-insert-mime-button): Allow insertion in the middle of a line.
564
565         * gnus-sum.el (gnus-summary-wash-mime-map, gnus-summary-article-menu):
566         Add gnus-mime-buttonize-attachments-in-header.
567
568 2014-02-05  Lars Ingebrigtsen  <larsi@gnus.org>
569
570         * nnimap.el (nnimap-request-articles): New command to download several
571         articles at once.
572
573         * gnus.el (gnus-variable-list): Save Cloud variables.
574
575         * gnus-int.el (gnus-request-accept-article): Doc fix.
576
577 2014-02-04  Lars Ingebrigtsen  <larsi@gnus.org>
578
579         * parse-time.el (parse-time-iso8601-regexp)
580         (parse-iso8601-time-string): Copied from `url-dav' so that we can use
581         it more generally.
582
583 2014-02-01  Lars Ingebrigtsen  <larsi@gnus.org>
584
585         * gnus-cloud.el: New file to provide the Emacs Cloud.
586
587         * dgnushack.el: Silence XEmacs w3 warning.
588
589         * gravatar.el (gravatar-retrieve-synchronously): XEmacs also has
590         `url-retrieve-synchronously', apparently.
591
592         * dgnushack.el: Silence XEmacs dns.el warning.
593
594         * gnus-compat.el (gnus-compat): Declare `declare-function' only here
595         instead of in all files.
596
597         * dns.el (network-interface-list): Define for XEmacs.
598
599         * gnus-notifications.el (gravatar-retrieve-synchronously): Declare for
600         XEmacs.
601
602         * nnrss.el (libxml-parse-html-region): Silence compilation error.
603
604 2014-02-01  Daniel Dehennin  <daniel.dehennin@baby-gnu.org>
605
606         * gnus-mlspl.el (gnus-group-split-fancy): Use `gnus-parameters' in
607         `gnus-group-split-fancy'.
608
609 2014-02-01  Lars Ingebrigtsen  <larsi@gnus.org>
610
611         * message.el (message-remove-header): Doc fix.
612         (message-forward-included-headers): New variable.
613         (message-remove-ignored-headers): Use it.
614
615 2014-02-01  Lars Ingebrigtsen  <larsi@gnus.org>
616
617         * nnir.el (nnir-request-update-mark): Don't try to update the source
618         group if we can't find it (bug#16611).
619
620 2014-01-31  Dave Abrahams  <dave@boostpro.com>
621
622         * gnus-sum.el (gnus-summary-open-group-with-article): New command.
623
624 2014-01-31  Magnus Henoch  <magnus.henoch@gmail.com>
625
626         * dns.el (dns-servers-up-to-date-p): New function to see whether the
627         network interfaces changed.
628         (dns-query): Use it to flush the data.
629
630 2013-09-04  Rasmus Pank Roulund  <emacs@pank.eu>
631
632         * gnus-fun.el (gnus-x-face-omit-files): Regexp to omit matched results
633         from random face commands.
634         (gnus-face-directory): Like `gnus-x-face-directory` for png files and
635         Face.
636         (gnus-face-omit-files): Like `gnus-x-face-omit-files` for Face.
637         (gnus--random-face-with-type): Generic function returning a face-type
638         as a string.
639         (gnus--insert-random-face-with-type): Generic function inserting a face
640         in a message buffer header.
641         (gnus-random-x-face): Rewritten to use `gnus--random-face-with-type`.
642         (gnus-insert-random-x-face-header): Rewritten to use
643         `gnus--insert-random-face-with-type`.
644         (gnus-random-face): Return random (png) Face as string.
645         (nus-insert-random-face-header): Insert random (png) Face in a message
646         buffer.
647
648 2014-01-31  Lars Ingebrigtsen  <larsi@gnus.org>
649
650         * mm-url.el: Remove all usage of w3.
651
652         * nnrss.el: Ditto.
653
654         * mm-decode.el: Ditto.
655
656         * mm-view.el: Ditto.
657
658         * dgnushack.el: Remove mentions of urldir and w3-dir, since w3 is
659         outdated and all Emacsen have url.el built-in.
660
661         * gnus-setup.el: Remove outdated file.
662
663 2014-01-31  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
664
665         * gnus.el: Ma Gnus v0.9 is released.
666
667 2014-01-31  Lars Ingebrigtsen  <larsi@gnus.org>
668
669         * nnimap.el (nnimap-transform-headers): Fix Davmail header parsing.
670
671 2014-01-31  Dave Abrahams  <dave@boostpro.com>
672
673         * gnus-salt.el (gnus-tree-highlight-article): Don't move point around
674         in the summary buffer (bug#13769).
675
676 2014-01-31  Lars Ingebrigtsen  <larsi@gnus.org>
677
678         * gnus-art.el (gnus-article-setup-buffer): Refresh the summary buffer
679         name if we're using a single article buffer.  Otherwise, it may point
680         to a killed buffer (bug#13756).
681
682 2014-01-30  Lars Ingebrigtsen  <larsi@gnus.org>
683
684         * nnmail.el (nnmail-split-it): Instead of redoing the search to restore
685         the match data, just save and restore it explictly (bug#12375).
686
687         * gnus-sum.el (gnus-summary-read-group-1): Initialize the spam code if
688         that's needed.
689
690         * spam.el (spam-initialize): Allow calling repeatedly, but only run the
691         the code once (bug#9069).
692
693 2014-01-18  Steinar Bang  <sb@dod.no>
694
695         * gnus-setup.el (gnus-use-sendmail): We never use sendmail for mail
696         reading.
697
698 2014-01-09  Ken Olum  <kdo@cosmos.phy.tufts.edu>  (tiny change)
699
700         * message.el (message-bury): Call bury-buffer with no argument
701         in the message-return-action case too.
702
703 2014-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
704
705         * gnus-sum.el (gnus-article-stop-animations): Declare it before using.
706         (nnimap-split-fancy, nnimap-split-methods): Declare.
707
708         * mm-util.el (help-function-arglist): Declare.
709
710 2013-12-28  Glenn Morris  <rgm@gnu.org>
711
712         * gnus-sieve.el (gnus-sieve-select-method):
713         * gravatar.el (gravatar-automatic-caching, gravatar-cache-ttl)
714         (gravatar-rating, gravatar-size):
715         * message.el (message-minibuffer-local-map):
716         * sieve-manage.el (sieve-manage-authenticators)
717         (sieve-manage-authenticator-alist): Specify custom types.
718
719         * hashcash.el (hashcash-program): Rename from hashcash-path.
720         Update callers.
721
722         * gnus-icalendar.el (gnus-icalendar-org, gnus-icalendar):
723         * gnus-sum.el (gnus-subthread-sort-functions): Add version.
724         * gnus-sync.el (gnus-sync-file-encrypt-to): Add type and version.
725
726         * auth-source.el (auth-sources):
727         * nnmairix.el (nnmairix-propagate-marks-upon-close):
728         Fix custom types.
729
730         * tls.el (tls-certtool-program): Fix default value.
731
732 2013-12-26  Lars Ingebrigtsen  <larsi@gnus.org>
733
734         * gnus-sum.el (gnus-summary-respool-query): Special-case nnimap so that
735         we get proper traces there, too.
736
737 2013-12-26  Sean Connor  <sconnor005@allyinics.org>  (tiny change)
738
739         * gnus-sum.el (gnus-summary-enter-digest-group): Don't discard previous
740         value of the parameters if the current article has a Reply-To or From
741         field.
742
743 2013-12-26  Lars Ingebrigtsen  <larsi@gnus.org>
744
745         * gnus.el (gnus-group-buffer): Remove duplicate definition.
746
747 2013-12-25  Lars Ingebrigtsen  <larsi@gnus.org>
748
749         * gnus-sum.el (gnus-summary-exit): Stop animations.
750
751 2013-12-19  Juri Linkov  <juri@jurta.org>
752
753         * gnus.el (gnus-suppress-keymap):
754         * gnus-art.el (gnus-article-mode-map):
755         * gnus-group.el (gnus-group-mode-map):
756         * gnus-sum.el (gnus-summary-mode-map, gnus-summary-backend-map):
757         Remove [backspace] key binding because it shadows DEL (bug#16035).
758
759         * mm-decode.el (mm-viewer-completion-map): Remove duplicate definition.
760
761 2013-12-19  Katsumi Yamaoka  <yamaoka@jpl.org>
762
763         * gnus-uu.el (gnus-uu-decode-binhex, gnus-uu-decode-binhex-view):
764         Make sure work directory exists.
765         (gnus-uu-digest-mail-forward): Store temporary files in work directory
766         rather than tmp directory.
767         (gnus-summary-prepare-exit-hook): Replace gnus-exit-group-hook, that is
768         not necessarily always run, with it.
769
770 2013-12-18  Jan Tatarik  <jan.tatarik@gmail.com>
771
772         * gnus-icalendar.el (gnus-icalendar-identities): Make changing the
773         value of gnus-icalendar-additional-identities work without restart.
774
775 2013-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
776
777         * mm-util.el (mm-make-temp-file):
778         Alias to make-temp-file for modern Emacsen.
779
780 2013-12-08  Katsumi Yamaoka  <yamaoka@jpl.org>
781
782         * gnus-msg.el (gnus-setup-message): Fix the type of argument passed to
783         nnir-article-number and nnir-article-group.
784
785 2013-12-03  Vitalie Spinu  <spinuvit@gmail.com>
786
787         * message.el (message-send-mail-with-sendmail):
788         Don't kill error buffer if sending fails.
789
790 2013-11-28  Jan Tatarik  <jan.tatarik@gmail.com>
791
792         * gnus-icalendar.el (gnus-icalendar-event-from-ical)
793         (gnus-icalendar-event->org-entry)
794         (gnus-icalendar--update-org-event)
795         (gnus-icalendar-event->gnus-calendar): Distinguish between
796         required/optional/non-participant attendee status.  Fix bug causing
797         the first required event participant to be omitted.
798
799 2013-11-27  Katsumi Yamaoka  <yamaoka@jpl.org>
800
801         * gnus-art.el (article-de-quoted-unreadable)
802         (article-de-base64-unreadable, gnus-mime-copy-part)
803         * gnus-html.el (gnus-article-html)
804         * mm-view.el (mm-inline-text-html-render-with-w3)
805         (mm-inline-text-html-render-with-w3m-standalone)
806         * rfc2231.el (rfc2231-decode-encoded-string):
807         Allow overriding charset by mm-charset-override-alist.
808
809         * gnus-art.el (gnus-article-browse-html-parts):
810         Replace LWSPs with `&nbsp;'s in header.
811
812         Work for broken Chinese articles.
813
814         * gnus-art.el (gnus-article-browse-html-save-cid-content):
815         Exclude broken handles that gnus-summary-enter-digest-group may create.
816         (gnus-article-browse-html-parts):
817         Allow overriding charset by mm-charset-override-alist.
818
819 2013-11-21  Jan Tatarik  <jan.tatarik@gmail.com>
820
821         * gnus-icalendar.el (gnus-icalendar-additional-identities): New.
822         (gnus-icalendar-identities): Support additional-identities.
823
824 2013-11-21  Jan Tatarik  <jan.tatarik@gmail.com>
825
826         * gnus-icalendar.el (gnus-icalendar-event:org-timestamp): Fix
827         org-timestamp for events ending at midnight.
828
829 2013-11-21  Ivan Shmakov  <ivan@siamics.net>
830
831         * nndoc.el (nndoc-type-alist, nndoc-debbugs-db-type-p): Support debbugs
832         .log files.
833
834 2013-11-20  David Engster  <deng@randomsample.de>
835
836         * lpath.el: Fix XEmacs warning for `beginning-of-visual-line'.
837
838 2013-11-20  Dave Goldberg  <david.goldberg6@verizon.net>
839
840         * message.el (message-beginning-of-line):
841         Use beginning-of-visual-line when visual-line-mode is turned on.
842
843 2013-11-15  Jan Tatarik  <jan.tatarik@gmail.com>
844
845         * gnus-icalendar.el (gnus-icalendar-event->gnus-calendar)
846         (gnus-icalendar-event-from-ical)
847         (gnus-icalendar-event->org-entry)
848         (gnus-icalendar--update-org-event): Required/optional participation,
849         list of attendees synced to org.
850
851 2013-11-13  Jan Tatarik  <jan.tatarik@gmail.com>
852
853         * gnus-icalendar.el (gnus-icalendar-event:sync-to-org)
854         (gnus-icalendar-event:inline-org-buttons): Allow for appointment
855         cancellations to be synced to org if the original appt has an org
856         outline.
857
858 2013-11-13  Jan Tatarik  <jan.tatarik@gmail.com>
859
860         * gnus-icalendar.el (gnus-icalendar--format-summary-line)
861         (gnus-icalendar-event->org-entry)
862         (gnus-icalendar--update-org-event)
863         (gnus-icalendar-event->gnus-calendar): Fix empty location handling.
864
865 2013-11-12  Jan Tatarik  <jan.tatarik@gmail.com>
866
867         * gnus-icalendar.el (gnus-icalendar-event-from-ical):
868         Fix timezone handling in gnus-icalendar export to org.
869
870 2013-11-06  Katsumi Yamaoka  <yamaoka@jpl.org>
871
872         * gnus-salt.el (gnus--let-eval): Silence the Buildbot.
873
874 2013-11-05  Katsumi Yamaoka  <yamaoka@jpl.org>
875
876         * gnus-cite.el (gnus-cite-add-face): Make non-sticky overlays.
877
878 2013-10-30  Glenn Morris  <rgm@gnu.org>
879
880         * gnus-group.el (gnus-group-browse-foreign-server):
881         * gnus-int.el (gnus-start-news-server):
882         Silence compiler obsolescence warning.
883
884 2013-10-29  Teodor Zlatanov  <tzz@lifelogs.com>
885
886         * nnimap.el (nnimap-open-connection-1): `auth-source-search' for the
887         `nnoo-current-server' first, then for the actual `nnimap-address' to
888         allow netrc entries for the nnoo server to coexist with netrc entries
889         for the `nnimap-address'.
890
891 2013-10-23  Katsumi Yamaoka  <yamaoka@jpl.org>
892
893         * mm-decode.el (mm-dissect-buffer): Revert last change.
894         * nndoc.el (nndoc-dissect-mime-parts-sub): Ditto.
895         The problem that motivated those changes was attributed to a broken
896         mail sender, and has been fixed.
897
898 2013-10-22  Katsumi Yamaoka  <yamaoka@jpl.org>
899
900         * mm-decode.el (mm-dissect-buffer): Guess content-type if the first
901         token is missing in the Content-Type header.
902
903         * nndoc.el (nndoc-dissect-mime-parts-sub): Ditto.
904
905 2013-09-18  Glenn Morris  <rgm@gnu.org>
906
907         * gnus-util.el (image-size): Declare.
908
909 2013-09-17  Katsumi Yamaoka  <yamaoka@jpl.org>
910
911         * gnus-icalendar.el (gnus-icalendar-event--find-attendee)
912         (gnus-icalendar-event-from-ical)
913         (gnus-icalendar-event--build-reply-event-body)
914         (gnus-icalendar-event-reply-from-buffer)
915         (gnus-icalendar-find-org-event-file)
916         (gnus-icalendar-event->gnus-calendar, gnus-icalendar-reply)
917         (gnus-icalendar-mm-inline): Use gmm-labels instead of labels or flet.
918
919         * mm-util.el (mm-special-display-p): Isolate XEmacs stuff.
920
921 2013-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
922
923         * gnus-salt.el (gnus-tree-mode): Use define-derived-mode.
924         Use save-current-buffer.
925         (gnus-tree-mode-map): Initialize in the declaration.
926         (gnus-pick-mouse-pick-region): Remove unused var `fun'.
927         (scroll-in-place): Defvar it.
928         (gnus-tmp-*): Defvar them.
929         (gnus-get-tree-buffer): Use derived-mode-p.
930         (gnus--let-eval): New macro.
931         (gnus-tree-highlight-node): Use it to avoid dynamic binding of
932         non-prefixed variables.
933         (gnus-tree-open, gnus-tree-close): Remove unused arg `group'.
934
935         * gnus-sum.el (gnus-summary-highlight): Remove `below' from the list of
936         vars since it doesn't seem to be available.
937         (gnus-set-global-variables, gnus-summary-read-group-1)
938         (gnus-select-newsgroup, gnus-handle-ephemeral-exit)
939         (gnus-summary-display-article, gnus-summary-select-article)
940         (gnus-summary-next-article, gnus-offer-save-summaries)
941         (gnus-summary-generic-mark): Use derived-mode-p.
942         (gnus-summary-read-group-1, gnus-summary-exit)
943         (gnus-summary-exit-no-update, gnus-kill-or-deaden-summary):
944         Adjust calls to gnus-tree-close and gnus-tree-open.
945
946         * gnus-eform.el (gnus-edit-form-mode): Use define-derived-mode.
947
948         * gnus-agent.el (gnus-category-mode): Use define-derived-mode.
949         (gnus-agent-mode): Use derived-mode-p.
950         (gnus-agent-rename-group, gnus-agent-delete-group): Don't bind
951         gnus-command-method and *-command-method to nil, but bind
952         gnus-command-method to *-command-method instead!
953         (gnus-agent-fetch-articles): Remove unused var `id'.
954         (gnus-agent-fetch-headers): Remove unused arg `force'.
955         (gnus-agent-braid-nov): Remove unused arg `group'.  Adjust callers.
956         (gnus-agent-save-alist, gnus-agent-save-local): Remove unused `item'.
957         (gnus-agent-short-article, gnus-agent-long-article)
958         (gnus-agent-low-score, gnus-agent-high-score): Move declaration before
959         first use.
960         (gnus-agent-fetch-group-1): Remove unused vars `arts', `category',
961         `score-param'.
962         (gnus-tmp-name, gnus-tmp-groups): Defvar them.
963         (gnus-get-predicate): Push in front of the cache, rather than end.
964         (gnus-agent-expire-current-dirs, gnus-agent-expire-stats): Defvar them.
965         (gnus-agent-expire-group-1): Use push.  Don't abuse dyn-binding.
966         (gnus-agent-expire-unagentized-dirs): Don't rebind
967         gnus-agent-expire-current-dirs since the defvar silences the warning.
968         (gnus-agent-retrieve-headers): Remove unused var `cached-articles'.
969         (gnus-agent-regenerate-group): Remove unused vars `point' and `dl'.
970         (gnus-agent-regenerate): Simplify interactive spec and doc.
971
972 2013-09-17  Katsumi Yamaoka  <yamaoka@jpl.org>
973
974         * gnus-int.el (gnus-open-server): Silence compiler.
975
976         * mm-decode.el (mm-add-meta-html-tag): Fix regexp matching meta tag.
977
978         * message.el (message-display-completion-list): Abolish.
979         (message-completion-in-region): Use display-completion-list.
980
981 2013-09-17  Glenn Morris  <rgm@gnu.org>
982
983         * gnus-util.el (gnus-message-with-timestamp-1):
984         Use `messages-buffer' function if available.  Ignore read-only.
985
986 2013-09-16  Katsumi Yamaoka  <yamaoka@jpl.org>
987
988         * message.el (message-expand-group, message-completion-in-region):
989         Correct the order of start and end of a region.
990
991 2013-09-13  Glenn Morris  <rgm@gnu.org>
992
993         * mml2015.el (gnus-create-image): Autoload it.
994
995         * gnus-spec.el (gnus-xmas-format): Fix weird error call.
996
997         * gnus-html.el (declare-function): Add compat stub for ancient Emacs.
998         (image-size): Declare.
999
1000 2013-09-12  Glenn Morris  <rgm@gnu.org>
1001
1002         * gnus-icalendar.el (gnus-icalendar-event--build-reply-event-body):
1003         Avoid using `find', which i) might not be defined at runtime;
1004         ii) does not work, since its default test is eql, not equal.
1005         (gnus-mime-action-alist): Declare.
1006
1007 2013-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
1008
1009         * score-mode.el (gnus-score-mode-map): Move initialization
1010         into declaration.
1011         (gnus-score-mode): Use define-derived-mode.
1012         * gnus-srvr.el (gnus-browse-mode): Use define-derived-mode.
1013         * gnus-kill.el (gnus-kill-file-mode-map): Move initialization
1014         into declaration.
1015         (gnus-kill-file-mode): Use define-derived-mode.
1016         (gnus-kill-file-edit-file, gnus-kill-file-enter-kill, gnus-kill):
1017         Use derived-mode-p.
1018         * gnus-group.el (gnus-group-mode): Use define-derived-mode.
1019         (gnus-group-setup-buffer, gnus-group-name-at-point)
1020         (gnus-group-make-web-group, gnus-group-enter-directory)
1021         (gnus-group-suspend): Use derived-mode-p.
1022         * gnus-cus.el (gnus-custom-mode): Use define-derived-mode.
1023         * gnus-bookmark.el (gnus-bookmark-bmenu-mode): Use define-derived-mode.
1024         * gnus-art.el (gnus-article-mode): Use define-derived-mode.
1025         (gnus-article-setup-buffer, gnus-article-prepare)
1026         (gnus-article-prepare-display, gnus-sticky-article)
1027         (gnus-kill-sticky-article-buffer, gnus-kill-sticky-article-buffers)
1028         (gnus-bind-safe-url-regexp, gnus-article-check-buffer)
1029         (gnus-article-read-summary-keys): Use derived-mode-p.
1030
1031 2013-08-28  Katsumi Yamaoka  <yamaoka@jpl.org>
1032
1033         * mm-decode.el (mm-temp-files-delete): Fix file deletion logic.
1034
1035 2013-08-19  Katsumi Yamaoka  <yamaoka@jpl.org>
1036
1037         * mm-util.el (mm-coding-system-priorities): Exclude iso-2022-jp-2 and
1038         shift_jis from the default value set for Japanese users.
1039
1040 2013-08-13  Glenn Morris  <rgm@gnu.org>
1041
1042         * gnus-icalendar.el (gnus-icalendar-org-capture-file): Fix type.
1043
1044         * gnus.el (gnus-valid-select-methods): Fix type.
1045
1046         * nnimap.el (nnimap-request-articles-find-limit): Fix type, version.
1047
1048 2013-08-12  Katsumi Yamaoka  <yamaoka@jpl.org>
1049
1050         * mm-decode.el (mm-display-external): Run a timer for the temp files
1051         deletion after a viewer exits; add a deletion timer for the needsterm
1052         case, too.
1053
1054         * mm-decode.el (mm-display-external): Try to delete temporary files by
1055         using a 1-min. timer.
1056
1057 2013-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
1058
1059         * mm-decode.el (mm-temp-files-to-be-deleted, mm-temp-files-cache-file):
1060         New internal variables.
1061         (mm-temp-files-delete): New function; add it to gnus-exit-gnus-hook.
1062         (mm-display-external): Use it to delete temporary files instead of
1063         using timers.
1064
1065 2013-08-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1066
1067         * dgnushack.el (dgnushack-compile): Allow building on Emacs 23.
1068
1069 2013-08-06  Jan Tatarik  <jan.tatarik@gmail.com>
1070
1071         * gnus-icalendar.el (gnus-icalendar-event-from-ical): Replace pcase
1072         with cond for backwards compatability.
1073
1074 2013-08-06  Katsumi Yamaoka  <yamaoka@jpl.org>
1075
1076         * mm-decode.el (mm-display-external): Bind process-connection-type to
1077         nil; don't delete a temp file immediately even if a viewer finishes,
1078         since it may be a shell script, like xdg-open, that launches a real
1079         viewer program belatedly.
1080
1081 2013-08-05  Dave Abrahams  <dave@boostpro.com>
1082
1083         * gnus-int.el (gnus-warp-to-article): Allow warping in all groups so
1084         that we can create nndoc groups that excerpt other groups.
1085
1086 2013-08-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1087
1088         * gnus-delay.el (gnus-delay-article): Fix typo.
1089
1090         * gnus-group.el (gnus-group-delete-articles): Allow deleting only "old"
1091         articles.
1092
1093         * gnus-delay.el (gnus-delay-article): Run `message-send-hook' so that
1094         we can get spell-checking etc.
1095
1096 2013-08-02  Katsumi Yamaoka  <yamaoka@jpl.org>
1097
1098         * rfc2047.el (rfc2047-encode-message-header): Unify charsets into
1099         a single one used for encoding the whole text in a header.
1100
1101 2013-08-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1102
1103         * dgnushack.el (dgnushack-compile): `icalendar--decode-isodatetime'
1104         doesn't work properly on XEmacs.
1105
1106 2013-08-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1107
1108         * message.el (message-ignored-news-headers): Delete X-Gnus-Delayed
1109         before sending.
1110
1111         * dgnushack.el (dgnushack-compile): Add a temporary check for
1112         gnus-icalendar.
1113
1114         * mm-decode.el (mm-command-output): New face.
1115         (mm-display-external): Use it.
1116
1117 2013-08-01  Kan-Ru Chen (陳侃如)  <kanru@kanru.info>  (tiny change)
1118
1119         * nnmbox.el (nnmbox-request-article): Don't change point.
1120
1121 2013-08-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1122
1123         * gnus-icalendar.el (gnus-icalendar-event:inline-reply-buttons):
1124         Include `handle' parameter.
1125
1126 2013-08-01  Jan Tatarik  <jan.tatarik@gmail.com>
1127
1128         * gnus-icalendar.el: New file.
1129
1130 2013-08-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1131
1132         * gnus-int.el (gnus-warp-to-article): Mention that warp means jump.
1133
1134         * gnus-uu.el (gnus-uu-mark-thread, gnus-uu-unmark-thread): Work with
1135         dummy roots, too.
1136
1137 2013-08-01  David Edmondson  <dme@dme.org>
1138
1139         * mml2015.el (mml2015-epg-key-image-to-string): Protect against bugging
1140         out on ttys.
1141
1142 2013-08-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1143
1144         * gnus-start.el (gnus-dribble-save): Only save the dribble file if it's
1145         not empty.
1146
1147         * nnrss.el (nnrss-discover-feed): Indent.
1148
1149 2013-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
1150
1151         * gnus-util.el (gnus-emacs-completing-read): Isolate XEmacs stuff.
1152
1153 2013-07-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1154
1155         * gnus-start.el (gnus-read-active-for-groups): Always mark the data as
1156         dirty to ensure nnimap data being saved.
1157
1158 2013-07-30  Tassilo Horn  <tsdh@gnu.org>
1159
1160         * gnus-sum.el (gnus-summary-make-menu-bar): Add "Current thread score"
1161         menu entry.
1162
1163         * gnus-score.el (gnus-summary-current-score): Use prefix arg to show
1164         the current thread's total score instead of the current article's
1165         score.
1166
1167         * gnus-sum.el (gnus-subthread-sort-functions): New defcustom.
1168         (gnus-sort-threads-recursively): Delete defcustom.
1169         (gnus-sort-threads-recursive): Adapt accordingly.
1170
1171 2013-07-30  Tassilo Horn  <tsdh@gnu.org>
1172
1173         * gnus-sum.el (gnus-sort-subthreads-recursive): New function.
1174         (gnus-sort-threads-recursive): Use it.
1175         (gnus-sort-threads): Unconditionally call `gnus-sort-threads-recursive'
1176         again.  Now that determines how to sort subthreads.
1177
1178 2013-07-26  Tassilo Horn  <tsdh@gnu.org>
1179
1180         * gnus-sum.el (gnus-sort-threads-recursively): New defcustom.
1181         (gnus-sort-threads): Use it.
1182
1183 2013-07-25  Andreas Schwab  <schwab@linux-m68k.org>
1184
1185         * gnus-art.el (gnus-button-url-regexp): Make it match url in which
1186         punctuation characters follow parentheses (bug#14950).
1187
1188 2013-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
1189
1190         * gnus.el (gnus-continuum-version):
1191         * gnus-msg.el (gnus-extended-version): Simplify.
1192
1193         * gnus.el (gnus-continuum-version-1): Remove.
1194         * gnus-msg.el (gnus-bug): Revert.
1195
1196         Calculate gnus-version correctly on Cygwin.
1197
1198         * gnus.el (gnus-continuum-version): Do main calculations in integers.
1199         (gnus-continuum-version-1): New function, return a string.
1200
1201         * gnus-msg.el (gnus-extended-version, gnus-bug):
1202         Use gnus-continuum-version-1 instead of gnus-continuum-version.
1203
1204 2013-07-19  Geoff Kuenning  <geoff@cs.hmc.edu>  (tiny change)
1205
1206         * gnus-art.el (gnus-treat-predicate): Allow functions as predicates
1207         (bug#13384).
1208
1209 2013-07-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1210
1211         * gnus-start.el (gnus-clean-old-newsrc): Remove the newsrc cleanups
1212         that were only relevant in a development version a long time ago.
1213
1214 2013-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
1215
1216         * gnus-art.el (gnus-shr-put-image): Make it work as well for shr.el's
1217         that the old Emacs 24s bundle.
1218
1219 2013-07-10  David Engster  <deng@randomsample.de>
1220
1221         * gnus-start.el (gnus-clean-old-newsrc): Always remove 'unexist' marks
1222         if `gnus-newsrc-file-version' does not match `gnus-version'.  This
1223         fixes a bug in Emacs trunk where the 'unexist' marks were always
1224         removed at startup because "Gnus v5.13" was considered smaller than "Ma
1225         Gnus v0.03".
1226
1227 2013-07-10  Tassilo Horn  <tsdh@gnu.org>
1228
1229         * gnus.el (gnus-summary-line-format): Reference
1230         `gnus-user-date-format-alist' for the &user-date; format, not
1231         `gnus-summary-user-date-format-alist'.
1232
1233 2013-07-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1234
1235         * nnml.el (nnml-request-compact-group): Don't bug out if we can't
1236         delete files (bug#13481).
1237
1238 2013-07-08  Tassilo Horn  <tsdh@gnu.org>
1239
1240         * gnus-registry.el (gnus-registry-remove-extra-data): New function.
1241
1242 2013-07-06  Lars Ingebrigtsen  <larsi@gnus.org>
1243
1244         * gnus-art.el (gnus-block-private-groups): Allow `global' methods to
1245         display images.
1246
1247         * gnus.el (gnus-valid-select-methods): Mark nnrss as global.
1248
1249         * message.el (message-cancel-news): According to
1250         <mailman.216.1372942181.12400.help-gnu-emacs@gnu.org>, "cancel" is
1251         preferred over "cmsg cancel" in the Subject.
1252
1253         * nnir.el (nnir-engines): Note that the group specs are regexps
1254         (bug#13238).
1255
1256         * gnus-msg.el (gnus-copy-article-buffer): If the article buffer has
1257         gotten read-only text properties, ensure that those aren't heeded when
1258         copying stuff over (bug#13434).
1259
1260         * mm-view.el (mm-inline-text-html): Don't bug out on multipart messages
1261         (bug#13762).
1262
1263 2013-07-05  David Kastrup  <dak@gnu.org>
1264
1265         * auth-source.el (auth-source-netrc-parse-one): Allow empty strings in
1266         authinfo file again (important for blank passwords).  This had been
1267         broken with 2013-06-15 change.
1268
1269 2013-07-03  Katsumi Yamaoka  <yamaoka@jpl.org>
1270
1271         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups):
1272         Revert 2013-01-14 change.
1273
1274 2013-07-02  Daiki Ueno  <ueno@gnu.org>
1275
1276         * mml2015.el (mml2015-epg-key-image): Use 'gnus-create-image' instead
1277         of 'create-image' for XEmacs compatibility; check errors when decoding
1278         image.  Reported by Uwe Brauer.
1279
1280 2013-06-28  Katsumi Yamaoka  <yamaoka@jpl.org>
1281
1282         * gnus-art.el (gnus-article-extend-url-button): Make it work again with
1283         gnus-button-push revised at 2011-01-19.
1284
1285 2013-06-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1286
1287         * eww.el, shr.el, shr-color.el: Removed from the Gnus repository.  They
1288         now live in the lisp/net Emacs 24 repository.
1289
1290 2013-06-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1291
1292         * eww.el (eww-update-header-line-format): Quote % characters.
1293
1294 2013-06-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1295
1296         * eww.el (eww-process-text-input): Display passwords as asterisks.
1297
1298         * shr.el (shr-make-table-1): Protect against invalid column-spans.
1299
1300 2013-06-19  Tom Tromey  <tromey@redhat.com>
1301
1302         * eww.el (eww-top-url): Remove.
1303         (eww-home-url, eww-start-url, eww-contents-url): New defvars.
1304         (eww-render): Set new variables.  Don't set eww-top-url.
1305         (eww-handle-link): Handle "prev", "home", and "contents".
1306         Downcase the rel text.
1307         (eww-top-url): Choose best top URL.
1308
1309 2013-06-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1310
1311         * eww.el: Rewrite to implement form elements "by hand" instead of
1312         relying in widget.el.  Using widget.el leads to too many
1313         user interface inconsistencies.
1314         (eww-self-insert): Implement entering commands in text fields.
1315         (eww-process-text-input): New function to make text input field editing
1316         work.
1317         (eww-submit): Rewrite to use the new-style form methods.
1318         (eww-select-display): Display the correct selected item.
1319         (eww-change-select): Implement changing the select value.
1320         (eww-toggle-checkbox): Implement radio/checkboxes.
1321         (eww-update-field): Fix compilation error.
1322         (eww-tag-textarea): Implement <textarea>.
1323
1324         * shr.el (shr-urlify): Use `keymap' instead of `local-map' so that we
1325         don't shadow mode-specific bindings.
1326
1327         * eww.el (eww-browse-url): Don't push stuff onto history if there's
1328         nothing to push.
1329
1330         * shr.el (shr-map): Bind [down-mouse-1] to browse URLs.
1331
1332 2013-06-19  Glenn Morris  <rgm@gnu.org>
1333
1334         * gnus-group.el (gnus-mark-article-as-read): Fix declaration.
1335
1336 2013-06-18  Teodor Zlatanov  <tzz@lifelogs.com>
1337
1338         * auth-source.el (auth-source-netrc-parse-entries): Remove debugging.
1339
1340 2013-06-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1341
1342         * shr.el (shr-make-table-1): Implement <td rowspan>.
1343         (shr-table-horizontal-line): Allow nil as a value, and change the
1344         default.
1345         (shr-insert-table-ruler): Respect the nil value.
1346
1347 2013-06-18  Tom Tromey  <tromey@barimba>
1348
1349         * eww.el (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
1350         New defvars.
1351         (eww-open-file): New defun.
1352         (eww-render): Initialize new variables.
1353         (eww-display-html): Handle "link" and "a".
1354         (eww-handle-link, eww-tag-link, eww-tag-a): New defuns.
1355         (eww-mode-map): Move "p" to "l".  Bind "p", "n", "t", and "u".
1356         (eww-back-url): Rename from eww-previous-url.
1357         (eww-next-url, eww-previous-url, eww-up-url, eww-top-url): New
1358         defuns.
1359
1360 2013-06-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1361
1362         * shr.el (shr-tag-table): Insert the images after the table, so that
1363         they're not covered by the table colourisation, which often looked
1364         awkward.
1365         (shr-tag-dl, shr-tag-dt, shr-tag-dd): Add support for <dl>, <dt> and
1366         <dd>.
1367         (shr-make-table-1): Implement <td colspan=> support.
1368         (shr-insert-document): Use one less than window width if `shr-width' is
1369         nil, since otherwise things may get one character too wide.
1370
1371 2013-06-18  Katsumi Yamaoka  <yamaoka@jpl.org>
1372
1373         * eww.el (eww-detect-charset): Improve regexp; move backward.
1374
1375 2013-06-18  Glenn Morris  <rgm@gnu.org>
1376
1377         * mm-decode.el (widget-convert-button): Autoload.
1378
1379         * sieve-manage.el (mm-enable-multibyte): Autoload.
1380
1381         * shr.el (libxml-parse-html-region): Declare.
1382         (shr-render-buffer): Explicit error if no libxml2 support.
1383
1384 2013-06-17  Teodor Zlatanov  <tzz@lifelogs.com>
1385
1386         * auth-source.el (auth-source-current-line): New function.
1387         (auth-source-netrc-parse-entries): When a data token is "machine",
1388         assume we're in the wrong place and abort parsing the current line.
1389
1390 2013-06-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1391
1392         * eww.el (eww-tag-select): Don't render totally empty <select> forms.
1393         (eww-convert-widgets): Don't bug out if the first widget starts at the
1394         beginning of the buffer.
1395         (eww-convert-widgets): Fix last patch.
1396         (eww-tag-input): Support <input type=image>.
1397
1398         * shr.el (shr-insert-table): Respect border-collapse: collapse.
1399         (shr-tag-base): Protect against base specs that are degenerate.
1400         (shr-ensure-paragraph): Don't delete empty lines that have text
1401         properties, because these may be input fields.
1402
1403         * eww.el (eww-convert-widgets): Put `help-echo' on input fields so that
1404         we can navigate to them.
1405
1406         * shr.el (shr-colorize-region): Put the colours over the entire region.
1407         (shr-inhibit-decoration): New variable.
1408         (shr-add-font): Use it to inhibit text property decorations while doing
1409         preliminary table renderings.  This speeds up typical Wikipedia page
1410         renderings by 15%.
1411         (shr-tag-span): Don't respect the <title>, because that overwrites the
1412         help-echo from links inside the spans.
1413         (shr-next-link): Use `help-echo' for navigation, so that we can
1414         navigate to form elements, too.
1415
1416         * eww.el (eww-button): New face.
1417         (eww-convert-widgets): Use it to make submit buttons more button-like.
1418
1419         * mm-decode.el (mm-convert-shr-links): Override the shr local map, so
1420         that Gnus commands work.
1421
1422         * shr.el (shr-render-td): Support horizontal alignment.
1423
1424         * eww.el (eww-put-color): Removed.
1425         (eww-colorize-region): Use `add-face-text-property'.
1426
1427         * shr.el (shr-add-font): Append face data, so that we get the correct
1428         precedence: The innermost value (which is applied first) wins.
1429         (shr-make-overlay): Obsolete function.
1430
1431         * mm-decode.el (mm-convert-shr-links): New function to convert
1432         new-style shr URL links into widgets.
1433         (mm-shr): Use it.
1434
1435         * eww.el (eww-mode-map): Use `shr-next-link' (etc) instead of the
1436         widget commands, since we're no longer using widgets for links.
1437
1438         * shr.el (shr-next-link): New command.
1439         (shr-previous-link): New command.
1440         (shr-urlify): Don't use `widget-convert', because that's slow.
1441         (shr-put-color-1): Use `add-face-text-property' instead of overlays,
1442         because collecting the overlays and reapplying them when generating
1443         tables is slow.
1444         (shr-insert-table): Ditto.
1445
1446 2013-06-17  Stefan Monnier  <monnier@iro.umontreal.ca>
1447
1448         * sieve.el (sieve-edit-script): Avoid beginning-of-buffer.
1449         * shr.el (browse-url): Require `url'.
1450         * eww.el (url): Require format-spec.
1451
1452 2013-06-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1453
1454         * eww.el (eww-display-html): Default to using the entire window width.
1455         (eww-browse-url): Don't add a User-Agent header (twice), because that
1456         makes Bing refuse connection.
1457
1458         * shr.el (shr-make-table): Cache the table rendering at the table
1459         level, and not the <td> level.  This is a bit faster.
1460
1461         * eww.el (eww-render): Go to the correct ID when given URLs ending with
1462         #id.
1463
1464         * shr.el (shr-tag-li): Don't require a new paragraph, since other
1465         browsers don't.
1466         (shr-expand-url): Respect #anchor links.
1467         (shr-parse-base): Chop off the anchor before using.
1468         (shr-descend): Respect display: none.
1469         (shr-descend): Allow marking elements that have certain IDs.
1470
1471         * eww.el (eww-tag-textarea): Use `text' instead of `editable-field'.
1472
1473         * shr.el (shr-expand-url): Don't bug out on zero-length links.
1474
1475         * eww.el (eww-tag-textarea): Support <textarea>.
1476
1477 2013-06-16  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
1478
1479         * shr.el (shr-dom-to-xml): Fixed function call.
1480
1481         * eww.el (eww): New group.
1482         (eww-header-line-format): New custom variable.
1483         (eww-current-title): New variable.
1484         (eww-display-html): Update header and handle title tag.
1485         (eww-update-header-line-format): New function.
1486         (eww-tag-title): New function.
1487
1488         * shr.el (shr-dom-to-xml): New function.
1489         (shr-tag-svg): Add support for the SVG tag.
1490         (shr-bullet): New custom variable.
1491         (shr-tag-li): Support custom bullet in unordered lists.
1492
1493 2013-06-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1494
1495         * shr.el (shr-expand-url): Respect // URLs.
1496
1497         * eww.el (eww-tag-body): Override the shr body rendering so that we can
1498         put a background colour onto the entire buffer.
1499         (eww-render): When being redirected, use the redirect URL as the new
1500         base URL.
1501
1502         * shr.el (shr-parse-base): Fix parsing error.
1503
1504         * eww.el (eww-submit): Pass the base in to `shr-expand-url'.
1505
1506         * shr.el (shr-parse-base): New function.
1507         (shr-expand-url): Use it to expand relative URLs reliably.
1508
1509 2013-06-15  Teodor Zlatanov  <tzz@lifelogs.com>
1510
1511         * auth-source.el (auth-source-search-collection): Fix docstring.
1512         (auth-source-netrc-parse): Refactor and improve netrc parser to support
1513         single-quoted strings and multiline entries.
1514         (auth-source-netrc-parse-next-interesting)
1515         (auth-source-netrc-parse-one, auth-source-netrc-parse-entries): New
1516         functions to support parser.
1517
1518 2013-06-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1519
1520         * eww.el (eww-submit): Get submit button logic right when hitting RET
1521         on non-submit buttons.
1522
1523         * shr.el: Remove shr-preliminary-table-render, since that can't really
1524         be used for anything in practice.
1525
1526 2013-06-13  Albert Krewinkel  <tarleb@moltkeplatz.de>
1527
1528         * sieve.el: Rebind q to (sieve-bury-buffer), bind Q to
1529         (sieve-manage-quit).
1530
1531 2013-06-14  Glenn Morris  <rgm@gnu.org>
1532
1533         * mml2015.el (mml2015-maximum-key-image-dimension): Add :version.
1534
1535 2013-06-14  David Edmondson  <dme@dme.org>  (tiny change)
1536
1537         * mml2015.el (mml2015-maximum-key-image-dimension): New user option to
1538         control the maximum size of photo ID image.
1539         (mml2015-epg-key-image-to-string): Respect it.
1540
1541 2013-06-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1542
1543         * shr.el (shr-tag-table-1): Mark the preliminary table renderings
1544         instead of the final one so that we can more easily distinguish them.
1545
1546         * eww.el (eww-submit): Compute the submission URL correctly.
1547
1548 2013-06-13  Stefan Monnier  <monnier@iro.umontreal.ca>
1549
1550         * sieve-manage.el (sieve-manage-open-server): Don't quote lambda.
1551         Use plist-get rather than CL's getf.
1552         (sieve-manage-parse-capability): Avoid CL's remove-if.
1553
1554 2013-06-13  Albert Krewinkel  <tarleb@moltkeplatz.de>
1555
1556         * sieve.el: Rebind q to (sieve-bury-buffer), bind Q to
1557         (sieve-manage-quit).
1558
1559 2013-06-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1560
1561         * shr.el (shr-expand-url): Expansion should chop off the bits after the
1562         last slash.
1563
1564         * eww.el (eww-tag-select): Use the first value as the default value.
1565
1566 2013-06-13  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
1567
1568         * eww.el (eww): Prepend urls with http:// if scheme is missing.
1569         (eww-mode): Use `define-derived-mode'.
1570         (eww-parse-headers): Parse headers from beginning of buffer so that
1571         file:// links work.
1572
1573 2013-06-13  Katsumi Yamaoka  <yamaoka@jpl.org>
1574
1575         * eww.el (eww-detect-charset): Detect charset from the <meta> tag.
1576
1577 2013-06-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1578
1579         * shr.el (shr-tag-svg): Ignore SVG elements, because we don't know how
1580         to handle them at all.
1581
1582 2013-06-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1583
1584         * eww.el (eww-convert-widgets): Make widgets from non-tabular layouts
1585         work, too.
1586         (eww-tag-select): Implement <select>.
1587
1588 2013-06-10  Albert Krewinkel  <krewinkel@moltkeplatz.de>
1589
1590         * sieve-manage.el (sieve-manage-open): work with STARTTLS: shorten
1591         stream managing functions by using open-protocol-stream to do most of
1592         the work.  Has the nice benefit of enabling STARTTLS.
1593         Wait for capabilities after STARTTLS: following RFC5804, the server
1594         sends new capabilities after successfully establishing a TLS connection
1595         with the client.  The client should update the cached list of
1596         capabilities, but we just ignore the answer for now.
1597         (sieve-manage-network-p, sieve-manage-network-open)
1598         (sieve-manage-starttls-p, sieve-manage-starttls-open)
1599         (sieve-manage-forward, sieve-manage-streams)
1600         (sieve-manage-stream-alist): Remove unneeded functions neither in the
1601         API, nor called by any other function.
1602         Enable Multibyte for SieveManage buffers: The parser won't properly
1603         handle umlauts and line endings unless multibyte is turned on in the
1604         process buffer.
1605
1606 2013-06-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1607
1608         * eww.el (eww-tag-input): Support password fields.
1609         (eww-submit): Support POST.
1610
1611 2013-06-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1612
1613         * eww.el (eww-tag-form): Protect against degenerate forms.
1614
1615         * shr.el (shr-expand-url): Expand URLs that start with a slash
1616         correctly.
1617
1618         * eww.el (eww-submit): Get submit button logic right.
1619
1620         * shr.el (shr-final-table-render): New variable to signal when we're
1621         doing the final table rendering so that we can collect more data at
1622         that point.
1623
1624         * eww.el (eww-submit): Make form submission work.
1625         (eww-tag-input): Implement submit buttons.
1626         (eww-click-radio): Implement radio and checkboxes.
1627         (eww-submit): Handle hidden elements.
1628
1629         * shr.el (shr-descend): Allow other packages to override (or provide)
1630         rendering of elements.
1631         (shr-expand-url): Strip query strings from URLs before expanding them.
1632
1633         * eww.el: Don't require cl-lib.
1634         (eww-tag-form): Start form support.
1635
1636         * dgnushack.el (dgnushack-compile): Ignore eww on XEmacs.
1637
1638         * eww.el: Start writing a new, tiny web browser.
1639         (eww-previous-url): New command.
1640         (eww-quit): New command.
1641
1642 2013-06-10  Albert Krewinkel  <krewinkel@moltkeplatz.de>
1643
1644         * sieve.el: Put point at beginning of buffer when viewing a script.
1645         (sieve-open-server): Respect the PORT parameter.  Show the correct port
1646         number in sieve-buffer's header.  Fixed code to also work with a string
1647         as port specifier.  Properly close the connection on pressing 'q'.  Make
1648         sieve-manage-quit close the connection and process buffer.  Also, remove
1649         duplicate keybinding for 'q'.
1650
1651 2013-06-10  Roy Hashimoto  <roy.hashimoto@gmail.com>  (tiny change)
1652
1653         * mm-view.el (mm-pkcs7-signed-magic): Allow newline in the regexp and
1654         make it easier to read.
1655         (mm-pkcs7-enveloped-magic): Ditto.
1656
1657 2013-06-06  Teodor Zlatanov  <tzz@lifelogs.com>
1658
1659         * gnus-ems.el (gnus-image-type-available-p): Test `display-images-p'
1660         before `image-type-available-p' to avoid loading the image libraries
1661         needlessly.
1662
1663 2013-06-05  David Engster  <deng@randomsample.de>
1664
1665         * gnus-sum.el (gnus-update-marks): Do not remove empty 'unexist'
1666         ranges, since `nnimap-retrieve-group-data-early' also uses it as a flag
1667         to see whether the group was synced before.
1668
1669 2013-06-05  Teodor Zlatanov  <tzz@lifelogs.com>
1670
1671         * tls.el (open-tls-stream): Remove unneeded buffer contents up to point
1672         when opening the connection.
1673         Suggested by João Távora <joaotavora@gmail.com> in
1674         <http://lists.gnu.org/archive/html/emacs-devel/2013-05/msg00464.html>.
1675
1676 2013-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
1677
1678         * gnus-art.el (article-date-ut, article-update-date-lapsed): Don't
1679         assume Date header begins with "Date", that may be customized into
1680         something like "X-Sent" using gnus-article-time-format.
1681         (article-transform-date): Allow multi-line Date header.
1682
1683 2013-06-02  David Engster  <deng@randomsample.de>
1684
1685         * registry.el (initialize-instance, registry-lookup)
1686         (registry-lookup-breaks-before-lexbind, registry-lookup-secondary)
1687         (registry-lookup-secondary-value, registry-search, registry-delete)
1688         (registry-insert, registry-reindex, registry-size, registry-prune): Do
1689         not wrap methods in `eval-and-compile'.  This breaks due to latest
1690         changes in EIEIO (introduction of eieio-core.el).
1691
1692 2013-05-30  Glenn Morris  <rgm@gnu.org>
1693
1694         * nnmail.el (nnmail-fancy-expiry-target):
1695         Also bind mail-dont-reply-to-names.
1696
1697         * spam-stat.el (spam-stat-save):
1698         No need to tweak font-lock in temp buffers.
1699
1700         * shr.el (shr-put-image): Silence compiler.
1701
1702 2013-05-29  Glenn Morris  <rgm@gnu.org>
1703
1704         * gnus-ems.el (set-process-plist): Every supported Emacs has this.
1705
1706         * gnus-group.el (gnus-sequence-of-unread-articles)
1707         (gnus-summary-add-mark, gnus-mark-article-as-read)
1708         (gnus-group-make-articles-read): Declare.
1709
1710         * gnus-sum.el (gnus-parameter-list-identifier)
1711         (gnus-article-stop-animations, gnus-stop-downloads)
1712         (gnus-article-only-boring-p, article-goto-body)
1713         (gnus-flush-original-article-buffer, article-narrow-to-head)
1714         (gnus-article-hidden-text-p, gnus-delete-wash-type)
1715         (gnus-summary-save-in-pipe, gnus-article-show-summary): Declare.
1716
1717         * gnus.el: No need to eval-and-compile autoloads.
1718
1719         * gravatar.el (help-function-arglist): Autoload.
1720
1721         * nnimap.el (gnus-refer-thread-use-nnir): Declare.
1722
1723         * nnmail.el (nnmail-fancy-expiry-target): Maybe use mail-dont-reply-to.
1724
1725         * spam.el: No need to load spam-report when compiling.
1726         No need to eval-and-compile autoloads.
1727         (spam-report-resend-to): Declare.
1728         (spam-report-resend-register-routine): Require 'spam-report.
1729
1730 2013-05-24  Julien Danjou  <julien@danjou.info>
1731
1732         * sieve.el (sieve-setup-buffer): Fix default port value in sieve buffer
1733         setup.
1734
1735 2013-05-23  Glenn Morris  <rgm@gnu.org>
1736
1737         * gnus-util.el (rmail-swap-buffers-maybe)
1738         (rmail-maybe-set-message-counters, rmail-count-new-messages)
1739         (rmail-summary-exists, rmail-show-message, rmail-summary-displayed)
1740         (rmail-pop-to-buffer, rmail-maybe-display-summary): Declare.
1741
1742         * mm-decode.el: No need to load term when compiling.
1743         (term-mode, term-char-mode): Declare.
1744
1745         * mm-util.el: No need to load jka-compr when compiling.
1746         (jka-compr-acceptable-retval-list, jka-compr-make-temp-name): Declare.
1747
1748         * nnmaildir.el: Require is automatically eval-and-compile.
1749         (nnmail): Require at run-time too.
1750
1751         * registry.el (registry-size): Move definition before use.
1752
1753 2013-05-22  Daiki Ueno  <ueno@gnu.org>
1754
1755         * mml2015.el (mml2015-epg-sign): Make sure to insert newline after the
1756         signed data to conform the standard.  (Bug#14232)
1757
1758 2013-05-20  Adam Sjøgren  <asjo@koldfront.dk>
1759
1760         * gnus-spec.el (gnus-parse-complex-format): Use unicode escape for left
1761         double angle quotation mark.
1762
1763 2013-05-20  Glenn Morris  <rgm@gnu.org>
1764
1765         * format-spec.el (format-spec): Allow spec chars with nil.  (Bug#14420)
1766
1767 2013-05-19  Adam Sjøgren  <asjo@koldfront.dk>
1768
1769         * message.el (message-insert-formatted-citation-line): handle finding
1770         first/lastname when more than 2 names appear.
1771
1772 2013-05-19  Adam Sjøgren  <asjo@koldfront.dk>
1773
1774         * shr.el (shr-tag-span): New function.
1775
1776 2013-05-18  Glenn Morris  <rgm@gnu.org>
1777
1778         * message.el (message-mode): Use message-mode-abbrev-table,
1779         with text-mode-abbrev-table as parent.  (Bug#14413)
1780
1781 2013-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
1782
1783         * message.el (message-expand-group): Decode group names.
1784
1785 2013-05-16  Julien Danjou  <julien@danjou.info>
1786
1787         * gnus-notifications.el (gnus-notifications-notify): Use photo-file as
1788         app-icon.
1789
1790 2013-05-15  Glenn Morris  <rgm@gnu.org>
1791
1792         * shr-color.el (shr-color-visible-luminance-min)
1793         (shr-color-visible-distance-min): Use shr-color group.
1794
1795 2013-05-11  Glenn Morris  <rgm@gnu.org>
1796
1797         * gnus-vm.el: Make it loadable without VM.
1798         (gnus-vm-make-folder, gnus-summary-save-in-vm): Require 'vm.
1799         (vm-forward-message, vm-reply, vm-mail): Remove unused autoloads.
1800
1801 2013-05-09  Glenn Morris  <rgm@gnu.org>
1802
1803         * mml1991.el: Make it loadable.  (Bug#13456)
1804
1805         * gnus-art.el (gnus-article-date-headers, gnus-blocked-images):
1806         * gnus-async.el (gnus-async-post-fetch-function):
1807         * gnus-gravatar.el (gnus-gravatar-size, gnus-gravatar-properties):
1808         * gnus-html.el (gnus-html-image-cache-ttl):
1809         * gnus-notifications.el (gnus-notifications-timeout):
1810         * gnus-picon.el (gnus-picon-properties):
1811         * gnus-util.el (gnus-completion-styles):
1812         * gnus.el (gnus-other-frame-resume-function):
1813         * message.el (message-user-organization-file)
1814         (message-cite-reply-position):
1815         * nnir.el (nnir-summary-line-format)
1816         (nnir-retrieve-headers-override-function):
1817         * shr-color.el (shr-color-visible-luminance-min):
1818         * shr.el (shr-blocked-images):
1819         * spam-report.el (spam-report-resend-to):
1820         * spam.el (spam-summary-exit-behavior): Fix custom types.
1821
1822         * gnus-salt.el (gnus-selected-tree-face): Fix default.
1823
1824 2013-05-07  Katsumi Yamaoka  <yamaoka@jpl.org>
1825
1826         * gnus-art.el (gnus-article-describe-bindings): Require help-mode
1827         because of let-binding help-xref-following.  (Bug#14356)
1828
1829 2013-05-06  Glenn Morris  <rgm@gnu.org>
1830
1831         * mml2015.el (mml2015-epg-sign): Add name="signature.asc".  (Bug#13465)
1832
1833 2013-05-04  Andrew Cohen  <cohen@bu.edu>
1834
1835         * gnus-sum.el (gnus-read-header): Ensure groups are prefixed when
1836         entering into the registry.
1837
1838 2013-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
1839
1840         * gnus.el: Ma Gnus v0.7 is released.
1841
1842 2013-05-01  Katsumi Yamaoka  <yamaoka@jpl.org>
1843
1844         * gnus-util.el (gnus-emacs-completing-read): Fix a filter for XEmacs.
1845         (Bug#14304)
1846
1847 2013-04-27  Glenn Morris  <rgm@gnu.org>
1848
1849         * gnus.el (gnus-list-debbugs):
1850         Use require rather than autoload.  (Bug#14262)
1851
1852 2013-04-27  Julien Danjou  <julien@danjou.info>
1853
1854         * sieve-manage.el (sieve-manage-authenticator-alist): Update the sieve
1855         port to "sieve" now that it has an official IANA port assigned.
1856
1857 2013-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
1858
1859         * mail-source.el (mail-source-fetch-pop, mail-source-check-pop):
1860         Don't set the MAILHOST environment variable permanently (Bug#14271).
1861
1862 2013-04-26  Glenn Morris  <rgm@gnu.org>
1863
1864         * message.el (message-bury): Revert 2013-03-18 change.  (Bug#14117)
1865
1866 2013-04-25  Andrew Cohen  <cohen@bu.edu>
1867
1868         * gnus-msg.el (gnus-inews-insert-gcc): Re-order conditional to work for
1869         string values of 'gcc-self.  Thanks to Saroj Thirumalai.
1870
1871 2013-04-24  Andrew Cohen  <cohen@bu.edu>
1872
1873         * nnir.el (nnir-close-group): Make sure we are in the right group.
1874
1875         * gnus-sum.el (gnus-summary-insert-articles): Force updates to the
1876         dependency table from all newly retrieved headers.
1877
1878 2013-04-16  David Edmondson  <dme@dme.org>
1879
1880         Support <img src="data:...">.
1881
1882         * shr.el (shr-image-from-data): New function.
1883         (shr-tag-img): Use it.
1884
1885 2013-04-14  Andrew Cohen  <cohen@bu.edu>
1886
1887         * nnir.el (nnir-request-set-mark): Make sure we are in the right
1888         group.
1889
1890 2013-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
1891
1892         * gnus-msg.el (gnus-msg-mail): Make it avoid using posting styles
1893         corresponding to any existing group (Bug#14166).
1894
1895 2013-04-10  Andrew Cohen  <cohen@bu.edu>
1896
1897         * nnir.el (number-sequence): No longer used.
1898         (nnir-request-set-mark): New function.
1899         (nnir-request-update-info): Improve marks updating.
1900         (nnir-request-scan): Don't duplicate marks updating.
1901         (gnus-group-make-nnir-group, nnir-run-imap, nnir-request-create-group):
1902         Use 'assq rather than 'assoc.  Quote anonymous function.
1903         (nnir-request-group, nnir-close-group, gnus-summary-create-nnir-group):
1904         Use 'gnus-group-prefixed-p.
1905         (gnus-summary-create-nnir-group): Make sure server for method is open.
1906
1907 2013-04-04  Andrew Cohen  <cohen@bu.edu>
1908
1909         * nnir.el (gnus-nnir-group-p): New function.
1910         (nnir-possibly-change-group): Use it.
1911
1912         * gnus-msg.el (gnus-setup-message): Use it.
1913
1914 2013-04-04  Katsumi Yamaoka  <yamaoka@jpl.org>
1915
1916         * mml.el (mml-minibuffer-read-description): Use `default' insted of
1917         `initial-input' for the argument name.
1918         Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
1919
1920 2013-04-03  Kevin Layer  <layer@known.net>  (tiny change)
1921
1922         * mml.el (mml-minibuffer-read-description): Allow passing in a prefix
1923         (used by MH-E).
1924
1925 2013-04-01  Andrew Cohen  <cohen@bu.edu>
1926
1927         * nnir.el (nnir-request-update-mark): Improve mark updating in original
1928         group.
1929
1930         * gnus-msg.el (nnir-article-number, nnir-article-group): Autoload to
1931         fix compilation.
1932
1933 2013-03-31  Andrew Cohen  <cohen@bu.edu>
1934
1935         * nnir.el (nnir-method-default-engines): And another typo.
1936
1937 2013-03-30  Andrew Cohen  <cohen@bu.edu>
1938
1939         * nnir.el (nnir-method-default-engines): Fix typo.
1940
1941 2013-03-29  Andrew Cohen  <cohen@bu.edu>
1942
1943         * nnir.el: Define 'number-sequence for xemacs.
1944         (gnus-summary-create-nnir-group): New function to create an nnir group
1945         from an nnir summary buffer based on the current query.
1946         (nnir-request-create-group): Update to allow nnir group creation based
1947         on the current query.
1948
1949 2013-03-28  Katsumi Yamaoka  <yamaoka@jpl.org>
1950
1951         * nndraft.el (nndraft-request-expire-articles):
1952         Make expiry target always `delete'.
1953
1954 2013-03-27  Andrew Cohen  <cohen@bu.edu>
1955
1956         * gnus-msg.el (gnus-setup-message): When replying from an nnir summary
1957         buffer use the posting-style and gcc of the original article group.
1958         (gnus-inews-insert-gcc): Don't set gcc-self for virtual groups.
1959
1960         * nnir.el: Fix byte-compile warning.  nnoo-define-skeleton should come
1961         after other deffoos.
1962
1963 2013-03-25  Andrew Cohen  <cohen@bu.edu>
1964
1965         * nnir.el: Major rewrite.  Cleaner separation between searches and group
1966         management.  Marks are now shown in nnir summary buffers.  Rudimentary
1967         support for real (i.e. not ephemeral) nnir groups.
1968         (gnus-summary-make-nnir-group): New function for initiating searches
1969         from a summary buffer.
1970
1971 2013-03-18  Sam Steingold  <sds@gnu.org>
1972
1973         * message.el (message-bury): Minor cleanup.
1974
1975 2013-03-07  Paul Eggert  <eggert@cs.ucla.edu>
1976
1977         * gnus-cite.el: Specify utf-8, not iso-8859-1, for ASCII file.
1978
1979 2013-03-06  Katsumi Yamaoka  <yamaoka@jpl.org>
1980
1981         * nndir.el (nndir-request-list): Remove 2nd argument passed to
1982         nnml-request-list.  (Bug#13873)
1983         (nndir-request-newsgroups): Remove, unused.
1984
1985         * nndraft.el (nndraft-request-newsgroups): Remove, unused.
1986
1987 2013-03-05  Paul Eggert  <eggert@cs.ucla.edu>
1988
1989         * deuglify.el, gnus-delay.el, gnus-spec.el, gnus-sum.el, html2text.el,
1990         message.el, mm-decode.el, mml1991.el, nnir.el, shr.el, utf7.el:
1991         Prefer UTF-8 when the encoding shouldn't matter and changes are small.
1992
1993 2013-03-03  Ted Phelps  <phelps@gnusto.com>
1994
1995         * shr.el: Make all the overlays set the `evaporate' property so that
1996         they're removed properly.
1997
1998 2013-02-25  Adam Sjøgren  <asjo@koldfront.dk>  (tiny change)
1999
2000         * mml2015.el (mml2015-epg-key-image): Wrap epg-gpg-program in
2001         shell-quote-argument.
2002
2003 2013-02-22  David Engster  <deng@randomsample.de>
2004
2005         * gnus-registry.el (gnus-registry-save): Provide class name when
2006         calling `eieio-persistent-read' to avoid "unsafe call" warning.  Use
2007         `condition-case' to stay compatible with older EIEIO versions which
2008         only accept one argument.
2009
2010 2013-02-17  Daiki Ueno  <ueno@gnu.org>
2011
2012         * mml2015.el (epg-key-user-id-list, epg-user-id-string)
2013         (epg-user-id-validity): Autoload.
2014         (mml2015-epg-check-user-id): New function.
2015         (mml2015-epg-check-sub-key): New function split from
2016         mml2015-epg-find-usable-key.
2017         (mml2015-epg-find-usable-key): Accept context, name, usage, and
2018         optional name-is-key-id, to handle the case when user-id is unusable.
2019         Reported by Łukasz Stelmach <stlman@poczta.fm>.
2020
2021 2013-02-17  Glenn Morris  <rgm@gnu.org>
2022
2023         * shr.el (shr-put-image): Use image-multi-frame-p if available.
2024
2025 2013-02-16  Glenn Morris  <rgm@gnu.org>
2026
2027         * shr.el (shr-put-image): Only animate images that specify a delay.
2028         This is consistent with the old image-animated-p behavior.
2029
2030 2013-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
2031
2032         * gnus-util.el (gnus-define-keys): Convert [?\S-\ ] to [(shift space)]
2033         for XEmacs.
2034
2035 2013-02-13  Juri Linkov  <juri@jurta.org>
2036
2037         * gnus-art.el (gnus-article-mode-map):
2038         * gnus-sum.el (gnus-summary-mode-map, gnus-summary-article-map):
2039         Make S-SPC scroll in the opposite sense to SPC.  (Bug#2145)
2040
2041 2013-02-07  Gábor Vida  <gabor.v.vida@ericsson.com>  (tiny change)
2042
2043         * auth-source.el (auth-source-format-prompt): Don't get confused by
2044         any "\" in replacement text.  (Bug#13637)
2045
2046 2013-01-30  Christopher Schmidt  <christopher@ch.ristopher.com>
2047
2048         * gnus-int.el (gnus-backend-trace-elapsed): New variable.
2049         (gnus-backend-trace): Honour gnus-backend-trace.
2050
2051         * mml.el (mml-insert-part): Insert closing tag.
2052
2053         * mm-decode.el (mm-save-part): Handle invalid read-file-name results.
2054
2055 2013-01-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2056
2057         * gnus-sum.el (gnus-summary-read-group-1): Protect against not being
2058         able to find the article, which can happen in debbugs groups,
2059         apparently.
2060
2061 2013-01-16  Glenn Morris  <rgm@gnu.org>
2062
2063         * smiley.el (smiley-style): Make the file loadable in batch mode.
2064
2065 2013-01-15  Stefan Monnier  <monnier@iro.umontreal.ca>
2066
2067         * nnimap.el (nnimap-keepalive): Don't throw an error if there's no more
2068         imap process running.
2069
2070 2013-01-14  Julien Danjou  <julien@danjou.info>
2071
2072         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups):
2073         Compare addresses against addresses, not against the full From field.
2074
2075 2013-01-13  Richard Stallman  <rms@gnu.org>
2076
2077         * message.el (message-forward-make-body-mime): New args BEG, END
2078         specify what part of FORWARD-BUFFER to use.  Do the work directly
2079         instead of calling `mml-insert-buffer'.
2080
2081 2013-01-11  Aaron S. Hawley  <Aaron.Hawley@vtinfo.com>
2082
2083         * gnus-start.el (gnus-check-new-newsgroups): Fix ambiguous doc string
2084         cross-reference(s).
2085
2086         * gnus-sum.el (gnus-summary-newsgroup-prefix): Fix ambiguous doc string
2087         cross-reference(s).
2088
2089 2013-01-11  Dmitry Antipov  <dmantipov@yandex.ru>
2090
2091         * gnus-art.el (gnus-mime-display-security): Use point-min-marker
2092         and point-max-marker.
2093         * gnus-async.el (gnus-async-article-callback): Use point-max-marker.
2094
2095 2013-01-11  Julien Danjou  <julien@danjou.info>
2096
2097         * color.el (color-rgb-to-hsv): Fix conversion computing in case min and
2098         max are almost equal.  Also return the correct value for V which is
2099         already between 0 and 1.
2100
2101 2013-01-10  Uwe Brauer  <oub@mat.ucm.es>  (tiny change)
2102
2103         * mml-smime.el (mml-smime-encrypt-to-self): New user option analogous
2104         to mml2015-encrypt-to-self.
2105         (mml-smime-epg-encrypt): Respect mml-smime-encrypt-to-self.
2106
2107 2013-01-09  Daiki Ueno  <ueno@gnu.org>
2108
2109         * mml-smime.el (epg-sub-key-fingerprint): Autoload for
2110         mml-smime-epg-find-usable-secret-key.
2111
2112 2013-01-08  Glenn Morris  <rgm@gnu.org>
2113
2114         * mml-smime.el (mml-smime-sign-with-sender): Add :version.
2115
2116 2013-01-07  Daiki Ueno  <ueno@gnu.org>
2117
2118         * mml-smime.el: Support signing by sender.
2119         Requested by Uwe Brauer.
2120         (mml-smime-sign-with-sender): New user option analogous
2121         to mml2015-sign-with-sender.
2122         (mml-smime-epg-sign): Respect mml-smime-sign-with-sender.
2123         (mml-smime-epg-find-usable-secret-key): New helper function copied from
2124         mml2015.el.
2125
2126 2012-12-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2127
2128         * gnus-msg.el (gnus-inews-insert-gcc): Don't insert Gcc headers if Gnus
2129         isn't running, because Gnus will probably not know how to handle the
2130         Gcc header (bug#11941).
2131
2132         * nnimap.el (nnimap-update-info): Treat \Deleted articles as \Read
2133         articles.
2134
2135 2012-12-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2136
2137         * nnfolder.el (nnfolder-recursive-directory-files): New function.
2138         (nnfolder-generate-active-file): Make this function work with recursive
2139         folder names.
2140
2141 2012-12-27  Lars Ingebrigtsen  <larsi@gnus.org>
2142
2143         * nntp.el (nntp-open-connection): Use HELP as the capability command
2144         instead of CAPABILITY because Typhoon v2.2.2.503 chokes completely on
2145         unknown commands.  And CAPABILITY is an unknown command (bug#12763).
2146
2147 2012-12-27  Wolfgang Jenkner  <wjenkner@inode.at>
2148
2149         * gnus-spec.el (gnus-face-face-function): Don't use nil as no-op face
2150         place holder since this gives `Invalid face reference: nil' messages.
2151         Use the `default' face instead.  It has the same effect here, even
2152         though it is not no-op.
2153
2154         * gnus-util.el
2155         (gnus-put-text-property-excluding-characters-with-faces): Similarly.
2156
2157 2012-12-27  Lars Ingebrigtsen  <larsi@gnus.org>
2158
2159         * gnus-msg.el (gnus-summary-resend-message): Don't bug out on
2160         non-string posting styles (bug#13285).
2161
2162 2012-12-27  Glenn Morris  <rgm@gnu.org>
2163
2164         * plstore.el (plstore-passphrase-callback-function):
2165         Use plstore-get-file.
2166
2167 2012-12-27  Andreas Schwab  <schwab@linux-m68k.org>
2168
2169         * mml2015.el (mml2015-epg-key-image): Separate attribute stream from
2170         stderr.
2171
2172 2012-12-26  Katsumi Yamaoka  <yamaoka@jpl.org>
2173
2174         * mml2015.el (mml2015-epg-key-image): Use mm-set-buffer-multibyte.
2175
2176         * gnus-compat.el (set-buffer-multibyte): Remove.
2177
2178 2012-12-25  Adam Sjøgren  <asjo@koldfront.dk>
2179
2180         * mml2015.el (mml2015-epg-key-image): Use --attribute-fd rather than
2181         temporary file to get PGP key image.  Pass no-show-photos when
2182         extracting image to avoid having it pop up twice.
2183
2184 2012-12-26  Lars Ingebrigtsen  <larsi@gnus.org>
2185
2186         * gnus-art.el (gnus-article-treat-types): Include text/html as parts
2187         eligible for treatment.
2188
2189         * gnus-util.el (gnus-goto-colon): Move to the beginning of the visual
2190         lines.  This makes summary commands with hidden threads work more
2191         reliably.
2192
2193         * gnus-cite.el (gnus-article-hide-citation-maybe): Leave an expansion
2194         button to mark the hidden citations (bug#9395).
2195
2196 2012-12-26  Daiki Ueno  <ueno@gnu.org>
2197
2198         * mml2015.el (mml2015-epg-signature-to-string): New function.
2199         (mml2015-epg-verify-result-to-string): New function.
2200         (mml2015-epg-decrypt, mml2015-epg-clear-decrypt, mml2015-epg-verify)
2201         (mml2015-epg-clear-verify): Use mml2015-epg-verify-result-to-string
2202         instead of epg-verify-result-to-string.
2203         (epg-signature-key-id, epg-signature-to-string): Autoload.
2204         (epg-verify-result-to-string): Remove autoload.
2205
2206 2012-12-25  Adam Sjøgren  <asjo@koldfront.dk>
2207
2208         * mml2015.el (mml2015-epg-key-image): New function, to retrieve photo
2209         ID image from GPG public key.
2210         (mml2015-epg-key-image-to-string): New function.
2211
2212 2012-12-25  Leo Liu  <sdl.web@gmail.com>
2213
2214         * plstore.el (plstore-passphrase-callback-function): Fix error when
2215         error when plstore-cache-passphrase-for-symmetric-encryption is set
2216         (bug#13264).
2217
2218 2012-12-25  Lars Ingebrigtsen  <larsi@gnus.org>
2219
2220         * gnus-sum.el (gnus-set-global-variables): Don't copy over the summary
2221         buffer to the article buffer here, because that clobbers multiple
2222         article buffers.
2223
2224         * gnus-art.el (gnus-article-setup-buffer): Make sure that the article
2225         buffer always points to the right summary buffer.
2226
2227 2012-12-25  John Wiegley  <jwiegley@gmail.com>
2228
2229         * auth-source.el (auth-source-netrc-parse): Allow using "password" as
2230         the password (bug#12097).
2231
2232 2012-12-25  Lars Ingebrigtsen  <larsi@gnus.org>
2233
2234         * shr.el (shr-tag-a): Don't tagify <A> elements that don't have HREFs
2235         (bug#13263).
2236
2237         * gnus-salt.el (gnus-highlight-selected-tree): Check whether the Tree
2238         buffer exists before using it (bug#12475).
2239
2240         * gnus-agent.el (gnus-agent-fetch-articles): Don't fetch articles from
2241         offline groups (bug#11937).
2242
2243         * message.el (message-yank-original): When using customize to set the
2244         value of `message-cite-style', the variable it set to a symbol that's
2245         the name of the variable, which must then be dereferenced (bug#12616).
2246
2247 2012-09-13  Wolfgang Jenkner  <wjenkner@inode.at>
2248
2249         * lisp/gnus-spec.el (gnus-face-face-function): Initialize the value of
2250         the `face' property with a list whose car is the face specified in the
2251         format string and whose cdr is (nil).
2252         * lisp/gnus-util.el
2253         (gnus-put-text-property-excluding-characters-with-faces):
2254         Change accordingly.
2255         (gnus-get-text-property-excluding-characters-with-faces): New function.
2256         * lisp/gnus-sum.el (gnus-summary-highlight-line):
2257         * lisp/gnus-salt.el (gnus-tree-highlight-node):
2258         * lisp/gnus-group.el (gnus-group-highlight-line): Use it.
2259
2260 2012-12-25  Lars Ingebrigtsen  <larsi@gnus.org>
2261
2262         * nnimap.el (nnimap-authenticator): Expand to allow specifying the
2263         login methods.
2264         (nnimap-login): Respect the `nnimap-authenticator' variable.
2265
2266         * gnus-sum.el (gnus-summary-push-marks-to-backend): Push the complete
2267         mark state when moving articles.  Otherwise unticked articles will get
2268         their ticks back after moving.
2269
2270 2012-12-24  Lars Ingebrigtsen  <larsi@gnus.org>
2271
2272         * gnus-srvr.el (gnus-browse-delete-group): Fix syntax error.
2273
2274         * message.el (message-ignored-news-headers): Always remove
2275         X-Message-SMTP-Method to avoid information leakage if the user
2276         mistakenly inserts the header into news messages.
2277
2278         * gnus-srvr.el (gnus-browse-delete-group): New command and keystroke.
2279
2280         * gnus-sum.el (gnus-summary-hide-thread): If point were further to the
2281         right than four characters, this command would move point to
2282         `point-max'.  Don't do that.
2283
2284         * gnus-group.el (gnus-group-read-ephemeral-group): Set the active data
2285         to nil to allow re-selecting groups that gain articles.
2286         (gnus-bug-group-download-format-alist): Update the URL.
2287
2288 2012-12-23  Andreas Schwab  <schwab@suse.de>
2289
2290         * shr.el (shr-tag-em): Render em as italic, not bold.
2291
2292 2012-12-23  Lars Ingebrigtsen  <larsi@gnus.org>
2293
2294         * gnus-int.el (gnus-backend-trace): Factor out into its own function
2295         for reuse.
2296         (gnus-open-server): Use it to add more tracing.
2297         (gnus-finish-retrieve-group-infos): Add backend tracing.
2298         (gnus-backend-trace): Also note the elapsed seconds.
2299
2300 2012-12-22  Philipp Haselwarter  <philipp@haselwarter.org>
2301
2302         * gnus-sync.el (gnus-sync-file-encrypt-to, gnus-sync-save):
2303         Set epa-file-encrypt-to from variable to avoid querying.
2304
2305 2012-12-14  Akinori MUSHA  <knu@iDaemons.org>  (tiny change)
2306
2307         * sieve-mode.el (sieve-font-lock-keywords):
2308         Keywords should be word delimited.  (Bug#13173)
2309
2310 2012-12-13  Andreas Schwab  <schwab@suse.de>
2311
2312         * tls.el (tls-program): Update customize type.
2313
2314 2012-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
2315
2316         * gnus-art.el (gnus-article-browse-html-parts): Use <div align="left">
2317         instead of <pre> to align message header.
2318
2319 2012-12-12  Sam Steingold  <sds@gnu.org>
2320
2321         * gnus.el (gnus-other-frame-resume-function): Add user option.
2322         (gnus-other-frame): Call `gnus-other-frame-resume-function' on resume.
2323
2324 2012-12-06  Sam Steingold  <sds@gnu.org>
2325
2326         * gnus-start.el (gnus-before-resume-hook): Add.
2327         (gnus-1): Run it when Gnus is alive.
2328
2329 2012-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
2330
2331         * gmm-utils.el (gmm-called-interactively-p): Restore as a macro.
2332         * gnus-art.el (article-unsplit-urls)
2333         * gnus-bookmark.el (gnus-bookmark-bmenu-list)
2334         * gnus-registry.el (gnus-registry-get-article-marks)
2335         * message.el (message-goto-body): Use it.
2336         (message-called-interactively-p): Remove.
2337
2338         * spam-stat.el (spam-stat-called-interactively-p): New macro.
2339         (spam-stat-score-buffer): Use it.
2340
2341         * spam.el: Silence the warnings against BBDB functions when compiling.
2342
2343         * gnus-score.el (gnus-score-decode-text-parts):
2344         Use append+mapcar instead of the cl function mapcan.
2345
2346 2012-12-05  Sam Steingold  <sds@gnu.org>
2347
2348         * gnus.el (gnus-delete-gnus-frame): Extract from `gnus-other-frame'.
2349         (gnus-other-frame): Add `gnus-delete-gnus-frame' to
2350         `gnus-suspend-gnus-hook' in addition to `gnus-exit-gnus-hook'.
2351
2352 2012-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
2353
2354         * gmm-utils.el (gmm-called-interactively-p): Revert.
2355         This seems to cause Emacs to get stuck!
2356         * gnus-art.el (article-unsplit-urls)
2357         * gnus-bookmark.el (gnus-bookmark-bmenu-list)
2358         * gnus-registry.el (gnus-registry-get-article-marks)
2359         * message.el (message-goto-body)
2360         (message-called-interactively-p): Revert.
2361
2362         * gmm-utils.el (gmm-called-interactively-p): New function.
2363         * gnus-art.el (article-unsplit-urls)
2364         * gnus-bookmark.el (gnus-bookmark-bmenu-list)
2365         * gnus-registry.el (gnus-registry-get-article-marks)
2366         * message.el (message-goto-body): Use it.
2367         (message-called-interactively-p): Remove.
2368
2369         * gmm-utils.el (gmm-flet): Restore it using cl-letf.
2370         * gnus-sync.el (gnus-sync-lesync-call)
2371         * message.el (message-read-from-minibuffer): Use it.
2372
2373 2012-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
2374
2375         * gmm-utils.el (gmm-flet): Remove.
2376         * gnus-sync.el (gnus-sync-lesync-call)
2377         * message.el (message-read-from-minibuffer): Don't use it.
2378
2379 2012-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
2380
2381         * gmm-utils.el (gmm-labels): Use cl-labels if available.
2382
2383 2012-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
2384
2385         * gmm-utils.el (gmm-flet, gmm-labels): New macros.
2386
2387         * gnus-sync.el (gnus-sync-lesync-call)
2388         * message.el (message-read-from-minibuffer): Use gmm-flet.
2389
2390         * gnus-score.el (gnus-score-decode-text-parts): Use gmm-labels.
2391
2392         * gnus-util.el (gnus-macroexpand-all): Remove.
2393
2394 2012-12-03  Andreas Schwab  <schwab@linux-m68k.org>
2395
2396         * gnus-sum.el (gnus-summary-mode-map): Bind gnus-summary-widget-forward
2397         to TAB, not [tab].
2398         (gnus-summary-article-map): Likewise.
2399
2400         * gnus-sync.el (gnus-sync-newsrc-offsets): Restore definition.
2401         (gnus-sync-save): Use correct format for gnus-sync-newsrc-loader.
2402
2403 2012-11-21  Paul Eggert  <eggert@cs.ucla.edu>
2404
2405         * time-date.el: Commentary fix.
2406
2407 2012-11-19  Stefan Monnier  <monnier@iro.umontreal.ca>
2408
2409         * color.el: Don't require cl.
2410         (color-complement): `caddr' -> `nth 2'.
2411
2412         * time-date.el (time-to-seconds): De-obsolete.
2413
2414 2012-11-19  Katsumi Yamaoka  <yamaoka@jpl.org>
2415
2416         * message.el (message-get-reply-headers):
2417         Make sure the reply goes to the author if it is a wide reply.
2418
2419 2012-11-16  Jan Tatarik  <jan.tatarik@gmail.com>
2420
2421         * gnus-score.el (gnus-score-body):
2422         * gnus-logic.el (gnus-advanced-body): Don't score by headers when
2423         scoring by body.
2424
2425 2012-11-16  Glenn Morris  <rgm@gnu.org>
2426
2427         * gnus-diary.el (nndiary-request-create-group-functions)
2428         (nndiary-request-update-info-functions)
2429         (gnus-subscribe-newsgroup-functions)
2430         (nndiary-request-accept-article-functions):
2431         Use new names for hooks rather than obsolete aliases.
2432
2433 2012-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
2434
2435         * dgnushack.el (define-obsolete-variable-alias): Simplify.
2436
2437 2012-11-08  Katsumi Yamaoka  <yamaoka@jpl.org>
2438
2439         * gnus-art.el (gnus-article-browse-html-parts): Always replace charset
2440         in meta tag with the one the part specifies in its header.
2441
2442 2012-10-25  Stephen Eglen  <S.J.Eglen@damtp.cam.ac.uk>
2443
2444         * gnus-dired.el (gnus-dired-attach): Attach to last used message buffer
2445         by default.
2446
2447 2012-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
2448
2449         * dgnushack.el (define-compiler-macro): Add autoload for XEmacs 21.4
2450         and SXEmacs.  Suggested by Nelson Ferreira <nelson.ferreira@ieee.org>.
2451
2452 2012-10-24  Katsumi Yamaoka  <yamaoka@jpl.org>
2453
2454         * dgnushack.el (define-obsolete-variable-alias): Add a compiler-marco
2455         and a runtime function for it, of which the XEmacs version takes only
2456         two arguments.
2457
2458 2012-10-23  Stefan Monnier  <monnier@iro.umontreal.ca>
2459
2460         * nndiary.el (nndiary-request-create-group-functions)
2461         (nndiary-request-update-info-functions)
2462         (nndiary-request-accept-article-functions):
2463         * gnus-start.el (gnus-subscribe-newsgroup-functions): Don't use
2464         "-hooks" suffix.
2465
2466 2012-10-19  Julien Danjou  <julien@danjou.info>
2467
2468         * gnus-art.el: Require gnus-util because it uses
2469         `gnus-timer--function'.
2470
2471 2012-10-17  Kazuhiro Ito  <kzhr@d1.dion.ne.jp>  (tiny change)
2472
2473         * starttls.el (starttls-extra-arguments): Doc fix.
2474
2475 2012-10-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2476
2477         * shr.el (shr-insert): \r is also not inserted, so don't try to delete
2478         it.
2479
2480 2012-10-06  Glenn Morris  <rgm@gnu.org>
2481
2482         * gnus-notifications.el (gnus-notifications):
2483         Add missing group :version tag.
2484         * gnus-msg.el (gnus-gcc-pre-body-encode-hook)
2485         (gnus-gcc-post-body-encode-hook):
2486         * gnus-sync.el (gnus-sync-lesync-name)
2487         (gnus-sync-lesync-install-topics): Add missing custom :version tags.
2488
2489 2012-10-06  Julian Scheid  <julians37@gmail.com>  (tiny change)
2490
2491         * color.el (color-hsl-to-rgb): Fix incorrect results for
2492         small and large hue values.  (Bug#12559)
2493
2494 2012-10-05  Katsumi Yamaoka  <yamaoka@jpl.org>
2495
2496         New UIDL implementation.
2497
2498         * mail-source.el (mail-sources, mail-source-keyword-map):
2499         Add :leave as a pop3 keyword.
2500         (mail-source-fetch-pop): Bind pop3-leave-mail-on-server.
2501
2502         * pop3.el (pop3-leave-mail-on-server): Allow number.
2503         (pop3-uidl-file, pop3-uidl-file-backup): New user options.
2504         (pop3-movemail): Add UIDL support.
2505         (pop3-send-streaming-command): Take a list of mail numbers instead of
2506         the number of mails.
2507         (pop3-write-to-file): Add X-UIDL header.
2508         (pop3-uidl-stat, pop3-uidl-dele, pop3-uidl-load, pop3-uidl-save)
2509         (pop3-uidl-add-xheader): New functions.
2510
2511         * message.el (message-ignored-resent-headers):
2512         Add X-Content-Length and X-UIDL headers.
2513
2514 2012-10-05  Glenn Morris  <rgm@gnu.org>
2515
2516         * color.el (color-name-to-rgb, color-rgb-to-hex)
2517         (color-hue-to-rgb, color-hsl-to-rgb, color-rgb-to-hsv)
2518         (color-rgb-to-hsl, color-srgb-to-xyz, color-saturate-hsl)
2519         (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
2520         (color-lighten-name, color-darken-hsl, color-darken-name): Doc fixes.
2521
2522 2012-09-25  Katsumi Yamaoka  <yamaoka@jpl.org>
2523
2524         * gnus-art.el (gnus-article-browse-delete-temp-files): Never ask again
2525         a user about whether to delete temp files if once a user answered as n.
2526
2527 2012-09-25  Chong Yidong  <cyd@gnu.org>
2528
2529         * password-cache.el (password-read-and-add): Use a declare form to mark
2530         this function obsolete.
2531
2532 2012-09-19  Katsumi Yamaoka  <yamaoka@jpl.org>
2533
2534         * lpath.el: Bind mail-encode-mml for old Emacsen.
2535
2536 2012-09-17  Richard Stallman  <rms@gnu.org>
2537
2538         * message.el (message-in-body-p): Don't set mark or modify buffer.
2539
2540         * mml.el (mml-attach-file): Doc fix.
2541         (mml-attach-external, mml-attach-buffer, mml-attach-file):
2542         Set mail-encode-mml when in Mail mode.
2543         Simplify code to set HEAD and move back to HEAD.
2544         (mml-insert-multipart, mml-insert-part):
2545         Set mail-encode-mml when in Mail mode.
2546
2547 2012-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
2548
2549         * gnus-util.el (gnus-timer--function): New function.
2550
2551         * gnus-art.el (gnus-article-stop-animations): Use it.
2552
2553 2012-09-13  Paul Eggert  <eggert@cs.ucla.edu>
2554
2555         Fix glitches caused by addition of psec to timers.
2556         * gnus-art.el (gnus-article-stop-animations): Use timer--function
2557         rather than raw access to timer vector.
2558
2559 2012-09-11  Julien Danjou  <julien@danjou.info>
2560
2561         * gnus-notifications.el (gnus-notifications): Check for nil values in
2562         ignored addresses check.
2563
2564 2012-09-10  Stefan Monnier  <monnier@iro.umontreal.ca>
2565
2566         * qp.el (quoted-printable-decode-region): Inline+CSE+strength-reduction.
2567
2568 2012-09-07  Chong Yidong  <cyd@gnu.org>
2569
2570         * gnus-util.el
2571         (gnus-put-text-property-excluding-characters-with-faces): Restore.
2572
2573         * gnus-salt.el (gnus-tree-highlight-node):
2574         * gnus-sum.el (gnus-summary-highlight-line):
2575         * gnus-group.el (gnus-group-highlight-line): Revert use of add-face.
2576
2577 2012-09-06  Lars Ingebrigtsen  <larsi@gnus.org>
2578
2579         * gnus-util.el: Fix compilation error on XEmacs 21.4.
2580
2581 2012-09-06  Juri Linkov  <juri@jurta.org>
2582
2583         * gnus-group.el (gnus-read-ephemeral-gmane-group): Change the naming
2584         scheme for buffer names to be more consistent with other group and
2585         article buffer names in Gnus.
2586
2587 2012-09-06  Lars Ingebrigtsen  <larsi@gnus.org>
2588
2589         * gnus-util.el
2590         (gnus-put-text-property-excluding-characters-with-faces): Removed.
2591
2592         * gnus-compat.el: Define compat function `add-face' from Wolfgang
2593         Jenkner.
2594
2595         * gnus-group.el (gnus-group-highlight-line): Use combining faces.
2596
2597         * gnus-sum.el (gnus-summary-highlight-line): Ditto.
2598
2599         * gnus-salt.el (gnus-tree-highlight-node): Ditto.
2600
2601 2012-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
2602
2603         * gnus-score.el (gnus-score-decode-text-parts): Use #' for
2604         mm-text-parts used in labels macro to make it work with XEmacs 21.5.
2605
2606         * gnus-util.el (gnus-string-prefix-p): New function, an alias to
2607         string-prefix-p in Emacs >=23.2.
2608
2609         * nnmaildir.el (nnmaildir--ensure-suffix, nnmaildir--add-flag)
2610         (nnmaildir--remove-flag, nnmaildir--scan): Use gnus-string-match-p
2611         instead of string-match-p.
2612         (nnmaildir--scan): Use gnus-string-prefix-p instead of string-prefix-p.
2613
2614 2012-09-06  Kenichi Handa  <handa@gnu.org>
2615
2616         * qp.el (quoted-printable-decode-region): Fix previous change; handle
2617         lowercase a..f.
2618
2619 2012-09-05  Magnus Henoch  <magnus.henoch@gmail.com>
2620
2621         * nnmaildir.el (nnmaildir--article-set-flags): Fix compilation error.
2622
2623 2012-09-05  Martin Stjernholm  <mast@lysator.liu.se>
2624
2625         * nnimap.el (nnimap-request-move-article): Decode the group name when
2626         doing internal moves to avoid charset issues.
2627
2628         * gnus-demon.el (gnus-demon-init): Fixed regression when IDLE is t and
2629         TIME is set.
2630
2631 2012-09-05  Juri Linkov  <juri@jurta.org>
2632
2633         * gnus-group.el (gnus-read-ephemeral-bug-group): Allow opening more
2634         than one group at a time (bug#11961).
2635
2636 2012-09-05  Julien Danjou  <julien@danjou.info>
2637
2638         * gnus-srvr.el (gnus-server-open-server): Don't message on failure:
2639         this hide the real reason with a message giving absolutely no hint.
2640
2641 2012-09-05  Lars Ingebrigtsen  <larsi@gnus.org>
2642
2643         * gnus-group.el (gnus-group-mark-article-read): Propagate the read mark
2644         to the backend (bug#11804).
2645
2646         * message.el (message-insert-newsgroups): Don't insert newsgroup
2647         duplicates (bug#12275).
2648
2649 2012-09-05  John Wiegley  <johnw@newartisans.com>
2650
2651         * gnus.el (gnus-expand-group-parameters): Allow regexp substitutions in
2652         sieve rules.
2653
2654 2012-09-05  Jan Tatarik  <jan.tatarik@gmail.com>
2655
2656         * gnus-score.el (gnus-score-decode-text-parts): Use #' for the local
2657         function.
2658
2659         * gnus-logic.el (gnus-advanced-body): Allow scoring on decoded bodies.
2660
2661         * gnus-score.el (gnus-score-decode-text-parts): Ditto.
2662
2663 2012-09-05  Magnus Henoch  <magnus.henoch@gmail.com>
2664
2665         * nnmaildir.el: Make nnmaildir understand and write maildir flags.
2666         That is, rename files from "unique:2," to "unique:2,S" for "seen", etc.
2667         This should make nnmaildir more usable with offlineimap.
2668
2669 2012-09-05  Julien Danjou  <julien@danjou.info>
2670
2671         * nnimap.el (nnimap-request-list): Revert change that made listing
2672         synchronous.
2673         (nnimap-get-responses): Restore.
2674
2675 2012-09-03  Lars Ingebrigtsen  <larsi@gnus.org>
2676
2677         * dgnushack.el: XEmacs 21.5 compilation fix.
2678
2679         * gnus-notifications.el (gnus-notifications-notify): Use it.
2680
2681         * gnus-fun.el (gnus-funcall-no-warning): New function to silence
2682         warnings on XEmacs.
2683
2684 2012-09-01  Paul Eggert  <eggert@cs.ucla.edu>
2685
2686         Better seeds for (random).
2687         * gnus-sync.el (gnus-sync-lesync-setup):
2688         * message.el (message-canlock-generate, message-unique-id):
2689         Change (random t) to (random), now that the latter is more random.
2690
2691 2012-08-31  Dave Abrahams  <dave@boostpro.com>
2692
2693         * nnimap.el (nnimap-change-group): Document result value
2694
2695         * auth-source.el (auth-sources): Fix macos keychain access.
2696
2697         * gnus-int.el (gnus-request-head): When gnus-override-method is set,
2698         allow the backend `request-head' function to determine the group
2699         name on its own.
2700         (gnus-request-expire-articles): Filter out negative article numbers
2701         during expiry (Bug#11980).
2702
2703         * gnus-range.el (gnus-set-difference): Change gnus-set-difference from
2704         O(N^2) to O(N).  This makes warping into huge groups tolerable.
2705
2706         * gnus-registry.el (gnus-try-warping-via-registry): Don't act as though
2707         you've found the article when you haven't.
2708
2709         * nnimap.el (nnimap-find-article-by-message-id): Account for the fact
2710         that nnimap-change-group can return t.
2711
2712 2012-08-31  Stefan Monnier  <monnier@iro.umontreal.ca>
2713
2714         * gnus-notifications.el (gnus-notifications-action): Avoid CL-ism.
2715
2716 2012-08-30  Julien Danjou  <julien@danjou.info>
2717
2718         * gnus-notifications.el (gnus-notifications-notify): Use timeout from
2719         `gnus-notifications-timeout'.
2720         (gnus-notifications-timeout): Add.
2721         (gnus-notifications-action): New function.
2722         (gnus-notifications-notify): Add :action using
2723         `gnus-notifications-action'.
2724         (gnus-notifications-id-to-msg): New variable.
2725         (gnus-notifications): Use `gnus-notifications-id-to-msg' to map
2726         notifications id to messages.
2727
2728 2012-08-30  Kenichi Handa  <handa@gnu.org>
2729
2730         * qp.el (quoted-printable-decode-region): Decode multiple bytes at
2731         once.
2732
2733 2012-08-29  Julien Danjou  <julien@danjou.info>
2734
2735         * gnus-notifications.el: New file.
2736         (gnus-notifications-notify): New function.
2737         (gnus-notifications): Use `gnus-notifications-notify'.
2738
2739 2012-08-28  Katsumi Yamaoka  <yamaoka@jpl.org>
2740
2741         * gnus-sum.el (gnus-summary-enter-digest-group): Decode content
2742         transfer encoding first; bind gnus-newsgroup-charset to the charset
2743         that the article specifies (Bug#12209).
2744
2745 2012-08-22  Katsumi Yamaoka  <yamaoka@jpl.org>
2746
2747         * gnus-cus.el (gnus-group-customize): Decode values posting-style holds.
2748         (gnus-group-customize-done): Encode values posting-style holds.
2749
2750         * gnus-msg.el (gnus-summary-resend-message)
2751         (gnus-configure-posting-styles): Decode values posting-style group
2752         parameter holds.
2753
2754 2012-08-21  Katsumi Yamaoka  <yamaoka@jpl.org>
2755
2756         * gnus-msg.el (gnus-summary-resend-message): Honor posting-style for
2757         `name' and `address' in Resent-From header.
2758
2759 2012-08-14  Chong Yidong  <cyd@gnu.org>
2760
2761         * gnus-art.el (article-display-face): Handle failure in
2762         gnus-create-image (Bug#11802).
2763
2764 2012-08-10  Stefan Monnier  <monnier@iro.umontreal.ca>
2765
2766         * gnus-agent.el (gnus-agent-cat-defaccessor, gnus-agent-cat-groups):
2767         Use defsetf.
2768
2769 2012-08-10  Daiki Ueno  <ueno@unixuser.org>
2770
2771         * auth-source.el (auth-source-plstore-search)
2772         (auth-source-secrets-search): Ignore :require and :type in search spec.
2773
2774 2012-08-06  Julien Danjou  <julien@danjou.info>
2775
2776         * nnimap.el (nnimap-request-head): Resture to-buffer parameter, used by
2777         `nnimap-request-move-article'.
2778
2779         * gnus-demon.el (gnus-demon-add-handler, gnus-demon-remove-handler):
2780         Remove autoload, already handled by gnus.el.
2781
2782         * nnimap.el (nnimap-request-head): Remove to-buffer argument.
2783
2784         * gnus-int.el (gnus-request-head): Remove to-buffer argument, only
2785         supported by nnimap actually.  Reverts previous change.
2786
2787         * gnus-int.el (gnus-request-head): Add an optional to-buffer parameter
2788         to mimic `gnus-request-article' and enjoy backends the nn*-request-head
2789         to-buffer argument that is already supported.
2790
2791 2012-08-05  Julien Danjou  <julien@danjou.info>
2792
2793         * gnus-demon.el (gnus-demon-add-handler, gnus-demon-remove-handler):
2794         Add autoload.
2795
2796 2012-07-31  Katsumi Yamaoka  <yamaoka@jpl.org>
2797
2798         * gnus.el (gnus-valid-select-methods): Fix custom type.
2799
2800 2012-07-29  Teodor Zlatanov  <tzz@lifelogs.com>
2801
2802         * auth-source.el (auth-sources, auth-source-backend-parse)
2803         (auth-source-macos-keychain-search)
2804         (auth-source-macos-keychain-search-items)
2805         (auth-source-macos-keychain-result-append)
2806         (auth-source-macos-keychain-create): Support Mac OS X Keychains in
2807         auth-source.el through the /usr/bin/security utility.
2808         (auth-sources): Fix syntax error.
2809         (auth-source-macos-keychain-result-append): Fix variable name.
2810         (auth-sources, auth-source-macos-keychain-result-append): More fixes.
2811
2812 2012-07-27  Julien Danjou  <julien@danjou.info>
2813
2814         * message.el (fboundp): Add a defalias on `mail-dont-reply-to' for
2815         Emacs < 24.1
2816
2817 2012-07-27  Katsumi Yamaoka  <yamaoka@jpl.org>
2818
2819         * message.el (message-kill-address): Don't kill last newline.
2820         (message-skip-to-next-address): Don't move to the next header.
2821         (message-fill-field-address): Work properly.
2822
2823 2012-07-25  Julien Danjou  <julien@danjou.info>
2824
2825         * gnus-art.el (gnus-kill-sticky-article-buffers): Reintroduce.
2826
2827 2012-07-24  Julien Danjou  <julien@danjou.info>
2828
2829         * mail-source.el (mail-source-movemail-and-remove): Remove, unused.
2830
2831         * nntp.el (nntp-send-nosy-authinfo, nntp-send-authinfo-from-file)
2832         (nntp-async-timer-handler): Remove, unused.
2833
2834         * nnimap.el (nnimap-get-responses): Remove, unused.
2835
2836         * nnheader.el (mail-header-set-extra): Remove, unused.
2837
2838         * netrc.el (netrc-find-service-number, netrc-store-data): Remove,
2839         unused.
2840
2841         * mm-view.el (mm-view-sound-file): Remove, unused.
2842
2843         * mm-url.el (mm-url-fetch-simple, mm-url-fetch-form)
2844         (mm-url-encode-multipart-form-data): Remove, unused.
2845
2846         * message.el (message-remove-signature, message-make-host-name)
2847         (message-fill-address): Remove, unused.
2848
2849         * gnus.el (gnus-writable-groups, gnus-group-guess-prefixed-name)
2850         (gnus-group-guess-full-name, gnus-group-guess-prefixed-name): Remove,
2851         unused.
2852
2853         * gnus-xmas.el (gnus-xmas-highlight-selected-summary)
2854         (gnus-xmas-call-region): Remove, unused.
2855
2856         * gnus-uu.el (gnus-uu-find-name-in-shar): Remove, unused.
2857
2858         * gnus-util.el (gnus-extract-address-component-name)
2859         (gnus-extract-address-component-email, gnus-sortable-date)
2860         (gnus-alist-to-hashtable, gnus-hashtable-to-alist)
2861         (gnus-process-live-p): Remove, unused.
2862
2863         * gnus-topic.el (gnus-group-parent-topic): Remove, unused.
2864
2865         * gnus-sum.el (gnus-score-set-default, gnus-article-parent-p)
2866         (gnus-article-read-p, gnus-uncompress-marks): Remove, unused.
2867         (gnus-summary-set-current-mark): Remove obsolete, empty and unused
2868         function.
2869
2870         * gnus-start.el (gnus-kill-newsgroup): Remove unused obsolete function.
2871
2872         * gnus-score.el (gnus-summary-score-crossposting)
2873         (gnus-score-regexp-bad-p): Remove, unused.
2874
2875         * gnus-salt.el (gnus-tree-goto-article): Remove, unused.
2876
2877         * gnus-range.el (gnus-sublist-p): Remove, unused.
2878
2879         * gnus-msg.el (gnus-mail-parse-comma-list, gnus-put-message): Remove,
2880         unused.
2881
2882         * gnus-kill.el (gnus-Newsgroup-kill-file): Remove, unused.
2883
2884         * gnus-int.el (gnus-list-active-group, gnus-request-group-articles)
2885         (gnus-request-associate-buffer): Remove, unused.
2886
2887         * gnus-group.el (gnus-group-set-method-info)
2888         (gnus-group-set-params-info): Remove, unused.
2889
2890         * gnus-fun.el (gnus-shell-command-to-string)
2891         (gnus-shell-command-on-region): Remove, unused.
2892
2893         * gnus-cite.el (gnus-cited-line-p): Remove, unused.
2894
2895         * gnus-art.el (gnus-article-text-type-exists-p)
2896         (article-translate-characters, gnus-article-hide-text-of-type)
2897         (gnus-kill-sticky-article-buffers, gnus-article-maybe-highlight):
2898         Remove, unused.
2899
2900 2012-07-22  Andrew Cohen  <cohen@bu.edu>
2901
2902         * nnir.el ("nnir"): Add 'virtual ability to nnir backend.
2903
2904 2012-07-21  Julien Danjou  <julien@danjou.info>
2905
2906         * message.el (message-dont-reply-to-names): Replace deprecated
2907         `rmail-dont-reply-to-names' with `mail-dont-reply-to-names'.
2908         (message-get-reply-headers): Ditto.
2909
2910 2012-07-18  Julien Danjou  <julien@danjou.info>
2911
2912         * sieve-mode.el (sieve-mode-map): Bind C-c C-c to
2913         `sieve-upload-and-kill'.
2914
2915         * sieve.el (sieve-bury-buffer): Remove function.
2916         (sieve-manage-mode-map): Map "q" to `kill-buffer'.
2917         (sieve-upload-and-kill): New function, mapped to C-c C-c.
2918
2919 2012-07-17  Andreas Schwab  <schwab@linux-m68k.org>
2920
2921         * shr.el (shr-expand-url): Handle URL starting with `//'.
2922
2923 2012-07-13  Chong Yidong  <cyd@gnu.org>
2924
2925         * smime.el (smime-certificate-info): Set buffer-read-only directly,
2926         instead of calling toggle-read-only with a (bogus) argument.
2927
2928 2012-07-09  Tassilo Horn  <tassilo@member.fsf.org>
2929
2930         * gnus-sum.el (gnus-summary-limit-to-author): Use default value instead
2931         of initial input when reading the author to restrict the summary to.
2932
2933 2012-07-09  Katsumi Yamaoka  <yamaoka@jpl.org>
2934
2935         * mm-decode.el (mm-shr):
2936         Allow overriding charset by mm-charset-override-alist.
2937
2938 2012-07-03  Katsumi Yamaoka  <yamaoka@jpl.org>
2939
2940         * gnus-art.el (gnus-article-view-part):
2941         Toggle subparts of multipart/alternative part.
2942
2943 2012-06-27  Stefan Monnier  <monnier@iro.umontreal.ca>
2944
2945         * shr.el (shr-render-buffer): New command.
2946         (shr-visit-file): Use it.
2947
2948 2012-06-27  Katsumi Yamaoka  <yamaoka@jpl.org>
2949
2950         * tests/gnustest-nntp.el, tests/gnustest-registry.el:
2951         Set no-byte-compile and no-update-autoloads.
2952
2953 2012-06-26  Katsumi Yamaoka  <yamaoka@jpl.org>
2954
2955         * mm-decode.el: Add coding cookie for a soft hyphen that mm-shr uses.
2956
2957 2012-06-25  Julien Danjou  <julien@danjou.info>
2958
2959         * nnimap.el (nnimap-request-articles-find-limit): Rename from
2960         `nnimap-request-move-articles-find-limit' since we do not use it only
2961         for move operations.
2962         (nnimap-request-accept-article): Use
2963         `nnimap-request-articles-find-limit' to limit search by message-id.
2964
2965 2012-06-22  Paul Eggert  <eggert@cs.ucla.edu>
2966
2967         Support higher-resolution time stamps (Bug#9000).
2968
2969         * time-date.el (with-decoded-time-value): New arg PICO-SYMBOL in
2970         VARLIST.  It's optional, for backward compatibility.
2971         (encode-time-value): New optional arg PICO.  New type 3.
2972         (time-to-seconds) [!float-time]: Support the new picoseconds
2973         component if it's used.
2974         (seconds-to-time, time-subtract, time-add):
2975         Support ps-resolution time stamps as well.
2976
2977 2012-06-19  Julien Danjou  <julien@danjou.info>
2978
2979         * nnir.el (nnir-run-imap): Fix, use `nnimap-change-group'.
2980
2981         * nnimap.el (nnimap-log-buffer): Check that
2982         `window-point-insertion-type' is boundp, since it's not available in
2983         XEmacs.
2984
2985 2012-06-19  Michael Welsh Duggan  <md5i@md5i.com>  (tiny change)
2986
2987         * nnimap.el (nnimap-log-buffer): Add this, setting
2988         `window-point-insertion-type' in the buffer to t.
2989         (nnimap-log-command): Use nnimap-log-buffer.
2990
2991 2012-06-19  Julien Danjou  <julien@danjou.info>
2992
2993         * nnimap.el (nnimap-find-article-by-message-id): Add an optional limit
2994         argument to be able to limit the search.
2995         (nnimap-request-move-article): Use `nnimap-request-move-articles-find-limit'.
2996         (nnimap-request-move-articles-find-limit): Add this to limit the search
2997         by Message-Id after a message move.
2998         (nnimap): Add defgroup.
2999
3000 2012-06-18  Nelson Ferreira  <nelson.ferreira@ieee.org>  (tiny change)
3001
3002         * gnus-win.el (gnus-configure-frame): Pass an arg to window-dedicated-p.
3003
3004 2012-06-15  Julien Danjou  <julien@danjou.info>
3005
3006         * nnimap.el (nnimap-find-article-by-message-id): Use
3007         `nnimap-possibly-change-group' rather than its own EXAMINE call.
3008         (nnimap-possibly-change-group): Add read-only argument.
3009         (nnimap-request-list): Use nnimap-possibly-change-group rather than
3010         issuing EXAMINE manually.
3011         (nnimap-find-article-by-message-id): Use `nnimap-possibly-change-group'
3012         with read-only argument.
3013         (nnimap-change-group): Rename from `nnimap-possibly-change-group'.  We
3014         cannot possibly change because we need to be sure that it's either
3015         read-write or read-only.
3016
3017 2012-06-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3018
3019         * gnus-art.el (gnus-article-read-summary-keys): Protect against the key
3020         being bound to a lambda form.
3021
3022 2012-04-14  Wolfgang Jenkner  <wjenkner@inode.at>
3023
3024         * gnus-agent.el (gnus-agent-retrieve-headers): Recalculate the range of
3025         articles when fetch-old is non-nil (bug#11370).
3026
3027 2012-05-04  Wolfgang Jenkner  <wjenkner@inode.at>
3028
3029         * gnus-picon.el (gnus-picon-properties): New defcustom.
3030         (gnus-picon-create-glyph): Use it.
3031
3032 2012-06-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3033
3034         * gnus-group.el (gnus-group-get-new-news): Respect
3035         `gnus-group-use-permanent-levels', as documented (bug#11638).
3036
3037 2012-06-10  Dave Abrahams  <dave@boostpro.com>
3038
3039         * gnus-int.el (gnus-warp-to-article): Limit registry warping to real
3040         groups (bug#11641).
3041
3042 2012-06-10  Toke Høiland-Jørgensen  <toke@toke.dk>  (tiny change)
3043
3044         * nnmaildir.el (nnmaildir-request-expire-articles): Ensure that `time'
3045         is an integer to avoid later problems.
3046
3047 2012-06-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3048
3049         * shr.el: Add a iso-8859-1 cookie to make stuff work under other
3050         locales.
3051
3052         * mm-decode.el (mm-display-part): Dissect archives when hitting `RET'
3053         on a handle.
3054
3055         * gnus-sum.el (gnus-summary-limit-to-author): Use the current From
3056         address as the default.
3057         (gnus-summary-insert-old-articles): Don't include unexisting messages.
3058
3059         * nnfolder.el (nnfolder-save-buffer): Delete old versions silently.  It
3060         makes no sense to query the user about internal files.
3061
3062         * gnus-spec.el: Remove all the byte-compilation stuff, since
3063         benchmarking shows that it doesn't help when entering large summary
3064         buffers.
3065
3066         * gnus-xmas.el (gnus-xmas-define): Remove.
3067
3068         * gnus-util.el (gnus-byte-code): Remove.
3069
3070         * gnus-spec.el (gnus-update-format-specifications): Remove outdated
3071         grouplens stuff.
3072
3073 2012-06-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3074
3075         * gnus-msg.el (gnus-msg-mail): Warn the user about Gnus not running
3076         (bug#11514).
3077
3078 2012-06-07  Stephen Eglen  <S.J.Eglen@damtp.cam.ac.uk>
3079
3080         * message.el (message-buffers): Return all buffers derived from Message
3081         to make `gnus-dired-attach' work with mu4e.
3082
3083 2012-06-01  Stefan Monnier  <monnier@iro.umontreal.ca>
3084
3085         * nntp.el: Stop the `letf' madness.
3086         (nntp--report-1): New var.
3087         (nntp-report): Merge nntp-report-1 into it.
3088         (nntp-with-open-group-function): Set nntp--report-1 instead of modifying
3089         the nntp-report function.
3090
3091         * auth-source.el: Fix comment-style to follow the convention.
3092
3093 2012-05-28  Daiki Ueno  <ueno@unixuser.org>
3094
3095         * mm-decode.el (mm-inhibit-auto-detect-attachment): New variable.
3096         (mm-dissect-singlepart): Don't guess the MIME type of
3097         application/octet-stream parts if mm-inhibit-auto-detect-attachment is
3098         set.
3099         (mm-dissect-multipart): Bind mm-inhibit-auto-detect-attachment if the
3100         toplevel MIME type is multipart/encrypted.
3101
3102 2012-05-27  Katsumi Yamaoka  <yamaoka@jpl.org>
3103
3104         * gnus-msg.el (gnus-msg-mail): Ensure that gnus-newsgroup-name is
3105         a string so that Gcc works (bug#11514).
3106
3107 2012-05-26  Stefan Monnier  <monnier@iro.umontreal.ca>
3108
3109         * legacy-gnus-agent.el (gnus-agent-unhook-expire-days):
3110         * gnus-demon.el (gnus-demon-init): Don't bother with type-of.
3111
3112 2012-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
3113
3114         * gnus-win.el (gnus-configure-frame): Don't signal an error when
3115         jumping to *Server* from a dedicated *Group* window.
3116         (gnus-configure-frame): CSE.
3117
3118         * gnus-registry.el: Minor style cleanup.
3119         (gnus-registry--set/remove-mark): New function, extracted from
3120         gnus-registry-install-shortcuts.
3121         (gnus-registry-install-shortcuts): Use it.
3122
3123 2012-05-25  Katsumi Yamaoka  <yamaoka@jpl.org>
3124
3125         * nnspool.el (news-path): Use eval-and-compile.
3126
3127 2012-05-24  Glenn Morris  <rgm@gnu.org>
3128
3129         * nnspool.el (news-directory, news-path, news-inews-program):
3130         Move here from paths.el.  Don't see a need for these to be autoloaded.
3131
3132         * gnus.el (gnus-default-nntp-server): Make it a defcustom.
3133         Merge in doc from paths.el version.  Don't see any need for this to be
3134         autoloaded, or for the warning about users not setting it.
3135
3136 2011-12-02  Wolfgang Jenkner  <wjenkner@inode.at>
3137
3138         * gnus-agent.el (gnus-agent-save-active): Deal with the "groups"
3139         format.  In particular, add an optional argument and a docstring.
3140
3141         * gnus-start.el (gnus-groups-to-gnus-format): Use it.
3142
3143         * nntp.el (nntp-finish-retrieve-group-infos): Make `nntp-server-buffer'
3144         current before calling `gnus-groups-to-gnus-format'.
3145         Note that this was already the case for `gnus-active-to-gnus-format'.
3146
3147 2012-05-04  Paul Eggert  <eggert@cs.ucla.edu>
3148
3149         Fix minor Y10k bug.
3150         * nnweb.el (nnweb-google-parse-1): Don't assume years have 4 digits.
3151
3152 2012-05-01  Stefan Monnier  <monnier@iro.umontreal.ca>
3153
3154         * nnimap.el (nnimap-open-connection-1): Don't leave an "opening..."
3155         message once it's actually open.
3156
3157 2012-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
3158
3159         * gnus.el: Ma Gnus v0.5 is released.
3160
3161 2012-04-28  Stefan Monnier  <monnier@iro.umontreal.ca>
3162
3163         * auth-source.el (auth-source--aput-1, auth-source--aput)
3164         (auth-source--aget): New functions and macros.
3165         Use them instead of aput/aget.
3166
3167 2012-04-27  Andreas Schwab  <schwab@linux-m68k.org>
3168
3169         * gnus.el (debbugs-gnu): Don't override existing autoload definition.
3170
3171 2012-04-26  Daiki Ueno  <ueno@unixuser.org>
3172
3173         * plstore.el (plstore-called-interactively-p): New compat macro copied
3174         from message.el.
3175         (plstore-mode): Use it.
3176
3177 2012-04-26  Daiki Ueno  <ueno@unixuser.org>
3178
3179         * plstore.el: Revive the editing feature.
3180         (plstore-mode): New mode to edit plstore file.
3181         (plstore-mode-toggle-display, plstore-mode-original)
3182         (plstore-mode-decoded): New command.
3183         (plstore--encode, plstore--decode, plstore--write-contents-functions)
3184         (plstore--insert-buffer, plstore--make): New function.
3185         (plstore-open, plstore-save): Simplify by using them.
3186
3187 2012-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
3188
3189         * pop3.el (pop3-wait-for-messages): Fix retrieved data size calculation.
3190
3191 2012-04-19  Juanma Barranquero  <lekktu@gmail.com>
3192
3193         * tls.el (open-tls-stream): Remove unused binding.
3194
3195 2012-04-16  Glenn Morris  <rgm@gnu.org>
3196
3197         * nndraft.el (nndraft-request-list): Fix declaration.
3198
3199 2012-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3200
3201         * mm-decode.el (mm-dissect-buffer): Doc fix.
3202
3203         * gnus-msg.el (gnus-inews-insert-gcc): Don't do the alist stuff when we
3204         don't have a current group.
3205
3206         * gnus-sum.el (gnus-handle-ephemeral-exit): Avoid creating the group
3207         buffer if it doesn't exist.
3208
3209         * gnus-group.el (gnus-group-read-ephemeral-group): If no quit-config is
3210         given, mark the group as ephemeral with the current window conf.
3211
3212         * gnus-sum.el (gnus-set-global-variables): Don't assume that the group
3213         buffer exists, which it doesn't if we haven't started Gnus.
3214         (gnus-summary-exit): Allow quitting when we don't have a group buffer.
3215
3216 2012-04-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3217
3218         * mml.el (mml-generate-mime): Allow specifying what the top-level part
3219         type is.
3220
3221         * gnus-start.el (gnus-clean-old-newsrc): Remove totally bogus
3222         `unexists' entries.
3223         (gnus-clean-old-newsrc): Fix last checkin.
3224
3225         * nnimap.el (nnimap-update-info): None of the articles below the active
3226         low-water mark exist.
3227
3228         * dgnushack.el: Get rid of XEmacs compilation warning.
3229
3230         * gnus-msg.el (gnus-summary-cancel-article): See what From header we
3231         would have gotten if we posted to the group, and use that to compare
3232         against the message we want to cancel (bug#10808).
3233
3234         * gnus-sum.el (gnus-auto-center-summary): `scroll-margin' isn't defined
3235         on XEmacs.
3236
3237 2012-04-10  Philipp Haselwarter  <philipp.haselwarter@gmx.de>  (tiny change)
3238
3239         * gnus-sum.el (gnus-auto-center-summary): Set default to respect
3240         `scroll-margin'.
3241
3242 2012-04-10  Elias Oltmanns  <eo@nebensachen.de>  (tiny change)
3243
3244         * gnus-cite.el (gnus-dissect-cited-text): A single line without
3245         citation prefix within a block of cited text should be considered part
3246         of that block *only* if it is a blank line.
3247
3248 2012-04-09  Chong Yidong  <cyd@gnu.org>
3249
3250         * binhex.el, hashcash.el, uudecode.el:
3251         Remove * characters from the front of variable docstrings.
3252
3253 2012-04-02  Katsumi Yamaoka  <yamaoka@jpl.org>
3254
3255         * shr.el (shr-find-fill-point): Remove unused code; don't break a line
3256         before kinsoku-bol characters nor within kinsoku-eol characters.
3257
3258 2012-03-27  Katsumi Yamaoka  <yamaoka@jpl.org>
3259
3260         * gnus-sync.el (gnus-topic-alist, gnus-group-topic)
3261         (gnus-topic-create-topic, gnus-topic-enter-dribble): Silence compiler.
3262         (gnus-sync-read): Use mapc instead of mapcar.
3263
3264         * mm-archive.el: Require mm-decode for some macros.
3265         (gnus-recursive-directory-files, mailcap-extension-to-mime): Silence
3266         the byte compiler.
3267         (mm-archive-decoders): New function that returns the value of
3268         the mm-archive-decoders variable.
3269
3270         * mm-decode.el: Don't require mm-archive; autoload mm-archive functions
3271         instead.
3272         (mm-dissect-singlepart): Use the function mm-archive-decoders.
3273
3274         * nnimap.el (gnus-refer-thread-use-nnir):
3275         * nnmail.el (mail-send-and-exit): Silence the byte compiler.
3276
3277 2012-03-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3278
3279         * gnus-compat.el: Define `bound-and-true-p' for XEmacs.
3280
3281 2012-03-12  Peter Münster  <pmrb@free.fr>
3282
3283         * gnus-demon.el (gnus-demon-timers): Now a plist (function -> timer).
3284         (gnus-demon-cancel): Ditto.
3285         (gnus-demon-run-callback): When function cannot be called due to low
3286         idleness, call it when idleness reaches the expected value, instead of
3287         waiting another timer period.
3288         (gnus-demon-init): Add `time' to arguments of call-back.
3289
3290 2012-03-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3291
3292         * dgnushack.el: Bind `gnus-registry-enabled' for XEmacs.
3293
3294         * gnus.el: Register gnus-registry functions.
3295
3296         * gnus-registry.el (gnus-try-warping-via-registry): Moved here and
3297         indent.
3298
3299         * gnus-int.el (gnus-warp-to-article): Check whether the registry is
3300         enabled before warping.
3301
3302 2012-03-22  Dave Abrahams  <dave@boostpro.com>
3303
3304         * gnus-sum.el (gnus-summary-insert-subject): Record information in the
3305         registry about each article retrieved.
3306
3307         * gnus-int.el (gnus-select-group-with-message-id): New function.
3308         (gnus-try-warping-via-registry): Ditto.
3309         (gnus-warp-to-article): Fall back on the registry.
3310
3311 2012-03-22  Sergio Martínez  <samf0xb58@gmail.com>  (tiny change)
3312
3313         * nnimap.el (nnimap-request-scan): Allow `nnimap-inbox' to be a list of
3314         inboxes.
3315
3316 2012-03-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3317
3318         * nnimap.el (nnimap-fetch-partial-articles): Minor doc string fixup.
3319
3320 2012-03-22  Katsumi Yamaoka  <yamaoka@jpl.org>
3321
3322         * gnus-msg.el (gnus-summary-resend-message-insert-gcc): Assume that
3323         gnus-gcc-self-resent-messages may be a group parameter.
3324         (gnus-summary-resend-message): Don't encode encoded words in header
3325         when Gcc'ing resent message.
3326
3327 2012-03-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3328
3329         * shr.el (shr-insert): Treat non-breaking space just like normal
3330         space.  This seems to produce more pleasing results.
3331         (shr-insert): Only insert a blank line if we're starting from an image.
3332         (shr-tag-br): Allow <br> to end lines or to make a single blank line.
3333         (shr-ensure-paragraph): Consider lines with white space to be blank.
3334
3335 2012-03-15  Elias Pipping  <pipping@lavabit.com>
3336
3337         * Makefile.in: Respect DESTDIR.
3338
3339 2012-03-14  Christopher Schmidt  <christopher@ch.ristopher.com>
3340
3341         * gnus-msg.el (gnus-inews-do-gcc): Add gnus-gcc-pre-body-encode-hook
3342         and gnus-gcc-post-body-encode-hook.
3343
3344 2012-03-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3345
3346         * gnus-group.el (gnus-group-expire-articles-1): Don't try to expire
3347         messages that don't exist.
3348
3349         * gnus-sum.el (gnus-summary-expire-articles): Ditto.
3350
3351 2012-04-11  Katsumi Yamaoka  <yamaoka@jpl.org>
3352
3353         pgg-def.el, pgg-gpg.el, pgg-parse.el, pgg-pgp.el, pgg-pgp5.el, pgg.el:
3354         Remove.
3355
3356         dgnushack.el (pgg-snarf-keys-region): Remove autoload.
3357
3358         lpath.el (pgg-parse-crc24-string, pgg-parse-crc24): Remove declaration.
3359
3360 2012-04-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3361
3362         * gnus-msg.el (gnus-inews-insert-gcc): Protect against when we don't
3363         have a group name.
3364
3365         * gnus-art.el (article-wash-html): Ensure that we insert the HTML into
3366         a multibyte buffer (bug#7410).
3367         (article-wash-html): Parse the original article buffer to get the
3368         unencoded data (bug#7410).
3369
3370         * gnus-start.el (gnus-read-newsrc-el-file): Protect against broken
3371         .newsrc.el files.
3372
3373 2012-04-05  Bastien Guerry  <bzg@altern.org>
3374
3375         * color.el (color-lighten-name): Fix typo.
3376
3377 2012-03-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3378
3379         * auth-source.el (auth-source-netrc-create): Quote tokens that contain
3380         "#" to avoid having them interpreted as comments.
3381
3382 2012-03-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3383
3384         * shr.el (shr-insert): Update the text state properly to avoid
3385         inserting spurious paragraph starts.
3386
3387 2012-03-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3388
3389         * shr.el (shr-table-widths): Divide the extra width more fairly over
3390         the TDs (bug#10973).
3391         (shr-render-td): Don't delete too much padding.
3392         (shr-natural-width): Compute the natural width more correctly.
3393         (shr-insert): Allow the natural width to be computed for tables again.
3394         (shr-tag-table-1): Rework how the natural widths are computed by
3395         rendering the table a third time.
3396         (shr-natural-width): Removed.
3397         (shr-buffer-width): New function.
3398         (shr-expand-newlines): Use it.
3399
3400         * gnus-msg.el (gnus-bug): Don't delete the other windows.  We may be
3401         using a `gnus-use-full-window' setup (bug#11013).
3402
3403 2012-03-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3404
3405         * gnus-int.el (gnus-backend-trace): Flip default to nil before Emacs
3406         24.1 release.
3407
3408 2012-03-10  David Edmondson  <dme@dme.org>
3409
3410         * mm-uu.el (mm-uu-forward-extract): Allow for blank lines between the
3411         'Forwarded Message' header and the start of the message.
3412
3413 2012-03-04  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
3414
3415         * gnus-msg.el (gnus-msg-mail): Call `message-mail' correctly when Gnus
3416         isn't running (bug#10897).
3417
3418 2012-03-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3419
3420         * tls.el (open-tls-stream): Don't set the dont-query-on-exit flag.
3421         This is inconsistent with all the other stream functions, which leave
3422         the setting up to the higher levels (if so wanted) (bug#10931).
3423
3424 2012-02-28  Glenn Morris  <rgm@gnu.org>
3425
3426         * gmm-utils.el, gnus-agent.el, gnus-score.el, messagexmas.el,
3427         mm-decode.el: Standardize possessive apostrophe usage.
3428
3429 2012-02-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3430
3431         * shr.el (shr-column-specs): Protect against TDs with "width: 0%".
3432
3433 2012-02-25  Andreas Schwab  <schwab@linux-m68k.org>
3434
3435         * parse-time.el (parse-time-string): Allow extractor to return nil.
3436
3437 2012-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
3438
3439         * nntp.el (nntp-send-authinfo): Work for secure nntp entry in authinfo.
3440
3441 2012-02-20  Lars Ingebrigtsen  <larsi@gnus.org>
3442
3443         * gnus-start.el (gnus-clean-old-newsrc): Allow a FORCE parameter.
3444
3445 2012-02-20  Lars Ingebrigtsen  <larsi@gnus.org>
3446
3447         * mm-decode.el (mm-shr): Remove "soft hyphens".
3448
3449         * nnimap.el (nnimap-request-list): Return the group names encoded as
3450         utf8.  Otherwise non-European group names don't work.
3451         (nnimap-request-newgroups): Ditto.
3452
3453         * gnus-sum.el (gnus-summary-insert-old-articles): Fix the syntax for
3454         the default in `read-string' (bug#10757).
3455
3456         * gnus-msg.el (gnus-group-post-news): Don't bug out on `C-u a' on
3457         topics (bug#10843).
3458
3459         * nnimap.el (nnimap-log-command): Add the IMAP address to the log
3460         buffer.  Suggested by Herbert Valerio Riedel.
3461         (nnimap-request-move-article): Delete the message from the correct IMAP
3462         server.
3463
3464 2012-02-19  Gábor Vida  <vidagabor@gmail.com>  (tiny change)
3465
3466         * gnus-demon.el (gnus-demon-init): Don't multiply time twice.
3467         Reported by Peter Münster.
3468
3469 2012-02-18  Lars Ingebrigtsen  <larsi@gnus.org>
3470
3471         * shr.el (shr-image-fetched): Make sure we really kill the right
3472         buffer.
3473
3474 2012-02-16  Leo Liu  <sdl.web@gmail.com>
3475
3476         * gnus-start.el (gnus-1): Avoid duplicate entries.
3477
3478 2012-02-15  Lars Ingebrigtsen  <larsi@gnus.org>
3479
3480         * imap.el: Remove.
3481
3482         * nntp.el (nntp-coding-system-for-read): Remove.
3483         (nntp-coding-system-for-write): Ditto.
3484         (nntp-open-connection): Just use `binary' directly.
3485
3486         * gnus-start.el (gnus-clean-old-newsrc): Delete `unexist' from pre-Ma
3487         Gnus 0.3.
3488
3489 2012-02-16  Lars Ingebrigtsen  <larsi@gnus.org>
3490
3491         * mm-decode.el (mm-dissect-singlepart): Guess what the type of
3492         application/octet-stream parts really is.
3493
3494         * gnus-sum.el (gnus-propagate-marks): Remove.
3495
3496 2012-02-15  Paul Eggert  <eggert@cs.ucla.edu>
3497
3498         * shr.el (shr-rescale-image): Undo previous change; see
3499         <http://lists.gnu.org/archive/html/emacs-devel/2012-02/msg00540.html>.
3500
3501 2012-02-15  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
3502
3503         * gnus.el: Ma Gnus v0.3 is released.
3504
3505 2012-02-15  Lars Ingebrigtsen  <larsi@gnus.org>
3506
3507         * gnus-sum.el (gnus-summary-local-variables): Make
3508         `gnus-newsgroup-unexist' into a local variable.
3509
3510 2012-02-14  Teodor Zlatanov  <tzz@lifelogs.com>
3511
3512         * registry.el (registry-usage-test, registry-persistence-test): Move to
3513         tests/gnustest-registry.el.
3514         (registry-make-testable-db, registry-match-test)
3515         (registry-instantiation-test): Move to tests/gnustest-registry.el.
3516
3517         * gnus-registry.el (gnus-registry-misc-test)
3518         (gnus-registry-usage-test): Move to tests/gnustest-registry.el.
3519
3520         * tests/gnustest-registry.el: New file with the registry and
3521         gnus-registry ERT tests.
3522
3523 2012-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
3524
3525         * gnus-msg.el (gnus-summary-resend-message): Make
3526         gnus-summary-resend-message-insert-gcc be last item in
3527         message-header-setup-hook.
3528
3529 2012-02-13  Lars Ingebrigtsen  <larsi@gnus.org>
3530
3531         * nnfolder.el (nnfolder-marks-directory, nnfolder-marks-is-evil)
3532         (nnfolder-marks, nnfolder-marks-file-suffix, nnfolder-marks-modtime):
3533         Remove.
3534         (nnfolder-open-server): Don't use marks.
3535         (nnfolder-request-delete-group): Ditto.
3536         (nnfolder-request-rename-group): Ditto.
3537         (nnfolder-request-set-mark, nnfolder-request-marks)
3538         (nnfolder-group-marks-pathname, nnfolder-marks-changed-p)
3539         (nnfolder-save-marks, nnfolder-open-marks): Remove.
3540
3541         * nnml.el (nnml-marks-is-evil, nnml-marks-file-name, nnml-marks)
3542         (nnml-marks-modtime): Remove.
3543         (nnml-request-delete-group): Don't use marks.
3544         (nnml-request-rename-group): Ditto.
3545         (nnml-request-set-mark, nnml-request-marks, nnml-marks-changed-p)
3546         (nnml-save-marks, nnml-open-marks): Remove.
3547
3548         * nntp.el (nntp-marks-is-evil, nntp-marks-file-name, nntp-marks)
3549         (nntp-marks-modtime, nntp-marks-directory, nntp-request-set-mark)
3550         (nntp-request-marks, nntp-marks-directory, nntp-marks-changed-p)
3551         (nntp-save-marks, nntp-open-marks, nntp-possibly-create-directory)
3552         (nntp-server-to-method-cache): Remove.
3553
3554         * shr.el (shr-rescale-image): Fix wrong merge.
3555
3556 2012-02-15  Lars Ingebrigtsen  <larsi@gnus.org>
3557
3558         * shr.el (shr-remove-trailing-whitespace): Really delete the padding on
3559         too-wide lines.
3560
3561 2012-02-13  Lars Ingebrigtsen  <larsi@gnus.org>
3562
3563         * nnimap.el (nnimap-record-commands): New variable.
3564         (nnimap-log-command): Use it.
3565         (nnimap-make-process-buffer): Add a space to the process buffer.
3566         (nnimap-transform-headers): Don't bug out on header lines containing
3567         stuff that look like IMAP length encodings.
3568
3569         * shr.el (shr-rescale-image): Allow viewing large images.
3570
3571 2012-02-12  Lars Ingebrigtsen  <larsi@gnus.org>
3572
3573         * nnml.el (nnml-request-compact-group): Delete the marks file after
3574         compaction (bug#10800).
3575
3576         * gnus-art.el (gnus-stop-downloads): Stop `url-queue' downloads on
3577         group exit.
3578
3579         * nnimap.el (nnimap-parse-flags): Parse correctly when we have mixed
3580         QRESYNC/FETCH output.
3581
3582 2012-02-11  Glenn Morris  <rgm@gnu.org>
3583
3584         * sieve-manage.el (sieve-manage-default-stream):
3585         * shr.el (shr):
3586         * nnir.el (nnir-ignored-newsgroups, nnir-summary-line-format)
3587         (nnir-retrieve-headers-override-function)
3588         (nnir-imap-default-search-key, nnir-notmuch-program)
3589         (nnir-notmuch-additional-switches, nnir-notmuch-remove-prefix)
3590         (nnir-method-default-engines):
3591         * message.el (message-cite-reply-position):
3592         * gssapi.el (gssapi-program):
3593         * gravatar.el (gravatar):
3594         * gnus-sum.el (gnus-refer-thread-use-nnir):
3595         * gnus-registry.el (gnus-registry-unfollowed-addresses)
3596         (gnus-registry-max-pruned-entries):
3597         * gnus-picon.el (gnus-picon-inhibit-top-level-domains):
3598         * gnus-int.el (gnus-after-set-mark-hook)
3599         (gnus-before-update-mark-hook):
3600         * gnus-async.el (gnus-async-post-fetch-function):
3601         * auth-source.el (auth-source-cache-expiry):
3602         Add missing :version tags to new defcustoms and defgroups.
3603
3604 2012-02-11  Lars Ingebrigtsen  <larsi@gnus.org>
3605
3606         * gnus-sum.el (gnus-adjust-marked-articles): Add to
3607         `gnus-newsgroup-unexist'.
3608
3609         * gnus.el (gnus-article-mark-lists): Add `unexist' to the list of
3610         marks.
3611         (gnus-article-special-mark-lists): Put the `unexist' in the special
3612         marks list instead.
3613
3614         * gnus-sum.el (gnus-articles-to-read): Don't include unexisting
3615         articles in the list of articles to be selected.
3616
3617         * nnimap.el (nnimap-retrieve-group-data-early): Query for unexisting
3618         articles.
3619         (nnimap-update-info): Keep track of unexisting articles.
3620         (nnimap-update-qresync-info): Ditto.
3621
3622 2012-02-10  Lars Ingebrigtsen  <larsi@gnus.org>
3623
3624         * message.el (message-default-send-mail-function): Made into own
3625         function for reuse by emacsbug.el.
3626
3627 2012-02-09  Juanma Barranquero  <lekktu@gmail.com>
3628
3629         * gnus.el (gnus-method-ephemeral-p): Move after declaration of defsubst
3630         `gnus-sloppily-equal-method-parameters' to avoid a warning.
3631
3632 2012-02-09  Lars Ingebrigtsen  <larsi@gnus.org>
3633
3634         * mm-archive.el (mm-archive-dissect-and-inline): New function.
3635         (mm-archive-dissect-and-inline): Fix up the undisplayer.
3636
3637         * gnus-compat.el: Define `timer-set-function'.
3638
3639         * mm-decode.el (mm-display-external): Output the text from the command
3640         in the buffer after the command finished.  This makes text-based
3641         commands behave better.
3642
3643 2012-02-08  Lars Ingebrigtsen  <larsi@gnus.org>
3644
3645         * gnus-compat.el: Add a compat for the old `url-retrieve'.
3646
3647 2012-02-07  Lars Ingebrigtsen  <larsi@gnus.org>
3648
3649         * gnus-compat.el: Make `help-function-arglist' be compatible on Emacs
3650         23.1.
3651
3652 2012-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
3653
3654         * gnus-sum.el (gnus-summary-show-thread): Revert last two changes.
3655
3656 2012-02-07  Lars Ingebrigtsen  <larsi@gnus.org>
3657
3658         * message.el (smtpmail-smtp-user): Silence compiler warning.
3659
3660 2012-02-06  Lars Ingebrigtsen  <larsi@gnus.org>
3661
3662         * message.el (message-multi-smtp-send-mail): Also allow specifying the
3663         SMTP user name.
3664
3665 2012-02-06  Katsumi Yamaoka  <yamaoka@jpl.org>
3666
3667         * gnus-sum.el (gnus-summary-show-thread):
3668         next-single-char-property-change may return nil in XEmacs.
3669         (gnus-summary-article-map): Fix typo.
3670
3671 2012-02-09  Lars Ingebrigtsen  <larsi@gnus.org>
3672
3673         * gnus-msg.el (gnus-msg-mail): Use `message-mail' if Gnus isn't
3674         running.
3675
3676         * nnimap.el (nnimap-wait-for-response): Minor fixup of message string.
3677
3678         * gnus.el (gnus-server-extend-method): Don't add an -address component
3679         if the method already has one (bug#9676).
3680
3681 2012-02-08  Lars Ingebrigtsen  <larsi@gnus.org>
3682
3683         * gnus-sum.el (gnus-summary-insert-old-articles): Use a default instead
3684         of an initial-input for consistency (bug#10757).
3685
3686         * dgnushack.el: Fix XEmacs compilation warning.
3687
3688         * shr.el: Inhibit getting and sending cookies when fetching pictures.
3689
3690         * gnus-html.el (gnus-html-schedule-image-fetching): Ditto.
3691
3692 2012-02-07  Lars Ingebrigtsen  <larsi@gnus.org>
3693
3694         * shr.el (shr-remove-trailing-whitespace): Don't strip whitespace from
3695         lines that are narrower than the window width.  Otherwise background
3696         "blocks" will look less readable.
3697
3698 2012-02-07  Lars Ingebrigtsen  <larsi@gnus.org>
3699
3700         * nnimap.el (nnimap-transform-headers): Remove unused variable.
3701         (nnimap-transform-headers): Fix parsing BODYSTRUCTURE elements that
3702         have newlines within the strings, and where the UID comes after the
3703         BODYSTRUCTURE element (bug#10537).
3704
3705         * shr-color.el (shr-color-set-minimum-interval): Rename to add prefix
3706         (bug#10732).
3707
3708         * shr.el (shr-insert-document): Add doc string.
3709         (shr-visit-file): Ditto.
3710         (shr-remove-trailing-whitespace): New function.
3711         (shr-insert-document): Use it to clean up trailing whitespace as the
3712         final step (bug#10714).
3713
3714 2012-02-06  Lars Ingebrigtsen  <larsi@gnus.org>
3715
3716         * gnus-sum.el (gnus-summary-exit-no-update): Really deaden the summary
3717         buffer if `gnus-kill-summary-on-exit' is nil.
3718
3719 2012-02-06  Lars Ingebrigtsen  <larsi@gnus.org>
3720
3721         * gnus-sum.el (gnus-handle-ephemeral-exit): Allow exiting from Gnus
3722         when just reading a single group from "without" Gnus.
3723
3724 2012-02-06  Chong Yidong  <cyd@gnu.org>
3725
3726         * gnus-sum.el (gnus-summary-show-thread):
3727         next-single-char-property-change never returns nil (Bug#8657).
3728
3729 2012-02-02  Lars Ingebrigtsen  <larsi@gnus.org>
3730
3731         * message.el (message-multi-smtp-send-mail): New function.
3732         (message-multi-smtp-send-mail): Respect the X-Message-SMTP-Method
3733         header to implement multi-SMTP functionality.
3734
3735         * gnus-agent.el (gnus-agent-send-mail-function): Removed.
3736         (gnus-agentize): Don't set it.
3737         (gnus-agent-send-mail): Don't use it.
3738
3739         * gnus-sum.el (gnus-summary-widget-backward): New function and
3740         keystroke.
3741
3742         * gnus-compat.el: More the compat functions more compatible.
3743
3744         * shr.el (shr-put-image): Remove underlines from sliced images.
3745         (shr-zoom-image): Compute the region to be replaced more correctly.
3746
3747 2012-02-02  Katsumi Yamaoka  <yamaoka@jpl.org>
3748
3749         * gnus-msg.el (gnus-gcc-self-resent-messages): New user option.
3750         (gnus-summary-resend-message-insert-gcc): New function.
3751         (gnus-summary-resend-message): Modify message-header-setup-hook and
3752         message-sent-hook to make it work for Gcc.
3753         (gnus-inews-do-gcc): Update the number of unread articles of groups
3754         that messages are Gcc'd to.
3755
3756         * message.el (message-resend): Run message-sent-hook to do Gcc.
3757
3758 2012-02-01  Lars Ingebrigtsen  <larsi@gnus.org>
3759
3760         * lpath.el: Fix an XEmacs compilation warning.
3761
3762         * gnus-compat.el: Require `help-fns' to fix compilation error.
3763
3764         * gnus-registry.el (gnus-registry-fixup-registry): Move the message to
3765         a higher level to silence compilation.
3766
3767         * gnus-art.el (gnus-shr-put-image): Take and pass on a `flags'
3768         parameter to allow controlling the scaling.
3769
3770         * shr.el (shr-zoom-image): New command and keystroke.
3771         (shr-put-image): Take a `size' flag to say how to scale the image.
3772
3773         * gnus-compat.el: Redefine `delete-directory' to provide recursive
3774         deletion unless already defined.
3775
3776         * gnus.el (gnus-compat): Require it.
3777
3778         * gnus-compat.el: New file.
3779
3780         * gnus-start.el (gnus-clean-old-newsrc): New function.
3781         (gnus-read-newsrc-file): Use it.
3782
3783         * mm-archive.el (mm-dissect-archive): Use it to get all file names.
3784         Use recursive deletion.
3785         (mm-dissect-archive): Add support for zip files.
3786
3787         * gnus-util.el (gnus-recursive-directory-files): New function.
3788
3789         * mm-archive.el (mm-archive-list-files): Inline text and image parts.
3790         (mm-archive-decoders): Add tgz support.
3791
3792         * mm-decode.el (mm-shr): Make sure that the HTML ends with a newline.
3793         Otherwise inserting text into the Gnus buffer can look odd.
3794
3795         * gnus-art.el (gnus-mime-inline-part): Slight clean-up.
3796
3797         * mm-archive.el (mm-archive-decoders): Add support for tar.
3798
3799         * gnus.el (gnus-logo-color-alist): Change the colours for Ma Gnus.
3800
3801         * nnmail.el (nnmail-extra-headers): Add Cc to the default.
3802
3803 2012-01-31  Lars Ingebrigtsen  <larsi@gnus.org>
3804
3805         * mm-decode.el (mm-dissect-singlepart): Check that the decoder exists.
3806
3807         * mm-archive.el: New file.
3808
3809         * mm-decode.el (mm-dissect-singlepart): Use it to decode ms-tnef files.
3810
3811         * mm-util.el (mm-find-buffer-file-coding-system): Comment fix.
3812
3813         * message.el (message-goto-*): Make all the `message-goto-*' commands
3814         push the mark before moving point.  This makes it easier to go back to
3815         where you came from after editing whatever you jumped to.
3816
3817 2012-01-31  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
3818
3819         * gnus.el: Ma Gnus v0.1 is released.
3820
3821 2012-02-05  Lars Ingebrigtsen  <larsi@gnus.org>
3822
3823         * nnimap.el (nnimap-open-server): Allow switching the nnoo server
3824         without reconnecting.
3825         (nnimap-possibly-change-group): Ditto.
3826         (nnimap-finish-retrieve-group-infos): Don't reconnect if the server
3827         connection has died before being called.
3828
3829 2012-02-02  Lars Ingebrigtsen  <larsi@gnus.org>
3830
3831         * nnimap.el (nnimap-retrieve-group-data-early): Don't say we're doing
3832         an initial sync unless we're really doing one.
3833
3834         * gnus-group.el (gnus-group-read-ephemeral-group): Don't add a new
3835         address parameter if one already exists (bug#9676).
3836
3837         * gnus-msg.el (gnus-summary-mail-forward): Respect the process marks,
3838         not the prefix, as documented (bug#10689).
3839
3840 2012-02-01  Lars Ingebrigtsen  <larsi@gnus.org>
3841
3842         * gnus.el (gnus-valid-select-methods): nnmaildir also saves marks in
3843         the "server".
3844
3845         * gnus-group.el (gnus-group-get-new-news-this-group): Don't overwrite
3846         the real error message with the useless "previously known to be down".
3847         Which isn't even correct.
3848
3849         * nntp.el (nntp-open-connection): Report the error message if the nntp
3850         server can't be reached.
3851
3852         * nnimap.el (nnimap-retrieve-group-data-early): Keep track of how many
3853         groups we do a total scan for.
3854         (nnimap-wait-for-response): Say that we're doing a total scan, if we're
3855         doing that.
3856
3857 2012-01-31  Jim Meyering  <jim@meyering.net>
3858
3859         * gnus-agent.el (gnus-agent-expire-unagentized-dirs):
3860         Correct a comment (insert "not") and hide nominally-doubled "to".
3861
3862 2012-01-31  Lars Ingebrigtsen  <larsi@gnus.org>
3863
3864         * gnus.el (gnus-version): Change name to "Ma Gnus".
3865
3866 2012-01-30  Philipp Haselwarter  <philipp.haselwarter@gmx.de>  (tiny change)
3867
3868         * gnus-agent.el (gnus-agent-auto-agentize-methods): Point to the Agent
3869         section in the manual.
3870
3871 2012-01-30  Lars Ingebrigtsen  <larsi@gnus.org>
3872
3873         * rfc2047.el (rfc2047-encode-region): Allow not folding the encoded
3874         words.
3875         (rfc2047-encode-string): Ditto.
3876         (rfc2047-encode-parameter): Don't fold parameters.  Some MUAs do not
3877         understand folded filename="..." parameters, for instance.
3878
3879         * nnimap.el (nnimap-wait-for-response): Include the imap server name in
3880         the message for greater debuggability.
3881
3882 2012-01-28  Lars Ingebrigtsen  <larsi@gnus.org>
3883
3884         * mm-view.el (mm-display-inline-fontify): Bind `font-lock-support-mode'
3885         instead of setting it locally, since the latter doesn't seem to have
3886         any effect (most of the time).
3887
3888 2012-01-27  Elias Pipping  <pipping@lavabit.com>  (tiny change)
3889
3890         * shr.el (shr-browse-url): Fix the name of the `browse-url-mail'
3891         function call.
3892
3893 2012-01-27  Gábor Vida  <vidagabor@gmail.com>  (tiny change)
3894
3895         * gnus-demon.el (gnus-demon-run-callback, gnus-demon-init): Convert to
3896         seconds, and make the repeat clause with HH:MM specs work as
3897         documented.
3898
3899 2012-01-27  Lars Ingebrigtsen  <larsi@gnus.org>
3900
3901         * proto-stream.el (proto-stream-capability-open): Fall back on
3902         :end-of-command if :end-of-capability doesn't exist.
3903
3904 2012-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
3905
3906         * gnus-sum.el (gnus-summary-mode): Don't make bidi-paragraph-direction
3907         bound globally in old Emacsen and XEmacsen.
3908
3909 2012-01-27  Lars Ingebrigtsen  <larsi@gnus.org>
3910
3911         * gnus-start.el (gnus-get-unread-articles): Clear out "early" methods
3912         so that previous errors don't prohibit getting new news.
3913
3914         * nnimap.el (nnimap-retrieve-group-data-early): Ditto.
3915
3916         * nntp.el (nntp-retrieve-group-data-early): Ditto.
3917
3918 2012-01-26  Nick Alcock  <nick.alcock@oracle.com>  (tiny change)
3919
3920         * gnus.el (gnus-group-find-parameter): Check for liveness of the
3921         buffer, not of the string which is its name.
3922
3923 2012-01-26  Lars Ingebrigtsen  <larsi@gnus.org>
3924
3925         * proto-stream.el (proto-stream-capability-open): Wait for
3926         :end-of-capability, not :end-of-command.
3927
3928         * gnus-sum.el (gnus-summary-move-article): Don't propagate marks to
3929         non-server-marks groups.
3930         (gnus-group-make-articles-read): Ditto.
3931
3932         * gnus-srvr.el (gnus-server-prepare): Use it to avoid showing ephemeral
3933         methods (bug#9676).
3934
3935         * gnus.el (gnus-method-ephemeral-p): New function.
3936
3937 2012-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
3938
3939         * gnus-sum.el (gnus-summary-mode): Force paragraph direction to be
3940         left-to-right.
3941
3942 2012-01-26  Lars Ingebrigtsen  <larsi@gnus.org>
3943
3944         * nnimap.el (nnir-search-thread): Autoload to avoid a compilation
3945         warning.
3946
3947 2012-01-25  Lars Ingebrigtsen  <larsi@gnus.org>
3948
3949         * gnus-sum.el (gnus-summary-line-format-alist): Don't try to
3950         macroexpand the nnir things, since they haven't been defined yet, and
3951         nnir requires gnus-sum.
3952
3953 2012-01-24  Julien Danjou  <julien@danjou.info>
3954
3955         * color.el (color-rgb-to-hsl): Fix value computing.
3956         (color-hue-to-rgb): New function.
3957         (color-hsl-to-rgb): New function.
3958         (color-clamp, color-saturate-hsl, color-saturate-name)
3959         (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
3960         (color-lighten-name, color-darken-hsl, color-darken-name): New function.
3961
3962 2012-01-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3963
3964         * mm-decode.el (mm-interactively-view-part): Fix prompt.
3965
3966 2012-01-19  Julien Danjou  <julien@danjou.info>
3967
3968         * color.el (color-name-to-rgb): Use the white color to find the max
3969         color component value and return correctly computed values.
3970         (color-name-to-rgb): Add missing float conversion for max value.
3971
3972 2012-01-10  Teodor Zlatanov  <tzz@lifelogs.com>
3973
3974         * nntp.el (nntp-send-authinfo): Query `auth-source-search' with the
3975         logical server name in addition to the actual machine address.
3976
3977         * auth-source.el (auth-source-user-and-password): Add convenience
3978         wrapper to search by just host and optionally user.
3979
3980 2012-01-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3981
3982         * shr.el (shr-visit-file): Move point to the beginning of the buffer
3983         after rendering.
3984
3985 2012-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
3986
3987         * gnus-sync.el (gnus-sync-newsrc-groups): Quote normally.
3988         (gnus-sync-lesync-pre-save-group-entry): Remove invalid invlists.
3989         (gnus-sync-lesync-normalize-group-entry): Ignore a few more keys.
3990
3991 2012-01-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3992
3993         * gnus-sum.el (gnus-summary-read-group): Document more parameters
3994         (bug#9693).
3995         (gnus-summary-setup-buffer): Document return value (bug#9697).
3996
3997         * mm-decode.el (mm-interactively-view-part): Use `completing-read',
3998         since ido doesn't work on symbols (bug#9632).
3999
4000         * gnus.el (gnus-group-fast-parameter): Use the same precedence rules
4001         when getting a single value as when getting all the values.  This means
4002         that atoms like `gcc-self' work cumulatively, like variable settings,
4003         instead of getting the value from the last matching clause.
4004         (gnus-group-find-parameter): Protect against the group buffer not
4005         existing (bug#9585).
4006
4007 2012-01-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4008
4009         * gnus-start.el (gnus-activate-group): Document more parameters
4010         (bug#9694).
4011
4012         * gnus-group.el (gnus-group-read-ephemeral-group): Doc clarification
4013         (bug#9692).
4014
4015         * gnus-agent.el (gnus-agent-store-article): Tell the Agent when the
4016         article was fetched, so that it can be expired later (bug#9958).
4017         (gnus-agent-summary-fetch-series): Add doc string.
4018         (gnus-agent-summary-fetch-group): Don't remove tick and dormant marks
4019         (bug#9517).
4020
4021         * nntp.el (nntp-retrieve-groups): Refuse to do retrieval when an async
4022         retrieval is happening.
4023
4024         * gnus.el (gnus-parameters): Doc fix.
4025
4026 2012-01-06  Dave Abrahams  <dave@boostpro.com>
4027
4028         * gnus-sum.el (gnus-summary-refer-thread): If the subtree is hidden,
4029         show the thread after expansion.
4030
4031 2012-01-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4032
4033         * gnus-art.el (article-narrow-to-head): If the head is completely
4034         empty, narrow to the empty region (bug#9764).
4035
4036         * gnus-sum.el (gnus-summary-mark-article-as-unread): Mark articles as
4037         read, and then mark them as unread only when the unread mark is used.
4038         This makes `C-- T k' actually work, even though it's confusing.
4039
4040         * gnus-win.el (gnus-all-windows-visible-p): Ensure that the buffer is
4041         alive before we try to find its window.
4042
4043 2012-01-06  Brian Sniffen  <bsniffen@akamai.com>  (tiny change)
4044
4045         * mm-decode.el (mm-display-external): Use a longer timeout for the
4046         deletion to allow slow programs to display the file.
4047
4048 2012-01-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4049
4050         * gnus-art.el (gnus-article-browse-delete-temp-files): Fix up the
4051         prompt to be less confusing.
4052
4053         * gnus-msg.el (gnus-summary-reply): Do not give a `switch-to-buffer'
4054         argument to `message-reply'.  This broke `special-display-*' frame
4055         pop-uping (bug#10238).
4056
4057 2012-01-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4058
4059         * starttls.el (starttls-available-p): Return nil on Windows/MS-DOS
4060         systems, since these allegedly don't work there.
4061
4062 2012-01-04  Chris Gray  <chrismgray@gmail.com>  (tiny change)
4063
4064         * mm-decode.el (mm-shr): Check that `gnus-summary-buffer' really is a
4065         live buffer.
4066
4067 2012-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4068
4069         * nnir.el (nnir-retrieve-headers): Protect against the article not
4070         existing on the server (bug#10335).
4071
4072 2012-01-04  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
4073
4074         * gnus-agent.el (gnus-agent-load-local): Recompute
4075         gnus-agent-article-local on changing method.
4076
4077 2012-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4078
4079         * gnus.el (gnus-parameters): Note precedence.
4080
4081 2012-01-04  Leo Liu  <sdl.web@gmail.com>
4082
4083         * nndraft.el (nndraft-update-unread-articles): Don't move point around
4084         in the group buffer.
4085
4086 2012-01-04  Julien Danjou  <julien@danjou.info>
4087
4088         * nnimap.el (nnimap-update-info): Fix an error when all articles UIDs
4089         change.
4090
4091 2012-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4092
4093         * shr.el (shr-rescale-image): Add :ascent 100 to the rescaled picture,
4094         too.
4095
4096         * nntp.el (nntp-retrieve-group-data-early): Use it.
4097
4098 2012-01-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4099
4100         * nntp.el (nntp-retrieval-in-progress): New variable.
4101         (nntp-make-process-buffer): Make it buffer-local.
4102
4103         * gnus-demon.el (gnus-demon-time-to-step): Resurrect function lost in
4104         2010.
4105         (gnus-demon-init): Use it to compute the time if time is on the form
4106         "04:23".
4107
4108         * gnus-topic.el (gnus-topic-history): Define `gnus-topic-history'.
4109
4110         * nnimap.el (nnimap-finish-retrieve-group-infos): Check the connection
4111         status in the correct buffer.
4112
4113 2012-01-03  Leo Liu  <sdl.web@gmail.com>
4114
4115         * gnus-topic.el (gnus-topic-goto-next-group): Don't move point around
4116         when opening topics (bug#10407).
4117
4118 2011-12-30  Paul Eggert  <eggert@cs.ucla.edu>
4119
4120         * gnus-cus.el (gnus-score-customize):
4121         * gnus-sum.el (gnus-sort-gathered-threads):
4122         * message.el (message-shorten-references):
4123         * nnmairix.el (nnmairix-request-group):
4124         * uudecode.el (uudecode-decode-region-internal): Spelling fix.
4125
4126 2011-12-29  Paul Eggert  <eggert@cs.ucla.edu>
4127
4128         * gnus-agent.el (gnus-agent-regenerate-group):
4129         * gnus-int.el (gnus-retrieve-group-data-early):
4130         * mm-util.el (mm-codepage-ibm-list):
4131         * nndiary.el (Commentary, nndiary-get-new-mail):
4132         * nnir.el (nnir):
4133         * pgg-parse.el (pgg-parse-symmetric-key-algorithm-alist): Spelling fix.
4134
4135 2011-12-28  Katsumi Yamaoka  <yamaoka@jpl.org>
4136
4137         * mm-view.el (mm-display-inline-fontify): Add comment.
4138
4139 2011-12-21  Paul Eggert  <eggert@cs.ucla.edu>
4140
4141         * nndiary.el (nndiary-parse-schedule-value, nndiary-parse-schedule):
4142         * ntlm.el (ntlm-smb-dohash): Spelling fix.
4143
4144 2011-12-19  Paul Eggert  <eggert@cs.ucla.edu>
4145
4146         * gnus-art.el (gnus-split-methods):
4147         * gnus-msg.el (gnus-configure-posting-styles):
4148         * gnus-spec.el (gnus-parse-simple-format):
4149         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
4150         * message.el (message-do-actions): Spelling fix.
4151
4152 2011-12-15  Juri Linkov  <juri@jurta.org>
4153
4154         * mm-decode.el (mm-inline-media-tests): Add missing
4155         `mm-handle-media-subtype'.
4156
4157 2011-12-14  Paul Eggert  <eggert@cs.ucla.edu>
4158
4159         * gnus-group.el (gnus-group-tool-bar):
4160         * gnus-sum.el (gnus-summary-tool-bar):
4161         * message.el (message-tool-bar):
4162         * rfc2231.el (rfc2231-parse-string): Spelling fix.
4163
4164 2011-12-12  Paul Eggert  <eggert@cs.ucla.edu>
4165
4166         * plstore.el (plstore--insert-buffer): Spelling fix.
4167
4168 2011-12-09  Tassilo Horn  <tassilo@member.fsf.org>
4169
4170         * message.el (message-valid-fqdn-regexp): Update with newly approved
4171         top-level domain names ".tel" and ".asia".
4172
4173 2011-12-08  Katsumi Yamaoka  <yamaoka@jpl.org>
4174
4175         * gnus-sum.el (gnus-summary-show-article): Don't load shr
4176         unconditionally.
4177
4178 2011-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
4179
4180         * message.el (message-pop-to-buffer): Use pop-to-buffer instead of
4181         pop-to-buffer-same-window for old Emacsen.
4182
4183 2011-12-06  Juanma Barranquero  <lekktu@gmail.com>
4184
4185         * gnus-sum.el (gnus-summary-make-tool-bar): Fix typo.
4186
4187 2011-12-05  Paul Eggert  <eggert@cs.ucla.edu>
4188
4189         * netrc.el (netrc-credentials): Spelling fix.
4190
4191 2011-12-04  Paul Eggert  <eggert@cs.ucla.edu>
4192
4193         * gnus-fun.el (gnus-fun-ppm-change-string):
4194         * gnus-msg.el (gnus-inews-do-gcc):
4195         * gnus-sum.el (gnus-summary-find-for-reselect):
4196         * gnus.el (gnus-summary-cancelled):
4197         * message.el (message-cancel-hook, message-send-news):
4198         * nndiary.el (nndiary-headers, nndiary-parse-schedule-value):
4199         * nnir.el (nnir-run-hyrex):
4200         * nntp.el (nntp-with-open-group-function):
4201         * pgg.el (pgg-pending-timers): Spelling fix.
4202
4203 2011-12-04  Chong Yidong  <cyd@gnu.org>
4204
4205         * message.el (message-pop-to-buffer): Partially revert 2011-11-30
4206         change (Bug#10200).
4207
4208 2011-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
4209
4210         * compface.el (uncompface):
4211         * gnus-art.el (gnus-article-x-face-command): Update the header format
4212         of icon data for the most recent icontopbm program.
4213
4214 2011-12-01  Katsumi Yamaoka  <yamaoka@jpl.org>
4215
4216         * gnus-msg.el (gnus-inews-do-gcc):
4217         * message.el (message-send-mail):
4218         * mml.el (mml-generate-mime): Share the value of the buffer-local
4219         `message-options' variable between a draft buffer and temprary working
4220         buffers.
4221
4222 2011-11-30  Stefan Monnier  <monnier@iro.umontreal.ca>
4223
4224         * message.el (message-pop-to-buffer): Revert 2011-09-11 change.
4225
4226 2011-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
4227
4228         * gnus-art.el (gnus-article-browse-html-parts): Convert link file names
4229         for Cygwin.
4230
4231 2011-11-27  Paul Eggert  <eggert@cs.ucla.edu>
4232
4233         * gnus-group.el (gnus-group-prepare-flat):
4234         * mm-bodies.el (mm-encode-body):
4235         * mml.el (mml-preview):
4236         * nnml.el (nnml-request-compact-group):
4237         * pop3.el (pop3-stream-type): Spelling fix.
4238
4239 2011-11-26  Paul Eggert  <eggert@cs.ucla.edu>
4240
4241         * gnus-start.el (gnus-newsrc-to-gnus-format): Spelling fix.
4242
4243 2011-11-25  Paul Eggert  <eggert@cs.ucla.edu>
4244
4245         * color.el (color-rgb-to-hsl):
4246         * gmm-utils.el (gmm-tool-bar-style):
4247         * gnus-group.el (gnus-group-prepare-flat):
4248         * gnus-topic.el (gnus-topic-prepare-topic):
4249         * mm-decode.el (mm-discouraged-alternatives):
4250         * rfc2047.el (rfc2047-encode-1):
4251         * starttls.el: Spelling fix.
4252
4253 2011-11-24  Glenn Morris  <rgm@gnu.org>
4254
4255         * binhex.el (binhex-begin-line): Give it basic doc-string.
4256
4257         * starttls.el, tls.el: Fix case of "GnuTLS".
4258
4259 2011-11-24  Juanma Barranquero  <lekktu@gmail.com>
4260
4261         * gnus-group.el (gnus-group-highlight): Fix typo.
4262
4263 2011-11-24  Adam W  <adam_w67@yahoo.com>  (tiny change)
4264
4265         * mail-source.el (mail-source-fetch-maildir): Don't expect the return
4266         value of `delete-file', that returns nil for a local file but returns t
4267         for a remote file using ssh.
4268
4269 2011-11-22  Paul Eggert  <eggert@cs.ucla.edu>
4270
4271         * gnus-sum.el (gnus-summary-save-article): Spelling fix.
4272
4273 2011-11-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4274
4275         * shr.el (shr-table-horizontal-line): Use "?\s" instead of "? " to
4276         avoid later breakage.
4277
4278 2011-11-22  Katsumi Yamaoka  <yamaoka@jpl.org>
4279
4280         * gnus-art.el (gnus-article-setup-buffer): Decode group name used for
4281         article buffers' name.
4282
4283 2011-11-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4284
4285         * shr.el (shr-table-horizontal-line): Revert infinite loops introduced
4286         by Paul Eggert's spellfixes two days ago.
4287
4288 2011-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4289
4290         * dgnushack.el (fboundp): Define `with-demoted-errors' for Emacsen that
4291         doesn't have it.
4292
4293         * mm-view.el (mm-display-inline-fontify): Make the font-lock variables
4294         buffer-local instead of binding them to avoid warnings.  Also demote
4295         errors (bug#10063).
4296         (font-lock-mode-hook): Shut up byte compiler.
4297
4298 2011-11-20  Juanma Barranquero  <lekktu@gmail.com>
4299
4300         * mm-util.el (mm-charset-after):
4301         * nnir.el (nnir-run-hyrex):
4302         * ntlm.el (ntlm-build-auth-request, ntlm-build-auth-response)
4303         (ntlm-get-password-hashes, ntlm-md4hash):
4304         * smime.el: Fix typo.
4305
4306 2011-11-20  Paul Eggert  <eggert@cs.ucla.edu>
4307
4308         * gnus-agent.el (gnus-agent-expire-group-1):
4309         * nndiary.el (nndiary-last-occurence):
4310         * nnimap.el (nnimap-request-set-mark):
4311         * nnmairix.el (nnmairix-only-use-registry):
4312         * gnus-group.el (gnus-group-prepare-flat):
4313         * gnus-sum.el (gnus-decode-encoded-word-methods):
4314         * message.el (message-wash-subject):
4315         * nntp.el (nntp-retrieve-headers-with-xover):
4316         * smime.el (smime-certificate-directory): Spelling fix.
4317
4318 2011-11-19  Paul Eggert  <eggert@cs.ucla.edu>
4319
4320         * nnmail.el (nnmail-get-new-mail-1): Remove unused local variables.
4321
4322         * color.el:
4323         * gnus-agent.el (gnus-agent-possibly-alter-active):
4324         * gnus-dired.el (gnus-dired-print):
4325         * mail-parse.el:
4326         * nnmairix.el (nnmairix-request-group):
4327         * shr.el (shr-image-displayer):
4328         * sieve-manage.el:
4329         * spam.el (spam-autodetect-recheck-messages): Spelling fix.
4330
4331 2011-11-18  Paul Eggert  <eggert@cs.ucla.edu>
4332
4333         * gnus-sum.el (gnus-auto-select-subject):
4334         * spam-report.el (spam-report-resend): Spelling fix.
4335
4336 2011-11-17  Paul Eggert  <eggert@cs.ucla.edu>
4337
4338         * gnus-agent.el (gnus-agent-get-undownloaded-list):
4339         * gnus-art.el (gnus-default-article-saver):
4340         * gnus-srvr.el (gnus-server-copy-server):
4341         * gnus.el (gnus-sloppily-equal-method-parameters):
4342         * html2text.el (html2text-format-tag-list):
4343         * message.el (message-narrow-to-head):
4344         * nndiary.el:
4345         * nnmairix.el (nnmairix-determine-original-group-from-registry):
4346         * sieve.el: Spelling fix.
4347
4348 2011-11-16  Juanma Barranquero  <lekktu@gmail.com>
4349
4350         * gnus-agent.el (gnus-agent-expire-unagentized-dirs):
4351         * gnus-sum.el (gnus-summary-make-menu-bar):
4352         * gnus-uu.el (gnus-uu-decode-postscript)
4353         (gnus-uu-decode-postscript-and-save):
4354         * mailcap.el (mailcap-print-command):
4355         * registry.el (registry-lookup, registry-lookup-breaks-before-lexbind):
4356         Fix typos.
4357
4358 2011-11-15  Juanma Barranquero  <lekktu@gmail.com>
4359
4360         * gnus-art.el (gnus-article-part-wrapper):
4361         * html2text.el (html2text-fix-paragraphs):
4362         * mm-decode.el (mm-image-fit-p):
4363         * rfc2047.el (rfc2047-encode-message-header):
4364         * shr-color.el (shr-color-visible-distance-min)
4365         (shr-color-relative-to-absolute, set-minimum-interval)
4366         (shr-color-visible): Fix typos.
4367
4368 2011-11-15  Paul Eggert  <eggert@cs.ucla.edu>
4369
4370         * gmm-utils.el (gmm-tool-bar-item):
4371         * gnus-art.el (gnus-treat-body-boundary):
4372         * gnus-diary.el (gnus-user-format-function-d):
4373         * gnus-start.el (gnus-get-unread-articles):
4374         * pgg-gpg.el (pgg-gpg-update-agent):
4375         * smime.el (smime-cert-by-ldap-1): Spelling fix.
4376
4377 2011-11-14  Paul Eggert  <eggert@cs.ucla.edu>
4378
4379         * gnus-topic.el (gnus-group-prepare-topics):
4380         * gnus-uu.el (gnus-extract-view):
4381         * gnus-win.el (gnus-use-frames-on-any-display): Spelling fix.
4382
4383 2011-11-09  Teodor Zlatanov  <tzz@lifelogs.com>
4384
4385         * spam.el: Move BBDB autoloads.
4386         (spam-exists-in-BBDB-p): New function to do the BBDB search directly in
4387         BBDB 2 and 3.
4388         (spam-check-BBDB): Use it.
4389         (spam-enter-ham-BBDB): Use it.
4390
4391 2011-11-09  Paul Eggert  <eggert@cs.ucla.edu>
4392
4393         * smime.el (smime-draw-buffer): Spelling fix.
4394
4395 2011-10-31  Peter Münster  <pmrb@free.fr>  (tiny change)
4396
4397         * gnus-group.el (gnus-group-get-new-news): New parameter `one-level'
4398         for scanning exactly one level.
4399         * gnus-start.el (gnus-get-unread-articles): Ditto.
4400
4401 2011-11-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4402
4403         * gnus-sum.el (gnus-articles-to-read): Change wording in prompt to be
4404         slightly clearer.
4405
4406 2011-11-03  Teodor Zlatanov  <tzz@lifelogs.com>
4407
4408         * gnus-sync.el: More commentary about setup.
4409
4410 2011-11-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4411
4412         * message.el (message-send-and-exit): Document `arg'.
4413
4414 2011-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
4415
4416         * nnimap.el (nnimap-open-connection-1): Use tcp-keealive if possible.
4417
4418 2011-11-02  Teodor Zlatanov  <tzz@lifelogs.com>
4419
4420         * gnus-sync.el: More commentary about `gnus-sync-read' issues.
4421
4422         * gnus-util.el (gnus-bound-and-true-p): Another comment to explain why
4423         we don't use `bound-and-true-p'.
4424
4425 2011-11-01  Teodor Zlatanov  <tzz@lifelogs.com>
4426
4427         * gnus-util.el (gnus-bound-and-true-p): Remove.
4428         (gnus-bound-and-true-dumber-p): Rename to `gnus-bound-and-true-p'.
4429         * nnir.el: Use it.
4430         * nnmairix.el: Use it.
4431
4432 2011-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
4433
4434         * gnus-sync.el: Improve docs about CouchDB admins.
4435
4436         * gnus-util.el (gnus-bound-and-true-dumber-p): Define new, slower, dumb
4437         function because `gnus-bound-and-true-p' doesn't work well in XEmacs
4438         for reasons unknown.
4439         * nnir.el: Use it.
4440         * nnmairix.el: Use it.
4441
4442         * nnregistry.el: Remove unnecessary `gnus-registry-enabled' defvar.
4443         * nnir.el: Ditto.
4444         * nnmairix.el: Ditto.
4445
4446         * gnus-registry.el (gnus-registry-enabled): Default to nil.
4447
4448 2011-10-29  Teodor Zlatanov  <tzz@lifelogs.com>
4449
4450         * gnus-sync.el (gnus-sync-lesync-setup): Fix salt when user setup is
4451         not needed.  Provide xmlplistread list function to produce XML plist
4452         output for non-Gnus LeSync clients.
4453
4454 2011-10-27  Teodor Zlatanov  <tzz@lifelogs.com>
4455
4456         * gnus-fallback-lib/json.el: Add for XEmacs and Emacs 22 support.
4457
4458         * gnus-sync.el: Add LeSync synchronization backend and logic to read
4459         and save against it.  Group subscriptions, read marks, other marks,
4460         subscription levels, topic names, and topic offsets (the group's
4461         position within the topic) are saved.  This is an experimental backend
4462         and may change significantly.  Load json.el from the gnus-fallback-lib
4463         if it's not available otherwise.
4464         (gnus-sync-save): Don't use `apply-partially' because of XEmacs.
4465
4466 2011-10-26  Stefan Monnier  <monnier@iro.umontreal.ca>
4467
4468         * message.el (message-completion-function): Make sure
4469         message-tab-body-function is not attempted if one of
4470         message-completion-alist fails to find a completion (bug#9158).
4471
4472 2011-10-26  Daiki Ueno  <ueno@unixuser.org>
4473
4474         * mml.el (mml-quote-region): Quote <#secure> tag.
4475         (mml-generate-mime-1): Unquote <#secure> tag.
4476
4477 2011-10-20  Chong Yidong  <cyd@gnu.org>
4478
4479         * gnus-cite.el (gnus-message-citation-mode): Doc fix (in Emacs 24,
4480         calling a minor mode from Lisp with nil arg enables it, so we have to
4481         make the wording a bit ambiguous here).
4482
4483 2011-10-18  Teodor Zlatanov  <tzz@lifelogs.com>
4484
4485         * gnus-util.el (gnus-bound-and-true-p): Macro for XEmacs compatibility.
4486         * nnir.el (nnir-mode): Use it.
4487         * nnmairix.el (nnmairix-determine-original-group-from-registry):
4488         Use it.
4489
4490         * nnir.el (gnus-registry-enabled): Defvar to keep the compiler happy.
4491         * nnmairix.el (gnus-registry-enabled): Ditto.
4492
4493 2011-10-17  Dave Abrahams  <dave@boostpro.com>
4494
4495         * gnus-registry.el (gnus-registry-enabled): Add new variable (Bug#9691).
4496         (gnus-registry-install-shortcuts): Set `gnus-registry-install' to 'ask
4497         only while we need to find out if it should be t or nil.
4498         (gnus-registry-initialize): Don't set `gnus-registry-install' to t.
4499         (gnus-registry-install-hooks): Set `gnus-registry-enabled' to t when
4500         the registry is installed.  Set it to nil when it's unloaded.
4501         (gnus-registry-install-p): Provide user guidance for the initial value
4502         of `gnus-registry-install' when it's 'ask, otherwise return its value.
4503         * nnregistry.el (nnregistry-open-server, nnregistry-server-opened):
4504         Use `gnus-registry-enabled' instead of `gnus-registry-install'.
4505         * nnmairix.el (nnmairix-determine-original-group-from-registry):
4506         Use `gnus-registry-enabled' instead of `gnus-registry-install'.
4507         * nnir.el (nnir-mode): Use `gnus-registry-enabled' instead of
4508         `gnus-registry-install'.
4509
4510 2011-10-17  Daiki Ueno  <ueno@unixuser.org>
4511
4512         * mml2015.el (mml2015-epg-find-usable-key): Add comment about the
4513         previous change.
4514         * mml1991.el (mml1991-epg-find-usable-key): Skip the whole key if the
4515         primary key is marked as disabled.
4516
4517 2011-10-17  Christian von Roques  <roques@mti.ag>  (tiny change)
4518
4519         * mml2015.el (mml2015-epg-find-usable-key): Skip the whole key if the
4520         primary key is marked as disabled.
4521
4522 2011-10-11  Andreas Schwab  <schwab@linux-m68k.org>
4523
4524         * html2text.el (html2text-clean-anchor): Check for quotes around
4525         `href' value.
4526
4527 2011-10-11  Teodor Zlatanov  <tzz@lifelogs.com>
4528
4529         * spam.el (spam-check-BBDB): Simplify and support BBDB 3.x when
4530         searching.  Drop `bbdb-cache'.
4531
4532 2011-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
4533
4534         * message.el (message-signed-or-encrypted-p): Exclude header when
4535         checking if there is signed or encrypted body in text/plain message.
4536
4537 2011-10-09  Andreas Schwab  <schwab@linux-m68k.org>
4538
4539         * html2text.el (html2text-get-attr): Correctly handle attribute values
4540         containing "=".
4541
4542 2011-09-22  Kan-Ru Chen  <kanru@kanru.info>
4543
4544         * ecomplete.el (ecomplete-display-matches): Use a local keymap to
4545         handle bindings.
4546
4547 2011-10-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4548
4549         * gnus-win.el (gnus-configure-windows): Protect against reading
4550         ephemeral groups outside of Gnus.
4551
4552 2011-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
4553
4554         * shr.el (shr-tag-img): Don't get images displayed in tables.
4555
4556 2011-10-03  Glenn Morris  <rgm@gnu.org>
4557
4558         * gnus-group.el (gnus-bug-group-download-format-alist): Once again get
4559         the "maintainer" version of debbugs.gnu.org reports.
4560
4561 2011-10-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4562
4563         * shr.el (shr-tag-img): Add a space at the end of an ALT image text to
4564         make asynchronous adjacent image insertion work better.
4565
4566 2011-09-27  Daiki Ueno  <ueno@unixuser.org>
4567
4568         * plstore.el (plstore-select-keys, plstore-encrypt-to): Clarify
4569         documentation.
4570
4571 2011-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4572
4573         * gnus-uu.el (gnus-uu-grab-articles): Require gnus-async so that
4574         `gnus-asynchronous' isn't shadowed.
4575
4576 2011-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4577
4578         * gnus-xmas.el (gnus-xmas-define): Add `member-ignore-case'.
4579
4580         * nnimap.el (nnimap-wait-for-response): Message less (bug#9540).
4581         (nnimap-insert-partial-structure): The charset parameter isn't
4582         case-sensitive.
4583
4584         * nnheader.el (nnheader-message-maybe): New function.
4585
4586         * shr.el (shr-tag-table): Render totally broken tables better.
4587
4588         * mml.el (mml-generate-mime-1): Don't alter the contents if we're
4589         computing the boundary.
4590
4591 2011-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4592
4593         * pop3.el (pop3-number-of-responses): Remove.
4594         (pop3-wait-for-messages): Rewrite to take linear time instead of
4595         exponential time.
4596
4597 2011-09-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4598
4599         * gnus-sum.el (gnus-summary-show-article): Bind `shr-ignore-cache' to
4600         re-fetch images.
4601
4602         * shr.el (shr-tag-img): Support a new variable `shr-ignore-cache' to
4603         re-fetch images when hitting `g' in Gnus.
4604
4605 2011-09-22  Katsumi Yamaoka  <yamaoka@jpl.org>
4606
4607         * mml.el (mml-inhibit-compute-boundary): New internal variable.
4608         (mml-compute-boundary): Don't check collision if it is non-nil.
4609         (mml-compute-boundary-1): Use mml-generate-mime-1 to encode part
4610         before checking collision.
4611
4612 2011-09-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4613
4614         * message.el (message-indent-citation): Really make sure there's a
4615         newline at the end.
4616
4617         * nnimap.el (nnimap-parse-flags): Make regexp less prone to overflows.
4618         Fix suggested by John Wiegley.
4619
4620         * pop3.el (pop3-open-server): Fix +OK end-of-command regexp.
4621
4622         * gnus-art.el (gnus-treat-hide-citation): Add doc.
4623
4624         * message.el (message-default-send-rename-function): Break out into its
4625         own function.
4626
4627         * ecomplete.el (ecomplete-display-matches): Revert patch since it
4628         doesn't work under XEmacs.
4629
4630         * nnimap.el (nnimap-map-port): New function to connect to 993 instead
4631         of "imaps" to word around Windows problems.
4632         (nnimap-open-connection-1): Use it.
4633
4634         * message.el (message-indent-citation): Revert last change which made
4635         `F' not work.
4636
4637 2011-09-13  Kan-Ru Chen  <kanru@kanru.info>
4638
4639         * ecomplete.el (ecomplete-display-matches): Intercept key sequence from
4640         terminal as well.
4641
4642 2011-09-21  Katsumi Yamaoka  <yamaoka@jpl.org>
4643
4644         * mm-view.el (mm-display-inline-fontify): Don't run doc-view-mode
4645         because it displays images using overlays that aren't easy to copy to
4646         the article buffer.
4647
4648 2011-09-20  Łukasz Stelmach  <lukasz.stelmach@iem.pw.edu.pl>  (tiny change)
4649
4650         * message.el (message-indent-citation): Fix empty line removal at the
4651         end of the citation.
4652
4653 2011-09-20  Julien Danjou  <julien@danjou.info>
4654
4655         * auth-source.el (auth-source-netrc-create): Use default value for
4656         password if specified.  Evaluate default.
4657         (auth-source-plstore-create): Ditto.
4658         (auth-source-plstore-create, auth-source-netrc-create): Fix default
4659         value evaluation.
4660         (auth-source-netrc-create): Typo fix.
4661         (auth-source-plstore-create): Ditto.
4662
4663         * password-cache.el (password-cache-remove): Remove entries even if the
4664         value is nil, so that password with a nil value (negative caching) is
4665         possible to invalidate.
4666
4667         * auth-source.el (auth-source-format-cache-entry): New function.
4668
4669 2011-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
4670
4671         * gnus-fun.el (gnus-convert-image-to-x-face-command): Doc fix.
4672
4673 2011-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4674
4675         * mm-decode.el (mm-inline-media-tests): Fix typo in regexp.
4676
4677 2011-09-19  Julien Danjou  <julien@danjou.info>
4678
4679         * auth-source.el (auth-source-netrc-parse): Use an obfuscation method
4680         which work with things that are not ASCII.
4681
4682 2011-09-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4683
4684         * mm-decode.el (mm-inline-media-tests): Support imagemagick images.
4685
4686 2011-09-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4687
4688         * gnus-sum.el (gnus-summary-read-group-1): Bump the "Retrieving"
4689         message level.
4690
4691 2011-09-15  Katsumi Yamaoka  <yamaoka@jpl.org>
4692
4693         * message.el (message-read-from-minibuffer): Make abbrev expansion work.
4694
4695 2011-09-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4696
4697         * gnus.el (gnus-interactive-exit): Update defcustom spec.
4698
4699 2011-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
4700
4701         * gnus.el (gnus-nntp-server): Move to gnus-int.el to silence bytecomp.
4702         * gnus-int.el (gnus-nntp-server): Move from gnus.el.
4703
4704 2011-09-12  Andrew Cohen  <cohen@andy.bu.edu>
4705
4706         * gnus-group.el (gnus-group-list-limit-map, gnus-group-list-flush-map)
4707         (gnus-group-list-plus-map): Allow limiting, flushing and plusing ticked
4708         articles.
4709
4710 2011-09-11  Chong Yidong  <cyd@stupidchicken.com>
4711
4712         * message.el (message-pop-to-buffer): Default to switch-to-buffer.
4713         (message-mail-other-window, message-mail-other-frame)
4714         (message-news-other-window, message-news-other-frame):
4715         Use switch-to-buffer-other-frame and switch-to-buffer-other-window
4716         instead of setting buffer display varibles.
4717
4718 2011-09-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4719
4720         * gnus-group.el (gnus-group-list-limit): Explain what the command does.
4721
4722         * gnus-sum.el (gnus-fetch-headers): Bump message level.
4723
4724 2011-09-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4725
4726         * gnus-dup.el (gnus-dup-suppress-articles): Move "Suppressing
4727         duplicates" to a higher level.
4728
4729         * gnus-util.el (gnus-verbose): Lower default to 6 to get rid of the
4730         most egregious messages.
4731
4732 2011-09-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4733
4734         * gnus-msg.el (gnus-summary-mail-forward): Minuscule doc fix.
4735
4736 2011-09-10  Tetsuo Tsukamoto  <tt.tetsuo.tsukamoto@gmail.com>  (tiny change)
4737
4738         * nnrss.el (nnrss-retrieve-groups): Decode the charset before looking
4739         up the file (bug#9351).
4740
4741 2011-09-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4742
4743         * nnimap.el: Redo the charset handling.  Let Gnus encode the names, as
4744         it does with all other backends, but decode the names immediately after
4745         getting them.
4746
4747         * gnus-group.el (gnus-group-name-charset): Always return `utf-7' when
4748         decoding nnimap groups.
4749
4750         * gnus.el (gnus-variable-list): Don't save `gnus-format-specs' in the
4751         newsrc file.  It doesn't seem like an important optimization any more.
4752
4753 2011-09-10  Dave Abrahams  <dave@boostpro.com>
4754
4755         * nnimap.el (nnimap-transform-headers): Fix regexp to be less prone to
4756         overflows.
4757
4758 2011-09-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4759
4760         * gnus.el (gnus-article-mark-lists): Remove `recent'.
4761         (gnus-interactive-exit): Extend to `quiet'.
4762
4763         * gnus-sum.el (gnus-offer-save-summaries): Use it.
4764
4765         * gnus-art.el (gnus-treat-hide-citation-maybe): Add more doc to the
4766         string.
4767
4768         * plstore.el (plstore--get-buffer): Silence compiler warnings by
4769         renaming function arguments from `this'.
4770
4771         * gnus-sum.el (gnus-newsgroup-recent): Remove.
4772
4773         * gnus-spec.el (gnus-lrm-string-p): `bidi-string-mark-left-to-right'
4774         has been renamed.
4775         (gnus-lrm-string-p): Include RLM and PDF, too.
4776
4777         * gnus-int.el (gnus-open-server): Make the "denied" message clearer
4778         (bug#9225).
4779
4780 2011-09-10  Eli Zaretskii  <eliz@gnu.org>
4781
4782         Add autoload cookies for functions used by sendmail.el.
4783         * mm-encode.el (mm-default-file-encoding): Add autoload cookie.
4784
4785         * mml.el (mml-to-mime, mml-attach-file): Add autoload cookies.
4786
4787 2011-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
4788
4789         * gnus-art.el (article-date-ut): Work properly even when there are
4790         things like Date header in the body; work for forwarded parts.
4791
4792 2011-09-05  Andrew Cohen  <cohen@andy.bu.edu>
4793
4794         * gnus-sum.el (gnus-summary-exit): Ensure we kill the proper
4795         original-article-buffer.
4796
4797 2011-09-05  Kan-Ru Chen  <kanru@kanru.info>
4798
4799         * nnir.el (nnir-compose-result): Fix matching of server type.
4800         (nnir-run-swish++): Ditto.
4801         (nnir-run-namazu): Ditto.
4802         (nnir-run-notmuch): Ditto.
4803
4804 2011-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4805
4806         * gnus.el (gnus-home-directory): Add warning about setting in .gnus.el
4807         (bug#9405).
4808
4809         * gnus-score.el (gnus-summary-increase-score): Doc clarification
4810         (bug#9421).
4811
4812         * gnus-spec.el (gnus-face-0): Make all the face specs into defcustoms
4813         (bug#9425).
4814
4815         * gnus-art.el (gnus-treatment-function-alist): Remove CRs as the first
4816         thing (bug#9426).
4817
4818 2011-09-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4819
4820         * nnimap.el (nnimap-open-connection-1): Use the correct port number in
4821         the error message.
4822
4823 2011-09-02  Eli Zaretskii  <eliz@gnu.org>
4824
4825         * message.el (message-setup-1): Return t (Bug#9392).
4826
4827 2011-09-01  Andrew Cohen  <cohen@andy.bu.edu>
4828
4829         * gnus-sum.el: When adding article headers to a summary buffer also
4830         update gnus-newsgroup-articles (bug#9386).
4831
4832 2011-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
4833
4834         * auth-source.el: Autoload help-mode.
4835
4836 2011-08-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4837
4838         * gnus-group.el (gnus-group-name-charset): Don't bug out on server
4839         names.
4840
4841 2011-08-27  Daiki Ueno  <ueno@unixuser.org>
4842
4843         * mml-smime.el (mml-smime-epg-verify): Don't use the 4th arg of
4844         mm-replace-in-string for compatibility issues.
4845         * mml2015.el (mml2015-epg-verify): Ditto.
4846
4847 2011-08-26  Katsumi Yamaoka  <yamaoka@jpl.org>
4848
4849         * mailcap.el (mailcap-mime-data): Regexp-quote MIME subtype.
4850
4851         * gnus-msg.el (gnus-setup-message): Remove extra apostrophe.
4852
4853 2011-08-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4854
4855         * nnmail.el (nnmail-get-new-mail-1): If one mail source bugs out,
4856         continue on and do the clean-up phase (bug#9188).
4857
4858         * gnus-sum.el (gnus-summary-expire-articles): When expiring articles,
4859         just ignore groups that can't be opened instead of erroring out
4860         (bug#9225).
4861
4862         * gnus-art.el (gnus-article-update-date-headers): Flip the default to
4863         nil since some many people are fuddy-duddies.
4864
4865         * gnus-html.el (gnus-html-image-fetched): Don't cache zero-length
4866         images.
4867
4868         * nntp.el (nntp-authinfo-file): Mark as obsolete -- use auth-source
4869         instead.
4870
4871         * pop3.el (pop3-wait-for-messages): Don't use Gnus functions here.
4872
4873         * gnus-util.el (gnus-process-live-p): Copy over compat function.
4874
4875         * pop3.el (pop3-wait-for-messages): If the pop3 process dies, stop
4876         processing.
4877
4878         * nntp.el (nntp-kill-buffer): Kill the process before killing the
4879         buffer to avoid warnings.
4880
4881 2011-08-20  Simon Josefsson  <simon@josefsson.org>
4882
4883         * gnus-agent.el (gnus-agent-expire-done-message): Use %.f as format
4884         specified to reduce precision.
4885
4886 2011-08-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4887
4888         * nnimap.el (nnimap-transform-headers): Protect against (NIL ...)
4889         bodystructures (bug#9314).
4890
4891 2011-08-19  Katsumi Yamaoka  <yamaoka@jpl.org>
4892
4893         * gnus-art.el (gnus-insert-mime-button, gnus-mime-display-alternative):
4894         Make button keymap non-sticky after buttons.
4895
4896 2011-08-18  David Engster  <dengste@eml.cc>
4897
4898         * nnmairix.el (nnmairix-request-set-mark)
4899         (nnmairix-goto-original-article): Remove adding of article to registry,
4900         since `gnus-registry-add-group' isn't available anymore.
4901         (nnmairix-determine-original-group-from-registry):
4902         Use `gnus-registry-get-id-key' since `gnus-registry-fetch-groups' isn't
4903         available anymore.
4904
4905 2011-08-12  Simon Josefsson  <simon@josefsson.org>
4906
4907         * starttls.el (starttls-any-program-available): Define as obsolete
4908         function.
4909
4910 2011-08-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4911
4912         * gnus-util.el (gnus-y-or-n-p): Reinstate the message-clearing y-or-n-p
4913         versions which Gnus use when appropriate.
4914
4915         * gnus-group.el (gnus-group-clear-data): Add a y-or-n query, since it's
4916         a pretty destructive command.
4917
4918         * nnmail.el (nnmail-extra-headers): Clarify slightly (bug#9302).
4919
4920 2011-08-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4921
4922         * message.el (message-fix-before-sending): Make a different warning
4923         about NUL characters (bug#9270).
4924
4925         * gnus-sum.el (gnus-auto-select-subject): Allow specifying a function
4926         from custom (bug#9260).
4927
4928         * gnus-spec.el (gnus-lrm-string): Use 8206 instead of ?\x200e to make
4929         things work in Emacs 22 and XEmacs, too.
4930
4931         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): LRM-ify the
4932         default From.
4933
4934         * gnus-spec.el (gnus-lrm-string-p): New macro.
4935         (gnus-lrm-string): New constant.
4936         (gnus-summary-line-format-spec): LRM-ify the from.
4937         (gnus-tilde-max-form): LRM-ify string chopping.
4938
4939         * gnus-ems.el (gnus-string-mark-left-to-right): New function.
4940
4941         * message.el (message-is-yours-p): Allow disabling canlock checking
4942         (bug#9295).
4943         (message-shoot-gnksa-feet): Add `canlock-verify'.
4944         (message-auto-save-directory): Use ~/ as the auto-save directory if the
4945         message directory isn't writable (bug#9304).
4946
4947         * auth-source.el (auth-source-netrc-saver): Make the .authinfo file
4948         non-world-readable.
4949
4950 2011-08-17  Katsumi Yamaoka  <yamaoka@jpl.org>
4951
4952         * nndraft.el (nndraft-update-unread-articles): Don't send delayed
4953         articles.
4954
4955 2011-08-13  Andreas Schwab  <schwab@linux-m68k.org>
4956
4957         * gnus-score.el (gnus-all-score-files): Use copy-sequence instead of
4958         copy-list.
4959
4960 2011-08-12  Sam Steingold  <sds@gnu.org>
4961
4962         * gnus-score.el (gnus-score-find-alist): Keep the score files already
4963         in the reverse order to avoid modifying the cache with `nreverse'.
4964         (gnus-all-score-files): Do not modify the value returned by
4965         `gnus-score-find-alist' because it lives in a cache variable.
4966         (gnus-current-home-score-file): No need to `nreverse' the return value
4967         of `gnus-score-find-alist', it is already in the correct order.
4968
4969 2011-08-11  Andrew Cohen  <cohen@andy.bu.edu>
4970
4971         * nnimap.el (nnimap-transform-headers): BODYSTRUCTURE for messages of
4972         type MESSAGE and subtype RFC822 is slightly different from those of
4973         type TEXT.
4974
4975 2011-08-05  Andrew Cohen  <cohen@andy.bu.edu>
4976
4977         * gnus-sum.el (gnus-summary-refer-article): Warp to article.
4978         This allows article-referral to work from an nnir group.
4979
4980 2011-08-04  Andrew Cohen  <cohen@andy.bu.edu>
4981
4982         * gnus.el (registry-ignore): Add nnir groups to the ignore-list.
4983
4984 2011-08-04  Daiki Ueno  <ueno@unixuser.org>
4985
4986         * mml1991.el (mml1991-epg-find-usable-key)
4987         (mml1991-epg-find-usable-secret-key): New function.
4988         (mml1991-epg-sign): Check if signing key is usable.
4989         (mml1991-epg-encrypt): Check if encrypting key is usable (bug#8955).
4990
4991 2011-08-03  Andrew Cohen  <cohen@andy.bu.edu>
4992
4993         * nnir.el (nnir-read-server-parm): Add an argument to restrict to
4994         server-variables only.  This should fix a bug introduced with commit
4995         e1889675b7f4adf057833c5513c9374134c4e053.
4996         (nnir-run-query): 'nnir-search-engine should not be set from the global
4997         environment.
4998
4999 2011-08-02  Andrew Cohen  <cohen@andy.bu.edu>
5000
5001         * nnir.el (nnir-search-thread): Position point on referring article
5002         line.
5003         (nnir-warp-to-article): Clean up summary buffers.
5004
5005         * nnimap.el (nnimap-request-thread): Whitespace fix.
5006
5007 2011-08-02  Steve Purcell  <steve@sanityinc.com>  (tiny change)
5008
5009         * nnimap.el (nnimap-get-groups): Decode "&" correctly.
5010
5011 2011-08-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5012
5013         * starttls.el (starttls-available-p): Rename from
5014         `starttls-any-program-available' and changed return convention.
5015
5016 2011-07-31  Lars Ingebrigtsen  <larsi@gnus.org>
5017
5018         * nnmaildir.el (nnmaildir-request-accept-article): Don't call
5019         `unix-sync' unless it's defined.
5020
5021 2011-07-31  Marcus Harnisch  <marcus.harnisch@gmx.net>  (tiny change)
5022
5023         * gnus-art.el (gnus-article-stop-animations): Use `elt' instead of
5024         `aref' for XEmacs compatibiltiy.
5025
5026 2011-07-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5027
5028         * spam.el (spam-fetch-field-fast): Rewrite slightly for clarity.
5029
5030 2011-07-31  Dave Abrahams  <dave@boostpro.com>
5031
5032         * gnus-sum.el (gnus-summary-refer-thread): Since lambdas aren't
5033         closures, quote the form properly (bug#9194).
5034
5035 2011-07-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5036
5037         * gnus-sum.el (gnus-summary-insert-new-articles): Clean up slightly.
5038         (gnus-summary-insert-new-articles): Protect against servers that are
5039         down.
5040
5041 2011-07-29  Daniel Dehennin  <daniel.dehennin@baby-gnu.org>
5042
5043         * mm-decode.el (mm-dissect-buffer): Add a default content-disposition
5044         in mm handle if none is specified.
5045
5046 2011-07-24  Andrew Cohen  <cohen@andy.bu.edu>
5047
5048         * nnimap.el (nnimap-make-thread-query): Quote message-ids for gmail.
5049
5050 2011-07-23  Andrew Cohen  <cohen@andy.bu.edu>
5051
5052         * nnir.el (nnir-search-thread): New function to make an nnir group
5053         based on a thread query.
5054
5055         * gnus-sum.el (gnus-refer-thread-use-nnir): New variable to control use
5056         of nnir in thread referral.
5057         (gnus-summary-refer-thread): Use it.
5058
5059         * nnimap.el (nnimap-request-thread): Use it.
5060
5061 2011-07-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5062
5063         * shr.el (shr-tag-comment): Ignore HTML comments.
5064
5065 2011-07-20  Andrew Cohen  <cohen@andy.bu.edu>
5066
5067         * nnir.el (gnus-group-make-nnir-group): Allow optional search query
5068         argument.
5069         (gnus-group-make-nnir-group, nnir-request-group, nnir-run-query):
5070         Use `nnir-address' to handle server info rather than passing an arg.
5071
5072         * nnimap.el (nnimap-make-thread-query): New utility function to format
5073         an imap thread search query.
5074         (nnimap-request-thread): Use it.
5075
5076         * gnus-sum.el (gnus-handle-ephemeral-exit): Ensure we are setting the
5077         right select-method if we are not going back to the group buffer.
5078
5079 2011-07-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5080
5081         * gnus-group.el (gnus-group-read-ephemeral-group): Make sure we don't
5082         enter invalid buffer configurations into the quit form (bug#9107).
5083         (gnus-group-tool-bar-gnome): Replace connect/disconnect with
5084         unplugged/plugged.
5085
5086         * gnus-sum.el (gnus-summary-refer-thread): When inserting new headers,
5087         keep track of which ones are unread (bug#9061).
5088
5089         * gnus.el (gnus-refer-article-method): Allow entering any sexp
5090         (bug#9055).
5091
5092         * gnus-art.el (gnus-article-show-images): Allow working if using w3m
5093         (bug#9041).
5094
5095         * gnus-html.el (mm-util): Require (bug#9073).
5096
5097         * gnus-sum.el (gnus-delete-duplicate-headers): New function.
5098         (gnus-summary-refer-thread): Use it to remove duplicates in the
5099         un-threaded view (bug#9053).
5100         (gnus-summary-insert-subject): Document USE-OLD-HEADER (bug#9070).
5101
5102 2011-07-07  Kan-Ru Chen  <kanru@kanru.info>
5103
5104         * nnir.el (nnir-read-server-parm): Use default value from global
5105         variable.  Without this the default search engine parameters aren't
5106         used at all.
5107
5108 2011-07-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5109
5110         * message.el (message-unique-id): Don't use the undocumented return
5111         value from (random t) (bug#9118).
5112
5113 2011-07-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5114
5115         * message.el (message-auto-save-directory): If the ~/Mail directory
5116         doesn't exist, use ~ as the auto-save directory (bug#4432).
5117
5118         * gnus-group.el (gnus-group-read-ephemeral-group): Start Gnus if it
5119         hasn't already been started.
5120
5121 2011-07-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5122
5123         * gnus.el (debbugs-gnu): Rename from debbugs-emacs.
5124
5125         * message.el (message-reply): Work around mysterious bug where
5126         `message-mode' seems to overwrite the locally bound `subject' variable.
5127
5128 2011-07-14  Andrew Cohen  <cohen@andy.bu.edu>
5129
5130         * nnimap.el (nnimap-request-thread): Ensure search is performed in
5131         correct group.
5132
5133         * gnus-int.el (gnus-request-thread): Add group argument.
5134
5135         * gnus-sum.el (gnus-summary-refer-thread): Use it.
5136
5137 2011-07-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5138
5139         * dgnushack.el (debbugs-gnu-summary-mode): Update compat names, too.
5140
5141         * gnus-group.el (gnus-read-ephemeral-emacs-bug-group): `debbugs-*'
5142         renamed to `debbugs-gnu-*'.
5143
5144 2011-07-08  Daiki Ueno  <ueno@unixuser.org>
5145
5146         * plstore.el: Revert the editing feature since it is not urgent.
5147         (plstore-mode, plstore-mode-toggle-display, plstore-mode-original)
5148         (plstore-mode-decoded): Remove.
5149
5150 2011-07-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5151
5152         * gnus-msg.el (gnus-bug): Don't insert user variables.  It usually
5153         isn't very interesting any more, and it leaks potentially secret data.
5154         (gnus-debug): Remove.
5155
5156         * gnus-art.el (gnus-ignored-headers): Remove obsolete and non-working
5157         use of :custom-show.
5158
5159 2011-07-07  Daiki Ueno  <ueno@unixuser.org>
5160
5161         * plstore.el: Add documentation.
5162         (plstore-mode): New mode to edit plstore file.
5163         (plstore-mode-toggle-display, plstore-mode-original)
5164         (plstore-mode-decoded): New command.
5165         (plstore--encode, plstore--decode, plstore--write-contents-functions)
5166         (plstore--insert-buffer, plstore--make): New function.
5167         (plstore-open, plstore-save): Simplify by using them.
5168
5169 2011-07-06  Glenn Morris  <rgm@gnu.org>
5170
5171         * gnus-group.el (gnus-read-ephemeral-emacs-bug-group): Silence compiler.
5172
5173 2011-07-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5174
5175         * gnus.el (gnus-refer-article-method): Remove mention of nnspool, which
5176         no longer is much used.
5177         (gnus-summary-line-format): Link to "Marking Articles" instead of "Read
5178         Articles".
5179
5180 2011-04-03  Kan-Ru Chen  <kanru@kanru.info>
5181
5182         * nnir.el (nnir-notmuch-program, nnir-notmuch-additional-switches)
5183         (nnir-notmuch-remove-prefix, nnir-engines, nnir-run-notmuch): New nnir
5184         `notmuch' backend.
5185
5186 2011-07-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5187
5188         * mm-decode.el (mm-text-html-renderer): Doc fix.
5189
5190         * gnus-msg.el (gnus-bug): Fix the MML tag.
5191
5192         * pop3.el (pop3-open-server): -ERR is a valid response to CAPA.
5193
5194 2011-07-05  Daiki Ueno  <ueno@unixuser.org>
5195
5196         * gnus-start.el (gnus-get-unread-articles): Don't connect to the
5197         secondary methods if started with `gnus-no-server'.
5198
5199 2011-07-05  Juanma Barranquero  <lekktu@gmail.com>
5200
5201         * message.el (message-return-action): Fix typo in docstring.
5202
5203 2011-07-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5204
5205         * gnus-group.el (gnus-read-ephemeral-bug-group): Allow fetching several
5206         bug reports at once.
5207
5208         * nnimap.el (nnimap-request-scan): Say that splitting has finished.
5209
5210 2011-07-04  Katsumi Yamaoka  <yamaoka@jpl.org>
5211
5212         * nndraft.el: Require gnus-group.
5213         (nndraft-request-list): Declare.
5214
5215         * nndraft.el (nndraft-update-unread-articles): Don't show group having
5216         no unread article unless it matches gnus-permanently-visible-groups.
5217
5218         * nndraft.el (nndraft-update-unread-articles): New function.
5219         (nndraft-request-associate-buffer): Use it to update the number of
5220         unread articles for the nndraft groups in the group buffer when saving
5221         or killing a draft message.
5222
5223 2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5224
5225         * gnus-group.el (gnus-read-ephemeral-bug-group): Bind the coding
5226         systems to binary before writing and reading the mbox files.
5227
5228         * gnus.el (gnus-summary-line-format): Link to the info node for %U
5229         instead of trying to list them all (bug#8978).
5230
5231 2011-07-03  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
5232
5233         * pop3.el (pop3-open-server): Use :end-of-capability.
5234
5235 2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5236
5237         * gnus-group.el (gnus-read-ephemeral-emacs-bug-group): Make sure that
5238         the id is always a number.
5239
5240         * dgnushack.el (debbugs-summary-mode): Shut up compiler about debbugs.
5241
5242         * gnus-group.el (gnus-read-ephemeral-emacs-bug-group): Hook into
5243         debbugs mode, if possible.
5244
5245 2011-07-02  Daiki Ueno  <ueno@unixuser.org>
5246
5247         * auth-source.el (auth-source-token-passphrase-callback-function):
5248         Reindent.
5249         (epg-context-operation): Remove unnecessary autoload.
5250
5251 2011-07-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5252
5253         * gnus.el (gnus-list-debbugs): New command.
5254
5255         * gnus-group.el (gnus-bug-group-download-format-alist): Get the
5256         mboxstat instead of the maintbox, since the stat seems to be fuller.
5257
5258         * gnus-msg.el (gnus-configure-posting-styles): Don't try to select dead
5259         summary buffers.
5260
5261         * message.el (message-get-reply-headers): Delete all duplicates,
5262         instead of the first.
5263         (message-get-reply-headers): Ensure that we have progress while
5264         deleting duplicates.
5265
5266         * gnus-msg.el (gnus-configure-posting-styles): Get the local
5267         gnus-posting-style value from the summary buffer to make it easier to
5268         make that a per-buffer conf.
5269
5270 2011-07-02  Andrew Cohen  <cohen@andy.bu.edu>
5271
5272         * nnir.el (nnir-run-imap): Allow halting a search when an article is
5273         found by setting `shortcut' in 'query.
5274         (nnir-request-article): Use `shortcut' setting when requesting article
5275         by Message-ID.
5276
5277 2011-07-02  Teodor Zlatanov  <tzz@lifelogs.com>
5278
5279         * gnus-msg.el (gnus-bug): Give the Version and Package headers to
5280         debbugs with the X-Debbugs-Package and X-Debbugs-Version headers.
5281         Bring the pseudo-headers back too.
5282
5283 2011-07-01  Daiki Ueno  <ueno@unixuser.org>
5284
5285         * auth-source.el (auth-source-token-passphrase-callback-function):
5286         Simplify and remove EPA dependency.
5287
5288 2011-07-01  Andrew Cohen  <cohen@andy.bu.edu>
5289
5290         * nnir.el (nnir-request-article): Fix error message text.
5291
5292 2011-07-01  Daiki Ueno  <ueno@unixuser.org>
5293
5294         * auth-source.el (plstore-delete): Autoload.
5295         (auth-source-plstore-search): Support delete operation.
5296         * plstore.el (plstore-delete): New function.
5297
5298 2011-07-01  Katsumi Yamaoka  <yamaoka@jpl.org>
5299
5300         * gnus-draft.el (gnus-draft-clear-marks): Revert last change;
5301         mark actually existing articles as unread rather than the ones that
5302         active asserts.
5303
5304 2011-07-01  Paul Eggert  <eggert@cs.ucla.edu>
5305
5306         * nntp.el (nntp-record-command):
5307         * gnus-util.el (gnus-message-with-timestamp-1):
5308         Use format-time-string rather than decoding time stamps by hand.
5309         This is simpler and insulates the code from potential changes to
5310         current-time format.
5311
5312 2011-07-01  Katsumi Yamaoka  <yamaoka@jpl.org>
5313
5314         * gnus-draft.el (gnus-draft-clear-marks): Mark deleted articles as read.
5315
5316 2011-07-01  Daiki Ueno  <ueno@unixuser.org>
5317
5318         * plstore.el (plstore-select-keys, plstore-encrypt-to): New variable.
5319         (plstore-save): Support public key encryption.
5320         (plstore--init-from-buffer): New function.
5321         (plstore-open): Use it; fix error when opening a non-existent file.
5322         (plstore-revert): Use plstore--init-from-buffer.
5323
5324 2011-07-01  Daiki Ueno  <ueno@unixuser.org>
5325
5326         * auth-source.el (auth-source-backend): Fix :initarg for data slot.
5327
5328 2011-06-30  Katsumi Yamaoka  <yamaoka@jpl.org>
5329
5330         * mml2015.el (mml2015-use): Replace string-match-p with string-match
5331         for old Emacsen.
5332
5333 2011-06-30  Daiki Ueno  <ueno@unixuser.org>
5334
5335         * mml2015.el (mml2015-use): Don't try to load PGG on Emacs 24, when EPG
5336         is not fully working.
5337
5338 2011-06-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5339
5340         * dgnushack.el: Autoload sha1 on XEmacs.
5341
5342         * gnus-group.el (gnus-read-ephemeral-emacs-bug-group): Take an optional
5343         quit window configuration.
5344
5345         * auth-source.el (epg-context-set-passphrase-callback):
5346         Remove duplicate autoload.
5347
5348 2011-06-30  Andrew Cohen  <cohen@andy.bu.edu>
5349
5350         * nnir.el (nnir-request-article): Allow requesting articles by
5351         Message-ID with nnimap.
5352
5353         * gnus-sum.el (gnus-refer-article-methods): Allow (nnir) entry to use
5354         current server.
5355
5356 2011-06-30  Teodor Zlatanov  <tzz@lifelogs.com>
5357
5358         * auth-source.el: Autoload EPA/EPG functions.
5359         (auth-source-netrc-use-gpg-tokens): Clarify that it should not be
5360         changed when EPA/EPG is not available.
5361         (auth-source-backend): Rename "arg" member to "data".
5362         (auth-source-backend-parse, auth-source-plstore-search)
5363         (auth-source-plstore-create): Use it.
5364
5365 2011-06-30  Andrew Cohen  <cohen@andy.bu.edu>
5366
5367         * gnus-art.el (gnus-request-article-this-buffer): Use existing function
5368         `gnus-refer-article-methods'.
5369
5370 2011-06-30  Teodor Zlatanov  <tzz@lifelogs.com>
5371
5372         * auth-source.el: Require EPA and EPG.
5373         (auth-source-passphrase-alist): New variable.
5374         (auth-source-passphrase-callback-function)
5375         (auth-source-token-passphrase-callback-function): Callbacks for the
5376         netrc field encryption (GPG tokens).
5377         (auth-source-epa-extract-gpg-token, auth-source-epa-make-gpg-token):
5378         Symmetric encryption and decryption of the netrc GPG tokens.
5379         (auth-source-netrc-normalize): Use them, simplifying the closure.
5380
5381 2011-06-30  Katsumi Yamaoka  <yamaoka@jpl.org>
5382
5383         * dgnushack.el (dgnushack-compile): Don't compile plstore.el unless epg
5384         is available.
5385
5386 2011-06-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5387
5388         * nnimap.el (nnimap-split-incoming-mail): If `nnimap-split-fancy' is
5389         non-nil, and `nnimap-split-methods' is nil, use the former.
5390
5391 2011-06-30  Daiki Ueno  <ueno@unixuser.org>
5392
5393         * plstore.el (plstore-revert): New function.
5394         (plstore-open): Use it; hide the buffer from user.
5395
5396 2011-06-30  Daiki Ueno  <ueno@unixuser.org>
5397
5398         * auth-source.el (auth-source-backend): New member "arg".
5399         (auth-source-backend-parse): Handle new backend 'plstore.
5400         * plstore.el: New file.
5401
5402 2011-06-30  Glenn Morris  <rgm@gnu.org>
5403
5404         * mm-util.el (mm-charset-synonym-alist): Move definition before use.
5405
5406 2011-06-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5407
5408         * nnimap.el (nnimap-process-expiry-targets): Say what target we're
5409         expiring articles to.
5410
5411         * mm-util.el (mm-charset-to-coding-system): Recognize all ANSI.x3.4
5412         variations as ASCII (bug#5458).
5413
5414 2011-06-30  Katsumi Yamaoka  <yamaoka@jpl.org>
5415
5416         * nnmh.el (nnmh-request-list-1): Work on MS Windows.
5417
5418 2011-06-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5419
5420         * message.el (message-point-in-header-p): Tweak the function to default
5421         to saying that we're not in the headers if there is no separator at
5422         all.  This makes it possible to use the Message version of `M-q' in
5423         buffers with no headers (bug#7987).
5424         (message-point-in-header-p): Fix last checkin to work with an empty
5425         mail-header-separator, too.
5426
5427         * auth-source.el (auth-source-netrc-saver): If the user says "don't ask
5428         again, save the choice via customize.
5429
5430 2011-06-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5431
5432         * message.el (message-send-mail-function): Add `sendmail-query-once'.
5433
5434         * nnimap.el (nnimap-finish-retrieve-group-infos): If the server has
5435         ended the connection, bail out before waiting infinitely on a new
5436         connection.
5437
5438 2011-06-28  Teodor Zlatanov  <tzz@lifelogs.com>
5439
5440         * gnus-msg.el (gnus-bug): Add Package and Version pseudo-headers to bug
5441         reports.
5442
5443         * gnus.el (gnus-bug-package): Use "gnus."
5444         (gnus-maintainer): Direct bug reports to submit@debbugs.gnu.org.
5445
5446 2011-06-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5447
5448         * dgnushack.el: Make the timer warning go away on XEmacs.
5449
5450         * gnus-art.el (gnus-article-stop-animations): New function to stop any
5451         animations going on at article exit time.
5452
5453         * gnus-registry.el (gnus-registry-user-format-function-M): Reinstate,
5454         since removing it breaks people upgrading.
5455
5456         * shr.el (shr-put-image): Use the new interface for animating images.
5457         (shr-put-image): Animate for 60 seconds.
5458
5459         * dgnushack.el: Bind `gnutls-available-p' to `ignore' on XEmacs to
5460         avoid compiler warnings.
5461
5462         * auth-source.el (with-auth-source-epa-overrides): Fix compilation
5463         error with `find-file-hooks' on Emacs 22.
5464         (with-auth-source-epa-overrides): Ugly hack to Wrap the
5465         `find-file-hook' things in `symbol-value' to avoid compilation warnings
5466         on all architectures.
5467
5468         * spam.el (spam-stat): Require in a normal fashion without binding
5469         `spam-stat-install-hooks' to avoid compilation warnings.
5470
5471         * spam-stat.el (spam-stat-install-hooks): Remove.
5472         (spam-stat-install-hooks): Don't run automatically.
5473
5474 2011-06-26  Timo Juhani Lindfors  <timo.lindfors@iki.fi>  (tiny change)
5475
5476         * gnus-msg.el (gnus-summary-reply-to-list-with-original): New command
5477         and keystroke.
5478
5479 2011-06-23  Katsumi Yamaoka  <yamaoka@jpl.org>
5480
5481         * auth-source.el (auth-source-netrc-cache): Move forward.
5482
5483 2011-06-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5484
5485         * proto-stream.el (proto-stream-open-starttls): Use
5486         `gnutls-available-p' to see whether we have built-in support.
5487
5488         * auth-source.el (auth-source-netrc-create): Don't query the bits that
5489         we already know.
5490         (auth-source-forget-all-cached): Clear auth-source-netrc-cache, too.
5491         (auth-source-netrc-create): Don't prompt for the stuff we already know.
5492
5493 2011-06-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5494
5495         * auth-source.el (auth-source-netrc-create): Don't print all tokens in
5496         %S format, since that looks odd.
5497         (auth-sources): Prefer the ~/.authinfo file over the ~/.authinfo.gpg
5498         file, especially when saving.
5499
5500 2011-06-21  Andrew Cohen  <cohen@andy.bu.edu>
5501
5502         * nnimap.el (nnimap-find-article-by-message-id): return nil when no
5503         article found.
5504
5505 2011-06-18  Teodor Zlatanov  <tzz@lifelogs.com>
5506
5507         * auth-source.el (auth-source-netrc-use-gpg-tokens): Replace
5508         `auth-source-save-secrets' with a more sensitive alist that can be
5509         configured per file.  Experimental, so defaults to 'never.
5510         (auth-source-netrc-create): Use it.  Still experimental code.
5511         (with-auth-source-epa-overrides): Use `find-file-hooks' if
5512         `find-file-hook' is unbound (XEmacs fix).  Fix backquoting bug.
5513
5514 2011-06-16  Teodor Zlatanov  <tzz@lifelogs.com>
5515
5516         * auth-source.el (auth-source-save-secrets): New variable to control if
5517         secret tokens should be saved encrypted.
5518         (auth-source-netrc-parse, auth-source-netrc-search): Pass the file name
5519         to `auth-source-netrc-normalize'.
5520         (with-auth-source-epa-overrides): Add convenience macro.  Don't depend
5521         on the EPA variables being defined.
5522         (auth-source-epa-make-gpg-token): Convert text to a "gpg:" token.
5523         (auth-source-netrc-normalize): Convert "gpg:" tokens back to text in
5524         the lexical-let closure.
5525         (auth-source-netrc-create): Create "gpg:" tokens according to
5526         `auth-source-save-secrets'.
5527
5528 2011-06-10  Katsumi Yamaoka  <yamaoka@jpl.org>
5529
5530         * gnus-group.el (gnus-group-update-group): Add new argument
5531         `info-unchanged' that stops updating dribble buffer.
5532
5533         * gnus-start.el (gnus-dribble-enter): Add new argument `regexp' that
5534         deletes lines matching to it in dribble buffer.
5535
5536         * gnus-agent.el (gnus-agent-fetch-group-1):
5537         * gnus-group.el (gnus-group-update-group-line, gnus-group-make-group):
5538         * gnus-srvr.el (gnus-server-update-server, gnus-server-set-info):
5539         * gnus-start.el (gnus-group-change-level):
5540         * gnus-sum.el (gnus-summary-move-article): Delete old dribble entry.
5541
5542         * gnus-sum.el (gnus-summary-update-info): Don't update dribble buffer
5543         if newsgroup info is not changed.
5544
5545         * gnus-group.el (gnus-group-get-new-news-this-group):
5546         * gnus-sum.el (gnus-summary-read-group-1, gnus-summary-exit-no-update):
5547         Don't update dribble buffer.
5548
5549 2011-06-01  Teodor Zlatanov  <tzz@lifelogs.com>
5550
5551         * gnus-registry.el (gnus-registry-remove-ignored): New function to
5552         remove entries with groups we ignore.
5553
5554 2011-05-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5555
5556         * shr.el (shr-rescale-image): Add an :ascent of 100 to images so that
5557         the underline comes at the bottom.
5558
5559 2011-05-31  Teodor Zlatanov  <tzz@lifelogs.com>
5560
5561         * gnus-registry.el (gnus-registry-article-marks-to-chars): Rename from
5562         `gnus-registry-user-format-function-M' and declare the latter obsolete.
5563         (gnus-registry-article-marks-to-names): Rename from
5564         `gnus-registry-user-format-function-M2'.
5565
5566 2011-05-31  Katsumi Yamaoka  <yamaoka@jpl.org>
5567
5568         * gnus-sum.el (gnus-summary-exit): Make sure to kill article buffer in
5569         ephemeral group.
5570
5571 2011-05-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5572
5573         * shr.el (shr-browse-image): Copy the URL if called interactively.
5574
5575 2011-05-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5576
5577         * gnus-group.el (gnus-group-mark-article-read): It's possible that we
5578         want to have `gnus-newsgroup-unselected' kept sorted.  If this isn't
5579         done, then unselected articles may be marked as read.
5580
5581         * pop3.el (pop3-open-server): Erase the buffer after the greeting,
5582         since not doing this seems to lead to a race condition in pop3-logon.
5583
5584         * nnvirtual.el (nnvirtual-request-article): Bind `gnus-command-method'
5585         so that the call chain it correct when we call "upwards".
5586
5587         * gnus-sum.el (gnus-select-newsgroup): Auto-expiry doesn't make sense
5588         in read-only groups.
5589
5590         * gnus-group.el (gnus-group-mark-article-read): Ditto.
5591
5592         * message.el (message-cite-reply-position): Doc string fix.
5593
5594         * nnimap.el (nnimap-transform-headers): Simplify regexp to hopefully
5595         avoid regexp overflow.
5596         (nnimap-transform-split-mail): Ditto.
5597
5598         * pop3.el (pop3-retr): Error out if the server closes the connection.
5599
5600 2011-05-30  Stefan Monnier  <monnier@iro.umontreal.ca>
5601
5602         * mml1991.el (mml1991-mailcrypt-encrypt): Remove use of ill-designed
5603         mm-with-unibyte-current-buffer.  The buffer should not contain any
5604         multibyte chars anyway at this stage.
5605
5606 2011-05-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5607
5608         * shr.el (shr-urlify): Use shr-add-font to make underlines be less ugly
5609         at the end of lines.
5610
5611 2011-05-29  Julien Danjou  <julien@danjou.info>
5612
5613         * smiley.el (gnus-smiley-file-types): Add gif as supported file type.
5614
5615 2011-05-27  Glenn Morris  <rgm@gnu.org>
5616
5617         * gnus-group.el (gnus-bug-group-download-format-alist):
5618         Use the "maintainer" version of debian reports as well.
5619
5620 2011-05-26  Glenn Morris  <rgm@gnu.org>
5621
5622         * gnus-group.el (gnus-bug-group-download-format-alist):
5623         Use the "maintainer" version of debbugs.gnu.org reports.
5624
5625 2011-05-24  Katsumi Yamaoka  <yamaoka@jpl.org>
5626
5627         * gnus-art.el (gnus-mime-delete-part): Fix mm-handle-filename usage.
5628
5629 2011-05-23  Stefan Monnier  <monnier@iro.umontreal.ca>
5630
5631         * gnus-cus.el (gnus-agent-customize-category):
5632         * gnus-delay.el (gnus-delay-send-queue):
5633         * gnus.el (gnus-other-frame):
5634         Don't quote lambda expressions with `quote'.
5635
5636 2011-05-20  Teodor Zlatanov  <tzz@lifelogs.com>
5637
5638         * gnus-sum.el (gnus-summary-hide-thread): Fix bug where moving to hide
5639         the thread moves us backwards and so we loop forever.
5640
5641 2011-05-19  Katsumi Yamaoka  <yamaoka@jpl.org>
5642
5643         * mm-bodies.el (mm-decode-content-transfer-encoding): Allow leading
5644         whitespace in base64 data lines.
5645
5646 2011-05-18  Teodor Zlatanov  <tzz@lifelogs.com>
5647
5648         * gnus-registry.el (gnus-registry-user-format-function-M):
5649         Use `mapconcat'.
5650         (gnus-registry-user-format-function-M2): Use to see the full text of
5651         the marks.  Make "," the mark text separator.
5652
5653         * nntp.el (nntp-send-authinfo): Use the "force" token for NNTP
5654         authentication with auth-source.
5655
5656 2011-05-17  Glenn Morris  <rgm@gnu.org>
5657
5658         * gnus-group.el (gnus-import-other-newsrc-file):
5659         Use insert-file-contents.
5660
5661 2011-05-16  Teodor Zlatanov  <tzz@lifelogs.com>
5662
5663         * gnus-sum.el (gnus-summary-hide-all-threads): Add update message every
5664         1000 iterations.
5665
5666 2011-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
5667
5668         * nntp.el (nntp-open-connection): Check if process-type is available.
5669
5670 2011-05-16  Julien Danjou  <julien@danjou.info>
5671
5672         * shr.el (shr-tag-del): Add support for del tag.
5673
5674 2011-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
5675
5676         * gnus-html.el (gnus-html-put-image): Register a displayer.
5677
5678         * shr.el (shr-image-displayer): Don't remove text props from alt text.
5679
5680 2011-05-13  Teodor Zlatanov  <tzz@lifelogs.com>
5681
5682         * registry.el (prune-factor): New initialization parameter defaulting
5683         to 0.1.
5684         (registry-prune-hard): Use it.
5685
5686         * gnus-registry.el (gnus-registry-fixup-registry): Set prune-factor to
5687         0.1 expicitly.
5688
5689 2011-05-13  Glenn Morris  <rgm@gnu.org>
5690
5691         * message.el (message-send-mail-with-sendmail): Assume sendmail-program
5692         is bound, since this function requires sendmail.
5693
5694 2011-05-11  Teodor Zlatanov  <tzz@lifelogs.com>
5695
5696         * registry.el (registry-usage-test): Disable pruning test.
5697
5698 2011-05-11  David Engster  <dengste@eml.cc>
5699
5700         * lpath.el: Bind shr-put-image and process-type for Emacs22 and XEmacs.
5701         Bind set-network-process-option for XEmacs.
5702
5703 2011-05-10  Teodor Zlatanov  <tzz@lifelogs.com>
5704
5705         * registry.el (registry-prune-hard-candidates)
5706         (registry-prune-soft-candidates): Helper methods for registry pruning.
5707         (registry-prune): Use them.  Make the sort function optional.
5708
5709 2011-05-10  Jim Meyering  <meyering@redhat.com>
5710
5711         * shr.el (shr-colorize-region): Fix typo "on on -> on".
5712
5713 2011-05-10  Julien Danjou  <julien@danjou.info>
5714
5715         * shr.el (shr-put-color-1): Do not bug out when old-props is a face
5716         symbol and not a list.
5717
5718 2011-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
5719
5720         * gnus-art.el (gnus-article-mode): Move binding of
5721         shr-put-image-function here from gnus-article-prepare-display.
5722
5723         * shr.el (shr-put-image-function): New variable.
5724         (shr-image-fetched, shr-image-displayer, shr-tag-img): Funcall it.
5725         (shr-put-image): Return scaled image.
5726
5727         * gnus-art.el (gnus-shr-put-image): New function.
5728         (gnus-article-prepare-display): Bind shr-put-image-function to it.
5729
5730         * gnus-html.el (gnus-html-wash-images): Register scaled images, not
5731         original ones, as deletable.
5732
5733 2011-05-09  Stefan Monnier  <monnier@iro.umontreal.ca>
5734
5735         * nntp.el (nntp-open-connection): Set TCP keepalive option.
5736
5737 2011-05-09  Teodor Zlatanov  <tzz@lifelogs.com>
5738
5739         * registry.el (registry-full): Add convenience method.  Fix logic.
5740         (registry-insert): Use it.  Fix logic here too.
5741
5742         * gnus-registry.el (gnus-registry-insert): Add wrapper that calls
5743         `registry-prune' if `registry-full' returns t.
5744         (gnus-registry-handle-action)
5745         (gnus-registry-get-or-make-entry, gnus-registry-set-id-key)
5746         (gnus-registry-usage-test): Use it.
5747
5748 2011-05-07  Julien Danjou  <julien@danjou.info>
5749
5750         * shr.el (shr-link): Make shr-link inherit from link by default.
5751
5752 2011-05-06  Teodor Zlatanov  <tzz@lifelogs.com>
5753
5754         * shr.el (shr-urlify, shr-link): Fix shr-link face.
5755
5756 2011-05-05  Teodor Zlatanov  <tzz@lifelogs.com>
5757
5758         * shr.el (shr-urlify, shr-link): Still broken but at least doesn't
5759         error out because the face is not a list.
5760
5761 2011-05-05  Glenn Morris  <rgm@gnu.org>
5762
5763         * proto-stream.el (gnutls-negotiate): Fix declarations.
5764
5765         * gnus-start.el (gnus-propagate-marks): Declare.
5766
5767 2011-05-04  Teodor Zlatanov  <tzz@lifelogs.com>
5768
5769         * registry.el (registry-reindex): Fix percentage message.
5770
5771         * proto-stream.el (network-stream-open-starttls): Adjust to call
5772         `gnutls-negotiate' with :process and :hostname arguments.
5773
5774 2011-05-03  Teodor Zlatanov  <tzz@lifelogs.com>
5775
5776         * shr.el: Add shr-link face for links.
5777         (shr-urlify): Use it.
5778
5779         * registry.el (registry-insert): Make error message more helpful.
5780
5781 2011-05-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5782
5783         * gnus-html.el (gnus-html-schedule-image-fetching):
5784         Use url-queue-retrieve, if it exists.
5785
5786         * shr.el (shr-tag-img): Ditto.
5787
5788         * gnus.el: Autoload more gnus-agent functions.
5789
5790         * gnus-art.el (gnus-request-article-this-buffer): Store articles in the
5791         agent if we haven't already (bug#8502).
5792
5793         * gnus-async.el (gnus-async-article-callback): Put prefetched articles
5794         into the Agent, too.
5795
5796         * gnus-agent.el (gnus-agent-store-article): New function.
5797
5798         * nnheader.el (nnheader-insert-buffer-substring): Rename from nntp-
5799         and moved from that file for reuse.
5800
5801         * pop3.el (pop3-open-server): Error messages are "-ERR".
5802
5803 2011-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5804
5805         * pop3.el (pop3-open-server): Upgrade opportunistically to STARTTLS.
5806         (open-tls-stream): Remove superfluous tls/starttls autoloads.
5807
5808 2011-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
5809
5810         * gnus.el: No Gnus v0.17 is released.
5811
5812 2011-05-01  Stefan Monnier  <monnier@iro.umontreal.ca>
5813
5814         * gnus-sum.el (gnus-summary-next-article): Don't bug out if the summary
5815         buffer has moved to a different frame.
5816
5817 2011-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5818
5819         * nnimap.el (nnimap-request-article): Use nntp-insert-buffer-substring
5820         to get the conversion from unibyte to multibyte buffers to work on
5821         Emacs 22.
5822
5823         * nntp.el (nntp-request-article): Slight clean-up.
5824
5825 2011-04-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5826
5827         * shr.el (shr-strike-through): New face.
5828         (shr-tag-s): Use it to provide <s> support.
5829         (shr-tag-s): Remove duplicate definition.
5830
5831 2011-04-25  Teodor Zlatanov  <tzz@lifelogs.com>
5832
5833         * gnus-registry.el (gnus-registry-ignore-group-p): Don't call
5834         `gnus-parameter-registry-ignore' if the *Group* buffer doesn't exist.
5835
5836 2011-04-24  Teodor Zlatanov  <tzz@lifelogs.com>
5837
5838         * proto-stream.el (proto-stream-open-starttls): Give host parameter to
5839         `gnutls-negotiate'.
5840         (gnutls-negotiate): Adjust `gnutls-negotiate' declaration.
5841
5842 2011-04-23  Glenn Morris  <rgm@gnu.org>
5843
5844         * gnus-sum.el (gnus-extra-headers): Bump :version.
5845
5846 2011-04-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5847
5848         * shr.el (shr-tag-sup): New function.
5849         (shr-tag-sub): Ditto.
5850
5851 2011-04-22  Teodor Zlatanov  <tzz@lifelogs.com>
5852
5853         * gnus-registry.el (gnus-registry-ignore-group-p): Test specifically
5854         for the case where `gnus-registry-ignored-groups' is a list of lists,
5855         and don't call `gnus-parameter-registry-ignore' otherwise.
5856
5857 2011-04-21  Teodor Zlatanov  <tzz@lifelogs.com>
5858
5859         * nnimap.el (nnimap-user): New backend variable.
5860         (nnimap-open-connection-1): Use it.
5861         (nnimap-credentials): Accept user parameter so it's explicit what user
5862         name is desired.
5863
5864         * gnus-sum.el (gnus-extra-headers): Add Keywords, Cc, and Gcc to
5865         default.
5866
5867         * gnus.el (gnus-registry-ignored-groups): Provide default in gnus.el,
5868         not gnus-registry.el.
5869
5870         * gnus-registry.el: Mention in comments how to modify
5871         `gnus-extra-headers' for proper recipient tracking and that it may
5872         already have To and Cc recently, which it does as of this commit.
5873         (gnus-registry-ignored-groups): Remove defcustom.
5874         Explain why in comments.
5875         (gnus-registry-action): Fix data-header reference to use the extra
5876         headers.  Explain in package commentary how to add To and Cc headers to
5877         the gnus-extra-headers.
5878         (gnus-registry-ignored-groups): Adjust defaults to match the parameter.
5879         (gnus-registry-ignore-group-p): Adjust to take either a group/topic
5880         parameter list or a string list in `gnus-registry-ignored-groups'.
5881         Fix logic error.
5882
5883 2011-04-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5884
5885         * shr.el (shr-expand-url): Protect against null urls.
5886
5887 2011-04-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5888
5889         * shr.el (shr-base): New binding.
5890         (shr-tag-base): Keep track of <base>.
5891         (shr-expand-url): New function used throughout.
5892
5893 2011-04-20  Teodor Zlatanov  <tzz@lifelogs.com>
5894
5895         * gnus-registry.el
5896         (gnus-registry--split-fancy-with-parent-internal): Fix loop bugs.
5897         (gnus-registry-ignored-groups): New variable.
5898         (gnus-registry-ignore-group-p): Use it.
5899         (gnus-registry-handle-action): Use `gnus-registry-ignore-group-p' and
5900         set the destination group to nil (same as delete) if it's ignored.
5901
5902 2011-04-20  David Engster  <dengste@eml.cc>
5903
5904         * tests/gnustest-nntp.el: New file for simple NNTP testing.
5905
5906         * Makefile.in (test-nntp): New rule.
5907         (check): Add it.
5908         (test-registry): Change '$(EMACS_COMP)' to '$(EMACS) $(FLAGS)'.
5909
5910 2011-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
5911
5912         * gnus-registry.el (gnus-registry-action)
5913         (gnus-registry-fetch-header-fast):
5914         Don't use mail-header that looks an internal function of mailheader.el.
5915
5916 2011-04-19  Glenn Morris  <rgm@gnu.org>
5917
5918         * time-date.el (time-to-days): Remove unused local variables.
5919
5920 2011-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
5921
5922         * gnus-registry.el: Eliminate cl functions.
5923         (gnus-registry-sort-addresses): New function that replaces mapcan.
5924         (gnus-registry-action, gnus-registry-spool-action)
5925         (gnus-registry-split-fancy-with-parent)
5926         (gnus-registry-fetch-recipients-fast): Use it.
5927         (gnus-registry-import-eld): Replace delete* with dolist + delq.
5928
5929         * registry.el (initialize-instance, registry-lookup)
5930         (registry-lookup-breaks-before-lexbind, registry-lookup-secondary)
5931         (registry-lookup-secondary-value, registry-search, registry-delete)
5932         (registry-insert, registry-reindex, registry-size, registry-prune):
5933         Use eval-and-compile.
5934
5935 2011-04-16  Teodor Zlatanov  <tzz@lifelogs.com>
5936
5937         * registry.el (registry-reindex): New method to recreate the secondary
5938         registry indices.
5939
5940         * gnus-registry.el (gnus-registry-fixup-registry): Use it if the
5941         tracked field changes.
5942         (gnus-registry-unfollowed-addresses, gnus-registry-track-extra)
5943         (gnus-registry-action, gnus-registry-spool-action)
5944         (gnus-registry-handle-action)
5945         (gnus-registry--split-fancy-with-parent-internal)
5946         (gnus-registry-split-fancy-with-parent)
5947         (gnus-registry-register-message-ids): Add recipient tracking on spool,
5948         move, and delete actions, and for fancy splitting with parent.
5949         (gnus-registry-extract-addresses)
5950         (gnus-registry-fetch-recipients-fast)
5951         (gnus-registry-fetch-header-fast): Convenience functions.
5952         (gnus-registry-misc-test): ERT test of
5953         `gnus-registry-extract-addresses'.
5954
5955 2011-04-15  Teodor Zlatanov  <tzz@lifelogs.com>
5956
5957         * gnus-registry.el (gnus-registry--split-fancy-with-parent-internal):
5958         Track by subject first, then sender.
5959
5960 2011-04-15  Stefan Monnier  <monnier@iro.umontreal.ca>
5961
5962         * message.el (message-bogus-system-names): Replace ^...$ => \`...\'.
5963
5964         * gnus.el (gnus-splash-svg-color-symbols): Don't use insert-file from
5965         Lisp.
5966
5967         * gnus-draft.el (gnus-draft-setup): New arg `dont-pop'.
5968         (gnus-draft-send): Use it to avoid popping
5969         up frames from gnus-group-send-queue.
5970
5971 2011-04-14  Teodor Zlatanov  <tzz@lifelogs.com>
5972
5973         * gnus-registry.el: Updated gnus-registry docs.
5974
5975 2011-04-12  Teodor Zlatanov  <tzz@lifelogs.com>
5976
5977         * gnus-registry.el (gnus-registry--split-fancy-with-parent-internal):
5978         Fix logic bug.
5979         (gnus-registry-post-process-groups): Fix logging of no results and
5980         quote sender and subject.
5981
5982 2011-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5983
5984         * proto-stream.el (proto-stream-open-starttls): Only do opportunistic
5985         STARTTLS upgrades if we have built-in gnutls support.  Upgrades via
5986         gnutls-cli are too slow to be done opportunistically.
5987
5988         * gnus-start.el (gnus-get-unread-articles): Slight cleanup.
5989         (gnus-read-active-for-groups): Don't try to finish getting stuff where
5990         we had no early-data returned.
5991         (gnus-get-unread-articles): Add a sanity check so that we don't issue
5992         two async commands to the same server at the same time.
5993
5994 2011-04-12  Stig Sandbeck Mathisen  <ssm@fnord.no>  (tiny change)
5995
5996         * gnus-sum.el (gnus-summary-select-article-buffer): Doc fix.
5997
5998 2011-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5999
6000         * gnus-registry.el (gnus-registry-remake-db): Put the warning on a
6001         "warning" level.
6002
6003         * mm-url.el (mm-url-package-name): Remove to ease third-party reuse.
6004         (mm-url-insert-file-contents): Don't set the package names.
6005
6006 2011-04-11  Teodor Zlatanov  <tzz@lifelogs.com>
6007
6008         * gnus-registry.el (gnus-registry-action): Remove properties and
6009         simplify subject in `gnus-registry-handle-action'.
6010         (gnus-registry-spool-action): Get subject and sender from message if
6011         they are not passed in.
6012         (gnus-registry-handle-action): Remove properties and simplify subject
6013         consistently.
6014
6015 2011-04-11  Stefan Monnier  <monnier@iro.umontreal.ca>
6016
6017         * registry.el: Require CL before using defmacro*.
6018
6019 2011-04-11  Katsumi Yamaoka  <yamaoka@jpl.org>
6020
6021         * gnus-art.el (article-treat-date): Assume that
6022         gnus-article-date-headers may be a group parameter.
6023
6024 2011-04-07  Teodor Zlatanov  <tzz@lifelogs.com>
6025
6026         * gnus-registry.el (gnus-registry-handle-action): More debugging.
6027
6028         * gnus-start.el (gnus-gnus-to-newsrc-format): Add a way to run
6029         interactively so the newsrc file can contain foreign groups too.
6030         Useful for debugging but not much for users.
6031
6032 2011-04-07  David Engster  <dengste@eml.cc>
6033
6034         * registry.el (registry-usage-test): Only do
6035         `registry-lookup-breaks-before-lexbind' testing for Emacs24 with
6036         lexical binding.
6037
6038 2011-04-07  David Engster  <dengste@eml.cc>
6039
6040         * Makefile.in (check, test-registry): New rules for test-suite.
6041
6042 2011-04-06  David Engster  <dengste@eml.cc>
6043
6044         * registry.el, gnus-registry.el: Use `ignore-errors' instead of third
6045         argument NOERROR for `require', since XEmacs 21.4 does not support it.
6046
6047 2011-04-06  David Engster  <dengste@eml.cc>
6048
6049         * registry.el (initialize-instance): Change :after to :AFTER to be
6050         compatible with old EIEIO version in XEmacs.
6051
6052 2011-04-06  Teodor Zlatanov  <tzz@lifelogs.com>
6053
6054         * gnus-registry.el (gnus-registry-post-process-groups)
6055         (gnus-registry--split-fancy-with-parent-internal): Fix splitting bugs
6056         and provide better messaging.
6057
6058 2011-04-06  David Engster  <dengste@eml.cc>
6059
6060         * Makefile.in (fail-on-warning): New rule to compile with warnings as
6061         errors.
6062
6063         * dgnushack.el (dgnushack-compile-error-on-warn): New function to call
6064         dgnushack-compile with error-on-warn enabled, and to signal an error if
6065         clean compilation failed.
6066         (dgnushack-compile): New argument 'error-on-warn'.  If non-nil, compile
6067         with `byte-compile-error-on-warn'.  Return nil if errors occured.
6068
6069 2011-04-06  Teodor Zlatanov  <tzz@lifelogs.com>
6070
6071         * gnus-registry.el: Don't use ERT if it's not available.  Load it
6072         unconditionally anyway, discarding errors.
6073         (gnus-registry-delete-entries): New convenience function.
6074         (gnus-registry-import-eld): Import from old .eld registry.
6075
6076         * registry.el: Don't use ERT if it's not available.  Load it
6077         unconditionally anyway, discarding errors.
6078
6079         * proto-stream.el (gnutls-negotiate): Revert inadvertent commit of the
6080         version from the Claudio Bley GnuTLS patch (extra optional parameters
6081         and host name).
6082
6083 2011-04-05  Teodor Zlatanov  <tzz@lifelogs.com>
6084
6085         * gnus-registry.el (gnus-registry-fixup-registry): New function to
6086         fixup the parameters that can be customized by the user between
6087         save/read cycles.
6088         (gnus-registry-read): Use it.
6089         (gnus-registry-make-db): Use it.
6090         (gnus-registry-spool-action, gnus-registry-handle-action):
6091         Fix messaging.
6092         (gnus-registry--split-fancy-with-parent-internal): Fix loop.
6093         Map references to actual group names with sender and subject tracking.
6094         (gnus-registry-post-process-groups): Use `cond' for better messaging.
6095         (gnus-registry-usage-test): Add subject lookup test.
6096
6097         * registry.el (registry-db, initialize-instance): Set up constructor
6098         instead of :initform arguments for the sake of older Emacsen.
6099         (registry-lookup-breaks-before-lexbind): New method to demonstrate
6100         pre-lexbind merge bug.
6101         (registry-usage-test): Use it.
6102         (initialize-instance, registry-db): Move the non-function initforms
6103         back to the class definition.
6104
6105 2011-04-03  Teodor Zlatanov  <tzz@lifelogs.com>
6106
6107         * registry.el: New library to manage gnus-registry-style data.
6108
6109         * gnus-registry.el: Use it (major rewrite).
6110
6111         * nnregistry.el: Use it.
6112
6113         * spam.el: Use it.
6114
6115 2011-04-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6116
6117         * gnus-sum.el (gnus-update-marks): Reinstate the code to not alter
6118         marks on non-selected articles.
6119
6120 2011-04-02  Chong Yidong  <cyd@stupidchicken.com>
6121
6122         * nnimap.el (nnimap-open-connection-1): Pass explicit :end-of-command
6123         parameter to open-protocol-stream.
6124
6125 2011-04-01  Julien Danjou  <julien@danjou.info>
6126
6127         * mm-view.el (mm-display-inline-fontify): Do not fontify with
6128         fundamental-mode.
6129
6130 2011-04-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6131
6132         * gnus-start.el (gnus-get-unread-articles): Don't try to contact denied
6133         servers.
6134
6135 2011-03-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6136
6137         * gnus-sum.el (gnus-update-marks): Revert intersection change, which
6138         made marks not propagate, again.
6139
6140 2011-03-30  Chong Yidong  <cyd@stupidchicken.com>
6141
6142         * proto-stream.el (open-protocol-stream): Bring back `network' type.
6143         Make this the default type.
6144         (proto-stream-open-plain): Rename from proto-stream-open-default.
6145         (open-protocol-stream, proto-stream-open-starttls)
6146         (proto-stream-open-tls, proto-stream-open-shell): Replace `default'
6147         with `plain'.
6148
6149         * nnimap.el (nnimap-stream, nnimap-open-connection-1): Accept `network'
6150         value.
6151
6152         * nntp.el (nntp-open-connection-function): Document the fact that some
6153         values are not functions but are instead handled specially.
6154         Recognize nntp-open-plain-stream value.
6155         (nntp-open-connection): Recognize that value.
6156
6157 2011-03-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6158
6159         * dgnushack.el: Only do the defcustom compilation thing on XEmacs,
6160         where it seems to be needed.
6161
6162 2011-03-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6163
6164         * gssapi.el (open-gssapi-stream): Remove the last mentions of the IMAP
6165         stuff.
6166
6167         * gnus-score.el (gnus-score-string): Fix calling convention of
6168         `gnus-simplify-buffer-fuzzy' after last patches.
6169
6170         * gnus-sum.el (gnus-update-marks): Don't send any marks updates to the
6171         server for articles we didn't get any headers for.  This is a sanity
6172         check.
6173
6174 2011-03-29  Michael Welsh Duggan  <md5i@md5i.com>
6175
6176         * nnimap.el (nnimap-open-connection-1): Is the login responds with a
6177         new CAPABILITY, use it.
6178
6179 2011-03-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6180
6181         * gnus-agent.el (gnus-agent-fetch-headers): Don't message if we're not
6182         downloading anything.
6183
6184         * gnus.el (gnus-splash-svg-color-symbols): Remove superfluous `and'.
6185
6186 2011-03-29  Adam Sjøgren  <asjo@koldfront.dk>
6187
6188         * gnus.el (gnus-group-startup-message): Prefer svg file and replace
6189         colors.
6190         (gnus-splash-svg-color-symbols): New function.
6191
6192 2011-03-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6193
6194         * gnus-sum.el (gnus-simplify-buffer-fuzzy): Take the regexp explicitly
6195         instead of using the global gnus-simplify-subject-fuzzy-regexp.
6196         (gnus-simplify-subject-fuzzy): Use the local
6197         gnus-simplify-subject-fuzzy-regex instead of the global one.
6198         This makes using this variable in group parameters work.
6199
6200 2011-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
6201
6202         * gnus-registry.el (gnus-registry-unfollowed-groups):
6203         Add "archive:sent" to the unfollowed group regex (for the recent Gnus
6204         archive:sent-YYYY-MM-DD groups).
6205         (gnus-registry-split-fancy-with-parent): Bail out early in sender
6206         tracking if there are more than `gnus-registry-max-track-groups'
6207         matches.
6208
6209 2011-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
6210
6211         * message.el (message--yank-original-internal): New function to do the
6212         insertion cleanly inside eval in `message-yank-original'.
6213         (message-yank-original): Use it.
6214
6215 2011-03-29  Julien Danjou  <julien@danjou.info>
6216
6217         * mm-view.el (mm-display-inline-fontify): Use `set-normal-mode' with
6218         local variables disabled rather than `normal-mode'.
6219
6220 2011-03-28  Brian T. Sniffen  <bsniffen@akamai.com>  (tiny change)
6221
6222         * imap.el (imap-shell-open, imap-process-connection-type):
6223         Use imap-process-connection-type for 'shell' streams as well as
6224         Kerberos, SSL, other subprocesses.
6225
6226 2011-03-26  Chong Yidong  <cyd@stupidchicken.com>
6227
6228         * proto-stream.el: Changes preparatory to merging open-protocol-stream
6229         with open-network-stream.
6230         (proto-stream-always-use-starttls): Option removed.
6231         (open-protocol-stream): Return a process object by default.  Provide a
6232         new parameter :return-list specifying a list-type return value, which
6233         now has the form (PROP . PLIST) instead of a fixed-length list.  Change
6234         :type `network' to `try-starttls', and `network-only' to `default'.
6235         Make `default' the default, for compatibility with open-network-stream.
6236         Handle the no-parameter case exactly as open-network-stream, with no
6237         additional stream processing.  Search plists using plist-get.
6238         Explicitly add :end-of-commend parameter if it is missing.
6239         (proto-stream-open-default): Rename from
6240         proto-stream-open-network-only.  Return 'default as the type.
6241         (proto-stream-open-starttls): Rename from proto-stream-open-network.
6242         Use plist-get.  Don't return `tls' as the type if STARTTLS negotiation
6243         failed.  Always return a list with a (possibly dead) process as the
6244         first element, for compatibility with open-network-stream.
6245         (proto-stream-open-tls): Use plist-get.  Always return a list.
6246         (proto-stream-open-shell): Return `default' as connection type.
6247         (proto-stream-capability-open): Use plist-get.
6248         (proto-stream-eoc): Function deleted.
6249
6250         * nnimap.el (nnimap-stream, nnimap-open-connection)
6251         (nnimap-open-connection-1): Handle renaming of :type parameter for
6252         open-protocol-stream.
6253         (nnimap-open-connection-1): Pass a :return-list parameter
6254         open-protocol-stream to obtain a list return value.  Parse this list
6255         using plist-get.
6256
6257         * nntp.el (nntp-open-connection): Handle renaming of :type parameter
6258         for open-protocol-stream.  Accept open-protocol-stream return value
6259         that is a subprocess object instead of a list.  Handle the case of a
6260         dead returned process.
6261
6262 2011-03-25  Teodor Zlatanov  <tzz@lifelogs.com>
6263
6264         * mm-util.el (mm-handle-filename): Move to mm-decode.el (bug#8330).
6265
6266         * mm-decode.el (mm-handle-filename): Move from mm-util.el (bug#8330).
6267
6268 2011-03-21  Julien Danjou  <julien@danjou.info>
6269
6270         * mm-view.el (mm-display-inline-fontify): Make mode optional, and call
6271         normal-mode if not set.  Set temp buffer unmodified to avoid kill-buffer
6272         query.
6273         (mm-inline-text): Render normal text with fontification whenever
6274         possible.
6275
6276         * gnus-sum.el (gnus-summary-save-parts-1):
6277         * gnus-art.el (gnus-article-browse-html-save-cid-content)
6278         (gnus-article-browse-html-parts, gnus-mime-delete-part)
6279         (gnus-mime-copy-part, gnus-mime-inline-part, gnus-insert-mime-button):
6280         Use `mm-handle-filename'.
6281
6282         * mm-util.el (mm-handle-filename): New function, return the filename of
6283         an handle.
6284
6285 2011-03-18  Julien Danjou  <julien@danjou.info>
6286
6287         * gnus-util.el (gnus-buffer-live-p): Simplify gnus-buffer-live-p.
6288         (gnus-buffer-live-p): Check that buffer is not nil.
6289
6290 2011-03-17  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
6291
6292         * gnus.el: No Gnus v0.15 is released.
6293
6294 2011-03-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6295
6296         * time-date.el (format-seconds): Use assoc instead of assoc-string to
6297         avoid warning on XEmacs.
6298
6299         * dgnushack.el: Bind help-echo-owns-message to avoid a compiler warning
6300         on XEmacs.
6301
6302         * gnus-art.el: Require mouse, which the build bot seems to say is
6303         needed.
6304
6305         * dgnushack.el: Define url-retrieve-synchronously unless not defined.
6306
6307         * gravatar.el (gravatar-retrieve-synchronously): Use `url-retrieve' on
6308         XEmacs, since it doesn't have url-retrieve-synchronously.
6309
6310         * time-date.el (format-seconds): Use assoc instead of assoc-string,
6311         since assoc-string doesn't exist in XEmacs.
6312
6313 2011-03-17  Antoine Levitt  <antoine.levitt@gmail.com>
6314
6315         * gnus-group.el (gnus-group-list-ticked): New function.
6316         (gnus-group-make-menu-bar): Provide a menu entry for it.
6317         (gnus-group-list-map): Provide a binding for it.
6318
6319 2011-03-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6320
6321         * shr.el (shr-visit-file): New command.
6322
6323         * nnimap.el (nnimap-fetch-inbox): Rewrite slightly last patch.
6324
6325 2011-03-17  Bjørn Mork  <bjorn@mork.no>
6326
6327         * nnimap.el (nnimap-fetch-inbox): Don't download bodies on ver4-capable
6328         servers.
6329
6330 2011-03-16  Julien Danjou  <julien@danjou.info>
6331
6332         * mm-uu.el (mm-uu-dissect-text-parts): Only dissect handle that are
6333         inline.
6334
6335         * gnus-art.el (article-hide-list-identifiers):
6336         Use gnus-group-get-list-identifiers.
6337
6338         * gnus-sum.el (gnus-group-get-list-identifiers): New function.
6339         (gnus-summary-remove-list-identifiers):
6340         Use gnus-group-get-list-identifiers to get regexp.
6341         (gnus-select-newsgroup, gnus-summary-insert-subject)
6342         (gnus-summary-insert-articles):
6343         Call gnus-summary-remove-list-identifiers unconditionally.
6344
6345 2011-03-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6346
6347         * gnus-sum.el (gnus-articles-to-read): Revert back to old behavior if
6348         we're selecting a group with unread articles.
6349
6350         * nnimap.el (nnimap-open-connection-1): Allow `network-only', too.
6351
6352         * gssapi.el: New file separated out from imap.el to provide a general
6353         Kerberos 5 connection facility for Emacs.
6354
6355         * message.el (message-elide-ellipsis): Document the format spec
6356         ellipsis.
6357
6358 2011-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
6359
6360         * message.el (message-elide-region): Allow the ellipsis to say how many
6361         lines were removed.
6362
6363 2011-03-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6364
6365         * gnus-win.el (gnus-configure-frame): Protect against trying to restore
6366         window configurations containing buffers that are now dead.
6367
6368         * nnimap.el (nnimap-parse-flags): Remove all MODSEQ entries before
6369         parsing to avoid integer overflows.
6370         (nnimap-parse-flags): Simplify the last change.
6371         (nnimap-parse-flags): Store HIGHESTMODSEQ as a string, since it may be
6372         too large for 32-bit Emacsen.
6373
6374 2011-03-15  Stefan Monnier  <monnier@iro.umontreal.ca>
6375
6376         * auth-source.el (auth-source-netrc-create):
6377         * message.el (message-yank-original): Fix use of `case'.
6378
6379 2011-03-15  Nelson Ferreira  <nelson.ferreira@ieee.org>  (tiny change)
6380
6381         * gnus-art.el (gnus-article-treat-body-boundary): Fix boundary width on
6382         XEmacs, which was one character too wide.
6383
6384 2011-03-09  Antoine Levitt  <antoine.levitt@gmail.com>
6385
6386         * gnus-sum.el (gnus-articles-to-read): Use gnus-large-newsgroup as
6387         default number of articles to display.
6388         (gnus-articles-to-read): Use pretty names for prompt.
6389
6390 2011-03-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6391
6392         * gnus-int.el (gnus-open-server): Ditto.
6393
6394         * gnus-start.el (gnus-activate-group): Give a backtrace if
6395         debug-on-quit is set and the user hits `C-g'.
6396         (gnus-read-active-file): Ditto.
6397
6398         * gnus-group.el (gnus-group-read-ephemeral-group): Ditto.
6399
6400 2011-03-15  Teodor Zlatanov  <tzz@lifelogs.com>
6401
6402         * message.el (message-yank-original): Use cond instead of CL case.
6403
6404 2011-03-15  Stefan Monnier  <monnier@iro.umontreal.ca>
6405
6406         * auth-source.el (auth-source-netrc-create): Use usual format for the
6407         default in prompts.
6408
6409 2011-03-14  Katsumi Yamaoka  <yamaoka@jpl.org>
6410
6411         * lpath.el: Fbind read-char-choice for XEmacs.
6412
6413 2011-03-13  Teodor Zlatanov  <tzz@lifelogs.com>
6414
6415         * auth-source.el (auth-source-netrc-create): Show the default in the
6416         prompt when prompting for token creation.
6417
6418 2011-03-12  Teodor Zlatanov  <tzz@lifelogs.com>
6419
6420         * auth-source.el (auth-source-format-prompt): Always convert the value
6421         to a string to avoid evaluating non-string arguments.
6422         (auth-source-netrc-create): Offer default properly, not as initial
6423         content in `read-string'.
6424         (auth-source-netrc-saver): Use a cache keyed by file name and MD5 hash
6425         of line to determine if we've been run before.  If so, don't run again,
6426         but print a trivial message to indicate the cache was hit instead.
6427
6428 2011-03-11  Teodor Zlatanov  <tzz@lifelogs.com>
6429
6430         * gnus-sync.el (gnus-sync-install-hooks, gnus-sync-unload-hook):
6431         Don't install `gnus-sync-read' to any hooks by default.  It's buggy.
6432         The user will have to run `gnus-sync-read' manually and wait for Cloudy
6433         Gnus.
6434
6435 2011-03-11  Julien Danjou  <julien@danjou.info>
6436
6437         * mm-uu.el (mm-uu-type-alist): Add support for diff starting with "===
6438         modified file".
6439
6440 2011-03-09  Teodor Zlatanov  <tzz@lifelogs.com>
6441
6442         * auth-source.el (auth-source-read-char-choice): New function to read a
6443         character choice using `dropdown-list', `read-char-choice', or
6444         `read-char'.  It appends "[a/b/c] " to the prompt if the choices were
6445         '(?a ?b ?c).  The `dropdown-list' support is disabled for now.  Use
6446         `eval-when-compile' to load `dropdown-list'.  Remove `dropdown-list'.
6447         (auth-source-netrc-saver): Use it.
6448         (auth-source-pick-first-password): New convenience function.
6449
6450 2011-03-08  Teodor Zlatanov  <tzz@lifelogs.com>
6451
6452         * nnimap.el (nnimap-credentials): Keep the :save-function as the third
6453         parameter in the credentials.
6454         (nnimap-open-connection-1): Use it after a successful login.
6455         (nnimap-credentials): Add IMAP-specific user and password prompt.
6456
6457         * auth-source.el (auth-source-search): Add :require parameter, taking a
6458         list.  Document it and the :save-function return token.  Pass :require
6459         down.  Change the CREATED message from a warning to a debug statement.
6460         (auth-source-search-backends): Pass :require down.
6461         (auth-source-netrc-search): Pass :require down.
6462         (auth-source-netrc-parse): Use :require, if it's given, as a filter.
6463         Change save prompt to indicate all modifications saved here are
6464         deletions.
6465         (auth-source-netrc-create): Take user login name as default in user
6466         prompt.  Move all the save functionality to a lexically bound function
6467         under the :save-function token in the returned list.  Set up clearer
6468         default prompts for user, host, port, and secret.
6469         (auth-source-netrc-saver): New function, intended to be wrapped for
6470         :save-function.
6471
6472 2011-03-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6473
6474         * shr.el (shr-table-horizontal-line): Change the defaults for the table
6475         lines to be spaces instead.
6476
6477 2011-03-07  Julien Danjou  <julien@danjou.info>
6478
6479         * sieve-manage.el (sieve-sasl-auth): Create auth-info if not found.
6480         (sieve-sasl-auth): Check that auth-source-search did return something,
6481         or just return an empty string.
6482
6483 2011-03-05  Antoine Levitt  <antoine.levitt@gmail.com>
6484
6485         * gnus.el (gnus-interactive): Use read-directory-name.
6486
6487         * gnus-uu.el (gnus-uu-decode-uu-and-save)
6488         (gnus-uu-decode-unshar-and-save, gnus-uu-decode-save)
6489         (gnus-uu-decode-binhex, gnus-uu-decode-yenc)
6490         (gnus-uu-decode-save-view, gnus-uu-decode-postscript-and-save):
6491         Likewise.
6492
6493         * gnus-group.el (gnus-group-make-directory-group): Likewise.
6494
6495 2011-03-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6496
6497         * gnus-start.el (gnus-group-change-level): Allow putting foreign groups
6498         onto the list of killed groups, too.  This makes killed nnimap groups,
6499         for instance, more reliably not reappear.
6500
6501         * nnimap.el (nnimap-request-thread): Don't bug out when we can't find
6502         the parent.
6503
6504         * gnus-sum.el (gnus-update-read-articles): Fix typo.
6505
6506         * gnus.el (gnus-valid-select-methods): Mark nnimap as a backend that
6507         really have server-side marks.
6508
6509         * gnus-sum.el (gnus-propagate-marks): Change default back to nil again,
6510         since most backends do not usefully have server-side marks.
6511         (gnus-update-read-articles): Propagate marks to all backends that
6512         really have server-side marks.
6513
6514 2011-03-05  Antoine Levitt  <antoine.levitt@gmail.com>
6515
6516         * message.el (message-cite-reply-position, message-cite-style):
6517         New variables.
6518         (message-yank-original): Use the new citation styles.
6519
6520 2011-03-04  Daiki Ueno  <ueno@unixuser.org>
6521
6522         * message.el (message-options): Revert 22da67af (workaround for XEmacs
6523         buffer-local issue); don't mark it buffer-local when running under
6524         XEmacs.
6525
6526 2011-03-03  Tassilo Horn  <tassilo@member.fsf.org>
6527
6528         * nnimap.el (nnimap-parse-flags): Add a workaround for FETCH lines with
6529         numbers too big to be `read'.
6530
6531 2011-03-02  Teodor Zlatanov  <tzz@lifelogs.com>
6532
6533         * password-cache.el (password-in-cache-p): Add autoload.
6534
6535         * message.el (message-options): Make buffer-local two ways to attempt
6536         to fix a XEmacs bug.
6537
6538 2011-03-02  Julien Danjou  <julien@danjou.info>
6539
6540         * gnus-art.el (gnus-with-article-buffer): Fix buffer live check.
6541
6542 2011-03-01  Julien Danjou  <julien@danjou.info>
6543
6544         * gnus-art.el (list-identifier): Add list-identifier as a parameter
6545         group.
6546         (article-hide-list-identifiers): Use list-identifier group parameter.
6547
6548 2011-02-28  Julien Danjou  <julien@danjou.info>
6549
6550         * sieve.el (sieve-buffer-script-name): New local variable to store
6551         sieve script name.
6552         (sieve-edit-script): Store sieve script name.
6553         (sieve-upload): Use sieve script name when uploading.
6554         (sieve-upload): Use substitute-command-keys.
6555         (sieve-edit-script): Use substitute-command-keys.
6556         (sieve-refresh-scriptlist): Use substitute-command-keys.
6557         (sieve-manage-mode-map): Define keymap properly.
6558         (sieve-manage-mode): Do not set mode name manually, change mode-name to
6559         (sieve-refresh-scriptlist): Use substitute-command-keys."Sieve-manage".
6560         Remove commented code about cvs.
6561         (sieve-manage-quit): New function.
6562         (sieve-manage-mode-map): Bind 'q' to sieve-manage-quit.
6563
6564 2011-02-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6565
6566         * gnus-group.el (gnus-import-other-newsrc-file): New function.
6567
6568 2011-02-25  Teodor Zlatanov  <tzz@lifelogs.com>
6569
6570         * auth-source.el (auth-source-search): Cache empty result sets.
6571
6572         * password-cache.el (password-in-cache-p): Convenience function to
6573         check if a key is in the cache, even if the value is nil.
6574
6575         * auth-source.el (auth-source-save-behavior): New variable to replace
6576         `auth-source-never-create'.
6577         (auth-source-netrc-create): Use it.
6578         (auth-source-never-save): Remove.
6579
6580 2011-02-25  Lars Ingebrigtsen  <larsi@gnus.org>
6581
6582         * nnimap.el (nnimap-stream): Doc fix.
6583         (nnimap-open-connection-1): Reverse the order of the ports to that the
6584         prompted-for port is first.
6585
6586         * gnus-start.el (gnus-get-unread-articles): Don't clobber the async
6587         retrieval by the no-group selection.
6588
6589         * gnus-demon.el (gnus-demon-init): run-with-timer should be called with
6590         numerical parameters.
6591
6592 2011-02-25  Julien Danjou  <julien@danjou.info>
6593
6594         * gnus-gravatar.el: Use gnus-with-article-buffer.
6595
6596         * gnus-art.el (gnus-with-article-buffer): Check that the
6597         gnus-article-buffer is alive.
6598
6599 2011-02-24  Teodor Zlatanov  <tzz@lifelogs.com>
6600
6601         * auth-source.el (auth-source-creation-prompts): New variable to manage
6602         creation-time prompts.
6603         (auth-source-search): Document it.
6604         (auth-source-format-prompt): Add utility function.
6605         (auth-source-netrc-create): Don't default the user name to
6606         user-login-name.  Use `auth-source-creation-prompts' and some default
6607         prompts for user, host, port, and password (the default generic prompt
6608         remains ugly).
6609         (auth-source-never-save): Add customizable option to never save info.
6610         (auth-source-netrc-create): Use it and improve save prompts.  Fix help
6611         mode excursion.
6612
6613 2011-02-24  Katsumi Yamaoka  <yamaoka@jpl.org>
6614
6615         * auth-source.el (auth-source-netrc-create): Use `read-char' with no
6616         argument that XEmacs doesn't support.
6617
6618         * dgnushack.el (dgnushack-compile): Exclude color.el from being
6619         compiled for Emacsen having no `libxml-parse-html-region' support.
6620
6621         * gnus-xmas.el (gnus-xmas-define): Remove gnus-x-color-values.
6622
6623         * lpath.el: Bind buffer-save-without-query for XEmacs.
6624
6625 2011-02-23  Julien Danjou  <julien@danjou.info>
6626
6627         * gnus-art.el (article-make-date-line): Ignore errors if time is
6628         invalid and not convertible.
6629         (article-make-date-line): Only add lapsed time if time is not nil.
6630
6631 2011-02-23  Teodor Zlatanov  <tzz@lifelogs.com>
6632
6633         * auth-source.el (auth-source-netrc-create): Use `read-char' instead of
6634         `read-char-choice' for backwards compatibility.
6635         (auth-source-netrc-element-or-first): New function to DTRT for
6636         parameter extraction.
6637         (auth-source-netrc-create): Use it and fix multiple parameter print
6638         bug.  Use the default passed from above (given-default) or the
6639         built-in (user-login-name for :user).
6640
6641 2011-02-23  Lars Ingebrigtsen  <larsi@gnus.org>
6642
6643         * gnus-start.el (gnus-dribble-read-file):
6644         Set buffer-save-without-query, since we always want to save the dribble
6645         file, probably.
6646
6647         * nnmail.el (nnmail-article-group): Allow a final "" split to work on
6648         nnimap.
6649
6650         * gnus-sum.el (gnus-user-date-format-alist): Rename back again from
6651         -summary- since it's a user-visible variable.
6652
6653         * nnimap.el (nnimap-retrieve-group-data-early): Don't do QRESYNC the
6654         first time you use the new Gnus.
6655
6656 2011-02-22  Teodor Zlatanov  <tzz@lifelogs.com>
6657
6658         * auth-source.el: Don't load netrc.el.
6659         (auth-sources): Search ~/.netrc as well by default.
6660         (auth-source-debug): Add 'trivia option for extra output.
6661         (auth-source-do-trivia): Use it.
6662         (auth-source-search): Simplify logic to use
6663         `auth-source-search-backends'.  Use `auth-source-do-trivia' where
6664         appropriate.  Don't keep a running count at this level.  Layer :create
6665         and :delete options appropriately on the first and second passes.
6666         Don't track the backend with the search results.
6667         (auth-source-search-backends): New function to search a list of
6668         backends for a processed spec.
6669         (auth-source-netrc-parse): Cache all netrc files, making
6670         auth-source-netrc-cache an alist keyed by the file name and using the
6671         file mtime as the caching criterion.  Keep the obfuscated data secret
6672         with a lexical bind.
6673         (auth-source-netrc-search): Don't calculate the length of the results
6674         unnecessarily.
6675         (auth-source-search-backends): Fix bug.
6676         (auth-source-netrc-create): Rework prompts.
6677
6678 2011-02-22  Andrew Cohen  <cohen@andy.bu.edu>
6679
6680         * nnir.el (nnir-imap-search-arguments, nnir-imap-default-search-key):
6681         Lower case names of search constraints.
6682         (nnir-run-query): Cache and reuse search constraints for all imap
6683         servers.
6684
6685 2011-02-22  Lars Ingebrigtsen  <larsi@gnus.org>
6686
6687         * gnus-msg.el (gnus-inews-add-send-actions): Restore the winconf name
6688         after exit.
6689         (gnus-setup-message): Define missing variable from last checkin.
6690
6691         * gnus-sum.el (gnus-summary-show-article): When called with t as the
6692         value, show the raw article.
6693
6694 2011-02-22  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
6695
6696         * gnus.el: No Gnus v0.13 is released.
6697
6698 2011-02-21  Lars Ingebrigtsen  <larsi@gnus.org>
6699
6700         * nnimap.el (nnimap-open-connection-1): Revert last change, since
6701         auth-source now accepts numbers.
6702
6703         * auth-source.el (auth-source-netrc-parse): Accept a number as the port
6704         spec, too.
6705         (auth-source-ensure-strings): New function.
6706
6707         * gnus-art.el (gnus-article-update-date-headers): Doc fix.
6708         (gnus-article-setup-buffer): Always restart the date timer so that user
6709         changes to the frequency is respected.
6710
6711         * nnimap.el (nnimap-open-connection-1): auth-source expects strings as
6712         port numbers, so make sure it gets that if nnimap-server-port is
6713         explicit.
6714
6715 2011-02-21  Simon Josefsson  <simon@josefsson.org>
6716
6717         * nnimap.el (nnimap-inbox): Doc fix.
6718
6719 2011-02-21  Chong Yidong  <cyd@stupidchicken.com>
6720
6721         * color.el (color-name-to-rgb): Rename from color-rgb->normalize.
6722         Autoload.  Add optional arg FRAME, and pass it to color-values.
6723         (color-complement): Caller changed.  Doc fix.
6724         (color-gradient): Rewrite for better clarity and efficiency.
6725
6726 2011-02-20  Chong Yidong  <cyd@stupidchicken.com>
6727
6728         * shr-color.el (shr-color->hexadecimal): Use renamed function names
6729         color-rgb-to-hex, color-name-to-rgb, color-srgb-to-lab, and
6730         color-lab-to-srgb.
6731
6732 2011-02-20  Drew Adams  <drew.adams@oracle.com>
6733
6734         * color.el: First part of merge from hexrgb.el.
6735         (color-rgb-to-hex): Rename from color-rgb->hex.
6736         (color-rgb-to-hsv): Rename from color-rgb->hsv.  Force hue and
6737         saturation to zero if the value is too small.
6738         (color-rgb-to-hsl): Rename from color-rgb->hsl.
6739         (color-srgb-to-xyz): Rename from color-srgb->xyz.  Doc fix.
6740         (color-xyz-to-srgb): Rename from color-xyz->srgb.  Doc fix.
6741         (color-xyz-to-lab): Rename from color-xyz->lab.  Doc fix.
6742         (color-lab-to-xyz): Rename from color-lab->xyz.  Doc fix.
6743         (color-lab-to-srgb): Rename from color-lab->srgb.  Doc fix.
6744         (color-cie-de2000): Doc fix.
6745
6746 2011-02-21  Lars Ingebrigtsen  <larsi@gnus.org>
6747
6748         * nntp.el (nntp-finish-retrieve-group-infos): Add a kludge to use the
6749         given method as in the group name if we're using an extended method.
6750         (nntp-finish-retrieve-group-infos): Wait for the end of the LIST ACTIVE
6751         command, if we're using that, instead of waiting for the beginning.
6752
6753         * gnus-start.el (gnus-get-unread-articles): Extend the methods so that
6754         we're sure to get unique server names, and we don't output two async
6755         commands in the same buffer.  This fixes an NNTP hang for some users.
6756
6757 2011-02-21  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
6758
6759         * gnus.el: No Gnus v0.11 is released.
6760
6761 2011-02-21  Lars Ingebrigtsen  <larsi@gnus.org>
6762
6763         * gnus-sum.el (gnus-summary-next-article): Add a kludge to reselect the
6764         summary buffer before reading going to the next buffer.  This avoids
6765         putting the point in the group buffer if you `C-g' the command.
6766
6767         * auth-source.el (auth-source-netrc-parse): Add an in-memory netrc
6768         cache (for now) to make ~/.authinfo.gpg files usable.
6769
6770         * nnfolder.el (copyright-update): Define for the compiler.
6771
6772         * auth-source.el (auth-source-search): Fix unbound variable.
6773
6774 2011-02-19  Glenn Morris  <rgm@gnu.org>
6775
6776         * gnus.el (gnus-meta): Doc fix.
6777
6778 2011-02-19  Chong Yidong  <cyd@stupidchicken.com>
6779
6780         * nnfolder.el (nnfolder-save-buffer): Don't let-bind copyright-update,
6781         in case it's not yet loaded.
6782
6783 2011-02-20  Lars Ingebrigtsen  <larsi@gnus.org>
6784
6785         * nnimap.el (nnimap-wait-for-response): Ensure that we get the entire
6786         line we're waiting for.
6787
6788 2011-02-19  Darren Hoo  <darren.hoo@gmail.com>  (tiny change)
6789
6790         * gnus-art.el (gnus-article-next-page-1): Because customized mode-line
6791         face with line-width greater than zero will cause RET in gnus summary
6792         buffer to scroll down article page-wise because auto vscroll happens,
6793         it should be temporally disabled when doing a scroll-up.
6794
6795 2011-02-19  Lars Ingebrigtsen  <larsi@gnus.org>
6796
6797         * nnimap.el (nnimap-parse-copied-articles): Allow for "<foo> OK"
6798         outputs from the server.
6799
6800 2011-02-18  Antoine Levitt  <antoine.levitt@gmail.com>  (tiny change)
6801
6802         * gnus-art.el (gnus-article-prepare): Run gnus-article-prepare-hook
6803         later so that bbdb can hook in easier.
6804
6805 2011-02-18  Lars Ingebrigtsen  <larsi@gnus.org>
6806
6807         * auth-source.el (auth-source-search): Don't try to create credentials
6808         if the caller doesn't want that.
6809         (auth-source-search): If we don't find a match, don't bug out on
6810         non-bound variables.
6811         (auth-source-search): Only ask a single backend to create the
6812         credentials.
6813
6814         * nnimap.el (nnimap-log-command): Add a newline to the inhibited
6815         logging.
6816         (nnimap-credentials): Protect against auth-source-search returning nil.
6817         (nnimap-request-list): Protect against not being able to open the
6818         server.
6819
6820 2011-02-17  Lars Ingebrigtsen  <larsi@gnus.org>
6821
6822         * auth-source.el (auth-source-search): Do a two-phase search, one with
6823         no :create to get the responses from all backends.
6824
6825         * nnimap.el (nnimap-open-connection-1): Delete duplicate server names
6826         when getting credentials.
6827
6828         * gnus-util.el (gnus-delete-duplicates): New function.
6829
6830 2011-02-17  Teodor Zlatanov  <tzz@lifelogs.com>
6831
6832         * nnimap.el (nnimap-credentials): Instead of picking the first port as
6833         a creation default, pass the whole port list down.  It will be
6834         completed.
6835
6836         * auth-source.el (auth-source-search): Updated docs to talk about
6837         multiple creation choices.
6838         (auth-source-netrc-create): Accept a list as a value (from the search
6839         parameters) and do completion on that list.  Keep a separate netrc line
6840         with the password obscured for showing the user.
6841
6842         * nnimap.el (nnimap-open-connection-1): Make the `nnimap-address' the
6843         first choice to `auth-source-search' so it will be used for entry
6844         creation instead of the server's Gnus-specific name.
6845         (nnimap-credentials): Rely on the auth-source library to select which
6846         port is actually wanted in the new netrc entry, so don't override
6847         `auth-source-creation-defaults'.
6848
6849         * auth-source.el (auth-source-netrc-parse): Use :port instead of
6850         :protocol and accept a missing user, host, or port as a wildcard match.
6851         (auth-source-debug): Default to off.
6852
6853         (auth-source-netrc-search, auth-source-netrc-create)
6854         (auth-source-secrets-search, auth-source-secrets-create)
6855         (auth-source-user-or-password, auth-source-backend, auth-sources)
6856         (auth-source-backend-parse-parameters, auth-source-search): Use :port
6857         instead of :protocol.
6858
6859         * nnimap.el (nnimap-credentials): Pass a port default to
6860         `auth-source-search' in case an entry needs to be created.
6861         (nnimap-open-connection-1): Use :port instead of :protocol.
6862
6863 2011-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
6864
6865         * auth-source.el: Bind load-path when loading EIEIO from
6866         "gnus-fallback-lib/eieio"; don't pass more than two args, that XEmacs
6867         21.4 doesn't support, to `require'.
6868         (auth-source-secrets-search): Use mm-delete-duplicates instead of
6869         delete-dups that is not available in XEmacs 21.4.
6870
6871 2011-02-16  Raphael Kubo da Costa  <kubito@gmail.com>  (tiny change)
6872
6873         * auth-source.el: Correctly load EIEIO from "gnus-fallback-lib/eieio"
6874         as EIEIO must also be loaded when auth-source.el is being
6875         byte-compiled.
6876
6877 2011-02-16  Teodor Zlatanov  <tzz@lifelogs.com>
6878
6879         * gnus-fallback-lib/eieio/eieio.el: Copy from Emacs.
6880
6881         * gnus-fallback-lib/eieio/eieio-speedbar.el: Copy from Emacs.
6882
6883         * gnus-fallback-lib/eieio/eieio-opt.el: Copy from Emacs.
6884
6885         * gnus-fallback-lib/eieio/eieio-datadebug.el: Copy from Emacs.
6886
6887         * gnus-fallback-lib/eieio/eieio-custom.el: Copy from Emacs.
6888
6889         * gnus-fallback-lib/eieio/eieio-comp.el: Copy from Emacs.
6890
6891         * gnus-fallback-lib/eieio/eieio-base.el: Copy from Emacs.
6892
6893         * auth-source.el: Load EIEIO from "gnus-fallback-lib/eieio" if
6894         necessary.
6895
6896 2011-02-16  Lars Ingebrigtsen  <larsi@gnus.org>
6897
6898         * gnus-sum.el (gnus-propagate-marks): Change default to t again, since
6899         nil means that nnimap doesn't get updated.
6900
6901 2011-02-16  Teodor Zlatanov  <tzz@lifelogs.com>
6902
6903         * auth-source.el (auth-source-netrc-create): Return a synthetic search
6904         result when the user doesn't want to write to the file.
6905         (auth-source-netrc-search): Expect a synthetic result and proceed
6906         accordingly.
6907         (auth-source-cache-expiry): New variable to override
6908         `password-cache-expiry'.
6909         (auth-source-remember): Use it.
6910
6911         * nnimap.el (nnimap-credentials): Remove the `inhibit-create'
6912         parameter.  Create entry if necessary by using :create t.
6913         (nnimap-open-connection-1): Don't pass `inhibit-create'.
6914
6915 2011-02-15  Teodor Zlatanov  <tzz@lifelogs.com>
6916
6917         * auth-source.el (auth-source-debug): Enable by default and don't
6918         mention the obsolete `auth-source-hide-passwords'.
6919         (auth-source-do-warn): New function to debug unconditionally.
6920         (auth-source-do-debug): Use it.
6921         (auth-source-backend-parse): Use it for invalid `auth-sources' entries
6922         and for Secrets API entries when the secrets.el library is not
6923         available.
6924
6925 2011-02-14  Lars Ingebrigtsen  <larsi@gnus.org>
6926
6927         * gnus-sum.el (gnus-propagate-marks): Default to nil.
6928         (gnus-summary-exit): Kill the correct article buffer on exit from a
6929         `C-d' group.
6930
6931         * gnus-start.el (gnus-use-backend-marks): Removed, since it duplicates
6932         gnus-propagate-marks.
6933
6934         * gnus-sum.el (gnus-summary-exit-no-update): Restore the group conf
6935         before killing the buffers so that a non-full window conf gets handled
6936         correctly.
6937         (gnus-summary-exit): Ditto.
6938         (gnus-summary-read-group-1): Ditto.
6939
6940         * nntp.el (nntp-retrieve-group-data-early): Reinstate the two-part
6941         async code again so that we can debug it properly.
6942
6943         * message.el (message-reply): Take an optional switch-buffer parameter
6944         so that Gnus window confs are respected better.
6945
6946 2011-02-14  Teodor Zlatanov  <tzz@lifelogs.com>
6947
6948         * auth-source.el (auth-source-backend-parse-parameters): Don't rely on
6949         `plist-get' to accept non-list parameters (XEmacs issue).
6950         Fix docstring.
6951         (auth-source-secrets-search): Use `delete-dups', `append mapcar', and
6952         `butlast' instead of `remove-duplicates', `mapcan', and `subseq'.
6953         (auth-sources, auth-source-backend-parse, auth-source-secrets-search):
6954         Login collection is "Login" and not "login".
6955
6956 2011-02-14  Lars Ingebrigtsen  <larsi@gnus.org>
6957
6958         * gnus-art.el (article-update-date-lapsed): Don't bug out when updating
6959         multiple headers.
6960
6961         * nnimap.el (nnimap-inhibit-logging): New variable.
6962         (nnimap-log-command): Don't log login commands.
6963
6964         * auth-source.el (auth-source-netrc-search): The asserts seem to want
6965         to have more parameters.
6966
6967         * nnimap.el (nnimap-send-command): Mark the command time for each
6968         command, so that we don't get NOOPs stepping on our toes.
6969
6970         * gnus-art.el (article-date-ut): Get the date from the Date header on
6971         `t'.
6972
6973 2011-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
6974
6975         * auth-source.el (auth-source-search): Use copy-sequence instead of
6976         the cl.el copy-list.
6977
6978 2011-02-13  Teodor Zlatanov  <tzz@lifelogs.com>
6979
6980         * imap.el: Bring it back (revert
6981         84d800cd31de3064f0ed39617d725709a2f8f42f).
6982
6983 2011-02-13  Adam Sjøgren  <asjo@koldfront.dk>
6984
6985         * gnus-delay.el (gnus-delay-article) Fix number of seconds per day.
6986         Improve prompt.
6987
6988 2011-02-13  Lars Ingebrigtsen  <larsi@gnus.org>
6989
6990         * gnus-art.el (gnus-article-mode-line-format): Remove the article
6991         washing status from the default format.  It isn't very informative.
6992
6993 2011-02-13  Tassilo Horn  <tassilo@member.fsf.org>  (tiny change)
6994
6995         * nnimap.el (nnimap-request-accept-article, nnimap-process-quirk):
6996         Fix Gcc processing on imap.
6997
6998 2011-02-13  Teodor Zlatanov  <tzz@lifelogs.com>
6999
7000         * imap.el: Remove file.  All the functionality is in nnimap.el.
7001
7002 2011-02-10  Stefan Monnier  <monnier@iro.umontreal.ca>
7003
7004         * message.el (message-bury): Don't pop up a new window when selected
7005         window is dedicated.
7006
7007 2011-02-10  Antoine Levitt  <antoine.levitt@gmail.com>  (tiny change)
7008
7009         * gnus-sum.el (gnus-summary-save-parts): Use read-directory-name.
7010
7011 2011-02-10  Teodor Zlatanov  <tzz@lifelogs.com>
7012
7013         * sieve-manage.el: Autoload `auth-source-search'.
7014         (sieve-sasl-auth): Use it.
7015
7016 2011-02-09  Teodor Zlatanov  <tzz@lifelogs.com>
7017
7018         * nnimap.el: Autoload `auth-source-forget+'.
7019         (nnimap-open-connection-1): Use it if the connection fails.
7020
7021         * auth-source.el: Require `password-cache'.
7022         (auth-source-hide-passwords, auth-source-cache): Remove and mark
7023         obsolete.
7024         (auth-source-magic): Marker for `password-cache' keys.
7025         (auth-source-do-cache): Update docstring.
7026         (auth-source-search): Use and check cache.
7027         (auth-source-forget-all-cached, auth-source-remember)
7028         (auth-source-recall, auth-source-forget, auth-source-forget+)
7029         (auth-source-specmatchp): Caching support functions.
7030         (auth-source-forget-user-or-password, auth-source-forget-all-cached):
7031         Remove and obsolete.
7032         (auth-source-user-or-password): Remove caching to further discourage
7033         using it.  Always hide passwords.
7034
7035         * password-cache.el (password-cache-remove): Accept secrets that are
7036         not strings.
7037
7038 2011-02-09  Lars Ingebrigtsen  <larsi@gnus.org>
7039
7040         * nntp.el (nntp-retrieve-group-data-early-disabled): Disable the async
7041         code for now, since it doesn't work for all users.
7042
7043 2011-02-09  Julien Danjou  <julien@danjou.info>
7044
7045         * message.el (message-options): Make message-options really buffer
7046         local.
7047
7048 2011-02-08  Teodor Zlatanov  <tzz@lifelogs.com>
7049
7050         * mail-source.el: Autoload `auth-source-search'.
7051         (mail-source-keyword-map): Note order matters.
7052         (mail-source-set-1): Get all the mail-source source values and
7053         defaults and search auth-source on those if needed.  This can all
7054         probably be simplified.
7055
7056         * nnimap.el: Autoload `auth-source-search'.
7057         (nnimap-credentials): Use it.
7058         (nnimap-open-connection-1): Ask for the virtual server and physical
7059         address in one shot.
7060
7061         * nntp.el: Autoload `auth-source-search'.
7062         (nntp-send-authinfo): Use it.  Note TODO.
7063
7064 2011-02-08  Julien Danjou  <julien@danjou.info>
7065
7066         * shr.el (shr-tag-body): Add support for text attribute in body
7067         markups.
7068
7069         * message.el (message-options): Make message-options a local variable.
7070
7071 2011-02-07  Teodor Zlatanov  <tzz@lifelogs.com>
7072
7073         * auth-source.el (auth-source-secrets-search)
7074         (auth-source-user-or-password): Use `append' instead of `nconc'.
7075         (auth-source-user-or-password): Build return list better and protect
7076         against nil :secret.
7077
7078 2011-02-07  Lars Ingebrigtsen  <larsi@gnus.org>
7079
7080         * nnimap.el (nnimap-update-info): Refactor slightly.
7081         (nnimap-update-info): Tell Gnus whether there are any \Recent messages.
7082         (nnimap-update-info): Clean up slightly.
7083         (nnimap-quirk): Add quirk for Gmail IMAP which bugs out on NUL
7084         characters.
7085         (nnimap-process-quirk): Rename function to avoid collision.
7086         (nnimap-update-info): Fix macrology bug-out.
7087         (nnimap-update-info): Simplify split history test.
7088
7089 2011-02-06  Michael Albinus  <michael.albinus@gmx.de>
7090
7091         * auth-source.el (top): Require 'eieio unconditionally.
7092         Autoload `secrets-get-attributes' instead of `secrets-get-attribute'.
7093         (auth-source-secrets-search): Limit search when `max' is greater than
7094         number of results.
7095
7096 2011-02-06  Lars Ingebrigtsen  <larsi@gnus.org>
7097
7098         * nntp.el (nntp-finish-retrieve-group-infos): Protect against the first
7099         part not returning any data.
7100
7101         * proto-stream.el (open-protocol-stream): Document the return value.
7102
7103 2011-02-06  Teodor Zlatanov  <tzz@lifelogs.com>
7104
7105         * auth-source.el (auth-source-secrets-search): Add examples.
7106
7107 2011-02-06  Julien Danjou  <julien@danjou.info>
7108
7109         * message.el (message-setup-1): Handle message-generate-headers-first
7110         set to t.
7111
7112 2011-02-06  Teodor Zlatanov  <tzz@lifelogs.com>
7113
7114         * auth-source.el (auth-sources): Allow for simpler defaults for Secrets
7115         API with a string "secrets:collection-name" and with 'default.
7116         (auth-source-backend-parse): Parse "secrets:collection-name" and
7117         'default.  Recurse on parses instead of repeating code.  Use the
7118         Secrets API is the source is not nil and 'ignore otherwise.  Emit a
7119         message when ignoring a source.
7120         (auth-source-search): List ignored search keys at the top level.
7121         (auth-source-netrc-create): Use `case' instead of `cond'.
7122         (auth-source-secrets-search): Created with TODOs.
7123         (auth-source-secrets-create): Created with TODOs.
7124         (auth-source-retrieve, auth-source-create, auth-source-delete)
7125         (auth-source-protocol-defaults, auth-source-user-or-password-imap)
7126         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
7127         (auth-source-user-or-password-sftp)
7128         (auth-source-user-or-password-smtp): Remove.
7129         (auth-source-user-or-password): Deprecated and modified to be a wrapper
7130         around `auth-source-search'.  Not tested thoroughly.
7131
7132 2011-02-04  Teodor Zlatanov  <tzz@lifelogs.com>
7133
7134         * auth-source.el: Bring in assoc and eioeio libraries.
7135         (secrets-enabled): New variable to track the status of the Secrets API.
7136         (auth-source-backend): New EIOEIO class to represent a backend.
7137         (auth-source-creation-defaults): New variable to set prompt defaults
7138         during token creation (see the `auth-source-search' docstring for
7139         details).
7140         (auth-sources): Simplify to allow a simple string as a netrc backend
7141         spec.
7142         (auth-source-backend-parse): Parse a backend from an `auth-sources' spec.
7143         (auth-source-backend-parse-parameters): Fill in the backend parameters.
7144         (auth-source-search): Main auth-source API entry point.
7145         (auth-source-delete): Wrapper around `auth-source-search' for deletion.
7146         (auth-source-search-collection): Helper function for searching.
7147         (auth-source-netrc-parse, auth-source-netrc-normalize)
7148         (auth-source-netrc-search, auth-source-netrc-create): Netrc backend.
7149         Supports search, create, and delete.
7150         (auth-source-secrets-search, auth-source-secrets-create): Secrets API
7151         backend stubs.
7152         (auth-source-user-or-password): Call `auth-source-search' but it's not
7153         ready yet.
7154
7155 2011-02-04  Lars Ingebrigtsen  <larsi@gnus.org>
7156
7157         * message.el (message-setup-1): Remove the read-only stuff, since it
7158         doesn't work under XEmacs, for some reason.
7159
7160         * gnus-sum.el (gnus-user-date): Rename back from
7161         gnus-summary-user-date since user code refers to it.
7162
7163         * shr.el (shr-render-td): Store the actual background color used.
7164
7165         * message.el (message-setup-1): Don't bind the constant
7166         -forbidden-properties.
7167         (message-setup-1): Revert previous change, since it needs to bind the
7168         props to insert them.
7169         (message-resend): Allow removing the read-only separator line.
7170
7171 2011-02-03  Lars Ingebrigtsen  <larsi@gnus.org>
7172
7173         * nnimap.el (nnimap-request-accept-article): Give an error message if
7174         the APPEND wasn't successful.
7175
7176 2011-02-03  Adam Sjøgren  <asjo@koldfront.dk>
7177
7178         * gnus-start.el (gnus-get-unread-articles): Fix the call to methods
7179         that have no groups.
7180
7181 2011-02-03  Julien Danjou  <julien@danjou.info>
7182
7183         * gnus-draft.el: Remove progn around gnus-draft-setup.
7184
7185 2011-02-03  Lars Ingebrigtsen  <larsi@gnus.org>
7186
7187         * gnus-start.el (gnus-read-active-for-groups): This function is never
7188         called with a nil `infos', so clean that up.
7189         (gnus-get-unread-articles): Request active files from primary/secondary
7190         methods that have no groups (yet).
7191
7192 2011-02-03  Julien Danjou  <julien@danjou.info>
7193
7194         * message.el (message-setup-1): Always generate References first.
7195         (message-mail): Return the return value of message-setup, not always t.
7196         (message-setup-1): Insert mail-header-separator with read-only and
7197         intangible properties set.
7198
7199         * gnus.el (gnus-summary-line-format): Add missing semi-colon for
7200         user-date in docstring.
7201
7202         * gnus-art.el (gnus-article-jump-to-part): Remove useless sit-for.
7203
7204         * gnus.el (gnus-summary-line-format): Mention &user-date format in
7205         docstring.
7206
7207         * gnus.el (gnus-user-date-format-alist): Change default value.
7208         Use defcustom, with type and group.  Move from gnus-util.el.
7209         Rename to gnus-summary-user-date-format-alist.
7210
7211 2011-02-03  Glenn Morris  <rgm@gnu.org>
7212
7213         * nnimap.el (gnus-fetch-headers): Declare.
7214
7215         * nnheader.el (gnus-range-add, gnus-remove-from-range): Autoload.
7216
7217 2011-02-03  Lars Ingebrigtsen  <larsi@gnus.org>
7218
7219         * message.el (message-forward-make-body-digest-plain)
7220         (message-followup, message-reply): Clean up things noted by Stefan.
7221
7222         * gnus-art.el (gnus-article-setup-buffer): Stop the date timer if
7223         gnus-article-update-date-headers is nil.
7224         (gnus-article-date-headers): Rip out the old -treat-date-* stuff, since
7225         it didn't really work with defcustom.
7226         (article-update-date-lapsed): Make sure the window start doesn't move,
7227         either.
7228
7229 2011-02-01  Julien Danjou  <julien@danjou.info>
7230
7231         * mm-uu.el (mm-uu-type-alist): Add support for git format-patch diff
7232         format.
7233
7234         * mm-decode.el (mm-inline-media-tests): Do not check for diff-mode it's
7235         standard in Emacs nowadays.
7236
7237         * color.el (color-gradient): Add a color-gradient function.
7238
7239 2011-02-01  Stefan Monnier  <monnier@iro.umontreal.ca>
7240
7241         * message.el (message-expand-name): Don't trust the return value of
7242         bbdb-complete-name.
7243         (message-check-news-header-syntax): Remove unused var `start'.
7244         (message-idna-to-ascii-rhs-1): Remove unused vars `rhs' and `address'.
7245         (message-inhibit-body-encoding): Move to before first use.
7246         (mail-abbrev-mode-regexp, Expires, User-Agent, Lines, Distribution)
7247         (To, References, In-Reply-To, Newsgroups, Subject, Path, From)
7248         (Organization, Message-ID, Date, mh-previous-window-config):
7249         Defvar the vars using dynamic scoping.
7250
7251 2011-02-01  Lars Ingebrigtsen  <larsi@gnus.org>
7252
7253         * shr.el (shr-render-td): Only do colors at the final rendering.
7254         Should be slightly faster.
7255         (shr-insert-table): Fix up TD background colors when doing the
7256         vertical padding.
7257
7258         * gnus-art.el (article-date-ut): Protect against articles with no Date
7259         header.
7260         (article-update-date-lapsed): Don't use current-column to find the
7261         horizontal position.  It's fragile in the presence of \003 characters.
7262
7263         * gnus-start.el (gnus-read-active-file-1): Remove dead parameter infos.
7264
7265 2011-01-31  Lars Ingebrigtsen  <larsi@gnus.org>
7266
7267         * gnus-art.el (article-transform-date): Rewrite to still work when
7268         there are several rfc2822 parts.
7269         (article-transform-date): Fix infinite recursion.
7270         (article-date-ut): Replace infinitely many Date headers with a single
7271         one when called interactively.
7272
7273         * nnimap.el (nnimap-wait-for-response): Wait for results in a more
7274         secure manner.
7275
7276         * gnus-art.el (article-update-date-lapsed): Try to avoid having point
7277         move around by not using save-window-excursion.  It seems to work...
7278
7279 2011-01-31  Katsumi Yamaoka  <yamaoka@jpl.org>
7280
7281         * gnus-art.el (article-make-date-line): Work for user-defined format.
7282
7283 2011-01-31  Lars Ingebrigtsen  <larsi@gnus.org>
7284
7285         * nntp.el (nntp-retrieve-group-data-early)
7286         (nntp-finish-retrieve-group-infos): Implement the asynchronous data
7287         fetching functions.
7288
7289         * gnus-start.el (gnus-read-active-for-groups): Read the active files
7290         thoroughly for all backends that have no known groups.  This should
7291         allow new nnml methods to retrieve mail.
7292
7293         * gnus-group.el (gnus-group-jump-to-group): Allow jumping to groups
7294         that Gnus doesn't know exists again.
7295
7296         * gnus-art.el (gnus-article-date-lapsed-new-header): Remove.
7297         (gnus-treat-date-ut): Ditto.
7298         (gnus-article-update-date-header): Rename.
7299         (gnus-treat-date-local): Remove.
7300         (gnus-treat-date-english): Remove.
7301         (gnus-treat-date-lapsed): Remove.
7302         (gnus-treat-date-combined-lapsed): Remove.
7303         (gnus-treat-date-original): Remove.
7304         (gnus-treat-date-iso8601): Remove.
7305         (gnus-treat-date-user-defined): Remove.
7306         (gnus-article-date-headers): New variable to control all the date
7307         header options.
7308         (article-date-ut): Rewrite to allow using the new way to format date
7309         headers(s).
7310
7311 2011-01-30  Lars Ingebrigtsen  <larsi@gnus.org>
7312
7313         * nnmail.el (nnmail-article-group): Check for a direct fancy split
7314         method.
7315         (nnmail-article-group): A better test for fanciness.
7316
7317         * nnimap.el (nnimap-request-head): Protect against not finding the
7318         article by Message-ID.
7319
7320 2011-01-29  Lars Ingebrigtsen  <larsi@gnus.org>
7321
7322         * gnus-art.el (article-update-date-lapsed): Try a better way to really
7323         keep point at the "same place".
7324
7325 2011-01-28  Lars Ingebrigtsen  <larsi@gnus.org>
7326
7327         * gnus-sum.el (gnus-select-newsgroup): Don't try to alter the active
7328         data if the group is inactive.
7329
7330 2011-01-28  Julien Danjou  <julien@danjou.info>
7331
7332         * gnus-win.el: Remove dead function gnus-window-configuration-element.
7333         (gnus-all-windows-visible-p): Remove old compatibility code.
7334         (gnus-window-top-edge): Add docstring.
7335
7336         * gnus-group.el (gnus-group-jump-to-group): Set must match to t.
7337
7338 2011-01-28  Lars Ingebrigtsen  <larsi@gnus.org>
7339
7340         * gnus-int.el (gnus-request-marks): Call *-request-marks instead of the
7341         older request-update-info.
7342
7343         * gnus-art.el (article-make-date-line): Limit the length a bit more.
7344
7345 2011-01-28  Daiki Ueno  <ueno@unixuser.org>
7346
7347         * mml2015.el (mml2015-epg-sign, mml2015-epg-encrypt):
7348         Give mml2015-signers higher precedence over mml2015-sign-with-sender.
7349
7350 2011-01-27  Lars Ingebrigtsen  <larsi@gnus.org>
7351
7352         * gnus-group.el (gnus-group-refresh-group): Refresh even non-visible
7353         groups.  This makes the nndraft:queue group pop up if it's not already
7354         there.
7355
7356         * gnus-sum.el (gnus-summary-read-group-1): Fix the "contains no
7357         messages" logic, which was reversed.
7358
7359         * gnus-art.el (article-update-date-lapsed): Ensure that point stays at
7360         the "same place" even if point is on the line being replaced.
7361         (article-update-date-lapsed): Allow updating both the combined lapsed
7362         and the lapsed headers.
7363         (article-update-date-lapsed): Skip past all the X-Sent/Date headers.
7364         (article-make-date-line): Limit the number of segments dynamically to
7365         avoid too-long lines.
7366
7367 2011-01-27  Julien Danjou  <julien@danjou.info>
7368
7369         * mml2015.el (mml2015-epg-sign): Add and use mml2015-sign-with-sender.
7370         (mml2015-epg-encrypt): Use mml2015-sign-with-sender.
7371
7372 2011-01-27  Katsumi Yamaoka  <yamaoka@jpl.org>
7373
7374         * shr.el (shr-expand-newlines, shr-previous-newline-padding-width):
7375         Use plist-get instead of the cl function getf.
7376
7377 2011-01-27  Glenn Morris  <rgm@gnu.org>
7378
7379         * gnus-util.el (float-time): Get rid of compiler warning, again.
7380
7381 2011-01-27  Lars Ingebrigtsen  <larsi@gnus.org>
7382
7383         * shr.el (shr-put-color): Special-case background colors: Do put them
7384         at the blank parts at the front of the lines.
7385
7386         * gnus-draft.el (gnus-draft-clear-marks): New function to be run as an
7387         exit hook to nix out all data on readedness on group exit.
7388
7389         * gnus-util.el (float-time): If float-time is bound, always use it on
7390         all Emacsen.  It's unclear why the subrp check was there.
7391         (time-date): Require to make some autoload issues on XEmacs go away.
7392
7393         * shr.el (shr-put-color): Don't do the box padding in tables, since
7394         they're already padded.
7395
7396 2011-01-26  Lars Ingebrigtsen  <larsi@gnus.org>
7397
7398         * gnus-art.el (gnus-article-next-page): When the last line of the
7399         article is displayed, scroll down once more instead of going to the
7400         next article at once.
7401         (article-lapsed-string): Refactor out and allow specifying how many
7402         segments you want.
7403         (gnus-article-setup-buffer): Start updating the lapsed header directly.
7404         (gnus-article-update-lapsed-header): New variable.
7405
7406         * shr.el: Revert change that made headings use different-sized faces.
7407         The Emacs display engine isn't advanced enough that, for instance,
7408         tables can comfortably use differently-sized faces.
7409
7410 2011-01-25  Lars Ingebrigtsen  <larsi@gnus.org>
7411
7412         * nnimap.el (nnimap-open-connection-1): Store the actual stream type
7413         used.
7414         (nnimap-login): Prefer plain LOGIN if it's enabled (since it requires
7415         fewer round trips than CRAM-MD5, and it's less likely to be buggy), and
7416         we're using an encrypted connection.
7417
7418         * proto-stream.el: Alter the interface functions to also return the
7419         actual stream type used: network or tls.
7420
7421 2011-01-25  Julien Danjou  <julien@danjou.info>
7422
7423         * mm-view.el (mm-display-shell-script-inline): Fix typo in docstring.
7424         (mm-display-javascript-inline): New function.
7425
7426         * mm-decode.el (mm-inline-media-tests): Add application/javascript
7427         viewing function.
7428
7429 2011-01-25  Katsumi Yamaoka  <yamaoka@jpl.org>
7430
7431         * shr.el (shr-expand-newlines): Fix variable name.
7432
7433 2011-01-25  Lars Ingebrigtsen  <larsi@gnus.org>
7434
7435         * shr.el (shr-expand-newlines): Make nested boxes work.
7436
7437 2011-01-24  Lars Ingebrigtsen  <larsi@gnus.org>
7438
7439         * shr.el (shr-expand-newlines): Proof of concept implementation of boxy
7440         backgrounds.
7441         (shr-expand-newlines): Switch to using overlays to enable kill'n'yank
7442         in a more sensible manner.
7443
7444 2011-01-24  Teodor Zlatanov  <tzz@lifelogs.com>
7445
7446         * mml-smime.el (mml-smime-use): Make it a defcustom and default to 'epg
7447         if EPG is loaded.
7448
7449 2011-01-24  Julien Danjou  <julien@danjou.info>
7450
7451         * shr.el: Use defface to create shr-tag-h[1-6] faces to fontify h[1-6]
7452         tags.
7453
7454 2011-01-24  Lars Ingebrigtsen  <larsi@gnus.org>
7455
7456         * gnus-art.el (gnus-article-read-summary-keys): Don't call disabled
7457         commands.
7458
7459         * gnus-gravatar.el (gnus-gravatar-insert): Don't move point around
7460         in the article buffer.
7461         (gnus-gravatar-insert): Use blank space from the current buffer to
7462         avoid breaking text properties.  This makes X-Sent updating work again.
7463
7464         * gravatar.el (gravatar-retrieve): Be silent when retrieving.
7465
7466 2011-01-23  Lars Ingebrigtsen  <larsi@gnus.org>
7467
7468         * gnus-html.el (gnus-html-image-fetched): Kill the buffer anyway, and
7469         fix the bug in url-http.el instead.
7470
7471         * shr.el (shr-image-fetched): Ditto.
7472
7473         * shr.el (shr-image-fetched): Avoid having point move in the article
7474         buffer.
7475
7476         * gnus-html.el (gnus-html-image-fetched): Don't kill the temporary
7477         buffer after being called.  It's apparently being killed by url.el, and
7478         killing it made point move to end-of-buffer in a random buffer.
7479
7480         * shr.el (shr-image-fetched): Ditto.
7481
7482 2011-01-23  Julien Danjou  <julien@danjou.info>
7483
7484         * mm-decode.el (mm-inline-media-tests): Change text/org to text/x-org.
7485
7486         * mm-uu.el (mm-uu-org-src-code-block-extract): Change text/org to
7487         text/x-org.
7488
7489 2011-01-22  Lars Ingebrigtsen  <larsi@gnus.org>
7490
7491         * gnus-sum.el (gnus-summary-move-article): Protect against backends
7492         (i.e., nnimap) returning nil as the article number.
7493
7494 2011-01-22  Kazuhiro Ito  <kzhr@d1.dion.ne.jp>  (tiny change)
7495
7496         * flow-fill.el (fill-flowed): Make `delete-space' option correspond to
7497         "DelSp" parameter in RFC3676.
7498
7499 2011-01-22  Lars Ingebrigtsen  <larsi@gnus.org>
7500
7501         * message.el (message-check-recipients): Display the encoded version of
7502         the bogus address if they differ.
7503
7504         * gnus-draft.el (gnus-group-send-queue): Really refresh the queue group
7505         after sending.
7506
7507         * gnus-agent.el (gnus-agent-send-mail): Ditto.
7508
7509         * gnus-group.el (gnus-group-refresh-group): New convenience function.
7510
7511         * gnus-draft.el (gnus-group-send-queue): Update the queue group in the
7512         group buffer after sending the queue.
7513
7514         * gnus-agent.el (gnus-agent-send-mail): Ditto.
7515
7516 2011-01-22  Julien Danjou  <julien@danjou.info>
7517
7518         * mailcap.el (mailcap-mime-extensions): Rename text/org to text/x-org.
7519
7520 2011-01-22  Lars Ingebrigtsen  <larsi@gnus.org>
7521
7522         * mm-decode.el (mm-preferred-alternative-precedence): Don't bug out on
7523         nested related parts.
7524
7525         * nnfolder.el (nnfolder-request-expire-articles): Return the list of
7526         unexpired articles.  This fixes the regression that led expiry marks to
7527         disappear from nnfolder groups.
7528
7529 2011-01-21  Stefan Monnier  <monnier@iro.umontreal.ca>
7530
7531         * gnus-art.el (gnus-button-alist, gnus-button-handle-info-keystrokes):
7532         Don't confuse the "ret" of "retrograde" with RET.
7533
7534 2011-01-21  Julien Danjou  <julien@danjou.info>
7535
7536         * gnus-art.el (gnus-mime-display-single): Use mm-display-inline rather
7537         than mm-insert-inline.
7538
7539 2011-01-21  Katsumi Yamaoka  <yamaoka@jpl.org>
7540
7541         * gnus-art.el (gnus-article-remove-images, gnus-article-show-images):
7542         Widen article buffer.
7543
7544 2011-01-20  Stefan Monnier  <monnier@iro.umontreal.ca>
7545
7546         * mm-util.el (mm-find-buffer-file-coding-system): Don't forget to kill
7547         the temp buffer.
7548         * message.el (message-mailer-swallows-blank-line): Use with-temp-buffer.
7549
7550 2011-01-20  Julien Danjou  <julien@danjou.info>
7551
7552         * mm-decode.el (mm-inline-media-tests): Add text/x-sh.
7553
7554         * gnus-art.el (gnus-mime-inline-part): Use mm-display-inline rather
7555         than mm-insert-inline to insert inline part: this respect
7556         mm-inline-media-tests displayers.
7557
7558         * mm-view.el (mm-display-shell-script-inline): New function.
7559
7560         * mm-decode.el (mm-inline-media-tests): Add x-shellscript and x-sh.
7561
7562         * mm-uu.el (mm-uu-type-alist): Add org block.
7563         (mm-uu-org-src-code-block-extract): New function.
7564
7565         * mm-view.el (mm-display-org-inline): New function.
7566
7567         * mm-decode.el (mm-automatic-display): Add text/org.
7568
7569         * mailcap.el (mailcap-mime-extensions): Add .org.
7570
7571 2011-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
7572
7573         * gnus-art.el (gnus-article-highlight): Remove argument passed to
7574         gnus-article-add-buttons.
7575
7576 2011-01-19  Tom Rauchenwald  <sehnsucht.nach.unendlichkeit@quantentunnel.de>  (tiny change)
7577
7578         * spam.el (spam-spamassassin-register-with-sa-learn): Insert a full
7579         From header with a date and "nobody" as the sender.
7580
7581 2011-01-19  Julien Danjou  <julien@danjou.info>
7582
7583         * gnus-art.el (gnus-article-add-buttons): Simplify condition.
7584         (gnus-button-push): Remove gnus-button-entry function, it fails heavily
7585         if you have the same regexp several times.
7586         (gnus-button-push): Fix matching when regexp is symbol.
7587
7588 2011-01-15  Glenn Morris  <rgm@gnu.org>
7589
7590         * message.el (message-mail): A compose-mail function should
7591         accept headers as strings.
7592
7593 2011-01-13  Chong Yidong  <cyd@stupidchicken.com>
7594
7595         * message.el (message-tool-bar-gnome): Tweak tool-bar items.
7596         Add :vert-only tags.
7597         (message-mail): New arg RETURN-ACTION.
7598         (message-return-action): New var.
7599         (message-bury): Use it.
7600         (message-mode): Make it buffer-local.
7601         (message-send-and-exit): Always call message-bury.
7602
7603         * gnus-msg.el (gnus-msg-mail): New arg RETURN-ACTION.  Pass it to
7604         message-mail.
7605
7606 2011-01-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7607
7608         * nnimap.el (nnimap-convert-partial-article): Protect against
7609         zero-length body parts.
7610
7611         * mm-decode.el (mm-preferred-alternative-precedence):
7612         Discourage showing empty parts.
7613
7614         * gnus-int.el (gnus-request-accept-article): Don't try to update marks
7615         and stuff if the backend didn't return the article number.  This fixes
7616         an Exchange-related nnimap bug.
7617
7618         * gnus-sum.el (gnus-summary-next-article): Remove hack to reselect
7619         group window, because it does the wrong thing when a separate frame
7620         displays the group buffer.
7621
7622         * proto-stream.el (open-protocol-stream): Protect against the low-level
7623         transport functions returning nil.
7624
7625 2011-01-07  Daiki Ueno  <ueno@unixuser.org>
7626
7627         * mml2015.el (epg-sub-key-fingerprint): Autoload.
7628         (mml2015-epg-find-usable-secret-key): New function.
7629         (mml2015-epg-sign): Use mml2015-epg-find-usable-secret-key instead of
7630         mml2015-epg-find-usable-key (Bug#7797).
7631         (mml2015-epg-encrypt): Ditto.
7632
7633 2011-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
7634
7635         * dgnushack.el (rot13-string): Fix the way to get the argument.
7636
7637 2011-01-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7638
7639         * flow-fill.el (fill-flowed-encode): Do encoding citation-aware.
7640
7641 2011-01-03  Glenn Morris  <rgm@gnu.org>
7642
7643         * sieve-manage.el (sieve-manage-open): Correctly set sieve-manage-port.
7644
7645         * sieve.el (sieve-open-server): Give a more explicit error if
7646         sieve-manage-open returns nil.  (Bug#7720)
7647
7648 2011-01-02  Karl Fogel  <kfogel@red-bean.com>
7649
7650         * gnus-msg.el (gnus-message-replyencrypt): Default to `t'.
7651
7652 2011-01-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7653
7654         * nnimap.el (nnimap-login): Prefer AUTH=CRAM-MD5, if it's available.
7655         This avoids sending passwords in plain text over non-encrypted
7656         channels.
7657
7658         * shr.el (shr-rescale-image): Display all GIF images as animated images.
7659
7660         * nnimap.el (nnimap-login): Refactored out into own function, and
7661         implement CRAM-MD5.
7662         (nnimap-wait-for-line): Refactored out.
7663
7664         * mm-view.el (mml-smime): Require.
7665
7666 2010-12-20  David Engster  <deng@eml.cc>
7667
7668         * mm-view.el (mm-view-pkcs7-decrypt): If mml-smime-use is set to 'epg,
7669         use EPG to decrypt S/MIME messages instead of openssl.
7670
7671 2011-01-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7672
7673         * nnimap.el (nnimap-request-group): Avoid double SELECT on `M-g'.
7674
7675         * gnus-group.el (gnus-group-kill-group): Don't try to update the group
7676         status is the group clearly is unreachable.
7677
7678         * auth-source.el (auth-source-create): Add the optional second
7679         parameter to `local-variable-p' to be compatible with XEmacs.
7680
7681 2011-01-02  Wang Diancheng  <dcwang@kingbase.com.cn>  (tiny change)
7682
7683         * nnml.el (nnml-request-article): Allow requesting by Message-ID to
7684         work when using a compressed nnml folder.
7685
7686 2011-01-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7687
7688         * gnus-sum.el (gnus-select-newsgroup): Don't propagate marks to
7689         backends after sanitising on entry, because this never makes sense:
7690         If the articles have gone missing, then the data no longer exists on
7691         the backend, and if they haven't, then Gnus is wrong, and shouldn't
7692         overwrite anything anyway.
7693
7694         * shr.el (shr-insert-document): Bind shr-width dynamically to
7695         window-width if it's nil.
7696
7697 2010-12-30  Tassilo Horn  <tassilo@member.fsf.org>
7698
7699         * shr.el (shr-width, shr-insert-document): Allow nil as shr-width value
7700         with the meaning of using the full emacs window width for rendering.
7701
7702 2010-12-27  Daiki Ueno  <ueno@unixuser.org>
7703
7704         * mml2015.el (mml2015-epg-sign, mml2015-epg-encrypt): Take care the
7705         case when sender is not given.
7706
7707 2010-12-23  Julien Danjou  <julien@danjou.info>
7708
7709         * gnus-gravatar.el (gnus-gravatar-transform-address): Set
7710         `mail-extr-ignore-realname-equals-mailbox-name' to nil when extracting
7711         the addresses, otherwise we might misplaced the gravatar.
7712
7713 2010-12-21  Daiki Ueno  <ueno@unixuser.org>
7714
7715         * mml1991.el (pgg-sign-region, pgg-encrypt-region):
7716         * gnus-art.el (pgg-snarf-keys-region): Autoload since PGG is now
7717         obsolete in Emacs.
7718
7719 2010-12-20  Julien Danjou  <julien@danjou.info>
7720
7721         * gnus-util.el (gnus-rescale-image): Revert last change.
7722
7723 2010-12-17  Chong Yidong  <cyd@stupidchicken.com>
7724
7725         * binhex.el: Improve commentary (Bug#7482).
7726
7727 2010-12-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7728
7729         * gnus-group.el (gnus-group-delete-articles): New command.
7730
7731 2010-12-17  Andrew Cohen  <cohen@andy.bu.edu>
7732
7733         * nnir.el (nnir-mode): Make sure 'gnus-registry-install is bound.
7734
7735 2010-12-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7736
7737         * gnus-sum.el (gnus-get-newsgroup-headers): Revert the last change
7738         here, since it's up to the backends to do CRLF removal if their
7739         protocol has it.
7740
7741         * nnimap.el (nnimap-retrieve-headers): Remove CRLF from the headers.
7742
7743 2010-12-17  Julien Danjou  <julien@danjou.info>
7744
7745         * gnus-util.el (gnus-rescale-image): Allow to resize images even if
7746         they are from file.  Can also scale up.
7747
7748 2010-12-17  Andrew Cohen  <cohen@andy.bu.edu>
7749
7750         * gnus-sum.el (gnus-summary-refer-thread): Simplify code.
7751         Restore gnus-use-agent.
7752         (gnus-get-newsgroup-headers): Avoid unwanted spaces at eol.
7753
7754         * nnir.el (nnir-get-active): Ignore nnir-ignored-newsgroups if null.
7755
7756 2010-12-17  Julien Danjou  <julien@danjou.info>
7757
7758         * gravatar.el (gravatar-retrieve-synchronously): New function.
7759         (gravatar-get-data): Make more robust.
7760
7761 2010-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
7762
7763         * lpath.el: Bind epa-file-encrypt-to for Emacs 22 and XEmacs.
7764
7765 2010-12-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7766
7767         * nnimap.el (nnimap-wait-for-response): Fix the end-point calculation
7768         to really consider the last line.
7769
7770 2010-12-16  Daiki Ueno  <ueno@unixuser.org>
7771
7772         * auth-source.el (auth-source-gpg-encrypt-to): New variable to set the
7773         list of recipient keys, or use symmetric encryption if not a list.
7774         (auth-source-create): Use it to make `epa-file-encrypt-to' local for an
7775         EPA override, replacing the call to `netrc-store-data'.
7776
7777 2010-12-16  Dan Davison  <dandavison7@gmail.com>  (tiny change)
7778
7779         * gnus-srvr.el: Avoid passing nil regexp argument to
7780         delete-matching-lines.
7781
7782 2010-12-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7783
7784         * gnus-html.el (gnus-html-schedule-image-fetching): Make sure the HTML
7785         fetching stops when Gnus exits.
7786
7787         * nnfolder.el (nnfolder-save-all-buffers): Refactor out into its own
7788         function.
7789         (nnfolder-request-expire-articles): Save all the buffers after doing
7790         expiry.
7791
7792         * nnmail.el (nnmail-expiry-target-group): Revert the "all articles are
7793         the last article", since that led to serious performance regressions
7794         when expiring nnml groups.
7795
7796 2010-12-16  Andrew Cohen  <cohen@andy.bu.edu>
7797
7798         * nnir.el: Improve customizations.
7799
7800 2010-12-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7801
7802         * gnus-start.el (gnus-subscribe-newsgroup): Notify the backend.
7803
7804         * gnus-group.el (gnus-group-kill-group): Notify the backend that the
7805         group has been killed.
7806         (gnus-group-yank-group): Ditto.
7807
7808         * gnus-srvr.el (gnus-browse-unsubscribe-group): Ditto.
7809
7810         * nnimap.el (nnimap-request-update-group-status): New function.
7811
7812         * gnus-int.el (gnus-request-update-group-status): New interface
7813         function.
7814
7815         * gnus-sum.el (gnus-summary-push-marks-to-backend): Fix the logic for
7816         copying read-ness to the backends.
7817
7818         * nnimap.el (nnimap-quirk): New function.
7819         (nnimap-retrieve-group-data-early): Use it.
7820         (nnimap-quirks): New alist.
7821
7822 2010-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
7823
7824         * shr.el (shr-insert): Set shr-start after deleting trailing space;
7825         don't delete it within indentation.
7826
7827 2010-12-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7828
7829         * nnimap.el (nnimap-wait-for-response): Always look (at least) at the
7830         previous line.
7831
7832 2010-12-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7833
7834         * nnimap.el (nnimap-retrieve-group-data-early): Fix the syntax of the
7835         QRESYNC command by deleting a superfluous space which broke Cyrus
7836         servers.  This change will break other servers that are buggy the other
7837         way around.
7838
7839 2010-12-14  Teodor Zlatanov  <tzz@lifelogs.com>
7840
7841         * spam.el: Reindent and fix long lines.
7842         (spam-copy-or-move-routine): Exclude invalid move destinations.
7843
7844 2010-12-14  Andrew Cohen  <cohen@andy.bu.edu>
7845
7846         * nnir.el (nnir-mode): Don't install registry hooks if user hasn't
7847         installed the registry.
7848
7849 2010-12-14  Katsumi Yamaoka  <yamaoka@jpl.org>
7850
7851         * dgnushack.el (rot13-string): New macro for XEmacs.  netrc.el uses it.
7852
7853 2010-12-13  Andrew Cohen  <cohen@andy.bu.edu>
7854
7855         * nnir.el (nnir-run-gmane): Better check for gmane groups: error out if
7856         groupname doesn't contain "gmane".
7857
7858 2010-12-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7859
7860         * netrc.el (netrc-point-at-eol): Remove the unused netrc-point-at-old
7861         and netrc-bound-and-true-p bindings.
7862         (netrc-parse): Cache the netrc contents.
7863
7864         * gnus-start.el (gnus-matches-options-n): Fix typo in last change.
7865         (gnus-1): Don't create the nndrafts group twice.
7866         (gnus-setup-news): There's no need to read the active file here, since
7867         that's done again later on a per-backend basis.
7868         (gnus-start-draft-setup): Make sure that the new group is started out
7869         empty.
7870
7871         * gnus-agent.el (gnus-agentize): Don't create the queue group
7872         automatically on startup.  It'll be created later, if needed.
7873
7874         * gnus-start.el (gnus-auto-subscribed-groups): Add nnimap to the list
7875         of automatically subscribed groups.
7876         (gnus-auto-subscribed-categories): New variable.
7877         (gnus-matches-options-n): Use it.
7878         (gnus-default-subscribed-newsgroups): Remove unused variable.
7879         (gnus-start-draft-setup): Message a bit less.
7880
7881 2010-12-13  Andrew Cohen  <cohen@andy.bu.edu>
7882
7883         * nnir.el (nnir-run-imap): Return article list in order of increasing
7884         UID.
7885
7886 2010-12-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7887
7888         * gnus-sum.el (gnus-summary-enter-digest-group):
7889         Mention gnus-auto-select-on-ephemeral-exit.
7890
7891         * proto-stream.el (proto-stream-open-network-only): Fix the calling
7892         convention of the network-only option.
7893
7894 2010-12-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7895
7896         * proto-stream.el (proto-stream-open-network-only): New function to
7897         have a way to specify non-STARTTLS upgrade connections.
7898
7899 2010-12-10  Julien Danjou  <julien@danjou.info>
7900
7901         * gnus-gravatar.el (gnus-gravatar-transform-address): Fix error when
7902         email address is nil.
7903
7904         * message.el (message-bogus-recipient-p): Set address to "" if nil.
7905
7906 2010-12-10  Andrew Cohen  <cohen@andy.bu.edu>
7907
7908         * nnir.el (nnir-request-expire-articles): Ignore expiry except for
7909         deletion.
7910         (nnir-run-imap): Only need to parse list once.
7911
7912 2010-12-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7913
7914         * shr.el (shr-tag-script): Ignore <script>.
7915         (shr-tag-label): Add <label> support.
7916
7917 2010-12-09  Katsumi Yamaoka  <yamaoka@jpl.org>
7918
7919         * mm-util.el (mm-ucs-to-char): Use eval-and-compile.
7920
7921         * shr.el (shr-image-displayer): Work for images lined side by side.
7922
7923 2010-12-08  Robert Pluim  <rpluim@gmail.com>
7924
7925         * gnus-demon.el (gnus-demon-init): Call run-with-timer with an integer
7926         parameter, since XEmacs doesn't accept t as a parameter.
7927
7928 2010-12-08  Andrew Cohen  <cohen@andy.bu.edu>
7929
7930         * nnir.el (nnir-retrieve-headers): Use rassq when comparing article
7931         ids.
7932         (nnir-run-gmane): Simplify groupspec formatting.
7933         (nnir-request-expire-articles): New function.
7934
7935 2010-12-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7936
7937         * nnimap.el (nnimap-parse-flags): Tweak VANISHED regexp to avoid regexp
7938         overflow, possibly.
7939
7940         * shr.el (shr-tag-table-1): Use bg/gfcolor specs on tables.
7941         (shr-render-td): Handle td style="" better.
7942         (shr-tag-table): Use the color from the style sheet.
7943         (shr-render-td): Make sure we copy over all the overlays, too.
7944
7945 2010-12-07  Andrew Cohen  <cohen@andy.bu.edu>
7946
7947         * nnir.el (nnir-run-gmane): Restore sub-optimal test for gmane server.
7948         (nnir-request-article): Improve article retrieval.
7949
7950 2010-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
7951
7952         * mm-util.el (mm-extra-numeric-entities): New variable.
7953
7954         * mm-url.el (mm-url-decode-entities):
7955         * mm-decode.el (mm-shr): Use it to decode extra numeric entities.
7956
7957         * lpath.el: Fbind completion-at-point for Emacs 22 and XEmacs.
7958
7959 2010-12-07  Stefan Monnier  <monnier@iro.umontreal.ca>
7960
7961         * message.el: Use completion-at-point.
7962         (message-completion-function): New fun, extracted from message-tab.
7963         (message-mode): Use it for completion-at-point-functions.
7964         (message-tab): Use it and completion-at-point.
7965
7966 2010-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
7967
7968         * shr.el (shr-find-fill-point): Don't break a line after a kinsoku-bol
7969         character if a non-breakable character follows.
7970
7971 2010-12-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7972
7973         * proto-stream.el (proto-stream-open-tls): Return nil if we don't get
7974         any stream.
7975
7976         * shr.el (shr-tag-font): Colorize the region.
7977         (shr-tag-body): Ditto.
7978         (shr-tag-font): Actually let the styles be inherited instead of
7979         overwriting them.
7980         (shr-tag-font): Get the background color right.
7981         (shr-tag-style): Ignore all <style> tags for the moment.
7982
7983         * gnus-int.el (gnus-request-thread): Rework to take a header instead of
7984         a Message-ID to avoid having nnimap depend on gnus-sum.
7985
7986         * shr.el (shr-descend): Only colorize something if we have a node that
7987         sets colors.
7988
7989 2010-12-06  Julien Danjou  <julien@danjou.info>
7990
7991         * shr.el (shr-render-td): Render td content with shr-descend, so style
7992         will be applied to <td> too.
7993         (shr-colorize-region): Colorize region even if we only have a background.
7994         (shr-tag-body): Fix color and background color inheritance.
7995         Do not recolorize after shr-generic.
7996         (shr-tag-font): Let shr-generic colorize via inheritance.
7997
7998 2010-12-06  Katsumi Yamaoka  <yamaoka@jpl.org>
7999
8000         * shr.el (shr-find-fill-point): Don't regard apostrophe as kinsoku-bol.
8001
8002 2010-12-06  Andrew Cohen  <cohen@andy.bu.edu>
8003
8004         * nnir.el (nnir-request-move-article): Remove obsolete code.
8005
8006 2010-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
8007
8008         * gnus-util.el (gnus-macroexpand-all): Use eval-and-compile.
8009
8010 2010-12-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8011
8012         * gnus-sum.el (gnus-summary-respool-article): The completion function
8013         expects a list instead of an alist.
8014
8015         * nntp.el (nntp-snarf-error-message): nnheader-report takes a format
8016         string as the parameter.
8017
8018         * gnus.el (gnus-valid-select-methods): Allow nnimap to respool.
8019
8020         * shr.el (shr-stylesheet): New dynamic variable for cascading the
8021         styles.
8022         (shr-colorize-region): New function.
8023         (shr-insert-background-overlay): Remove.
8024         (shr-render-td): Background setting should be taken care of on a higher
8025         level.
8026         (shr-tag-body): Use post-hoc colorizations.
8027         (shr-tag-body): Set up a style sheet based on bgcolor/fgcolor.
8028         (shr-put-color-1): Don't overwrite old colors.
8029         (shr-colorize-region): When the background color isn't explicit, use
8030         a fixed background.
8031
8032         * gnus-util.el (gnus-output-to-mail): Require nnmail before using
8033         nnmail variables.
8034
8035 2010-12-05  Bjørn Mork  <bjorn@mork.no>
8036
8037         * nnimap.el (nnimap-process-expiry-targets): Avoid downloading articles
8038         unless necessary.
8039
8040 2010-12-05  Andrew Cohen  <cohen@andy.bu.edu>
8041
8042         * nnir.el (nnir-run-gmane): Use more careful test for gmane nntp
8043         server.
8044
8045 2010-12-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8046
8047         * gnus-html.el (gnus-html-put-image): Use widget instead of local maps
8048         so that TAB works.
8049
8050         * gnus-sum.el (gnus-summary-show-article): Reverse the meanings of `C-u
8051         C-u g' and `C-u g' so that `C-u g' does what it traditionally did.
8052
8053         * shr.el (shr-urlify): Show the URL before the title to avoid
8054         misleading URLs.
8055
8056 2010-12-04  Adam Sjøgren  <asjo@koldfront.dk>
8057
8058         * shr.el (shr-urlify): Display the title in <a> tags.
8059
8060 2010-12-04  Andrew Cohen  <cohen@andy.bu.edu>
8061
8062         * nnir.el (nnir-categorize): Replace mapcar with mapc.
8063
8064 2010-12-03  Andrew Cohen  <cohen@andy.bu.edu>
8065
8066         * nnir.el: Rearrange code to allow macros to be autoloaded by
8067         gnus-sum.el.
8068         (nnir-retrieve-headers-override-function): Make this variable
8069         customizable.
8070         (nnir-retrieve-headers): Remove obsolete subject-mangling code.
8071
8072         * gnus-sum.el (nnir-article-group, nnir-article-rsv): Autoload macros
8073         from nnir.el.
8074
8075 2010-12-03  Julien Danjou  <julien@danjou.info>
8076
8077         * gnus-demon.el (gnus-demon-init): Fix time computing when time is nil.
8078
8079 2010-12-03  Katsumi Yamaoka  <yamaoka@jpl.org>
8080
8081         * gnus-util.el (gnus-macroexpand-all): Don't modify argument;
8082         allow optional argument `environment'.
8083
8084 2010-12-03  Glenn Morris  <rgm@gnu.org>
8085
8086         * mm-extern.el (message-goto-body): Update declaration.
8087
8088 2010-12-03  Katsumi Yamaoka  <yamaoka@jpl.org>
8089
8090         * gnus-util.el (gnus-macroexpand-all): New function.
8091
8092         * gnus-sum.el (gnus-summary-line-format-alist): Use gnus-macroexpand-all
8093         instead of macroexpand-all that is unavailable in XEmacs.
8094
8095 2010-12-02  Andrew Cohen  <cohen@andy.bu.edu>
8096
8097         * nnir.el (nnir-summary-line-format): New variable.
8098         (nnir-mode): Use it.
8099         (nnir-artlist-*, nnir-aritem-*): Reimplement as macros.
8100         (nnir-article-ids): Reimplement as defsubst.
8101         (nnir-retrieve-headers): Don't mangle the subject header.
8102         (nnir-run-imap): Use 100 as RSV score.
8103         (nnir-run-find-grep): Fix for full server searching.
8104         (nnir-run-gmane): Better restriction to gmane groups.
8105
8106         * gnus-sum.el (gnus-summary-line-format-alist): Add specs for nnir
8107         summary buffers.
8108
8109 2010-12-02  Julien Danjou  <julien@danjou.info>
8110
8111         * gnus-win.el (gnus-configure-frame): Remove old compatibility code.
8112
8113         * gnus-msg.el: Mark gnus-outgoing-message-group as obsolete.
8114
8115         * gnus-win.el (gnus-configure-windows): Remove Gnus 3.x setting
8116         support.
8117
8118 2010-12-01  Andrew Cohen  <cohen@andy.bu.edu>
8119
8120         * nnir.el: Update to handle the registry better.
8121         (autoload): Silence byte-compiler.
8122         (nnir-open-server): Add a hook for nnir groups.
8123         (nnir-request-move-article): Don't mangle the header.  Better to use
8124         formatting variables (which will be added in the future).
8125         (nnir-registry-action): Update the registry using the original article
8126         group name.
8127         (nnir-mode): Install nnir-specific hooks for updating the registry.
8128
8129         * gnus-sum.el
8130         (gnus-article-original-subject, gnus-newsgroup-original-name):
8131         Remove obsolete variables.
8132         (gnus-summary-move-article): Remove use of obsolete variables.
8133         (gnus-summary-local-variables): Make move and delete hooks local to
8134         summary buffers.
8135
8136 2010-12-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8137
8138         * rtree.el: New file.
8139
8140 2010-12-01  Julien Danjou  <julien@danjou.info>
8141
8142         * message.el (message-user-organization): Do not use
8143         gnus-local-organization.
8144
8145         * gnus.el: Remove gnus-local-organization.
8146
8147         * gnus-msg.el: Remove nastygram thing.
8148
8149 2010-12-01  Teodor Zlatanov  <tzz@lifelogs.com>
8150
8151         * nnmaildir.el (nnmaildir-request-set-mark): Add article to add-mark
8152         funcall.
8153
8154 2010-12-01  Katsumi Yamaoka  <yamaoka@jpl.org>
8155
8156         * gnus-gravatar.el (gnus-gravatar-insert): Allow LWSP in the middle of
8157         names.
8158
8159         * shr.el (shr-find-fill-point): Don't break line between kinsoku-bol
8160         characters.
8161
8162         * gnus-gravatar.el (gnus-gravatar-insert): Delete unnecessary binding
8163         to t of inhibit-read-only since it is inside gnus-with-article-headers.
8164         Suggested by Štěpán Němec <stepnem@gmail.com>.
8165         (gnus-gravatar-transform-address): Use mail-extract-address-components
8166         that supports non-ASCII names rather than mail-header-parse-addresses.
8167
8168 2010-11-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8169
8170         * proto-stream.el (open-protocol-stream): All starttls connections are
8171         handled by the network handler.
8172
8173 2010-11-30  Julien Danjou  <julien@danjou.info>
8174
8175         * nnimap.el (nnimap-open-connection-1): Use gnus-string-match-p.
8176         (nnimap-open-connection-1): Fix PREAUTH.
8177
8178         * gnus-gravatar.el (gnus-gravatar-size): Set gnus-gravatar-size to nil.
8179
8180 2010-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
8181
8182         * shr.el (shr-char-breakable-p, shr-char-nospace-p)
8183         (shr-char-kinsoku-bol-p, shr-char-kinsoku-eol-p): New macros.
8184         (shr-insert): Use them.
8185         (shr-find-fill-point): Work better for kinsoku chars and apostrophes.
8186
8187 2010-11-29  Andrew Cohen  <cohen@andy.bu.edu>
8188
8189         * nnir.el (nnir-request-move-article): Bail out if original group
8190         doesn't support article moves.
8191         (nnir-get-active): Improve active list retrieval.
8192
8193 2010-11-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8194
8195         * shr.el (shr-find-fill-point): Don't break before apostrophes.
8196
8197 2010-11-29  Binjo  <binjo.cn@gmail.com>  (tiny change)
8198
8199         * nnimap.el (nnimap-open-connection-1): w32 open-network-stream doesn't
8200         seem to accept strings-with-numbers as port numbers.
8201
8202 2010-11-29  Andrew Cohen  <cohen@andy.bu.edu>
8203
8204         * gnus-sum.el (gnus-summary-delete-article): If delete fails don't
8205         change the registry.
8206
8207 2010-11-29  Katsumi Yamaoka  <yamaoka@jpl.org>
8208
8209         * nnir.el (nnir-run-gmane): Use mm-delete-duplicates instead of
8210         delete-dups that is not available in XEmacs 21.4.
8211
8212         * mm-util.el (mm-delete-duplicates): Add comment.
8213
8214 2010-11-28  Andrew Cohen  <cohen@andy.bu.edu>
8215
8216         * nnir.el (nnir-ignored-newsgroups): New variable.
8217         (nnir-get-active): Use it.
8218
8219 2010-11-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8220
8221         * proto-stream.el (proto-stream-open-network): Add some comments.
8222
8223         * nntp.el (nntp-open-connection): Provide a :success condition.
8224
8225         * nnimap.el (nnimap-open-connection-1): Ditto.
8226
8227         * proto-stream.el (proto-stream-open-network): See what the response to
8228         the STARTTLS command is.
8229
8230         * nnimap.el (nnimap-open-connection-1): Always upgrade to STARTTLS (for
8231         backwards compatibility).
8232         (nnimap-open-connection-1): Really respect nnimap-server-port.
8233
8234         * proto-stream.el (proto-stream-open-network): When doing opportunistic
8235         TLS upgrades we don't really care about the identity of the peer.
8236         (proto-stream-open-network): Force starttls.el to use gnutls-cli, since
8237         that what we've checked for.
8238         (proto-stream-always-use-starttls): Only default to t if
8239         open-gnutls-stream exists.
8240         (proto-stream-open-network): If STARTTLS failed, then just open a
8241         normal connection.
8242         (proto-stream-open-network): Wait until the greeting before doing
8243         STARTTLS.
8244
8245         * nntp.el (nntp-open-connection): Report what the connection error is.
8246
8247         * proto-stream.el (open-protocol-stream): Rename from
8248         open-proto-stream.
8249
8250 2010-11-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8251
8252         * nnimap.el (nnimap-stream): Change default to `undecided'.
8253         (nnimap-open-connection): If `nnimap-stream' is `undecided', try ssl
8254         first, and then network.
8255         (nnimap-open-connection-1): Respect nnimap-server-port.
8256         (nnimap-open-connection): Be more backwards-compatible.
8257
8258         * proto-stream.el (proto-stream-always-use-starttls): New variable.
8259         (proto-stream-open-starttls): De-duplicate the starttls code.
8260         (proto-stream-open-starttls): Folded back into the main function.
8261         (proto-stream-open-network): Fix typo in the gnutls path.
8262         (proto-stream-command): Refactor out.
8263
8264         * nntp.el (nntp-open-connection): Fix the STARTTLS command syntax.
8265
8266         * proto-stream.el (proto-stream-open-starttls): Actually implement the
8267         starttls.el STARTTLS.
8268
8269         * color.el (color-lab->srgb): Fix function call name.
8270
8271         * proto-stream.el (proto-stream-open-tls): Delete output from openssl
8272         if we're using tls.el.
8273         (proto-stream-open-network): If we don't have gnutls-cli or gnutls
8274         built in, then don't try to establish a STARTTLS connection.
8275
8276         * nntp.el (nntp-open-connection): Switch on STARTTLS on supported
8277         servers.
8278
8279         * proto-stream.el (open-proto-stream): Use network, not stream.
8280         (open-proto-stream): Add a way to specify what the end of a command is.
8281
8282         * nntp.el (nntp-open-connection): Use proto-streams for the relevant
8283         connections types.
8284         (nntp-open-network-stream): Remove.
8285         (nntp-open-ssl-stream): Remove.
8286         (nntp-open-tls-stream): Remove.
8287         (nntp-ssl-program): Remove.
8288
8289         * nnimap.el (nnimap-open-connection): Check for "OK" from the greeting.
8290
8291 2010-11-27  Andrew Cohen  <cohen@andy.bu.edu>
8292
8293         * nnir.el: Fix typos.
8294         (nnir-retrieve-headers-override-function): Rename variable to reflect
8295         new semantics.
8296         (nnir-article-group, nnir-article-number, nnir-article-rsv): New helper
8297         macros.
8298         (nnir-request-article, nnir-request-move-article): Use them.
8299         (nnir-categorize): New function.
8300         (nnir-run-query): Use it.
8301         (nnir-retrieve-headers): Rewrite to batch header retrieval.
8302         (nnir-run-gmane): nnir-retrieve-headers now returns the headers already
8303         sorted.
8304         (nnir-group-full-name): Use gnus-group-full-name instead.
8305         (nnir-artlist-artitem-group, nnir-artlist-artitem-number)
8306         (nnir-artlist-artitem-rsv, nnir-sort-groups-by-server): Obsolete.
8307
8308 2010-11-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8309
8310         * nnimap.el (nnimap-open-connection): Fix typo in STARTTLS command.
8311
8312         * proto-stream.el: New library to provide protocol-specific
8313         TLS/STARTTLS connections for IMAP, NNTP, SMTP, POP3 and similar
8314         protocols.
8315         (open-proto-stream): Complete the documentation.
8316         (proto-stream-open-network): Fix some typos.
8317
8318         * nnimap.el (nnimap-open-connection): Use it.
8319
8320 2010-11-27  Yuri Karaban  <tech@askold.net>  (tiny change)
8321
8322         * pop3.el (pop3-open-server): Read server greeting before starting TLS
8323         negotiation.
8324
8325 2010-11-26  Julien Danjou  <julien@danjou.info>
8326
8327         * color.el: Rename various rgb functions to srgb.
8328
8329 2010-11-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8330
8331         * nnimap.el (nnimap-get-groups): Allow non-quoted strings as mailbox
8332         names.
8333
8334 2010-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
8335
8336         * shr.el (shr-insert): Revert last change.
8337         (shr-find-fill-point): Never leave point being at bol;
8338         relax the kinsoku limitation when rendering tables.
8339
8340 2010-11-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8341
8342         * nnmail.el (nnmail-expiry-target-group): Protect against degenerate
8343         results from -accept-article.
8344
8345         * shr-color.el: Require cl when compiling.
8346
8347         * nnheader.el (nnheader-update-marks-actions): Fix typo in last
8348         checkin.
8349
8350         * gnus-art.el (gnus-url-mailto): Unfold URLs before using them.
8351
8352         * nnimap.el (nnimap-request-set-mark): Add is "+", not "-".
8353
8354         * gnus-sum.el (gnus-summary-push-marks-to-backend): Use 'set instead of
8355         'add and 'delete to set backend marks.
8356
8357         * nnmaildir.el (nnmaildir-request-set-mark): Be explicit about 'set.
8358
8359         * nnheader.el (nnheader-update-marks-actions): Refactor out.
8360
8361         * nntp.el (nntp-request-set-mark): Use it.
8362
8363         * nnfolder.el (nnfolder-request-set-mark): Ditto.
8364
8365         * nnml.el (nnml-request-set-mark): Ditto.
8366
8367         * nnimap.el (nnimap-last-response-string): Remove the unfolding -- it
8368         introduces regressions in article selection.
8369         (nnimap-find-uid-response): New function.
8370         (nnimap-request-accept-article): Use the UID returned, if any.
8371         (nnimap-request-move-article): Use the UID returned, if any.
8372         (nnimap-get-groups): Reimplement to work with folded lines.
8373         (nnimap-find-uid-response): The UID is the last element in the list.
8374         (nnimap-request-set-mark): Extend syntax with 'set.
8375
8376         * nnml.el (nnml-request-set-mark): Ditto.
8377
8378         * nnfolder.el (nnfolder-request-set-mark): Ditto.
8379
8380         * nntp.el (nntp-request-set-mark): Ditto.
8381
8382 2010-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
8383
8384         * message.el (message-called-interactively-p): A temporary macro.
8385         (message-goto-body): Use it temporarily.
8386
8387 2010-11-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8388
8389         * nnimap.el (nnimap-unfold-quoted-lines): Refactor out.
8390         (nnimap-last-response-string): Unfold quoted lines, if they exist.
8391         (nnimap-last-response-string): Fix last unfolding fix.
8392
8393 2010-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
8394
8395         * shr.el (shr-insert): Fix the way to fold lines.
8396
8397 2010-11-25  Julien Danjou  <julien@danjou.info>
8398
8399         * shr-color.el (shr-color->hexadecimal): Use color-rgb->hex.
8400
8401         * color.el: Rename from color-lab.el
8402         (color-rgb->hex): Add.
8403         (color-complement): Add.
8404         (color-complement-hex): Add.
8405
8406         * gnus-sum.el (gnus-summary-widget-forward): Add, and bind to [tab].
8407
8408 2010-11-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8409
8410         * shr-color.el (shr-color-visible): Don't bug out if the color names
8411         don't exist.
8412
8413 2010-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
8414
8415         * mml.el (mml-preview): Make sure to bind gnus-displaying-mime to nil,
8416         assuming that article displaying or another mml-preview may be
8417         interrupted for an error or for the like.
8418
8419         * shr.el (shr-get-background): Fix argument name.
8420
8421 2010-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8422
8423         * gnus-cache.el (gnus-summary-insert-cached-articles): Use it.
8424
8425         * gnus-sum.el (gnus-summary-include-articles): New function.
8426
8427         * message.el (message-goto-body): called-interactively-p needs a
8428         parameter, so use `any'.
8429
8430         * nnimap.el (nnimap-request-move-article): It's no longer necessary to
8431         clear marks before moving, since they're synced from the Gnus side
8432         first.
8433
8434         * gnus-sum.el (gnus-summary-push-marks-to-backend): New function.
8435         (gnus-summary-move-article): Copy over all marks before moving, so that
8436         IMAP doesn't think a new article has arrived.
8437
8438 2010-11-24  Julien Danjou  <julien@danjou.info>
8439
8440         * shr.el (shr-insert-background-overlay): Fix typo.
8441         (shr-render-td): Copy the background before rendering.
8442
8443         * shr-color.el (shr-color-visible): Fix docstring.
8444
8445         * shr.el (shr-tag-table): Add bgcolor support.
8446         (shr-render-td): Add bgcolor support.
8447         (shr-get-background): Add.
8448         (shr-insert-foreground-overlay): Use shr-get-background.
8449
8450         * message.el (message-goto-body): Use called-interactively-p.
8451         (message-in-body-p): message-goto-body returns point.
8452
8453 2010-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8454
8455         * mm-util.el (mm-enable-multibyte): Use `to' instead of t.  This fixes
8456         Fixes something or other in Emacs 23, and is backwards compatible.
8457
8458         * message.el (message-goto-body): Remove the <#secure special-casing,
8459         which is too special.
8460
8461         * shr.el (shr-parse-style): Drop !important from styles.
8462
8463 2010-11-24  Daniel Schoepe  <daniel.schoepe@googlemail.com>  (tiny change)
8464
8465         * gnus-sum.el (gnus-summary-articles-in-thread): Fix a bug that causes
8466         this function to return incorrect results when calling it with an
8467         explicit article argument different from
8468         (gnus-summary-article-number).
8469
8470 2010-11-24  Julien Danjou  <julien@danjou.info>
8471
8472         * shr.el (shr-insert-color-overlay): Replace deprecated syntax.
8473         (shr-tag-body): Add background support.
8474         (shr-descend): Add background support.
8475         (shr-tag-title): Add.
8476
8477         * shr-color.el (shr-color-visible): Really return original background
8478         if fixed.
8479
8480 2010-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8481
8482         * shr.el (shr-color-check): Protect against non-existent color names.
8483
8484 2010-11-24  Julien Danjou  <julien@danjou.info>
8485
8486         * color-lab.el: Require 'cl when compiling.
8487
8488         * shr.el (shr-insert-color-overlay): Remove specific rgb() check.
8489
8490         * shr-color.el (shr-color->hexadecimal): Only return the hexadecimal
8491         matched part.
8492
8493         * color-lab.el: Fix all expt calls to use float type.
8494
8495 2010-11-24  Katsumi Yamaoka  <yamaoka@jpl.org>
8496
8497         * shr.el (shr-insert-color-overlay): Pass rgb(rrr, ggg, bbb) type color
8498         expression to shr-color-check as is.
8499
8500         * shr-color.el (shr-color->hexadecimal): Ignore case of color names.
8501
8502         * color-lab.el: Add coding cookie.
8503         (float-pi): Use eval-and-compile.
8504
8505         * dgnushack.el (dgnushack-compile): Exclude shr-color.el from being
8506         compiled for Emacsen having no `libxml-parse-html-region' support.
8507
8508 2010-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8509
8510         * shr.el (shr-insert-color-overlay): Split stuff like
8511         "#444444 !important" to find the real color.
8512         (shr-tag-font): Resurrect shr-tag-font again, since it's needed to
8513         parse <font color="red"> entries.
8514
8515 2010-11-23  Andrew Cohen  <cohen@andy.bu.edu>
8516
8517         * nnheader.el (nnheader-parse-head): Bug fix.  Properly position
8518         point when parsing headers.
8519
8520         * nnspool.el (nnspool-insert-nov-head): Bug fix.  Make sure point
8521         is positioned properly when parsing headers.
8522
8523 2010-11-23  Julien Danjou  <julien@danjou.info>
8524
8525         * color-lab.el (boundp): Bind float-pi for Emacs < 23.3.
8526
8527         * shr-color.el (shr-color->hexadecimal): Add support for color names.
8528
8529         * shr.el (shr-parse-style): Replace \n with space in style parsing.
8530
8531         * shr-color.el (shr-color-hsl-to-rgb-fractions):
8532         Use shr-color-hue-to-rgb.
8533         (shr-color->hexadecimal): Call shr-color-hsl-to-rgb-fractions.
8534
8535 2010-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8536
8537         * shr.el (shr-color->hexadecimal): Autoload.
8538         (shr-descend): Add color to all tags.
8539
8540 2010-11-22  Julien Danjou  <julien@danjou.info>
8541
8542         * shr.el (shr-tag-color-check): Convert colors to hexadecimal with
8543         shr-color->hexadecimal.
8544
8545         * shr-color.el (shr-color->hexadecimal): Add converting functions for
8546         RGB() or HSL() color representation.
8547
8548         * shr.el (shr-tag-font): Add.
8549         (shr-tag-color-check): New function to get better colors.
8550         (shr-tag-insert-color-overlay): Factorize code between tag-font and
8551         tag-span.
8552
8553         * shr-color.el: New file.
8554
8555         * color-lab.el: New file.
8556
8557         * gnus-art.el (gnus-url-mailto): Do not downcase args.
8558
8559 2010-11-21  Andrew Cohen  <cohen@andy.bu.edu>
8560
8561         * nnir.el: Fix typo in comments.
8562         (nnir-run-imap): Simplify code.  No need to reverse artlist.
8563         (nnir-run-gmane): Use nnir-tmp-buffer for web results.
8564
8565 2010-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8566
8567         * gnus-srvr.el (gnus-server-show-server): New command and keystroke.
8568
8569         * nnimap.el (nnimap-get-capabilities): Refactor out.
8570         (nnimap-open-connection): Re-request capabilities after STARTTLS.
8571
8572 2010-11-21  Ralf Angeli  <angeli@caeruleus.net>
8573
8574         * mm-uu.el (mm-uu-type-alist): Prevent spurious empty line from
8575         appearing when `mm-uu-hide-markers' is nil.
8576
8577 2010-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8578
8579         * nnimap.el (nnimap-unselect-group): Make into its own function.
8580         (nnimap-request-rename-group): Unselect group before renaming.
8581         This had gotten lost somewhere.
8582         (nnimap-request-accept-article): Keep track of examined groups, and
8583         unselect the group before APPENDing to read-only groups.
8584         (nnimap-request-move-article): Clear flags before moving so that they
8585         can be re-set later.
8586
8587 2010-11-20  Katsumi Yamaoka  <yamaoka@jpl.org>
8588
8589         * gnus-gravatar.el (gnus-gravatar-transform-address): Decode name again.
8590         (gnus-gravatar-insert): Put avatar always in the beginning of the field.
8591
8592 2010-11-19  Katsumi Yamaoka  <yamaoka@jpl.org>
8593
8594         * gnus-art.el (gnus-mime-display-single):
8595         * gnus-html.el (gnus-html-wash-images, gnus-html-prefetch-images):
8596         * mm-decode.el (mm-shr): Assume that gnus-inhibit-images may be a group
8597         parameter.
8598
8599 2010-11-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8600
8601         * shr.el (shr-table-horizontal-line): Rename from shr-table-line.
8602         (shr-table-vertical-line): New variable.
8603         (shr-insert-table): Use it.
8604
8605 2010-11-18  Katsumi Yamaoka  <yamaoka@jpl.org>
8606
8607         * gnus-html.el (gnus-html-wash-images): Don't display images if
8608         gnus-inhibit-images is non-nil; register displayer for cid images.
8609         (gnus-html-display-image): Work for cid image.
8610         (gnus-html-insert-image): Allow arguments.
8611         (gnus-html-put-image): Inhibit read-only.
8612         (gnus-html-prefetch-images): Don't prefetch images if
8613         gnus-inhibit-images is non-nil.
8614
8615 2010-11-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8616
8617         * shr.el (shr-put-image): Break lines when inserting big pictures.
8618
8619 2010-11-17  Daniel Dehennin  <daniel.dehennin@baby-gnu.org>
8620
8621         * mml2015.el (mml2015-epg-encrypt): Fix two cons with missing
8622         sender, thanks Katsumi Yamaoka.
8623
8624 2010-11-17  Andrew Cohen  <cohen@andy.bu.edu>
8625
8626         * nnir.el (nnir-run-imap): Reverse the article list for each group
8627         rather than the whole list.
8628
8629 2010-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
8630
8631         * shr.el (shr-image-displayer): Protect function against non-existent
8632         image source.
8633
8634         * gnus-art.el (gnus-inhibit-images): New user option.
8635         (gnus-mime-display-single): Don't display image if it is non-nil.
8636
8637         * mm-decode.el (mm-shr): Bind shr-inhibit-images to the value of
8638         gnus-inhibit-images.
8639
8640         * shr.el (shr-image-displayer): New function.
8641         (shr-tag-img): Use it.
8642
8643 2010-11-16  Daniel Dehennin  <daniel.dehennin@baby-gnu.org>
8644
8645         * mml2015.el (mml2015-epg-sign): Use From header.
8646
8647 2010-11-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8648
8649         * gnus-html.el (gnus-html-wash-images): Register a displayer.
8650
8651         * gnus-util.el (gnus-find-text-property-region): Return markers.
8652
8653         * shr.el (shr-tag-img): Put a displayer in the text property.
8654
8655         * gnus-util.el (gnus-find-text-property-region): New utility function.
8656
8657         * gnus-html.el (gnus-html-display-image): Make the alt optional.
8658         (gnus-html-show-images): Remove.
8659
8660         * gnus-art.el (gnus-article-show-images): New, more general function.
8661
8662         * gnus-html.el: Use image-url instead of gnus-image-url to unify the
8663         image url text properties.
8664
8665         * shr.el: Ditto.
8666
8667         * gnus-agent.el (gnus-agentize): Only do the auto-agentizing if
8668         gnus-agent-auto-agentize-methods is set.  Which it isn't.
8669
8670 2010-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
8671
8672         * gnus-sum.el (gnus-summary-move-article): Fix `while' loop to make it
8673         work for two or more articles.
8674
8675 2010-11-12  Katsumi Yamaoka  <yamaoka@jpl.org>
8676
8677         * gnus-art.el (article-treat-non-ascii): Keep text properties not to
8678         divide an image that's in an html article to two or more when washing
8679         non-ASCII characters in alt text of it.
8680
8681 2010-11-11  Katsumi Yamaoka  <yamaoka@jpl.org>
8682
8683         * mm-decode.el (mm-dissect-buffer): Pass sender's mail address to
8684         smime-decrypt-region using function argument.
8685         (mm-possibly-verify-or-decrypt, mm-dissect-multipart): Relay it.
8686
8687         * mm-view.el (mm-view-pkcs7, mm-view-pkcs7-decrypt): Relay it.
8688
8689         * smime.el (smime-decrypt-region): Catch it.
8690
8691 2010-11-11  Stefan Monnier  <monnier@iro.umontreal.ca>
8692
8693         * smime.el (smime-mode-map): Move initialization into declaration.
8694         (gnus-run-mode-hooks): Don't autoload.
8695         (smime-mode): Use define-derived-mode.
8696
8697 2010-11-11  Glenn Morris  <rgm@gnu.org>
8698
8699         * smime.el (from): Restrict declaration to XEmacs.
8700
8701         * nnir.el (gnus-group-topic-name): Autoload.
8702
8703 2010-11-11  Katsumi Yamaoka  <yamaoka@jpl.org>
8704
8705         * shr.el (shr-insert): Don't break long line if it is because of
8706         kinsoku-bol characters in the line end.
8707
8708 2010-11-11  Andrew Cohen  <cohen@andy.bu.edu>
8709
8710         * nnir.el (nnir-request-move-article): Fix to provide original group
8711         and subject.
8712         (nnir-warp-to-article): Don't fail on articles whose headers haven't
8713         been retrieved.
8714
8715         * gnus-sum.el (gnus-summary-move-article): Use original group and
8716         subject for virtual articles such as those in an nnir summary buffer.
8717
8718 2010-11-11  Katsumi Yamaoka  <yamaoka@jpl.org>
8719
8720         * gnus-art.el (article-treat-non-ascii): Make it work for XEmacs (at
8721         least 21.5).
8722
8723         * smime.el (from): Declare it again for XEmacs.
8724
8725 2010-11-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8726
8727         * message.el (message-resend): Don't disable encoding unless it's
8728         already encoded.
8729
8730         * nnimap.el (nnimap-update-info): Fix problem with `g' chopping of
8731         low-numbered articles.
8732
8733 2010-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
8734
8735         * rfc2047.el (rfc2047-syntax-table): Simplify.
8736
8737         * lpath.el: Fbind set-char-table-range for XEmacs 21.4 and SXEmacs 22.1.
8738
8739         * gnus-art.el (article-treat-non-ascii): Use put-char-table instead of
8740         set-char-table-range for XEmacs.
8741
8742 2010-11-10  Glenn Morris  <rgm@gnu.org>
8743
8744         * time-date.el (time-to-seconds): Always an alias on Emacs,
8745         never a real function.
8746         (with-no-warnings): Remove compat stub, now unused.
8747         (time-less-p): Doc fix.
8748         (time-to-number-of-days): Simplify.
8749
8750         * smime.el (from): Remove unused declaration.
8751
8752         * gnus-util.el (with-no-warnings): Remove compat stub, now unused.
8753         (gnus-float-time): On Emacs, always an alias.
8754
8755         * ecomplete.el (with-no-warnings): Remove compat stub, now unused.
8756         (ecomplete-add-item): Use float-time on Emacs, else gnus-float-time.
8757
8758 2010-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
8759
8760         * dgnushack.el: Don't use ignore-errors in the top level form since it
8761         is unavailable in XEmacs even if cl is loaded.
8762
8763         * gnus-art.el (org-entities): Declare it to silence the byte compiler.
8764
8765 2010-11-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8766
8767         * shr.el (browse-url-mailto): Autoload.
8768
8769         * gnus-art.el (article-treat-non-ascii): New command and keystroke.
8770
8771         * message.el (message-subject-trailing-was-ask-regexp): A ] in a []
8772         regexp doesn't need quoting.
8773
8774 2010-11-09  Sven Joachim  <svenjoac@gmx.de>
8775
8776         * message.el (message-subject-trailing-was-ask-regexp)
8777         (message-subject-trailing-was-regexp): Match was: in addition to was.
8778
8779 2010-11-09  Glenn Morris  <rgm@gnu.org>
8780
8781         * nnbabyl.el (nnbabyl-request-move-article, nnbabyl-delete-mail)
8782         (nnbabyl-check-mbox): Use point-at-bol.
8783
8784 2010-11-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8785
8786         * shr.el (shr-browse-url): Call browse-url-mailto for mailto: links.
8787
8788         * message.el (message-mailto): New function.
8789         (message-mailto): Should accept other parameters.
8790         (message-mailto): Remove since it duplicates browse-url-mailto
8791         functionality.
8792
8793 2010-11-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8794
8795         * gnus-start.el (gnus-get-unread-articles): Ignore totally non-existent
8796         methods.
8797         (gnus-read-active-file): Ditto.
8798
8799         * gnus-group.el (gnus-group-read-ephemeral-group): Remove superfluous
8800         ": " from the prompt.
8801         (gnus-group-make-group): Ditto.
8802
8803 2010-11-07  Glenn Morris  <rgm@gnu.org>
8804
8805         * gnus-bookmark.el (gnus-bookmark-bmenu-show-infos)
8806         (gnus-bookmark-kill-line): Use point-at-eol.
8807
8808 2010-11-07  Katsumi Yamaoka  <yamaoka@jpl.org>
8809
8810         * gnus-gravatar.el (gnus-gravatar-transform-address): No need to skip
8811         asterisks in From header.
8812
8813 2010-11-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8814
8815         * gnus-ems.el (gnus-put-image): Use a blank text as the insertion
8816         string to avoid making the From headers syntactically invalid.
8817
8818         * message.el (message-send-mail): Don't insert courtesy messages if the
8819         message already has List-Post and List-ID messages.
8820
8821 2010-11-06  Glenn Morris  <rgm@gnu.org>
8822
8823         * gnus-art.el (gnus-treat-article): Give dynamic local variables
8824         `condition', `type', `length' a prefix.
8825         (gnus-treat-predicate): Update for above name changes.
8826
8827 2010-11-06  Andrew Cohen  <cohen@andy.bu.edu>
8828
8829         * nnir.el (gnus-summary-nnir-goto-thread): Remove function and
8830         binding.  Handled by `gnus-summary-refer-thread' instead.
8831         (nnir-warp-to-article): New backend function.
8832
8833         * nnimap.el (nnimap-request-thread): Force dependency updating.
8834
8835         * gnus-sum.el (gnus-fetch-headers): Allow more arguments.
8836         (gnus-summary-refer-thread): Rework to improve thread-referral.
8837
8838         * gnus-int.el (gnus-warp-to-article): New function.
8839
8840         * gnus-sum.el (gnus-summary-article-map): Bind it.
8841
8842 2010-11-04  Andrew Cohen  <cohen@andy.bu.edu>
8843
8844         * nnir.el (gnus-summary-nnir-goto-thread): Limit work done by
8845         gnus-summary-refer-thread.
8846
8847         * gnus-sum.el (gnus-build-all-threads): Force updating of dependency
8848         headers.
8849         (gnus-summary-limit-include-thread): Prevent articles in thread from
8850         being cut in gnus-cut-threads.
8851         (gnus-summary-refer-thread): Limit retrieved headers to those in
8852         thread.
8853
8854 2010-11-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8855
8856         * message.el (message-send-mail): Use the value of
8857         message-courtesy-message from the message buffer.
8858
8859         * gnus-html.el (gnus-html-browse-url): Implement mailto: URLs.
8860
8861         * shr.el (shr-browse-url): Implement mailto: URLs.
8862
8863         * gnus-sum.el (gnus-summary-show-article): Take `t' as the arg to mean
8864         "raw".
8865
8866         * nnimap.el (nnimap-find-article-by-message-id): Don't EXAMINE a group
8867         if it's already selected.
8868
8869         * mm-decode.el (mm-save-part): Put the entire path in the `M-n' slot.
8870
8871 2010-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
8872
8873         * shr.el (shr-tag-img): Use string-width and truncate-string-to-width
8874         to measure the length and truncate alt text.
8875
8876 2010-11-03  Glenn Morris  <rgm@gnu.org>
8877
8878         * nndiary.el (nndiary-generate-nov-databases-1)
8879         (nndiary-generate-active-info): Rename dynamic variable `files' to
8880         something less generic.
8881
8882 2010-11-03  Andrew Cohen  <cohen@andy.bu.edu>
8883
8884         * nnir.el (nnir-request-move-article): Call the underlying backend to
8885         move articles from nnir.
8886
8887 2010-11-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8888
8889         * gnus-cite.el (gnus-article-natural-long-line-p): Remove.
8890
8891 2010-11-02  Julien Danjou  <julien@danjou.info>
8892
8893         * nnir.el: Remove wais support.
8894
8895 2010-11-02  Glenn Morris  <rgm@gnu.org>
8896
8897         * gnus-html.el: Reorder requirements to quieten compiler.
8898
8899 2010-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
8900
8901         * gnus-cite.el (gnus-article-fill-cited-article): Make fill work
8902         properly for XEmacs as well.
8903         (gnus-article-fill-cited-article, gnus-article-foldable-buffer)
8904         (gnus-article-natural-long-line-p): Use window-width rather than
8905         frame-width.
8906
8907 2010-11-01  Andrew Cohen  <cohen@andy.bu.edu>
8908
8909         * nnir.el (nnir-run-gmane): Inhibit demon.  Return nil if no messages.
8910         (nnir-read-parms): Don't modify query.
8911         (nnir-run-query): Add ability to search topic on current line.
8912         (nnir-get-active): Clean up.
8913
8914 2010-11-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8915
8916         * gnus-cite.el (gnus-article-foldable-buffer): Protect against
8917         degenerate articles.
8918
8919         * gnus-sum.el (gnus-print-buffer): Rewrite to use with-temp-buffer.
8920         (gnus-print-buffer): Just print the buffer as is, without any copying
8921         to a buffer and then re-highlighting.
8922
8923         * nnimap.el (nnimap-request-group): Store the new updated info.
8924         (nnimap-request-group): Select the group when we don't know whether it
8925         exists or not.
8926
8927         * gnus-start.el (gnus-ask-server-for-new-groups): Return the new
8928         groups.
8929
8930         * gnus-group.el (gnus-group-find-new-groups): Display all the new
8931         groups.
8932
8933         * gnus-start.el (gnus-find-new-newsgroups): Return the list of new
8934         groups.
8935
8936         * gnus-cite.el (gnus-article-fill-cited-article): Minimize the
8937         long-lines case by only filling the long lines.
8938
8939         * nnimap.el (nnimap-parse-line): Don't bug out oddly formed replies
8940         (bug#7311).
8941
8942 2010-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
8943
8944         * shr.el: No need to declare `declare-function' since shr.el is for
8945         only Emacsen that provide `libxml-parse-html-region'.
8946
8947         * dgnushack.el: Remove `(defvar iswitchb-temp-buflist)', that is
8948         effective only in a file it is referred to.
8949
8950 2010-11-01  Glenn Morris  <rgm@gnu.org>
8951
8952         * mm-util.el (gnus-completing-read): Autoload.
8953         (mm-read-coding-system): Simplify Emacs definition.
8954
8955         * nnmail.el (gnus-activate-group):
8956         * nnimap.el (gnutls-negotiate):
8957         * nntp.el (netrc-parse): Fix declarations.
8958
8959 2010-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
8960
8961         * gnus-util.el (gnus-string-match-p): New function, that is an alias to
8962         string-match-p in Emacs >=23.
8963
8964         * gnus-msg.el (gnus-configure-posting-styles):
8965         * nnir.el (nnir-run-gmane): Use gnus-string-match-p.
8966
8967 2010-11-01  Glenn Morris  <rgm@gnu.org>
8968
8969         * nnir.el (declare-function): Add compat stub.
8970         (mm-url-insert, mm-url-encode-www-form-urlencoded): Declare.
8971         (nnir-run-gmane): Require 'mm-url.
8972
8973         * mm-util.el (mm-string-to-multibyte): Simplify.
8974
8975         * shr.el (declare-function): Add compat stub.
8976         (url-cache-create-filename): Declare.
8977         (mm-disable-multibyte, widget-convert-button): Autoload.
8978
8979         * smime.el (ldap-search): Declare.
8980         (smime-cert-by-ldap-1): Require ldap on Emacs.
8981
8982         * nnimap.el: Require nnmail, and gnus-sum when compiling.
8983         (nnimap-keepalive): Use gnus-float-time.
8984
8985         * mail-source.el (nnheader-message, gnus-float-time): Autoload.
8986         (mail-source-delete-crash-box): Use gnus-float-time.
8987
8988         * gnus-dired.el (gnus-completing-read): Autoload.
8989
8990         * mm-view.el (gnus-rescale-image): Autoload.
8991
8992         * mm-decode.el (gnus-completing-read, gnus-blocked-images): Autoload.
8993
8994         * gnus.el (gnus-sloppily-equal-method-parameters): Move defn before use.
8995
8996         * sieve-manage.el: Require 'cl when compiling.
8997
8998         * gnus-util.el (iswitchb-read-buffer): Declare rather than autoload.
8999         (gnus-iswitchb-completing-read): Require iswitchb.
9000         (gnus-select-frame-set-input-focus): Silence compiler.
9001
9002 2010-10-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9003
9004         * message.el (message-subject-trailing-was-query): Change default to t,
9005         since I think that's what most people want.
9006
9007         * nnimap.el (nnimap-request-accept-article): Erase buffer before
9008         appending for easier debugging.
9009         (nnimap-wait-for-connection): Take a regexp.
9010         (nnimap-request-accept-article): Wait for the continuation line before
9011         sending anything unless we're streaming.
9012
9013         * gnus-art.el (gnus-treat-article): Only inhibit body washing, and
9014         leave the header washing to take place.
9015
9016 2010-10-31  Daniel Dehennin  <daniel.dehennin@baby-gnu.org>
9017
9018         * gnus-msg.el (gnus-configure-posting-styles): Permit the use of
9019         regular expression match and replace in posting styles.
9020
9021 2010-10-31  Andrew Cohen  <cohen@andy.bu.edu>
9022
9023         * nnir.el (gnus-group-make-nnir-group, nnir-run-query): Allow searching
9024         an entire server.
9025         (nnir-get-active): New function.
9026         (nnir-run-imap): Use it.
9027         (nnir-run-gmane): Who knew, gmane search returns an article score!
9028
9029         * gnus-srvr.el (gnus-server-mode-map): Add binding "G" to search the
9030         server on the current line with nnir.
9031
9032 2010-10-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9033
9034         * gnus-cite.el (gnus-article-foldable-buffer): Refactor out.
9035         (gnus-article-foldable-buffer): Don't fold regions that have a ragged
9036         left edge.
9037         (gnus-article-foldable-buffer): Skip past the prefix when determining
9038         raggedness.
9039
9040         * gnus-sum.el (gnus-summary-show-article): Add `C-u C-u g' for showing
9041         the raw article, and change `C-u g' to show the article without doing
9042         treatments.
9043
9044         * gnus-art.el (gnus-mime-display-alternative): Actually pass the type
9045         on to `gnus-treat-article'.
9046         (gnus-inhibit-article-treatments): New variable.
9047
9048         * gnus.el: Autoload gnus-article-fill-cited-long-lines.
9049
9050         * gnus-art.el (gnus-treatment-function-alist): Have
9051         gnus-treat-fill-long-lines point to gnus-article-fill-cited-long-lines.
9052         (gnus-treat-fill-long-lines): Change default to fill all text/plain
9053         sections.
9054
9055         * gnus-cite.el (gnus-article-fill-cited-article): Remove unused `force'
9056         parameter.
9057         (gnus-article-fill-cited-long-lines): New function.
9058         (gnus-article-fill-cited-article): Allow filling only long sections.
9059
9060         * shr.el (shr-find-fill-point): Don't break lines between punctuation
9061         and non-punctuation (like after the apostrophe in "'We").
9062
9063         * gnus-sum.el (gnus-summary-select-article): Make sure
9064         gnus-original-article-buffer is alive.
9065
9066         * nndoc.el (nndoc-dissect-buffer): Reverse the order of the articles to
9067         reflect the order they're in in the digest.
9068
9069         * gnus.el (gnus-group-startup-message): Move point to the start of the
9070         buffer.
9071
9072         * nnimap.el (nnimap-capability): New function.
9073         (nnimap-open-connection): Only send AUTHENTICATE PLAIN if LOGINDISABLED
9074         is set.
9075
9076 2010-10-31  David Engster  <dengste@eml.cc>
9077
9078         * nnmairix.el (nnmairix-get-valid-servers): Return list of strings to
9079         conform with changes to gnus-completing-read.
9080
9081 2010-10-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9082
9083         * shr.el (shr-tag-img): Output "*" instead of "[img]".
9084
9085 2010-10-30  Andrew Cohen  <cohen@andy.bu.edu>
9086
9087         * nnir.el: Move defvar, defcustom around to keep file organized
9088         and keep byte-compiler quiet.
9089         (nnir-read-parms): Accept search-engine as arg.
9090         (nnir-run-query): Pass search-engine as arg.
9091         (nnir-search-engine): Remove.
9092
9093 2010-10-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9094
9095         * shr.el (shr-generic): The text nodes should be text, not :text.
9096
9097         * nnir.el (nnir-search-engine): Ressurect variable, since it's used
9098         later in the file.
9099
9100 2010-10-30  Andrew Cohen  <cohen@andy.bu.edu>
9101
9102         * nnir.el: General clean up.  Allow searching with multiple engines.
9103         Allow separate extra-parameters for each engine.
9104         Batch queries when possible.
9105         (nnir-imap-default-search-key, nnir-method-default-engines):
9106         Add customize interface.
9107         (nnir-run-gmane): New engine.
9108         (nnir-engines): Use it.  Qualify all prompts with engine name.
9109         (nnir-search-engine): Remove global variable.
9110         (nnir-run-hyrex): Restore for now.
9111         (nnir-extra-parms, nnir-search-history): New variables.
9112         (gnus-group-make-nnir-group): Use them.
9113         (nnir-group-server): Remove in favor of gnus-group-server.
9114         (nnir-request-group): Avoid searching twice.
9115         (nnir-sort-groups-by-server): New function.
9116
9117 2010-10-30  Julien Danjou  <julien@danjou.info>
9118
9119         * gnus-group.el: Remove gnus-group-fetch-control.
9120
9121         * gnus-start.el (gnus-find-new-newsgroups):
9122         Remove gnus-check-first-time-used.
9123
9124         * gnus.el: Remove gnus-backup-default-subscribed-newsgroups.
9125
9126 2010-10-30  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
9127
9128         * nnimap.el (nnimap-update-info): Allow 'ticked and other flags to be
9129         set on groups that don't have \* permanentflags.
9130
9131 2010-10-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9132
9133         * shr.el (shr-tag-span): Drop colorization of regions since we don't
9134         control the background color.
9135         (shr-tag-img): Ignore very small web bug type images.
9136         (shr-put-image): Add help-echo alt texts to the images.
9137         (shr-tag-video): Show the video poster image.
9138
9139 2010-10-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9140
9141         * shr.el (shr-table-depth): New variable.
9142         (shr-tag-table-1): Only insert the images after the top-level table.
9143
9144         * nnimap.el (nnimap-split-incoming-mail): Fix typo.
9145
9146         * gnus-util.el (gnus-list-memq-of-list): New function.
9147
9148         * nnimap.el (nnimap-split-incoming-mail): Note that the INBOX has been
9149         selected.
9150         (nnimap-unsplittable-articles): New slot.
9151         (nnimap-new-articles): Use it.
9152
9153 2010-10-29  Stephen Berman  <stephen.berman@gmx.net>  (tiny change)
9154
9155         * gnus-group.el (gnus-group-get-new-news-this-group): Don't have point
9156         move to the previous line on `M-g'.
9157
9158 2010-10-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9159
9160         * gnus-msg.el (gnus-inews-do-gcc): Don't have the backends do the slow
9161         *-request-group, which seems unnecessary.
9162
9163         * nnimap.el (nnimap-quote-specials): Function copied over from
9164         imap.el.
9165         (nnimap-open-connection): Use AUTHENTICATE PLAIN on servers that say
9166         they support that.  Suggested by Tom Regner.
9167
9168 2010-10-29  Julien Danjou  <julien@danjou.info>
9169
9170         * gnus-sum.el (gnus-summary-delete-marked-as-read): Remove obsolete
9171         defalias.
9172         (gnus-summary-delete-marked-with): Remove obsolete defalias.
9173
9174         * gnus.el: Remove `gnus-nntp-service' variable.
9175         (gnus-secondary-servers): Make obsolete.
9176         (gnus-nntp-server): Make obsolete.
9177
9178         * gnus-start.el (gnus-1): Remove x-splash calls.
9179
9180         * gnus-ems.el (gnus-x-splash): Remove.
9181
9182         * gnus.el (gnus-group-startup-message): Simplify/update code.
9183
9184         * gnus-xmas.el (gnus-xmas-define): Remove unused gnus-characterp
9185         definition.
9186
9187         * gnus-group.el (gnus-group-make-tool-bar): Check for display graphic
9188         capability before doing anything.
9189         (gnus-group-insert-group-line): Remove useless
9190         gnus-group-remove-excess-properties.
9191
9192 2010-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
9193
9194         * gnus-art.el (gnus-article-goto-part): Work for article narrowed by ^L.
9195
9196 2010-10-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9197
9198         * gnus-sum.el (gnus-summary-rescan-group): Try to restore the window
9199         config after reselecting.
9200
9201 2010-10-28  Julien Danjou  <julien@danjou.info>
9202
9203         * shr.el (shr-put-image): Use point even if only inserting text.
9204         (shr-put-image): Save excursion when inserting alt text on non-graphic
9205         display, so the behavior is the same when we are on a graphic display.
9206
9207         * nnir.el (nnir-run-swish-e): Remove hyrex support.
9208
9209 2010-10-28  Katsumi Yamaoka  <yamaoka@jpl.org>
9210
9211         * gnus-art.el (gnus-article-jump-to-part): Error on no part; fix prompt.
9212         (gnus-mime-copy-part): Check coding system, not charset.
9213         (gnus-mime-view-part-externally): Never remove part.
9214         (gnus-mime-view-part-internally): Don't remove part here.
9215         (gnus-article-part-wrapper): Make sure MIME tag is visible.
9216         (gnus-article-goto-part): Go to displayed or preferred subpart if it is
9217         multipart/alternative.
9218
9219         * mm-decode.el (mm-display-part): Take optional arg `force'.
9220
9221 2010-10-26  Julien Danjou  <julien@danjou.info>
9222
9223         * gnus-group.el (gnus-group-default-list-level): Add this function to
9224         compute the default list level.
9225         (gnus-group-default-list-level): Add possibility to use a function.
9226
9227 2010-10-27  Katsumi Yamaoka  <yamaoka@jpl.org>
9228
9229         * mm-decode.el (mm-shr): Add undisplayer to MIME handle.
9230
9231         * gnus-group.el (gnus-group-completing-read)
9232         (gnus-read-ephemeral-bug-group): Replace replace-regexp-in-string with
9233         gnus-replace-in-string.
9234
9235 2010-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
9236
9237         * shr.el (shr-tag-div): Add.
9238
9239         * lpath.el: Fbind current-idle-time for XEmacs 21.4 and SXEmacs 22.1.
9240
9241 2010-10-25  Julien Danjou  <julien@danjou.info>
9242
9243         * gnus-util.el: Remove `gnus-with-local-quit'.
9244
9245         * gnus-demon.el (gnus-demon-init): Use run-with-idle-timer function.
9246
9247 2010-10-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9248
9249         * gnus-sum.el (gnus-summary-select-article): Fix type error in checking
9250         the original article buffer.
9251
9252 2010-10-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9253
9254         * nnimap.el (nnimap-request-head): New function.
9255         (nnimap-request-move-article): Try to be slightly faster by not
9256         requesting the entire message when moving.
9257         (nnimap-transform-headers): Don't bug out on bodiless articles.
9258         (nnimap-send-command): Have no outstanding messages if the IMAP server
9259         doesn't support streaming.
9260         (nnimap-transform-headers): Fold {quoted} strings more sloppily.
9261
9262 2010-10-24  Julien Danjou  <julien@danjou.info>
9263
9264         * message.el (message-default-headers): Fix type.
9265
9266 2010-10-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9267
9268         * gnus-html.el (gnus-html-prefetch-images): Decode entities before
9269         prefetching images.
9270
9271         * gnus-sum.el (gnus-group-make-articles-read): Propagate marks to the
9272         backend for unknown groups.  This is mainly useful for nnimap groups.
9273
9274         * gnus-agent.el (gnus-agent-fetch-group): Don't download stuff if the
9275         group isn't covered by the agent.
9276
9277 2010-10-22  Andrew Cohen  <cohen@andy.bu.edu>
9278
9279         * nnir.el (nnir-method-default-engines): New variable.
9280         (nnir-run-query): Use it.
9281         (nnir-group-mode-hook): Remove key binding and move to gnus-group.el.
9282         (gnus-summary-nnir-goto-thread): Change group if needed.
9283
9284         * gnus-group.el (gnus-group-group-map): Add key binding for
9285         gnus-group-make-nnir-group.
9286
9287 2010-10-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9288
9289         * shr.el (shr-tag-object): Add.
9290
9291         * gnus-sum.el (gnus-summary-select-article): Make sure we have the
9292         original article buffer live.
9293         (gnus-summary-select-article-buffer):
9294         Mention gnus-widen-article-buffer.
9295
9296 2010-10-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9297
9298         * shr.el (shr-tag-strong): Add.
9299
9300 2010-10-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9301
9302         * gnus-group.el (gnus-group-completing-read): Remove all newlines from
9303         group names.  They mess up the group buffer badly.
9304
9305         * shr.el (shr-tag-img): Don't bug out on images that don't have a SRC.
9306
9307         * gnus-group.el (gnus-group-mark-group): Use gnus-group-position-point
9308         instead of the summary one.
9309
9310 2010-10-22  Katsumi Yamaoka  <yamaoka@jpl.org>
9311
9312         * mml.el (mml-preview): Work properly when editing article.
9313
9314         * gnus-start.el (gnus-read-active-file-1): Don't add method to
9315         gnus-have-read-active-file if it's already been in.
9316
9317 2010-10-22  Tom Tromey  <tromey@redhat.com>
9318
9319         * gnus-group.el (gnus-group-unsubscribe-group): Fix args passed to
9320         gnus-group-completing-read.
9321
9322 2010-10-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9323
9324         * message.el (message-mode-map): Don't bind M-; to comment region, to
9325         allow the global comment-dwim to work.
9326
9327 2010-10-21  Julien Danjou  <julien@danjou.info>
9328
9329         * message.el (message-setup-1): Allow message-default-headers to be a
9330         function.
9331
9332 2010-10-21  Katsumi Yamaoka  <yamaoka@jpl.org>
9333
9334         * shr.el (shr-tag-table): Simplify.
9335
9336 2010-10-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9337
9338         * gnus-html.el (gnus-html-prefetch-images): Only prefetch http images
9339         to avoid trying to snarf invalid stuff.
9340
9341         * gnus-sum.el (gnus-summary-edit-article-done): Bind free variable.
9342
9343         * gnus.el (gnus-message-archive-group): Quote value.
9344         (gnus-message-archive-group): Mark as changed.
9345
9346         * shr.el (shr-add-font): Don't put the font properties on the newline
9347         or the indentation.
9348
9349         * message.el (message-fix-before-sending): Change options when sending
9350         non-printable characters.
9351
9352         * gnus.el (gnus-message-archive-method): Change the default to
9353         monthly outgoing groups.
9354
9355         * gnus-sum.el (gnus-summary-edit-article-done): Try to replace articles
9356         that have gotten new numbers.
9357
9358         * nnimap.el (nnimap-request-replace-article): New function.
9359
9360 2010-10-21  Katsumi Yamaoka  <yamaoka@jpl.org>
9361
9362         * nnrss.el (nnrss-wash-html-in-text-plain-parts): Remove.
9363         (nnrss-request-article): Don't use special html washing code.
9364
9365 2010-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
9366
9367         * shr.el (shr-tag-table): Remove useless nconc.
9368
9369 2010-10-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9370
9371         * gnus-art.el (article-wash-html): Simplify and remove the charset
9372         stuff.  Use the normal html rendering code instead of the special html
9373         washing code.
9374
9375         * mm-view.el (mm-text-html-renderer-alist): Add the `shr' and
9376         `gnus-w3m' symbols.
9377         (mm-text-html-washer-alist): Remove.
9378
9379         * mm-decode.el (mm-inline-text-html-renderer): Remove.
9380         (mm-inline-media-tests): Remove use.
9381         (mm-text-html-renderer): Change default to the `shr' symbol.
9382
9383         * mm-view.el (mm-inline-text-html): Remove use.
9384
9385         * gnus-art.el (gnus-blocked-images): New function.  Allow the
9386         `gnus-blocked-images' to be a function.
9387         (gnus-article-wash-function): Remove.
9388
9389 2010-10-20  Julien Danjou  <julien@danjou.info>
9390
9391         * spam.el (spam-list-of-processors): Mark as obsolete.
9392
9393         * nnimap.el (nnimap-request-article): Fix BODYSTRUCTURE retrieval.
9394         (nnimap-insert-partial-structure): Fix boundary detection.
9395
9396 2010-10-20  Andreas Seltenreich  <seltenreich@gmx.de>
9397
9398         * gnus-draft.el (gnus-draft-check-draft-articles): Don't unnecessarily
9399         run file-truename on remote files.  This can be expensive and even
9400         prevent one from editing drafts if some unrelated buffer has a stale
9401         connection.
9402
9403 2010-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
9404
9405         * shr.el (shr-find-fill-point): Shorten line if the preceding char is
9406         kinsoku-eol regardless of shr-kinsoku-shorten.
9407         (shr-tag-table-1): Rename from shr-tag-table; make it a subroutine.
9408         (shr-tag-table): Support caption, thead, and tfoot.
9409
9410 2010-10-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9411
9412         * shr.el (shr-find-fill-point): Don't leave blanks at the start of some
9413         lines.
9414         (shr-save-contents): New command and keystroke.
9415
9416         * nndoc.el (nndoc-type-alist): Add git support.
9417         (nndoc-git-type-p): New function.
9418         (nndoc-transform-git-article): Ditto.
9419         (nndoc-transform-git-headers): Ditto.
9420         (nndoc-transform-git-headers): Generate Subject headers.
9421
9422         * shr.el (shr-parse-style): New function.
9423         (shr-tag-span): Ditto.
9424
9425         * nnmairix.el (nnmairix-summary-mode-hook): Move nnmairix's `$' command
9426         to `G G' to avoid collisions.
9427
9428 2010-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
9429
9430         * shr.el: Load kinsoku if necessary.
9431         (shr-kinsoku-shorten): New internal variable.
9432         (shr-find-fill-point): Make kinsoku shorten text line if
9433         shr-kinsoku-shorten is bound to non-nil.
9434         (shr-tag-table): Bild shr-kinsoku-shorten to t; refer to
9435         shr-indentation too when testing if table is wider than frame width.
9436         (shr-insert-table): Use `string-width' instead of `length' to measure
9437         text width.
9438         (shr-insert-table-ruler): Make sure indentation is done at bol.
9439
9440 2010-10-19  Stefan Monnier  <monnier@iro.umontreal.ca>
9441
9442         * nnimap.el (nnimap-request-move-article, nnimap-parse-line)
9443         (nnimap-process-expiry-targets): Use unibyte for buffers that hold
9444         undecoded network data.
9445
9446 2010-10-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9447
9448         * gnus-agent.el (gnus-agent-toggle-plugged): Use the right minor mode
9449         name in the mode line spec so that the mode line menu works
9450         (bug#2431).
9451
9452         * message.el (message-get-reply-headers): If we're fed `to-address',
9453         then always use that.
9454
9455         * gnus-art.el (gnus-article-make-menu-bar): The article/group menus
9456         aren't so wide as to need to switch off the edit menu.
9457
9458         * gnus-delay.el (gnus-delay-article): Remove superfluous `group'
9459         binding.  Suggested by Leo <sdl.web@gmail.com> (bug#6613).
9460
9461         * nnimap.el (nnimap-request-group): Don't SELECT the group twice on
9462         `M-g'.
9463         (nnimap-update-info): Update flags/read marks even if \* isn't part of
9464         the permanent marks.
9465
9466 2010-10-18  Andrew Cohen  <cohen@andy.bu.edu>
9467
9468         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
9469         Splitting according to references/in-reply-to obeys the ignore-groups
9470         variable, while splitting by sender and subject do not.
9471
9472 2010-10-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9473
9474         * gnus-art.el (gnus-article-dumbquotes-map): Make into a char/string
9475         alist, so that we can look for non-Unicode chars.
9476         (article-translate-strings): Allow both character and string maps.
9477
9478 2010-10-18  Katsumi Yamaoka  <yamaoka@jpl.org>
9479
9480         * shr.el (shr-insert): Don't insert space behind a wide character
9481         categorized as kinsoku-bol, or between characters both categorized as
9482         nospace.
9483
9484 2010-10-16  Andrew Cohen  <cohen@andy.bu.edu>
9485
9486         * gnus-sum.el (gnus-summary-refer-thread): Bug fix.  Add the thread
9487         headers to gnus-newsgroup-headers.
9488
9489 2010-10-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9490
9491         * shr.el (shr-tag-img): Don't align images -- since we're not
9492         rescaling, this often leads to ugly displays.
9493
9494 2010-10-15  Andrew Cohen  <cohen@andy.bu.edu>
9495
9496         * gnus-sum.el (gnus-summary-refer-thread): Unconditionally ignore
9497         duplicates.
9498
9499 2010-10-15  Kan-Ru Chen  <kanru@kanru.info>  (tiny change)
9500
9501         * gnus-diary.el (gnus-diary-check-message): Fix gnus-completing-read
9502         call.
9503
9504 2010-10-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9505
9506         * gnus.el: Autoload gnus-html-show-images.
9507
9508         * nnimap.el: Use nnheader-message throughout.
9509
9510         * shr.el (shr-tag-img): Ignore images with no data.
9511
9512 2010-10-15  Julien Danjou  <julien@danjou.info>
9513
9514         * mml.el (mml-generate-mime-1): Add `mml-enable-flowed' variable to add
9515         a possibility to disable format=flow encoding when using hard newlines.
9516
9517 2010-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
9518
9519         * shr.el (shr-insert): Remove space inserted before or after a
9520         breakable character or at the beginning or the end of a line.
9521         (shr-find-fill-point): Do kinsoku; find the second best point or give
9522         it up if there's no breakable point.
9523
9524 2010-10-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9525
9526         * nnimap.el (nnimap-open-connection): Message when opening connection
9527         for debugging purposes.
9528
9529         * gnus-art.el (gnus-article-setup-buffer): Set article mode truncation
9530         on every setup buffer call to allow this to change from article to
9531         article.
9532
9533         * shr.el (shr-tag-table): Experimental feature: Truncate lines in
9534         buffers where we have a wide table.
9535
9536 2010-10-14  Andrew Cohen  <cohen@andy.bu.edu>
9537
9538         * gnus-sum.el (gnus-summary-refer-thread): Implement a version that
9539         uses *-request-thread.
9540
9541 2010-10-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9542
9543         * nnimap.el (nnimap-open-connection): Remove %s from openssl
9544         incantation, which is no longer valid.
9545
9546 2010-10-14  Julien Danjou  <julien@danjou.info>
9547
9548         * shr.el: Fix defcustom type (char -> character).
9549
9550 2010-10-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9551
9552         * nnimap.el (nnimap-open-connection): tls-program should be a list of
9553         programs.
9554
9555 2010-10-14  Julien Danjou  <julien@danjou.info>
9556
9557         * shr.el (shr-tag-a): Use url-link as widget type.
9558
9559         * gnus-group.el (gnus-group-insert-group-line): Fix group argument to
9560         `gnus-group-get-icon'.
9561
9562 2010-10-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9563
9564         * nnimap.el (nnimap-close-server): Forget the nnimap data on close.
9565         This should make server editing work better.
9566
9567         * shr.el (shr-find-fill-point): Don't inloop on indented text.
9568
9569         * tls.el (tls-program): Remove spurious %s from openssl.
9570
9571         * nnimap.el (nnimap-open-connection): Fix open-tls-stream call.
9572         (nnimap-parse-flags): Fix regexp.
9573
9574         * shr.el (shr-find-fill-point): Use a filling algorithm that should
9575         probably work for CJVK text, too.
9576
9577         * nnimap.el (nnimap-extend-tls-programs): Remove.
9578         (nnimap-open-connection): Bind STARTTLS to openssl explicitly.
9579
9580         * tls.el (tls-starttls-switches): Remove starttls hack.
9581         (open-tls-stream): Ditto.
9582         (tls-find-starttls-argument): Ditto.
9583
9584 2010-10-13  Julien Danjou  <julien@danjou.info>
9585
9586         * nnimap.el (nnimap-parse-flags): Be more strict when looking for FETCH
9587         responses.
9588
9589 2010-10-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9590
9591         * mm-decode.el (mm-shr): Allow use from non-Gnus users.
9592
9593         * gnus-spec.el (gnus-parse-simple-format): princ doesn't really insert
9594         anything in Emacs.
9595
9596         * shr.el (shr-current-column): Remove buggy and unnecessary function.
9597
9598 2010-10-13  Julien Danjou  <julien@danjou.info>
9599
9600         * shr.el (shr-width): Make shr-width a defcustom with default to
9601         fill-column.
9602         (shr-tag-img): Use shr-width rather than fill-column.
9603
9604 2010-10-13  Katsumi Yamaoka  <yamaoka@jpl.org>
9605
9606         * dgnushack.el (byte-optimize-apply):
9607         * gnus-dired.el (gnus-dired-attach): Silence XEmacs 21.5 when compiling.
9608
9609         * gnus-gravatar.el (gnus-gravatar-transform-address): Adjust avatars'
9610         position when (X-)Faces exist.
9611         (gnus-treat-from-gravatar, gnus-treat-mail-gravatar): Force displaying
9612         avatars when called interactively.
9613
9614 2010-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
9615
9616         * gnus-gravatar.el (gnus-gravatar-too-ugly): Don't test if
9617         gnus-article-x-face-too-ugly is bound.
9618
9619 2010-10-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9620
9621         * rfc2231.el (rfc2231-parse-string): Ignore repeated parts.
9622
9623         * nnimap.el (nnimap-request-rename-group): Unselect by selecting a
9624         mailbox that doesn't exist.
9625
9626 2010-10-12  Julien Danjou  <julien@danjou.info>
9627
9628         * shr.el (shr-tag-img): Encode URL properly when retrieving.
9629         (shr-get-image-data): Encode URL properly when fetching from cache.
9630         (shr-tag-img): Use aligned-to spaces to align correctly images.
9631
9632         * gnus-gravatar.el (gnus-gravatar-insert): Check if buffer is alive
9633         before inserting the Gravatar.
9634
9635         * shr.el (shr-tag-img): Add align attribute support for <img>.
9636
9637 2010-10-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9638
9639         * gnus-gravatar.el (gnus-art): Require.
9640
9641         * gnus-sum.el (gnus-summary-mark-as-unread-forward)
9642         (gnus-summary-mark-as-unread-backward, gnus-summary-mark-as-unread):
9643         Remove long obsoleted functions.
9644
9645 2010-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
9646
9647         * lpath.el: Fbind gnutls-negotiate for Emacs 22 and XEmacsen.
9648
9649         * nnimap.el (gnutls-negotiate): Silence the byte compiler.
9650
9651         * gnus-art.el, gnus-cache.el, gnus-fun.el, gnus-group.el:
9652         * gnus-picon.el, gnus-spec.el, gnus-sum.el, gnus-util.el, gnus.el:
9653         * hashcash.el, imap.el, mail-source.el, message.el, mm-bodies.el:
9654         * mm-decode.el, mm-extern.el, mm-util.el, mm-view.el, mml-smime.el:
9655         * mml.el, mml1991.el, mml2015.el, nnfolder.el, nnheader.el, nnmail.el:
9656         * nnmaildir.el, nnrss.el, nntp.el, pgg-parse.el, pgg.el, rfc1843.el:
9657         * sieve-manage.el, smime.el, spam.el:
9658         Fix comment for declare-function.
9659
9660 2010-10-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9661
9662         * nnimap.el (nnimap-request-rename-group): Select group read-only
9663         before renaming it.
9664
9665         * shr.el (shr-insert): Fix up the white space only regexp.
9666
9667         * nnimap.el (nnimap-transform-split-mail): Not all articles have
9668         bodies.  Protect against this.  Reported by Michael Welsh Duggan.
9669
9670         * shr.el (shr-current-column): New function.
9671         (shr-find-fill-point): New function.
9672
9673 2010-10-11  Michael Welsh Duggan  <md5i@md5i.com>  (tiny change)
9674
9675         * sieve-manage.el (sieve-manage-open): Allow port names as well as port
9676         numbers.
9677
9678 2010-10-11  Julien Danjou  <julien@danjou.info>
9679
9680         * shr.el (shr-hr-line): Add.
9681         (shr-tag-hr): Use shr-hr-line to specify which character to use to
9682         display hr lines.
9683         (shr-max-columns): Do not change state to nil if we just inserting
9684         spaces.
9685
9686 2010-10-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9687
9688         * gnus-topic.el (gnus-topic-read-group): If after the last group,
9689         select the last group.
9690
9691 2010-10-11  Teodor Zlatanov  <tzz@lifelogs.com>
9692
9693         * gnus-int.el (gnus-run-hook-with-args): Autoload from gnus-util.el.
9694
9695 2010-10-10  Dan Nicolaescu  <dann@ics.uci.edu>
9696
9697         * dig.el (dig-mode-map): Declare and define in one step.
9698
9699 2010-10-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9700
9701         * nnimap.el (nnimap-update-qresync-info): \Flagged messages are read
9702         for Gnus.
9703         (nnimap-retrieve-group-data-early): utf7-encode the group parameters.
9704         (nnimap-update-qresync-info): Mark \Seen articles as read.
9705
9706         * gnus-sum.el (gnus-summary-set-local-parameters): Ignore the `active'
9707         non-variable, too.
9708
9709         * nnimap.el (nnimap-open-connection): Use gnutls STARTTLS, if
9710         available.
9711         (nnimap-update-info): Rely more on the current active than the param
9712         active to avoid marking articles as read too much.
9713
9714         * auth-source.el (auth-source-create): Use (user-login-name) for the
9715         user name default.
9716
9717         * nnimap.el (nnimap-update-info): If the server doesn't return any
9718         useful info, just use the previous info.
9719         (nnimap-update-info): Prefer old info over start-article.
9720         (nnimap-update-qresync-info): Finish implementing QRESYNC.
9721
9722 2010-10-10  Andrew Cohen  <cohen@andy.bu.edu>
9723
9724         * nnir.el (autoload): Clean up autoloads.
9725         (nnir-imap-default-search-key): Rename from nnir-imap-search-field.
9726         Use key rather than value.
9727         (nnir-imap-search-other): New variable.
9728         (nnir-read-parm): Use it.
9729         (nnir-imap-expr-to-imap): Use %S rather than imap-quote-specials.
9730         (gnus-summary-nnir-goto-thread): Modify to work with imap.
9731
9732 2010-10-10  Stefan Monnier  <monnier@iro.umontreal.ca>
9733
9734         * nnimap.el (nnimap-wait-for-response): If the user hits `C-g', kill
9735         the process, too.
9736
9737 2010-10-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9738
9739         * spam.el (gnus-summary-mode-map): Bind to "$".
9740         Suggested by Russ Allbery.
9741
9742         * shr.el: Rework the way things are indented by <li> slightly.
9743
9744         * gnus.el (gnus-group-set-parameter): Fix typo.
9745
9746         * nnimap.el: Start implementing QRESYNC support.
9747
9748 2010-10-09  Julien Danjou  <julien@danjou.info>
9749
9750         * nnir.el (nnir-engines): Fix too many arguments.
9751
9752 2010-10-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9753
9754         * nnmail.el (nnmail-expiry-target-group): Say that every expiry target
9755         group is the "last", so that the backends like nnfolder actually save
9756         their folders.
9757
9758         * nnimap.el (nnimap-open-connection): If we have gnutls loaded, then
9759         try to use that for the tls stream.
9760         (nnimap-retrieve-group-data-early): Rework the marks code to heed
9761         UIDVALIDITY and find out which groups are read-only and not.
9762         (nnimap-get-flags): Use the same marks parsing code as the rest of
9763         nnimap.
9764
9765 2010-10-09  Julien Danjou  <julien@danjou.info>
9766
9767         * nnir.el (nnir-read-parm): Fix call to gnus-completing-read.
9768
9769         * gnus-gravatar.el (gnus-gravatar-transform-address): Error errors when
9770         retrieving gravatars.
9771
9772         * shr.el (shr-table-corner): Add.
9773         (shr-table-line): Add.
9774         (shr-insert-table-ruler): Use the above defcustoms to insert tables.
9775
9776 2010-10-08  Julien Danjou  <julien@danjou.info>
9777
9778         * mm-decode.el (mm-text-html-renderer): Add mm-shr in choice list.
9779
9780 2010-10-08  Teodor Zlatanov  <tzz@lifelogs.com>
9781
9782         * gnus-util.el (gnus-alist-pull): Rename `gnus-pull'.
9783
9784         * gnus-sum.el (gnus-mark-article-as-unread)
9785         (gnus-summary-mark-article-as-unread, gnus-summary-remove-bookmark)
9786         (gnus-summary-set-bookmark): Use it.
9787
9788         * gnus-msg.el (gnus-setup-message): Use it.
9789
9790         * gnus-demon.el (gnus-demon-remove-handler): Use it.
9791
9792         * gnus.el (gnus-group-remove-parameter): Use it.
9793
9794         * gnus-group.el (gnus-group-make-web-group): Use it.
9795
9796         * gnus-demon.el (gnus-demon-remove-handler): Use it.
9797
9798         * nnregistry.el: Update docs to mention manual.
9799
9800         * gnus-registry.el: Update docs to mention nnregistry.el.
9801         (gnus-registry-initialize): Don't install nnregistry refer method
9802         automatically.
9803         (gnus-registry-install-nnregistry): Remove it.
9804
9805 2010-10-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9806
9807         * shr.el (shr-insert): Don't insert double spaces.
9808
9809 2010-10-08  Katsumi Yamaoka  <yamaoka@jpl.org>
9810
9811         * gnus-gravatar.el (gnus-treat-from-gravatar)
9812         (gnus-treat-mail-gravatar): Bind gnus-gravatar-too-ugly to nil when
9813         called interactively.
9814
9815         * gnus-art.el (gnus-mime-view-part-externally)
9816         (gnus-mime-view-part-internally): Make predicate function passed to
9817         gnus-mime-view-part-as-type assume argument is a mime type, not a list
9818         of a mime type.
9819
9820         * shr.el (shr-table-widths): Don't use cl function `reduce'.
9821
9822 2010-10-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9823
9824         * shr.el (require): Require cl when compiling.
9825         (shr-tag-hr): New function.
9826
9827         * nnimap.el (nnimap-update-info): Remove double setting of high.
9828         (nnimap-update-info): Don't ignore groups that have no UIDNEXT.
9829         This makes nnimap work properly on Courier again.
9830
9831         * gnus.el (gnus-carpal): The carpal mode has been removed, but define
9832         the variable for backwards compatibility.
9833
9834         * mm-decode.el (mm-save-part): If given a non-directory result, expand
9835         the file name before using to avoid setting mm-default-directory to
9836         nil.
9837
9838         * gnus-start.el (gnus-get-unread-articles): Require gnus-agent before
9839         bidning gnus-agent variables.
9840
9841         * shr.el (shr-render-td): Use a cache for the table rendering function
9842         to avoid getting an exponential rendering behavior in nested tables.
9843         (shr-insert): Rework the line-breaking algorithm.
9844         (shr-insert): Don't leave trailing spaces.
9845         (shr-insert-table): Also insert empty TDs.
9846         (shr-tag-blockquote): Ensure paragraphs after </ul>.
9847
9848 2010-10-07  Stefan Monnier  <monnier@iro.umontreal.ca>
9849
9850         * gnus-sum.el (gnus-number): Rename from `number'.
9851         (gnus-article-marked-p, gnus-summary-limit-to-display-predicate)
9852         (gnus-summary-limit-children): Update uses correspondingly.
9853
9854 2010-10-07  Katsumi Yamaoka  <yamaoka@jpl.org>
9855
9856         * gnus-gravatar.el (gnus-gravatar-too-ugly): New user option.
9857         (gnus-gravatar-transform-address): Don't show avatars of people of
9858         which mail addresses match gnus-gravatar-too-ugly.
9859
9860 2010-10-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9861
9862         * shr.el (shr-table-widths): Expand TD elements to fill available
9863         space.
9864
9865 2010-10-07  Julien Danjou  <julien@danjou.info>
9866
9867         * nnimap.el (nnimap-request-rename-group): Add this method.
9868
9869 2010-10-07  Katsumi Yamaoka  <yamaoka@jpl.org>
9870
9871         * gnus-html.el (gnus-html-schedule-image-fetching): Remove function
9872         name from XEmacs' function-arglist.
9873
9874         * gnus-gravatar.el (gnus-gravatar-insert): Don't add properties to
9875         gravatar under XEmacs.
9876
9877 2010-10-07  Teodor Zlatanov  <tzz@lifelogs.com>
9878
9879         * auth-source.el: Update docs with TODO items.
9880
9881         * gnus-sync.el: Update docs to explain state and plans.
9882
9883         * gnus-int.el (gnus-after-set-mark-hook, gnus-before-update-mark-hook):
9884         Hooks for mark updates.
9885         (gnus-request-set-mark, gnus-request-update-mark): Use them.
9886
9887         * gnus-util.el (gnus-run-hooks-with-args): Convenience function to run
9888         hooks with arguments, which is needed for mark update hooks.
9889
9890 2010-10-06  Julien Danjou  <julien@danjou.info>
9891
9892         * gnus.el (gnus-expand-group-parameter): Only return and act on what
9893         was matched.
9894
9895         * sieve-manage.el: Update example in `Commentary'.
9896
9897         * sieve.el (sieve-open-server): Use sieve-manage-authenticate.
9898
9899         * sieve-manage.el (sieve-manage-open): Use sieve-manage-default-port,
9900         not 2000.
9901         (sieve-manage-authenticate): Re-add function.
9902
9903 2010-10-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9904
9905         * shr.el (shr-insert): Get 'space transition right.
9906         (shr-render-td): Only delete space at the end of the TD.
9907
9908         * nnimap.el (nnimap-open-connection): Prepare to support
9909         open-gnutls-stream.
9910
9911         * shr.el: Rearrange function order to be more logical.
9912
9913 2010-10-06  Julien Danjou  <julien@danjou.info>
9914
9915         * nnrss.el (nnrss-check-group): Remove 404 URL in comment.
9916         (nnrss-discover-feed): Remove 404 URL in docstring.
9917
9918         * nnir.el: Fix Swish-E URL.
9919         Fix Namazu URL.
9920
9921         * message.el (message-change-subject): Remove 404 URL in a comment.
9922
9923 2010-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
9924
9925         * gnus-art.el (gnus-mime-view-part-as-type): Make it work when being
9926         called interactively.
9927
9928         * gnus-util.el (gnus-remove-if): Allow hash table.
9929         (gnus-remove-if-not): New function.
9930
9931         * gnus-art.el (gnus-mime-view-part-as-type):
9932         * gnus-score.el (gnus-summary-score-effect):
9933         * gnus-sum.el (gnus-read-move-group-name):
9934         Replace remove-if-not with gnus-remove-if-not.
9935
9936         * gnus-group.el (gnus-group-completing-read):
9937         Regard collection as a hash table if it is not a list.
9938
9939 2010-10-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9940
9941         * shr.el (shr-render-td): Allow blank/missing <TD>s.
9942
9943         * shr.el: Document the table-rendering algorithm.
9944
9945 2010-10-05  Katsumi Yamaoka  <yamaoka@jpl.org>
9946
9947         * dgnushack.el (dgnushack-compile): Exclude shr.el from being compiled
9948         for Emacsen having no `libxml-parse-html-region' support.
9949
9950 2010-10-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9951
9952         * gnus-html.el (gnus-html-schedule-image-fetching): Protect against
9953         invalid URLs.
9954
9955         * shr.el (shr-tag-img): Shorten ALT texts and allow them to be
9956         line-broken.
9957         (shr-tag-img): Ignore image fetching errors.
9958         (shr-overlays-in-region): Compute overlay positions correctly.
9959
9960         * mm-decode.el (mm-shr): Require shr.
9961
9962         * gnus-art.el (gnus-blocked-images): Move variable here.
9963
9964         * shr.el (shr-insert-table): Bind free variable.
9965
9966         * mm-decode.el (mm-shr): Bind shr-content-function.
9967
9968         * shr.el (shr-content-function): New variable.
9969
9970         * gnus-sum.el (gnus-article-sort-by-most-recent-date): New function,
9971         added for symmetry.
9972
9973         * nnir.el (nnir-retrieve-headers): Don't bug out on invalid data.
9974
9975         * gnus-group.el (gnus-group-make-group): Doc fix.
9976
9977         * nnimap.el (nnimap-request-newgroups): Return success.
9978
9979         * shr.el (shr-find-elements): New function.
9980         (shr-tag-table): Put all the images after the table.
9981         (shr-tag-table): Really inhibit images inside the table.
9982         (shr-collect-overlays): Copy over overlays from the TD elements to the
9983         main document.
9984
9985         * mm-decode.el (mm-shr): Bind shr-blocked-images to
9986         gnus-blocked-images.
9987
9988 2010-10-05  Julien Danjou  <julien@danjou.info>
9989
9990         * sieve-manage.el (sieve-sasl-auth): Use auth-source to authenticate.
9991
9992         * gnus-html.el (gnus-html-wash-images): Rescale image from cid too.
9993         (gnus-html-maximum-image-size): Add this function.
9994         (gnus-html-put-image): Use gnus-html-maximum-image-size.
9995
9996         * sieve-manage.el (sieve-manage-capability): Do not bug out when the
9997         server-value of the capability is nil.
9998
9999 2010-10-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10000
10001         * shr.el (shr-tag-em): Add <EM> tag.
10002
10003 2010-10-05  Florian Ragwitz  <rafl@debian.org>  (tiny change)
10004
10005         * sieve-manage.el (sieve-manage-default-stream): Make default stream
10006         customizable.
10007
10008         * gnus-html.el (gnus-html-wash-tags): Decode URL entities to avoid
10009         handing broken links to browse-url.
10010
10011 2010-10-05  Julien Danjou  <julien@danjou.info>
10012
10013         * gnus-util.el (gnus-emacs-completing-read)
10014         (gnus-iswitchb-completing-read): Use autoload rather than require.
10015
10016 2010-10-05  Katsumi Yamaoka  <yamaoka@jpl.org>
10017
10018         * lpath.el: Fbind libxml-parse-html-region and shr-insert-document for
10019         Emacs 22 and XEmacs; fbind help-function-arglist for XEmacs 21.4 and
10020         SXEmacs; fbind ido-completing-read, and bind iswitchb-mode and
10021         iswitchb-temp-buflist for XEmacs.
10022
10023         * gnus-util.el (gnus-completing-read-function): Exclude
10024         gnus-icompleting-read and gnus-ido-completing-read from candidates for
10025         XEmacs since iswitchb.el is very old and ido.el is unavailable in
10026         XEmacs.
10027
10028         * gnus-registry.el (gnus-registry-install-nnregistry): Rewrite so as
10029         not to use `delete-dups' that is unavailable in XEmacs 21.4.
10030
10031         * gnus-html.el: Don't require help-fns under XEmacs.
10032         (gnus-html-schedule-image-fetching): Work for XEmacs.
10033
10034         * mm-decode.el (mm-shr): Decode contents by charset.
10035
10036 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10037
10038         * nnimap.el (nnimap-open-connection): Give an error if nnimap-stream is
10039         unknown.
10040
10041         * shr.el (shr-tag-blockquote): Ensure paragraph after quote, too.
10042         (shr-get-image-data): Ensure against the cache file missing.
10043
10044         * nnimap.el (nnimap-finish-retrieve-group-infos): Message while waiting
10045         for data.
10046
10047         * spam-report.el (spam-report-url-ping-plain): Don't query about
10048         killing the process.
10049
10050         * shr.el (shr-render-td): Protect against too-wide text.
10051
10052 2010-10-04  Julien Danjou  <julien@danjou.info>
10053
10054         * mml-smime.el (mml-smime-openssl-encrypt-query): Fix choices.
10055         (mml-smime-openssl-sign-query): Fix gnus-completing-read call.
10056
10057         * gravatar.el (gravatar-retrieved): Kill buffer when gravatar has been
10058         retrieved.
10059
10060 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10061
10062         * shr.el (browse-url): Require.
10063         (shr-ensure-paragraph): Don't insert a new newline after empty-ish
10064         lines.
10065         (shr-show-alt-text, shr-browse-image): New commands.
10066         (shr-browse-url, shr-copy-url): New commands.
10067
10068         * gnus-sum.el (gnus-widen-article-window): New variable.
10069         (gnus-summary-select-article-buffer): Use it.
10070
10071         * message.el (message-idna-to-ascii-rhs-1): Don't bug out on addresses
10072         without @ signs.
10073
10074 2010-10-04  Michael Welsh Duggan  <md5i@md5i.com>  (tiny change)
10075
10076         * nnir.el (nnir-run-imap): Remove spurious space in search string.
10077
10078 2010-10-04  Julien Danjou  <julien@danjou.info>
10079
10080         * gnus-util.el (gnus-emacs-completing-read): Mapcar collection to list,
10081         for XEmacs.
10082
10083 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10084
10085         * gnus-salt.el: Remove all gnus-carpal stuff -- it's not useful.
10086
10087         * nnimap.el (nnimap-open-connection): Allow tls as a synonym for ssl.
10088         (nnimap-close-server): Implement.
10089
10090         * dgnushack.el (iswitchb): Require to shut up the compiler.
10091
10092         * shr.el (shr-ensure-paragraph): Fix the non-empty line case.
10093         (shr-insert): Tweak line breaking.
10094         (shr-insert): Handle <pre> better.
10095         (shr-tag-li): Get <li> indentation right.
10096         (shr-tag-li): Get <li> indentation even righter.
10097         (shr-tag-blockquote): Ensure paragraph start.
10098         (shr-make-table): Tweak table generation.
10099         (shr-make-table): Fix typo.
10100
10101         * shr.el: Implement table rendering.
10102
10103 2010-10-04  Julien Danjou  <julien@danjou.info>
10104
10105         * gnus-html.el (gnus-html-put-image): Fix resize image code.
10106
10107 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10108
10109         * shr.el (shr-insert): Use string anchors instead of line anchors.
10110
10111 2010-10-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10112
10113         * shr.el: Add headings.
10114         (shr-ensure-paragraph): Actually work.
10115         (shr-tag-li): Make <ul> prettier.
10116         (shr-insert): Get white space at the beginning/end of elements right.
10117         (shr-tag-p): Collapse subsequent <p>s.
10118         (shr-ensure-paragraph): Don't insert double line feeds after blank
10119         lines.
10120         (shr-insert): \t is also space.
10121         (shr-tag-s): Fix "s" tag name function.
10122         (shr-tag-s): Fix face prop name.
10123
10124 2010-10-03  Julien Danjou  <julien@danjou.info>
10125
10126         * gnus-html.el (gnus-html-put-image): Use gnus-rescale-image.
10127
10128         * mm-view.el (gnus-window-inside-pixel-edges): Add autoload for
10129         gnus-window-inside-pixel-edges.
10130
10131         * gnus-ems.el (gnus-window-inside-pixel-edges): Move from gnus-html to
10132         gnus-ems.
10133
10134         * mm-view.el (mm-inline-image-emacs): Support image resizing.
10135
10136         * gnus-util.el (gnus-rescale-image): Add generic gnus-rescale-image
10137         function.
10138
10139         * mm-decode.el (mm-inline-large-images): Enhance defcustom and add
10140         resize choice.
10141
10142 2010-10-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10143
10144         * shr.el (shr-tag-p): Don't insert newlines on empty tags at the
10145         beginning of the buffer.
10146
10147         * gnus-sum.el (gnus-summary-select-article-buffer): Really select the
10148         article buffer again.
10149
10150         * shr.el (shr-tag-p): Don't insert newlines at the start of the buffer.
10151
10152         * mm-decode.el (mm-shr): Narrow before inserting, so that shr can know
10153         when it's at the start of the buffer.
10154
10155         * shr.el (shr-tag-blockquote): Convert name.
10156         (shr-rescale-image): Use the right image-size variant.
10157
10158         * gnus-sum.el (gnus-summary-select-article-buffer): If the article
10159         buffer isn't shown, then select the current article first instead of
10160         bugging out.
10161         (gnus-summary-select-article-buffer): Show both the article and summary
10162         buffers again.
10163
10164         * shr.el (shr-fontize-cont): Protect against regions with no text.
10165         Rename tag functions to shr-tag-* for enhanced security.
10166         (shr-tag-ul, shr-tag-ol, shr-tag-li, shr-tag-br): New functions.
10167
10168 2010-10-03  Chong Yidong  <cyd@stupidchicken.com>
10169
10170         * shr.el (shr-insert):
10171         * pop3.el (pop3-movemail):
10172         * gnus-html.el (gnus-html-wash-tags): Don't use plusp, as cl may not be
10173         loaded.
10174
10175 2010-10-03  Glenn Morris  <rgm@gnu.org>
10176
10177         * nnmairix.el (nnmairix-replace-illegal-chars): Drop Emacs 20 code.
10178
10179         * smime.el (smime-cert-by-ldap-1): Drop Emacs 21 code.
10180
10181         * gnus-art.el (gnus-next-page-map): Drop Emacs 20 compat cruft.
10182
10183         * gmm-utils.el (gmm-write-region): Drop Emacs 20 compat cruft.
10184
10185         * gnus-util.el (gnus-make-local-hook): Simplify.
10186
10187 2010-10-02  Julien Danjou  <julien@danjou.info>
10188
10189         * gnus-util.el (gnus-iswitchb-completing-read): New function.
10190         (gnus-ido-completing-read): New function.
10191         (gnus-emacs-completing-read): New function.
10192         (gnus-completing-read): Use gnus-completing-read-function.
10193         Add gnus-completing-read-function.
10194
10195 2010-10-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10196
10197         * shr.el (shr-insert-document): Autoload.
10198         (shr-img): Be silent.
10199         (shr-insert): Add a newline after every picture before text.
10200         (shr-add-font): Use overlays for combining faces.
10201         (shr-insert): Pass upwards the text start point.
10202
10203         * mm-decode.el (mm-text-html-renderer): Default to shr.el rendering, if
10204         possible.
10205         (mm-shr): New function.
10206
10207 2010-10-02  Julien Danjou  <julien@danjou.info>
10208
10209         * gnus-gravatar.el (gnus-gravatar-insert): Adjust character where we
10210         should go backward.
10211
10212 2010-10-02  Juanma Barranquero  <lekktu@gmail.com>
10213
10214         * shr.el (shr): Fix typo in provide call.
10215
10216 2010-10-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10217
10218         * shr.el: New file.
10219
10220         * gnus-html.el (gnus-html-schedule-image-fetching): Be silent.
10221
10222         * gnus-topic.el (gnus-topic-move-group): Fix the syntax of the
10223         completing read.
10224
10225 2010-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10226
10227         * gnus-start.el (gnus-check-bogus-newsgroups): Say how many groups
10228         we're being queried about.  Suggested by Dan Jacobson.
10229
10230         * nndoc.el (nndoc-type-alist): Do babyl before mime-parts.
10231         Suggested by Jason Eisner.
10232
10233         * gnus-async.el (gnus-async-delete-prefetched-entry): Remove from hash
10234         table, too.  Suggested by Stefan Wiens.
10235         (gnus-async-prefetched-article-entry): Use intern-soft to avoid growing
10236         the table unnecessary.  Suggested by Stefan Wiens.
10237
10238         * gnus-sum.el (gnus-summary-clear-local-variables): This is probably no
10239         longer needed, and probably doesn't work either, as pointed out by
10240         Stefan Wiens.
10241         (gnus-summary-exit): Remove call to the clearing function.
10242         (gnus-summary-exit-no-update): Ditto.
10243
10244         * gnus-art.el (gnus-summary-save-in-file): Use with-current-buffer
10245         instead of gnus-eval-in-buffer-window to avoid popping up frames.
10246         Reported by Stefan Monnier.
10247         (gnus-summary-save-in-rmail): Ditto.
10248
10249         * gnus-sum.el (gnus-summary-select-article-buffer): Show only the
10250         article buffer, instead of both the article buffer and the summary
10251         buffer.  Sort of suggested by Dan Jacobson.
10252
10253         * gnus-win.el (gnus-buffer-configuration): Add an only-article spec.
10254
10255         * nnmbox.el (nnmbox-read-mbox): Mark buffer for deletion on Gnus exit.
10256         Suggested by Dan Jacobson.
10257
10258         * mm-encode.el (mm-content-transfer-encoding-defaults): Try to make the
10259         documentation clearer.
10260
10261         * message.el (message-shorten-references): Comment on the number "21".
10262         Suggested by Stefan Monnier.
10263
10264         * gnus-sum.el (gnus-summary-scroll-up): Add more documentation.
10265         Suggested by Dan Jacobson.
10266
10267         * gnus.el (gnus-large-newsgroup):
10268         Mention gnus-large-ephemeral-newsgroup.  Suggested by Dan Jacobson.
10269
10270         * gnus-msg.el (gnus-summary-resend-message): When resending, don't
10271         externalize attachments.  Bug reported by Steve Wen.
10272
10273         * gnus.el (gnus-continuum-version): Make inactive, since it doesn't
10274         really message anything to the user.
10275
10276         * nnmail.el (nnmail-article-group): Allow using the fancy split method
10277         directly.
10278
10279         * nnimap.el (nnimap-request-group): Low higher than high to signal no
10280         messages in empty groups.
10281
10282 2010-10-01  Teodor Zlatanov  <tzz@lifelogs.com>
10283
10284         * nnimap.el (nnimap-request-group): Don't bug out when there's an empty
10285         non-UIDNEXT group.
10286
10287 2010-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10288
10289         * gnus-group.el (gnus-group-completing-read): Return the symbol name,
10290         not the value from the collection.
10291
10292         * nnimap.el (nnimap-update-info): Ignore groups that have no UIDNEXT
10293         values.  This sometimes happens on some groups that have no info.
10294         (nnimap-request-newgroups): New function.
10295
10296 2010-10-01  Teodor Zlatanov  <tzz@lifelogs.com>
10297
10298         * gnus-registry.el (gnus-registry-install-nnregistry): Move the feature
10299         check into `gnus-registry-initialize'.
10300         (gnus-registry-initialize): Ditto.
10301         Fix and extend header docs.
10302
10303 2010-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10304
10305         * gnus-html.el (gnus-html-prefetch-images): Adjust regexp to avoid
10306         regexp backtrace overflows.
10307
10308         * nnimap.el (nnimap-extend-tls-programs): Only extend those programs
10309         for starttls that tls.el implements; i.e. openssl.
10310
10311         * tls.el (tls-starttls-switches): Give up on using starttls with
10312         gnutls-cli.
10313         (tls-program): Add --insecure to be consistent with the defaults from
10314         openssl s_client.  Now all three commands are insecure.
10315
10316 2010-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
10317
10318         * lpath.el: Bind completion-styles-alist for XEmacs.
10319
10320         * gravatar.el: Don't load image.el that XEmacs doesn't provide.
10321         (gravatar-create-image): New function that's an alias to
10322         gnus-xmas-create-image, gnus-create-image, or create-image.
10323         (gravatar-data->image): Use it.
10324
10325 2010-09-30  Teodor Zlatanov  <tzz@lifelogs.com>
10326
10327         * gnus-registry.el (gnus-registry-install-nnregistry): New function to
10328         install the nnregistry refer method.
10329         (gnus-registry-install-hooks): Use it.
10330         (gnus-registry-unfollowed-groups): Add nnmairix to the default
10331         unfollowed groups.
10332
10333 2010-09-30  Jose A. Ortega Ruiz  <jao@gnu.org>  (tiny change)
10334
10335         * gnus-sum.el (gnus-summary-show-thread): Skip past invisible text when
10336         expanding threads.
10337
10338 2010-09-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10339
10340         * nnir.el: Use the server names without suffixes (bug#7009).
10341
10342         * nnimap.el (nnimap-open-connection): Reinstate the auto-upgrade from
10343         unencrypted to STARTTLS, if possible.
10344
10345 2010-09-30  Teemu Likonen  <tlikonen@iki.fi>  (tiny change)
10346
10347         * message.el (message-ignored-supersedes-headers): Strip Injection-*
10348         headers before superseding.
10349
10350 2010-09-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10351
10352         * nnrss.el (nnrss-use-local): Add documentation.
10353
10354         * nnimap.el (nnimap-extend-tls-programs): New function.
10355         (nnimap-open-connection): Use tls.el exclusively, and not starttls.el.
10356         (nnimap-wait-for-connection): Accept the greeting from the stupid
10357         output from openssl s_client -starttls, too.
10358
10359         * tls.el (tls-starttls-switches): New variable.
10360         (tls-find-starttls-argument): Use it.
10361         (open-tls-stream): Ditto.
10362
10363         * netrc.el (netrc-credentials): Return the value of the "default" entry.
10364         (netrc-machine): Ditto.
10365
10366         * nnimap.el (nnimap-find-article-by-message-id): Really return the
10367         article number.
10368         (nnimap-split-fancy): New variable.
10369         (nnimap-split-incoming-mail): Use it.
10370
10371         * nntp.el (nntp-server-list-active-group): Document.
10372
10373         * nnimap.el (nnimap-find-article-by-message-id): Use EXAMINE instead of
10374         SELECT to get the message-id.
10375
10376         * mail-source.el (mail-sources): Remove webmail support.
10377         (defvar): Ditto.
10378         (mail-source-fetcher-alist): Ditto.
10379         (mail-source-fetch-webmail): Remove.
10380
10381         * webmail.el: Remove -- doesn't seem relevant any more.
10382
10383         * gnus.el: Fix up make-obsolete-variable declarations throughout.
10384
10385         * nnimap.el (nnimap-request-accept-article): Get the Message-ID without
10386         the \r.
10387
10388 2010-09-30  Julien Danjou  <julien@danjou.info>
10389
10390         * gnus-agent.el (gnus-agent-add-group): Fix call to
10391         gnus-completing-read.
10392
10393 2010-09-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10394
10395         * nndoc.el (nndoc-retrieve-groups): New function.
10396
10397         * nnimap.el (nnimap-split-incoming-mail): If nnimap-split-methods is
10398         `default', use nnmail-split-methods.
10399         (nnimap-request-article): Downcase the NILs so that they are nil.
10400
10401         * gnus-sum.el (gnus-valid-move-group-p): Make sure that `group' is a
10402         symbol.
10403
10404         * nnimap.el (nnimap-open-connection): Revert the auto-network->starttls
10405         code, since if the user has requested network, that's what they ought
10406         to get.
10407         (nnimap-request-set-mark): Erase the buffer before issuing commands.
10408         (nnimap-split-rule): Mark as obsolete.
10409
10410         * pop3.el (pop3-send-streaming-command, pop3-stream-length):
10411         New variable.
10412
10413         * nnimap.el (nnimap-insert-partial-structure): Get the type from the
10414         correct slot, too.
10415
10416 2010-09-29  Julien Danjou  <julien@danjou.info>
10417
10418         * gnus.el (gnus-local-domain): Declare variable obsolete.
10419
10420         * gnus-util.el (gnus-icompleting-read): Require iswitchb.
10421         Fix history computing.
10422         (gnus-ido-completing-read): Require ido.
10423
10424 2010-09-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10425
10426         * gnus-registry.el: Don't prompt on load, which makes it impossible to
10427         build Gnus.
10428
10429         * nnimap.el (nnimap-insert-partial-structure): Be way more permissive
10430         when interpreting the structures.
10431         (nnimap-request-accept-article): Add \r\n to the lines to make this
10432         work with Cyrus.
10433
10434         * nndraft.el (nndraft-request-expire-articles): Use the group name
10435         instead if "nndraft".  Fix found by Nils Ackermann.
10436
10437 2010-09-29  Ludovic Courtès  <ludo@gnu.org>
10438
10439         * nnregistry.el: Add.
10440
10441 2010-09-29  Stefan Monnier  <monnier@iro.umontreal.ca>
10442
10443         * nnmail.el (group, group-art-list, group-art):
10444         Remove unneeded directives.
10445
10446 2010-09-29  Katsumi Yamaoka  <yamaoka@jpl.org>
10447
10448         * mm-util.el (mm-codepage-iso-8859-list, mm-charset-eval-alist)
10449         (mm-mime-charset):
10450         * rfc2047.el (rfc2047-syntax-table):
10451         * utf7.el (utf7-utf-16-coding-system): Comment fix.
10452
10453         * nnrss.el (nnrss-read-server-data, nnrss-read-group-data): Use `load'
10454         rather than `insert-file-contents' and `eval-region'.
10455
10456         * pgg.el (pgg-run-at-time-1): Define it for XEmacs only; fix if/else
10457         construction.
10458
10459         * smime-ldap.el (smime-ldap-search): Remove Emacs 21 compatible code.
10460
10461         * time-date.el: No need to require cl for Emacs 21.
10462
10463 2010-09-29  Julien Danjou  <julien@danjou.info>
10464
10465         * gnus-gravatar.el (gnus-gravatar-properties): Add this properties in
10466         replacement of `gnus-gravatar-relief' to mimic
10467         `gnus-faces-properties-alist'.
10468         Add :version property.
10469
10470 2010-09-28  Katsumi Yamaoka  <yamaoka@jpl.org>
10471
10472         * mail-source.el (mail-source-report-new-mail):
10473         * message.el (message-default-mail-headers):
10474         * mm-decode.el (mm-valid-image-format-p): Comment fix.
10475
10476         * mml2015.el (mml2015-use): Don't bind recursive-load-depth-limit.
10477
10478 2010-09-28  Julien Danjou  <julien@danjou.info>
10479
10480         * gnus-gravatar.el (gnus-gravatar-insert): Fix search in case
10481         mail-address contains the same string as real-name.
10482
10483         * gnus-ems.el (gnus-put-image): Revert Lars, change and insert
10484         non-blank in header, otherwise it'll get stripped.
10485
10486         * gnus-gravatar.el (gnus-gravatar-insert): Search backward for
10487         real-name, and then for mail address rather than doing : or , search.
10488
10489 2010-09-27  Julien Danjou  <julien@danjou.info>
10490
10491         * gnus-util.el (gnus-completing-read): Use gnus-use-ido to apply the
10492         right completing-read function.
10493         (gnus-use-ido): New variable
10494         (gnus-completing-read-with-default): Remove.
10495         * gnus-agent.el (gnus-agent-read-group): Remove prompt computing.
10496         (gnus-agent-add-group):
10497         * gnus-srvr.el (gnus-server-add-server, gnus-server-goto-server):
10498         * mm-view.el (mm-view-pkcs7-decrypt):
10499         * mm-util.el (mm-codepage-setup):
10500         * smime.el (smime-sign-buffer, smime-decrypt-buffer):
10501         * mml-smime.el (mml-smime-openssl-sign-query):
10502         * mml.el (mml-minibuffer-read-type, mml-minibuffer-read-disposition)
10503         (mml-insert-multipart):
10504         * gnus-msg.el (gnus-summary-yank-message):
10505         * gnus-int.el (gnus-start-news-server):
10506         * mm-decode.el (mm-interactively-view-part):
10507         * gnus-dired.el (gnus-dired-attach):
10508         * gnus.el (gnus-read-method):
10509         * gnus-bookmark.el (gnus-bookmark-jump):
10510         * gnus-art.el (gnus-mime-view-part-as-type)
10511         (gnus-mime-action-on-part, gnus-article-encrypt-body):
10512         * gnus-topic.el (gnus-topic-jump-to-topic, gnus-topic-move-matching)
10513         (gnus-topic-copy-matching, gnus-topic-sort-topics, gnus-topic-move):
10514         * nnmairix.el (nnmairix-create-server-and-default-group)
10515         (nnmairix-update-groups, nnmairix-get-server)
10516         (nnmairix-backend-to-server, nnmairix-goto-original-article)
10517         (nnmairix-get-group-from-file-path):
10518         * nnrss.el (nnrss-find-rss-via-syndic8):
10519         * gnus-group.el (gnus-group-completing-read, gnus-group-make-web-group)
10520         (gnus-group-make-useful-group, gnus-group-add-to-virtual)
10521         (gnus-group-browse-foreign-server):
10522         * gnus-sum.el (gnus-summary-goto-article, gnus-summary-limit-to-extra)
10523         (gnus-summary-execute-command, gnus-summary-respool-article)
10524         (gnus-read-move-group-name):
10525         * gnus-score.el (gnus-summary-increase-score)
10526         (gnus-summary-score-effect):
10527         * gnus-registry.el (gnus-registry-read-mark): Use gnus-completing-read.
10528
10529 2010-09-28  Katsumi Yamaoka  <yamaoka@jpl.org>
10530
10531         * lpath.el: Remove url-http-file-exists-p, w32-focus-frame, and
10532         x-focus-frame.
10533
10534         * nnimap.el (auth-source-forget-user-or-password)
10535         (auth-source-user-or-password): Autoload.
10536
10537         * message.el (message-from-style, message-interactive)
10538         (message-cite-prefix-regexp, message-sendmail-envelope-from)
10539         (message-yank-prefix, message-indentation-spaces, message-signature)
10540         (message-signature-file): Add comment.
10541
10542 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10543
10544         * gnus-sum.el (gnus-summary-read-group-1): Set gnus-newsgroup-highest.
10545         (gnus-summary-insert-new-articles): Use gnus-newsgroup-highest to get
10546         new articles.
10547
10548         * nnimap.el (nnimap-request-article): Don't partial-fetch single-part
10549         parts.
10550         (nnimap-request-article): Work with the t setting, too.
10551
10552         * gnus-sum.el (gnus-summary-exit): Kill the article buffer later, so
10553         that you don't get flashes of other buffers.
10554         (gnus-summary-show-complete-article): Intern before setting.
10555
10556 2010-09-27  David Engster  <dengste@eml.cc>
10557
10558         * nnmairix.el (nnmairix-replace-group-and-numbers): Deal with NOV as
10559         well as HEADERS.
10560         (nnmairix-retrieve-headers): Provide new argument for the above.
10561
10562 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10563
10564         * gnus-sum.el (gnus-summary-move-article): Don't alter
10565         gnus-newsgroup-active.  This makes `/ N' work after copying to the same
10566         group.
10567
10568         * nnimap.el (nnimap-update-info): Don't destructively alter active.
10569
10570         * message.el (message-cite-prefix-regexp): Revert my last edit.
10571
10572         * gnus-sum.el (gnus-summary-show-complete-article): Bind the server
10573         variable instead of the Gnus variable.
10574
10575         * nnimap.el (nnimap-find-wanted-parts-1): Use it.
10576
10577         * gnus-art.el (gnus-fetch-partial-articles): Move back to nnimap again.
10578
10579         * nnimap.el (nnimap-request-accept-article): Remove the "." at the end,
10580         since some servers don't like it.
10581         (nnimap-open-connection): Forget credentials if the server says the
10582         password was wrong.
10583         (nnimap-parse-line): Protect against invalid data.
10584
10585         * gnus-sum.el (gnus-summary-move-article): Add comment.
10586         (gnus-summary-insert-new-articles): Copy the old-high watermark so that
10587         nothing alters it while scanning for new messages.
10588
10589         * nnimap.el (nnimap-request-accept-article): Send a "." at the end,
10590         which may or may not help.
10591         (nnimap-open-connection): If we're doing a stream connection, and then
10592         discover we're on a STARTTLS-capable server, then open a STARTTLS
10593         connection instead.
10594
10595 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10596
10597         * nnimap.el (utf7): Require.
10598
10599         * message.el (message-cite-prefix-regexp): Remove "}" from citation
10600         prefix.
10601
10602 2010-09-27  Juanma Barranquero  <lekktu@gmail.com>
10603
10604         * nnmail.el (nnmail-fancy-expiry-targets): Fix typo in docstring.
10605
10606 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10607
10608         * nnimap.el (nnimap-request-accept-article): Message the error on
10609         error.
10610
10611 2010-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
10612
10613         * gnus-art.el (gnus-mime-delete-part): Fix Lisp type of byte(s).
10614
10615 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10616
10617         * nndoc.el (nndoc-request-list): Return success always.
10618
10619         * gnus-agent.el (gnus-agent-retrieve-headers): Don't propagate
10620         `fetch-old' -- we only want to fetch the articles we've requested.
10621         The rest are in the agent, probably.
10622         (gnus-agent-read-servers-validate): Change the level for the "Ignoring
10623         disappeared server" to something low.  It's not important.
10624
10625         * nnimap.el (nnimap-get-whole-article): Remove the data that may have
10626         arrived before the FETCH data.
10627
10628         * nnmh.el (nnmh-request-expire-articles): Don't try to fetch the expiry
10629         target here, because we don't know the Gnus name of the group.
10630
10631         * nndraft.el (nndraft-request-expire-articles): Fetch the expiry target
10632         for the correct group.
10633
10634         * gnus-ems.el (gnus-create-image): Ignore all image-creation errors.
10635
10636         * gnus.el (gnus): Give a final warning after startup.
10637
10638         * gnus-util.el (gnus-action-message-log): New variable.
10639         (gnus-message): Use it.
10640         (gnus-final-warning): New function.
10641
10642         * nnimap.el (nnimap-open-connection): Record the greeting.
10643         (nnimap): Add greeting.
10644
10645 2010-09-26  Julien Danjou  <julien@danjou.info>
10646
10647         * gnus-html.el (gnus-html-show-images): Fix gnus-html-display-image
10648         arguments.
10649         (gnus-html-wash-images): Fix spec computing to include start/end.
10650
10651         * gnus-art.el (gnus-article-treat-body-boundary): Fix length computing.
10652
10653 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10654
10655         * nnimap.el (nnimap-request-expire-articles): Compress ranges before
10656         deletion.
10657         (nnimap-retrieve-headers): Don't select the group, because that's
10658         already done by nnimap-possibly-change-group.
10659
10660         * gnus-picon.el (gnus-picon-inhibit-top-level-domains): New variable.
10661         (gnus-picon-transform-address): Use it.
10662
10663         * mail-source.el (mail-source-value): Revert previous patch.
10664
10665         * nnimap.el (nnimap-credentials): Allow inhibiting the password query
10666         on failure.
10667         (nnimap-open-connection): Look up both virtual and physical server name
10668         credentials.
10669
10670         * gnus-win.el: Revert previous patch, since it made Gnus backtrace.
10671
10672 2009-02-07  Dave Love  <fx@gnu.org>
10673
10674         * tls.el (open-tls-stream): Don't query killing process.
10675
10676 2009-02-08  Dave Love  <fx@gnu.org>
10677
10678         * gnus-win.el (gnus-window-to-buffer-helper)
10679         (gnus-all-windows-visible-p): Function needn't be a symbol.
10680
10681         * mail-source.el (mail-source-value): Function needn't be a symbol.
10682
10683 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10684
10685         * message.el (message-cite-prefix-regexp): Remove } from the cite
10686         prefix.
10687
10688         * gnus-art.el (gnus-treatment-function-alist): Do picons before
10689         highlight again, so that the highlight is correct.
10690
10691         * gnus-picon.el (gnus-picon): Remove again.
10692         (gnus-picon-create-glyph): Set the background XPM color explicitly.
10693
10694         * gnus-art.el (gnus-treatment-function-alist): Insert picons after
10695         doing the header highlightling, so that the background color of the
10696         picon is correct.
10697
10698         * gnus-picon.el (gnus-picon-xbm): Remove obsolete face.
10699         (gnus-picon): Ditto.
10700         (gnus-picon): Reinstate.  The background color for picons is white.
10701         (gnus-picon-insert-glyph): Make the background white.
10702
10703         * nnml.el (nnml-open-nov): Don't return dead buffers.
10704
10705         * auth-source.el (auth-source-create): Query the user for whether to
10706         store the credentials.
10707
10708         * netrc.el (netrc-store-data): New function.
10709
10710         * auth-source.el (auth-source-user-or-password): Use the existing auth
10711         sources, if any, for creation.
10712
10713         * gnus.el (gnus-group-fast-parameter): Return the last matching
10714         parameter instead of the first matching parameter.
10715
10716 2010-09-26  Julien Danjou  <julien@danjou.info>
10717
10718         * gnus-sum.el (gnus-auto-center-group): Transform into a defcustom.
10719
10720 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10721
10722         * mml2015.el (mml2015-use): Remove gpg support.
10723
10724         * mml1991.el (mml1991-function-alist): Remove gpg function.
10725         (mml1991-gpg-sign): Remove.
10726
10727 2010-09-26  Andreas Seltenreich  <seltenreich@gmx.de>
10728
10729         * gnus-srvr.el (gnus-browse-subscribe-newsgroup-method): New variable.
10730         (gnus-browse-unsubscribe-current-group): Document it.
10731         (gnus-browse-unsubscribe-group): Use it.
10732
10733 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10734
10735         * gnus-group.el (gnus-read-ephemeral-bug-group): Add the bug email
10736         address to the To list for easier response.
10737
10738         * gnus.el (gnus-play-startup-jingle): Remove.
10739         (gnus-splash): Don't play jingle.
10740         (gnus): Silence gnus-load message.
10741
10742         * gnus-art.el (gnus-treat-play-sounds): Remove.
10743
10744         * gnus.el (gnus-play-jingle): Remove audio support.
10745
10746         * gnus-cus.el (gnus-score-customize): Remove audio reference.
10747
10748         * earcon.el: Remove -- no users.
10749
10750         * gnus-audio.el: Remove -- no users of this package.
10751
10752         * gnus-sum.el (gnus-summary-limit-children): Remove nocem support.
10753
10754         * gnus-start.el (gnus-setup-news): Remove nocem support.
10755
10756         * gnus-group.el (gnus-group-get-new-news): Remove nocem call.
10757
10758         * gnus.el (gnus-use-nocem): Remove.
10759
10760         * gnus-demon.el (gnus-demon-add-nocem, gnus-demon-scan-nocem):
10761         Remove.
10762
10763         * gnus-nocem.el (gnus-nocem-issuers): Remove file.  Apparently nobody
10764         uses NoCeM any more.
10765
10766         * gnus-art.el (gnus-ctan-url): Seems not very useful -- removed.
10767         (gnus-button-ctan-handler): Ditto.
10768         (gnus-button-handle-ctan-bogus-regexp): Ditto.
10769         (gnus-button-ctan-directory-regexp): Ditto.
10770         (gnus-button-handle-ctan): Ditto.
10771         (gnus-button-tex-level): Ditto.
10772         (gnus-button-alist): Remove CTAN stuff.
10773
10774 2010-09-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10775
10776         * nnimap.el (nnimap-wait-for-response): Reverse logic in the
10777         nnimap-streaming test.
10778
10779         * gnus-start.el (gnus-get-unread-articles): Don't try to open failed
10780         servers twice.
10781
10782         * nnimap.el (nnimap-open-connection): Add more error reporting when
10783         nnimap fails early.
10784
10785         * nnheader.el (nnheader-get-report-string): New function.
10786         (nnheader-get-report): Use it.
10787
10788         * gnus-int.el (gnus-check-server): Say what the error was when opening
10789         failed.
10790
10791         * nnimap.el (nnimap-wait-for-response): Search further when we're not
10792         using streaming.
10793
10794 2010-09-25  Julien Danjou  <julien@danjou.info>
10795
10796         * gnus-html.el (gnus-html-rescale-image): Use our defalias
10797         gnus-window-inside-pixel-edges.
10798
10799 2010-09-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10800
10801         * gnus-srvr.el (gnus-server-copy-server): Add documentation.
10802
10803         * mm-decode.el (mm-save-part): Allow saving to other directories the
10804         normal Emacs way.
10805
10806         * nndoc.el (nndoc-type-alist): Move mime-parts after mbox.
10807         Suggested by Jay Berkenbilt.
10808
10809         * gnus-art.el (gnus-mime-delete-part): Fix plural for "byte" when
10810         there isn't a single byte.
10811
10812         * gnus-int.el (gnus-open-server): Don't query whether to go offline --
10813         just do it.  It doesn't really seem to matter what the user responds
10814         here, I think, so it's just a confusing question.
10815
10816         * nnimap.el (nnimap-retrieve-group-data-early): Fix typo in the
10817         non-streaming case.
10818
10819         * gnus-art.el (gnus-flush-original-article-buffer): Separate out.
10820         (gnus-article-encrypt-body): Use it.
10821
10822         * gnus-sum.el (gnus-summary-show-complete-article): New command and
10823         keystroke.
10824
10825         * nnimap.el (nnimap-find-wanted-parts-1):
10826         Use gnus-fetch-partial-articles.
10827
10828         * gnus-art.el (gnus-fetch-partial-articles): New variable.
10829
10830         * nnimap.el (nnimap-insert-partial-structure): New function.
10831         (nnimap-get-partial-article): New function.
10832         (nnimap-request-article): Use it.
10833         (nnimap-wait-for-response): Return whether the wait was successful.
10834         (nnimap-finish-retrieve-group-infos): Don't do anything if the
10835         retrieval wasn't successful.
10836         (nnimap-retrieve-group-data-early): Allow throttling servers.
10837         (nnimap-streaming): New variable.
10838         (nnimap-fetch-partial-articles): Remove.
10839
10840         * mm-decode.el (mm-with-part): Protect against killed buffers.
10841
10842         * nndraft.el (nndraft-retrieve-headers): Insert Lines and Chars headers
10843         for prettier summary display.
10844
10845 2010-09-25  Andrew Cohen  <cohen@andy.bu.edu>  (tiny change)
10846
10847         * nnir.el (nnir-run-imap): Allow sending IMAP search patterns directly.
10848
10849 2010-09-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10850
10851         * gnus.el (gnus-local-domain): Put gnus-local-domain back again, since
10852         apparently third-party libraries depend on it.
10853
10854         * nnimap.el (nnimap-open-connection): Wait for the response to STARTTLS
10855         before starting negotiation.
10856
10857         * gnus-art.el (gnus-treat-from-gravatar): Change default to nil for
10858         privacy reasons.
10859         (gnus-treat-mail-gravatar): Ditto.
10860
10861         * gnus-ems.el (gnus-put-image): Don't put any non-blank text into the
10862         buffer when inserting images.  Inserting text into the headers, for
10863         instance, can make them invalid.
10864
10865 2010-09-25  Julien Danjou  <julien@danjou.info>
10866
10867         * rfc1843.el: Remove useless rfc1843-old-gnus-decode-header-function
10868         variables.
10869
10870         * nnheader.el: Remove useless variables news-reply-yank-from and
10871         news-reply-yank-message-id.
10872
10873         * mml2015.el: Remove useless mc-default-scheme and mc-schemes
10874         variables.
10875
10876         * mml1991.el: Remove useless mml1991-verbose.
10877
10878         * gnus.el: Remove useless variable gnus-use-generic-from.
10879         Remove obsolete variable gnus-topic-indentation.
10880
10881         * gnus-uu.el: Remove useless gnus-uu-shar-file-name.
10882
10883         * gnus-sum.el: Remove useless gnus-newsgroup-none-id.
10884
10885         * gnus-picon.el: Remove useless gnus-picon-setup-p variable.
10886
10887         * gnus-group.el: Remove useless gnus-group-icon-cache.
10888         Remove useless gnus-ephemeral-group-server.
10889
10890         * gnus-bookmark.el: Remove useless gnus-bookmark-after-jump-hook.
10891
10892         * mml2015.el: Remove useless mml2015-verbose.
10893
10894         * mml-smime.el: Remove useless mml-smime-verbose.
10895
10896         * gnus.el: Remove useless gnus-local-domain.
10897
10898         * gnus-gravatar.el (gnus-gravatar-transform-address):
10899         Use gnus-gravatar-size.
10900
10901         * gnus-art.el: Remove useless gnus-treat-translate.
10902
10903 2010-09-24  Julien Danjou  <julien@danjou.info>
10904
10905         * gnus-sum.el: Add support for Gravatars.
10906
10907         * gnus-art.el: Add support for Gravatars.
10908
10909         * gnus-gravatar.el: Add this file.
10910
10911         * gravatar.el: Add this file.
10912
10913 2010-09-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10914
10915         * gnus-sum.el (gnus-summary-fetch-faq): Remove.
10916
10917         * gnus-group.el (gnus-group-fetch-faq): Remove.
10918
10919         * gnus.el (gnus-group-faq-directory): Remove.
10920
10921         * gnus-group.el (gnus-group-fetch-charter): Remove.
10922
10923         * gnus.el (gnus-group-charter-alist): Remove.
10924
10925         * gnus-group.el (gnus-group-archive-directory): Remove.
10926         (gnus-group-recent-archive-directory): Ditto.
10927         (gnus-group-make-archive-group): Remove.
10928
10929         * nnimap.el (nnimap-update-info): Protect against nil uidnexts.
10930
10931         * gnus-cache.el (gnus-cache-braid-heads): When braiding heads, don't
10932         use the same article number for all the cached articles.
10933
10934         * nnimap.el (nnimap-command): Register the last command time so
10935         that we can use it for idling NOOPs.
10936         (nnimap-open-connection): Start the keeplive timer.
10937         (nnimap-make-process-buffer): Store all the process buffers.
10938         (nnimap-keepalive): New function.
10939
10940         * starttls.el (starttls-open-stream): Add autoload cookie.
10941
10942 2010-09-24  Michael Welsh Duggan  <md5i@md5i.com>  (tiny change)
10943
10944         * nnimap.el (nnimap-split-incoming-mail): Fix paren typo in the 'junk
10945         handling.
10946
10947 2010-09-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10948
10949         * nnrss.el (nnrss-retrieve-groups): Change to the group before checking
10950         its data structures.
10951
10952         * gnus.el (gnus-sloppily-equal-method-parameters): Use copy-sequence
10953         instead of the cl.el copy-list.
10954         (gnus-sloppily-equal-method-parameters): Use equal instead of the cl
10955         equalp.
10956
10957 2010-09-24  Katsumi Yamaoka  <yamaoka@jpl.org>
10958
10959         * gmm-utils.el (gmm-tool-bar-from-list): Always use tool-bar-local-item
10960         and tool-bar-local-item-from-menu.
10961
10962         * gnus-agent.el (gnus-agent-make-mode-line-string): Always use
10963         mode-line-highlight face for Emacs.
10964
10965         * gnus-art.el (toplevel): Don't bind recursive-load-depth-limit while
10966         loading gnus-sum.elc; fix comment for canlock-verify.
10967         (gnus-article-jump-to-part): Use read-number.
10968         (gnus-insert-mime-button, gnus-insert-mime-security-button):
10969         Remove Emacs pre-21 compatible code for help-echo.
10970         (gnus-article-next-page-1): No need to adjust the number of lines.
10971         (gnus-article-describe-bindings): Always use help-buffer.
10972
10973         * gnus-audio.el (gnus-audio-inline-sound):
10974         * gnus-cus.el (gnus-custom-mode):
10975         * gnus-group.el (gnus-group-update-tool-bar): Comment fix.
10976
10977         * gnus-sum.el (gnus-remove-overlays): Doc fix.
10978
10979         * gnus-util.el (gnus-select-frame-set-input-focus): Remove Emacs 21
10980         compatible code.
10981
10982 2010-09-24  Glenn Morris  <rgm@gnu.org>
10983
10984         * message.el (message-output): Use gnus-output-to-rmail if a buffer is
10985         visiting the fcc file in rmail-mode.
10986
10987         * dns-mode.el: Move autoloaded auto-mode-alist entries to files.el.
10988
10989 2010-09-24  Katsumi Yamaoka  <yamaoka@jpl.org>
10990
10991         * nnir.el: Silence the byte compiler.
10992
10993         * gnus-html.el (gnus-html-encode-url-chars): New function, that's an
10994         alias to browse-url-url-encode-chars if any.
10995         (gnus-html-encode-url): Use it.
10996
10997 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10998
10999         * gnus-start.el (gnus-use-backend-marks): New variable.
11000         (gnus-get-unread-articles-in-group): Use it.
11001
11002         * gnus-sum.el (gnus-summary-local-variables): Prepare for list/range
11003         makeover.
11004
11005 2010-09-23  Andrew Cohen  <cohen@andy.bu.edu>
11006
11007         * nnimap.el (nnimap-retrieve-headers): Return 'headers.
11008
11009 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11010
11011         * gnus-start.el (gnus-fixup-nnimap-unread-after-getting-new-news):
11012         Remove.
11013         (gnus-setup-news-hook):
11014         Remove gnus-fixup-nnimap-unread-after-getting-new-news.
11015
11016         * gnus-int.el (gnus-request-update-info): Protect against backends not
11017         having the function.
11018
11019         * nnimap.el (nnimap-stream): Mention starttls.
11020         (nnimap-open-connection): Add starttls support.
11021
11022 2010-09-23  Andrew Cohen  <cohen@andy.bu.edu>
11023
11024         * nnir.el (nnir-run-imap): Fix up nnir to work with the new nnimap.
11025
11026 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11027
11028         * nnimap.el (nnimap-transform-headers): Don't bug out on invalid
11029         BODYSTRUCTUREs.
11030         (nnimap-transform-headers): Unfold quoted {42} headers.
11031
11032         * gnus-start.el (gnus-get-unread-articles): Allow backends to update
11033         the info.
11034         (gnus-get-unread-articles): Only call updatep on backends that support
11035         it.
11036
11037         * nnweb.el (nnweb-request-update-info): NOOP.
11038
11039         * nnmaildir.el (nnmaildir-request-marks): Rename from -update-info.
11040
11041         * nnfolder.el (nnfolder-request-marks): Rename from -update-info,
11042         since it only deals with marks.
11043
11044         * gnus-int.el (gnus-request-marks): Rename gnus-request-update-info to
11045         gnus-request-marks, and make a new gnus-request-update-info.
11046
11047         * nnimap.el (nnimap-update-info): When UIDNEXT is present, use that for
11048         the active instead of the high number, which is usually too low.
11049
11050 2010-09-23  Teodor Zlatanov  <tzz@lifelogs.com>
11051
11052         * netrc.el (netrc-parse): Remove encrypt.el mentions.
11053         * encrypt.el: Remove.
11054
11055 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11056
11057         * nnimap.el (nnimap-update-info): Sync non-standard flags from the
11058         server in symbolic form.
11059
11060         * gnus-html.el (gnus-max-image-proportion): Increase proportion to 0.9.
11061
11062 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11063
11064         * nnimap.el (nnimap-parse-flags): Parse the data in any order.
11065         (nnimap-update-info): Fix up code slightly.
11066
11067         * gnus-int.el (gnus-open-server): Add tracing for performance
11068         debugging.
11069
11070         * gnus-group.el (gnus-group-highlight-line): Typo fix: beg, not start.
11071         (gnus-group-insert-group-line): Pass the real group name so that it
11072         gets the right data.
11073
11074         * gnus-start.el (gnus-get-unread-articles): Don't have
11075         `gnus-get-unread-articles-in-group' update info, since that can be
11076         really slow and doesn't seem to be needed?
11077
11078 2010-09-22  Dan Christensen  <jdc@uwo.ca>
11079
11080         * time-date.el (date-to-time): Try using parse-time-string first before
11081         using the slower timezone-make-date-arpa-standard.
11082
11083 2010-09-22  Julien Danjou  <julien@danjou.info>
11084
11085         * gnus-group.el (gnus-group-insert-group-line):
11086         Call gnus-group-highlight-line.
11087         (gnus-group-update-hook): Remove gnus-group-highlight-line from the
11088         default hook list.
11089         (gnus-group-update-eval-form): Add new function.
11090         (gnus-group-highlight-line): Use gnus-group-update-eval-form.
11091         (gnus-group-get-icon): Use gnus-group-update-eval-form.
11092
11093 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11094
11095         * nnimap.el (nnimap-request-expire-articles): If nnmail-expiry-wait is
11096         immediate, then expire all articles.
11097         (nnimap-update-info): Fix off-by-one errors.
11098         (nnimap-flags-to-marks): Would return no marks lists for group with no
11099         flags.  Instead return the other data.
11100
11101 2010-09-22  Julien Danjou  <julien@danjou.info>
11102
11103         * gnus-group.el (gnus-group-get-icon): Rename gnus-group-add-icon that
11104         Only return an icon.
11105         (gnus-group-insert-group-line): Compute icon to return.
11106
11107         * gnus-html.el (gnus-html-image-automatic-caching): Add custom var.
11108         (gnus-html-image-fetched): Only cache if
11109         gnus-html-image-automatic-caching is set.
11110         (gnus-html-image-fetched): Check for errors.
11111
11112 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11113
11114         * gnus-start.el (gnus-read-active-for-groups): Only run -request-scan
11115         once per method on `g'.  This ensures that backends like nnfolder don't
11116         open all their folders.
11117
11118         * nnimap.el (nnimap-split-incoming-mail): Delete 'junk.
11119         (nnimap-request-list): Nix out group in the correct buffer.
11120         (nnimap-parse-flags): Implement by using `read' instead of
11121         hand-parsing.
11122         (nnimap-flags-to-marks): Pass on permanent-flags.
11123         (nnimap-make-process-buffer): Record the server name.
11124         (nnimap-parse-flags): Fix typo.
11125         (nnimap-request-scan): Run split on the server in general, not just a
11126         single group.
11127
11128         * nnmail.el (nnmail-split-incoming): Take an optional junk-func
11129         parameter, and propagate this downwards.
11130
11131         * nnimap.el (nnimap-request-list): Set the current nnimap group to nil,
11132         since EXAMINE changes it on the server.
11133
11134         * gnus-int.el (gnus-request-expire-articles): Inhibit the daemon, since
11135         this command might take a while.
11136
11137 2010-09-22  Julien Danjou  <julien@danjou.info>
11138
11139         * gnus-html.el (gnus-html-put-image): Stop using markers.  They are
11140         harmful if you have 2 images side-by-side, they can't be properly
11141         update on text deletion.  Using text-property is safer here.
11142         (gnus-html-image-fetched): Search also for \r\n\r\n to get the start of
11143         data.
11144
11145 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11146
11147         * nnimap.el (nnimap-expunge-inbox): Remove.
11148         (nnimap-mark-and-expunge-incoming): Use nnimap-expunge instead.
11149         (nnimap-expunge): Flip default to t.
11150
11151         * gnus.el (gnus-method-to-server): Don't push things to the cache
11152         unless it's unique.
11153         (gnus-server-to-method): Ditto.
11154
11155 2010-09-22  Teodor Zlatanov  <tzz@lifelogs.com>
11156
11157         * nnimap.el (nnimap-delete-article): Tell user if expunge won't happen.
11158
11159 2010-09-22  Julien Danjou  <julien@danjou.info>
11160
11161         * gnus-html.el (gnus-html-get-image-data): Search also for \r\n\r\n to
11162         get the start of data.
11163         (gnus-html-encode-url): Add this function to encode special chars in
11164         URL.
11165         (gnus-html-wash-images): Use gnus-html-encode-url to encode URL.
11166         (gnus-html-prefetch-images): Use gnus-html-encode-url to encode URL.
11167
11168         * gnus-group.el (gnus-group-update-hook): Call gnus-group-add-icon by
11169         default.
11170         (gnus-group-add-icon): Move to gnus-group.el, and rewrite so it works.
11171
11172         * gnus-html.el (gnus-html-wash-images): Use xml-substitute-special on
11173         images alt-text.
11174         (gnus-html-put-image): Put alt-text as help-echo.
11175
11176 2010-09-22  Katsumi Yamaoka  <yamaoka@jpl.org>
11177
11178         * mailcap.el (mailcap-parse-mailcap, mailcap-parse-mimetypes):
11179         * mm-util.el (mm-decompress-buffer):
11180         * nnir.el (nnir-run-find-grep):
11181         * pop3.el (pop3-list): Use 3rd arg of split-string.
11182
11183         * time-date.el (format-seconds): Comment fix.
11184
11185         * dgnushack.el (toplevel): Don't advise byte-optimize-form-code-walker
11186         and byte-optimize-form-code-walker.
11187         (dgnushack-make-auto-load): Don't advise make-autoload.
11188
11189         * lpath.el: Remove Emacs 21 stuff.
11190
11191 2010-09-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11192
11193         * gnus-sum.el (gnus-update-marks): Add sanity check to not delete marks
11194         outside the active range.  Suggested by Dan Christensen.
11195
11196         * gnus-start.el (gnus-get-unread-articles): Get the extended method
11197         slightly later to avoid double-getting it.
11198
11199         * nnml.el (nnml-generate-nov-file): Fix variable name clobbering from
11200         previous patch.
11201
11202         * gnus-sum.el (gnus-adjust-marked-articles): Fix another typo.
11203
11204 2010-09-21  Adam Sjøgren  <asjo@koldfront.dk>
11205
11206         * gnus-sum.el (gnus-adjust-marked-articles): Fix typo.
11207
11208 2010-09-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11209
11210         * gnus-int.el (gnus-open-server): Give a better error message in the
11211         "go offline" case.
11212
11213         * gnus-sum.el (gnus-adjust-marked-articles): Hack to avoid adjusting
11214         marks for nnimap, which is seldom the right thing to do.
11215
11216         * gnus.el (gnus-sloppily-equal-method-parameters): Refactor out.
11217         (gnus-same-method-different-name): New function.
11218
11219         * nnimap.el (parse-time): Require.
11220
11221         * gnus-start.el (gnus-get-unread-articles): Fix the prefixed select
11222         method in the presence of many similar methods.
11223
11224         * nnmail.el (nnmail-expired-article-p): Fix typo: time-subtract.
11225
11226         * nnimap.el (nnimap-find-expired-articles): Don't refer to
11227         nnml-inhibit-expiry.
11228
11229         * gnus-sum.el (gnus-summary-move-article): Use gnus-server-equal to
11230         find out whether methods are equal.
11231
11232         * nnimap.el (nnimap-find-expired-articles): New function.
11233         (nnimap-process-expiry-targets): New function.
11234         (nnimap-request-move-article): Request the article before looking at
11235         what the Message-ID is.  Fix found by Andrew Cohen.
11236         (nnimap-mark-and-expunge-incoming): Wait for the last sequence.
11237
11238         * nnmail.el (nnmail-expired-article-p): Allow returning the cutoff time
11239         for oldness in addition to being a predicate.
11240
11241         * nnimap.el (nnimap-request-group): When we have zero articles, return
11242         the right data to Gnus.
11243         (nnimap-request-expire-articles): Only delete articles immediately if
11244         the target is 'delete.
11245
11246         * gnus-sum.el (gnus-summary-move-article): When respooling to the same
11247         method, this would bug out.
11248
11249         * gnus-group.el (gnus-group-expunge-group): Rename from
11250         gnus-group-nnimap-expunge, and implemented as a normal interface
11251         function.
11252
11253         * gnus-int.el (gnus-request-expunge-group): New function.
11254
11255         * nnimap.el (nnimap-request-create-group): Implement.
11256         (nnimap-request-expunge-group): New function.
11257
11258 2010-09-21  Julien Danjou  <julien@danjou.info>
11259
11260         * gnus-html.el (gnus-html-image-cache-ttl): Add new variable.
11261         (gnus-html-cache-expired): Add new function.
11262         (gnus-html-wash-images): Use `gnus-html-cache-expired' to check
11263         wethever we should display image for fetch it.
11264         Compute alt-text earlier to pass it to the fetching function too.
11265         (gnus-html-schedule-image-fetching): Change function argument to only
11266         get one image at a time, not a list.
11267         (gnus-html-image-fetched): Use `url-store-in-cache' to store image in
11268         cache.
11269         (gnus-html-get-image-data): New function to retrieve image data from
11270         cache.
11271         (gnus-html-put-image): Change buffer argument to use image data rather
11272         than file, and place image above region rather than inserting a new
11273         one.  Do not take alt-text as argument, since it's useless now: we place
11274         the image above alt-text.
11275         (gnus-html-prune-cache): Remove.
11276         (gnus-html-show-images): Start to fetch image when we find one, do not
11277         push into a temporary list.
11278         (gnus-html-prefetch-images): Only fetch image if they have expired.
11279         (gnus-html-browse-image): Fix, use 'gnus-image-url.
11280         (gnus-html-image-map): Add "v" to browse-url on undisplayed image.
11281
11282 2010-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
11283
11284         * rfc2047.el (rfc2047-encode-parameter): Doc fix.
11285
11286 2010-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11287
11288         * gnus-group.el (gnus-group-line-format-alist): Have the ?U (unseen)
11289         spec inser "*" if the group isn't active instead of 0.
11290
11291         * nnimap.el (nnimap-request-group): Don't select the imap buffer before
11292         opening the server.
11293         (nnimap-request-delete-group): Implement group deletion.
11294         (nnimap-transform-headers): Return the size of the entire message in
11295         the Bytes header, not just the size of the first part.
11296         (nnimap-request-move-article): When moving an article from nnimap,
11297         request the article first so the accepting form has an article to
11298         accept.  Reported by Dan Christensen.
11299         (nnimap-command): Make sure that the error message doesn't error out.
11300
11301 2010-09-20  David Edmondson  <dme@dme.org>
11302
11303         * nnimap.el (nnimap-request-set-mark): Don't wait for a response when
11304         we haven't requested anything.
11305
11306 2010-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11307
11308         * nnimap.el (nnimap-fetch-inbox): Use "[]" as the parameter instead of
11309         "".  Fix found by Andrew Cohen.
11310
11311         * mail-parse.el (mail-header-encode-parameter): Use -encode-parameter
11312         instead of -encode-string.
11313
11314 2010-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
11315
11316         * gnus-html.el (gnus-html-image-fetched): Pass arg to kill-buffer.
11317
11318         * gnus-sum.el (gnus-summary-update-mark): Replace subst-char-in-string
11319         by mm-subst-char-in-string.
11320
11321 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11322
11323         * nnimap.el (nnimap-wait-for-connection): Avoid a race condition while
11324         waiting for the connection string.
11325
11326         * gnus-html.el (gnus-html-image-fetched): Protect against the data not
11327         arriving.
11328
11329         * gnus-start.el (gnus-ignored-newsgroups): Remove [] from the list of
11330         bogus characters.  This allows selecting certain Gmail groups.
11331
11332         * nnimap.el (nnimap-find-wanted-parts-1): New function.
11333         (nnimap-fetch-partial-articles): New variable.
11334         (nnimap-open-connection): When looking for credentials, also use the
11335         nnimap-server-port.
11336         (nnimap-request-article): Return the group/article number, so that Gnus
11337         `^' works as expected.
11338         (nnimap-find-wanted-parts-1): Return the MIME parts as IMAP wants them.
11339
11340         * gnus.el (gnus-similar-server-opened): Refactor a bit and add
11341         comments.
11342         (gnus-methods-sloppily-equal): New function.
11343         (gnus): When using the development version of Gnus, load the gnus-load
11344         file.
11345
11346         * gnus-start.el (gnus-get-unread-articles): Make sure that we call
11347         `gnus-open-server' on each method before trying to scan them etc.
11348         This ensures that all the backend parameters are set correctly.
11349
11350         * nnimap.el (nnimap-authenticator): New variable.
11351         (nnimap-open-connection): Allow anonymous login.
11352         (nnimap-transform-headers): The chars header is called Chars not Bytes.
11353         (nnimap-wait-for-response): Don't infloop if the IMAP connection drops.
11354
11355         * gnus-art.el (gnus-article-describe-briefly): Fix up typo in last
11356         patch, found by Knut Anders Hatlen.
11357
11358 2010-09-19  Andreas Schwab  <schwab@linux-m68k.org>
11359
11360         * gnus-agent.el (gnus-agent-batch-confirmation)
11361         (gnus-agent-expire-group, gnus-agent-expire): Pass proper format string
11362         to gnus-message.
11363         * gnus-art.el (gnus-article-describe-briefly): Likewise.
11364         * gnus-group.el (gnus-group-list-groups, gnus-group-describe-group)
11365         (gnus-group-edit-global-kill, gnus-group-describe-briefly): Likewise.
11366         * gnus-int.el (gnus-open-server): Likewise.
11367         * gnus-score.el (gnus-score-edit-current-scores, gnus-score-edit-file)
11368         (gnus-score-check-syntax): Likewise.
11369         * gnus-srvr.el (gnus-browse-describe-briefly): Likewise.
11370         * gnus-start.el (gnus-read-active-file-1, gnus-read-active-file-1):
11371         Likewise.
11372         * gnus-sum.el (gnus-summary-describe-briefly): Likewise.
11373
11374 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11375
11376         * gnus-html.el (gnus-html-prefetch-images): Fix up the url-retrieve
11377         calling conventions so that prefetch doesn't bug out.
11378
11379 2010-09-19  Julien Danjou  <julien@danjou.info>
11380
11381         * gnus-sum.el (gnus-summary-update-mark): Use `subst-char-in-string'
11382         rather than `subst-char-in-region' in order to be able to replace ASCII
11383         char by UTF-8 ones.
11384
11385         * gnus-html.el (gnus-html-prefetch-images): Use `url-retrieve' rather
11386         than curl.
11387         (gnus-html-image-fetched): Fix `gnus-html-put-image' call not setting
11388         the right URL and ALT text on images.
11389         (gnus-html-wash-tags): Fix tag case.
11390         Add support for `s' and `ins' tags.  Use gnus-emphasis-* faces.
11391         (gnus-article-html): Add -o display_ins_del=2 option.
11392         (gnus-html-wash-tags): Add better support for <ul> tags symbols.
11393
11394 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11395
11396         * nnheader.el (nnheader-insert-nov): Protect against junk appearing in
11397         the extra mail headers, which sometimes seem to happen for unknown
11398         reasons.
11399
11400         * mail-parse.el (mail-header-encode-parameter): Define as
11401         rfc2045-encode-string instead of as rfc2231-encode-string, since some
11402         (or most, perhaps?) mail readers don't understand the latter, but do
11403         understand the former.
11404
11405         * gnus-agent.el (gnus-agent-auto-agentize-methods): Switch the default
11406         to nil, so that no methods are automatically agentized.  I think this
11407         is probably what most users want.
11408
11409         * gnus-html.el (gnus-html-schedule-image-fetching): Ignore all errors
11410         from url-retrieve, for instance about invalid URLs.
11411
11412         * nnimap.el (nnimap-finish-retrieve-group-infos): Protect against
11413         groups that have no articles.
11414         (nnimap-request-article): Check that we really got an article when we
11415         requested one.
11416
11417         * gnus-agent.el (gnus-agent-load-alist): Nix out the alist if the file
11418         doesn't exist.
11419
11420         * nnimap.el (nnimap-finish-retrieve-group-infos): Return data in the
11421         nntp buffer so the agent can save it.
11422         (nnimap-open-shell-stream): Bind `process-connection-type' to nil, so
11423         that CRLF doesn't get translated to \n.
11424         (nnimap-open-connection): Don't make 'shell commands only send \n.
11425
11426 2010-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
11427
11428         * nnml.el (nnml-files): Add prefix to dynamic var `files'.
11429         (nnml-generate-nov-databases-directory, nnml-generate-active-info):
11430         Update var name.
11431         (nnml-generate-nov-file): Use dolist.
11432         (nnml-directory-articles, nnml-current-group-article-to-file-alist):
11433         Use with-current-buffer.
11434
11435 2010-09-18  Julien Danjou  <julien@danjou.info>
11436
11437         * gnus-html.el (gnus-html-schedule-image-fetching): Fetch all images in
11438         parallel.
11439
11440 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11441
11442         * nnimap.el (nnimap-update-info): When doing partial marks update, get
11443         the range update right.
11444         (nnimap-request-group): Don't make `M-g' bug out on group with no
11445         marks.
11446         (nnoo): Require, so that other packages can require nnimap.
11447         (nnimap-wait-for-response): Be a bit more lax in finding the end of the
11448         command we're looking for.  This helps when the server sends more
11449         responses after we've gotten everything we expected.
11450         (nnimap): Add a `newlinep' field to keep track of end-of-line
11451         conventions.
11452         Don't send CRLF to things that don't want it.
11453         (nnimap-request-accept-article): Ditto.
11454
11455 2010-09-18  Julien Danjou  <julien@danjou.info>
11456
11457         * gnus-html.el (gnus-html-schedule-image-fetching): Use `url' rather
11458         than curl to retrieve images.
11459
11460 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11461
11462         * nnimap.el (nnimap-update-info): Extend the info so that we can set
11463         the marks.
11464         (nnimap-open-connection): Fix typo -- should be 'shell, not 'stream.
11465         (nnimap-wait-for-connection): New function.
11466         (nnimap-open-connection): If we have PREAUTH, don't query for login
11467         credentials.
11468         (nnimap-update-info): Fix off-by-one error when concatenating ranges
11469         when doing a partial update.
11470
11471 2010-09-18  Julien Danjou  <julien@danjou.info>
11472
11473         * gnus-html.el (gnus-html-wash-tags): Add support for i, b and u HTML
11474         tags.
11475
11476 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11477
11478         * nnimap.el (nnimap-credentials): New function.
11479         (nnimap-open-connection): Use the new function to look for credentials
11480         also on the numeric equivalents of "imap" and "imaps".
11481
11482         * gnus-start.el (gnus-activate-group): Send the info to
11483         gnus-request-group.
11484
11485         * nnimap.el (nnimap-request-group): Have the "check" version of the
11486         function parse flags and update the info, so that a `M-g' get a total
11487         resync of all flags from the group.
11488
11489         * gnus-int.el (gnus-request-group): Take an optional `info' parameter
11490         to allow backends to alter the info on group selection.  Also alter all
11491         the backend -request-group functions to take the parameter.
11492
11493         * nnimap.el (nnimap-store-info): New function.
11494         (nnimap-update-info): Store the info for later usage.
11495         (nnimap-request-group): Use the stored info for the dont-check case, so
11496         that we don't retrieve all marks when we enter a group.
11497
11498         * nnimap.el: Use deffoo instead of defun for interface functions.
11499
11500         * gnus-start.el (gnus-get-unread-articles): Allow the backends to
11501         update the group info.  This makes the nndraft groups, for instance, go
11502         back to their old behavior.
11503
11504         * gnus-sum.el (gnus-select-newsgroup): Indent.
11505
11506         * nnimap.el (nnimap-possibly-change-group): Return nil if we can't log
11507         in.
11508         (nnimap-finish-retrieve-group-infos): Make sure we're not waiting for
11509         nothing.
11510
11511         * gnus-start.el (gnus-get-unread-articles): Don't try to scan groups
11512         from methods that are denied.
11513
11514         * gnus-int.el (gnus-method-denied-p): New function.
11515
11516         * nnimap.el (nnimap-open-connection): Use auth-sources to query and
11517         store the password instead of netrc.
11518         (nnimap-open-connection): Don't error out when we can't make a
11519         connections.
11520
11521         * auth-source.el (auth-source-create): In the password prompt, say what
11522         we're querying for.  Also prompt for user name if that hasn't been
11523         given.
11524
11525         * nnimap.el (nnimap-with-process-buffer): Remove.
11526
11527 2010-09-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11528
11529         * gnus-start.el (gnus-read-active-for-groups): Don't use the "finish"
11530         method when we're reading from the agent.
11531
11532         * nnagent.el (nnagent-retrieve-group-data-early): New dummy method.
11533
11534         * auth-source.el (auth-sources): Add ~/.authinfo to the default, since
11535         that's probably most useful for users.
11536
11537         * gnus-int.el (gnus-check-server): Save result so that it doesn't say
11538         "failed" all the time.
11539
11540         * gnus.el: Throughout all files, replace (save-excursion (set-buffer
11541         ...)) with (with-current-buffer ... ).
11542
11543         * nntp.el (nntp-open-server): Return whether the open was successful or
11544         not.
11545
11546         * gnus-sum.el (gnus-summary-first-subject): Have `unseen-or-unread'
11547         select an unread unseen article first.
11548
11549         * nnimap.el (nnimap-open-connection): If the user doesn't have a
11550         /etc/services, supply some sensible port defaults.
11551
11552         * dgnushack.el: Define netrc-credentials.
11553
11554 2010-09-17  Julien Danjou  <julien@danjou.info>
11555
11556         * mm-decode.el (mm-text-html-renderer): Document gnus-article-html.
11557
11558 2010-09-17  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
11559
11560         * nnimap.el (nnimap-get-groups): Don't bug out if the LIST command
11561         doesn't have any parameters.
11562
11563 2010-09-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11564
11565         * nnimap.el (nnimap-open-connection): Upcase all capabilities, and use
11566         only upcased checks.
11567
11568         * nnmail.el (nnmail-article-group): Fix typo in "bogus" section.
11569
11570         * nnimap.el (nnimap-open-shell-stream): New function.
11571         (nnimap-open-connection): Use it.
11572         (nnimap-transform-headers): Get the number of lines in each message.
11573         (nnimap-retrieve-headers): Query for BODYSTRUCTURE so that we get the
11574         number of lines.
11575         (nnimap-request-list): Not all servers return UIDNEXT.  Work past this
11576         problem.
11577
11578         * utf7.el (utf7-encode): Autoload.
11579
11580         * nnmail.el (nnmail-inhibit-default-split-group): New internal variable
11581         to allow the mail splitting to not return a default group.  This is
11582         useful for nnimap, which will leave unmatched mail in the inbox.
11583
11584         * nnimap.el: Rewritten.
11585
11586         * gnus.el (gnus-article-special-mark-lists): Add uid/active tuples, for
11587         nnimap usage.
11588
11589         * gnus-sum.el (gnus-summary-move-article): Pass the move-to group name
11590         if the move is internal, so that nnimap can do fast internal moves.
11591
11592         * gnus-start.el (gnus-get-unread-articles): Support early retrieval of
11593         data.
11594         (gnus-read-active-for-groups): Support finishing the early retrieval of
11595         data.
11596
11597         * gnus-range.el (gnus-range-nconcat): New function.
11598
11599         * gnus-int.el (gnus-finish-retrieve-group-infos)
11600         (gnus-retrieve-group-data-early): New functions.
11601
11602 2010-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
11603
11604         * nnrss.el (nnrss-retrieve-headers, nnrss-request-list-newsgroups)
11605         (nnrss-retrieve-groups):
11606         * pop3.el (pop3-open-server, pop3-read-response, pop3-list, pop3-retr)
11607         (pop3-quit): Use with-current-buffer.
11608
11609 2010-09-17  Katsumi Yamaoka  <yamaoka@jpl.org>
11610
11611         * pop3.el (pop3-wait-for-messages): Use pop3-accept-process-output
11612         instead of nnheader-accept-process-output.
11613
11614         * dgnushack.el (dgnushack-compile): Add comment.
11615
11616         * lpath.el: No need to fbind propertize for XEmacs 21.4.
11617
11618         * gnus-html.el (gnus-html-schedule-image-fetching)
11619         (gnus-html-prefetch-images): Replace process-kill-without-query by
11620         gnus-set-process-query-on-exit-flag.
11621
11622 2010-09-16  Romain Francoise  <romain@orebokech.com>
11623
11624         * gnus-html.el: Require gnus-art for `gnus-with-article-buffer'.
11625
11626 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11627
11628         * gnus-registry.el (gnus-registry-install-shortcuts): The second
11629         parameter to unintern is mandatory-ish in Emacs 24.
11630
11631         * gnus-html.el (gnus-html-schedule-image-fetching)
11632         (gnus-html-prefetch-images): Check for curl before using it.
11633
11634         * mm-decode.el (mm-text-html-renderer): Don't have gnus-article-html
11635         depend on curl, which isn't essential.
11636
11637         * imap.el: Revert back to version
11638         cb950ed8ff3e0f40dac437a51b269166f9ffb60d, since some of the changes
11639         seem problematic.
11640
11641 2010-09-14  Juanma Barranquero  <lekktu@gmail.com>
11642
11643         * gnus-registry.el (gnus-registry-install-shortcuts):
11644         Explicitly pass `obarray' to `unintern' to avoid a warning.
11645
11646 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11647
11648         * gnus-start.el (gnus-read-active-for-groups): Revert the previous
11649         change.
11650
11651         * nnrss.el (nnrss-request-list): Remove this function and related
11652         functions, including the moreover stuff.
11653
11654 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11655
11656         * nnrss.el (nnrss-retrieve-groups): New function.
11657
11658 2010-09-14  Juanma Barranquero  <lekktu@gmail.com>
11659
11660         * .dir-locals.el: Add no-byte-compile cookie.
11661
11662 2010-09-14  Katsumi Yamaoka  <yamaoka@jpl.org>
11663
11664         * time-date.el (format-seconds): Comment fix.
11665
11666         * gnus-start.el (gnus-read-active-for-groups): Run gnus-activate-group
11667         for back end that doesn't support request-scan.
11668
11669 2010-09-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11670
11671         * gnus-start.el (gnus-read-active-file-1): If gnus-agent isn't set,
11672         then do request scans from the backends.
11673
11674         * netrc.el (netrc-credentials): New conveniency function.
11675
11676         * gnus-sum.el (gnus-summary-update-hook): Change default to nil, to
11677         avoid running a hook per line, since this takes a lot of time,
11678         profiling shows.
11679         (gnus-summary-prepare-threads): Call `gnus-summary-highlight-line'
11680         directly if gnus-visual-p is true.
11681
11682 2010-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
11683
11684         * gnus-start.el (gnus-read-active-for-groups): Check only subscribed
11685         groups; replace mapcar with dolist which is a bit faster; pass groups
11686         info to gnus-read-active-file-1.
11687         (gnus-read-active-file-1): Scan only specified groups if the new
11688         optional arg `infos' is given.
11689
11690 2010-09-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11691
11692         * mail-source.el (mail-source-fetch-pop): Use pop3-movemail again.
11693
11694         * pop3.el (pop3-movemail): Remove.
11695         (pop3-streaming-movemail): Rename to pop3-movemail.
11696
11697         * gnus-html.el (gnus-html-wash-tags): Refactor out the image bit, and
11698         don't restrict end-tag searches to the end of the line.
11699
11700 2010-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
11701
11702         * gnus-start.el (gnus-get-unread-articles): Set the number of unread
11703         articles of every unchecked group to t, which means unknown since the
11704         server has never been opened.
11705
11706 2010-09-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11707
11708         * gnus-html.el (gnus-html-show-alt-text): New command.
11709         (gnus-html-browse-image): Ditto.
11710         (gnus-html-wash-tags): Add the data to allow showing the ALT text and
11711         to browse the image directly.
11712         (gnus-html-wash-tags): Search for images first, so that <a><img> works
11713         better.
11714
11715         * gnus-async.el (gnus-async-article-callback):
11716         Call `gnus-html-prefetch-images' unconditionally.
11717
11718         * gnus-html.el (gnus-html-schedule-image-fetching): Decode entities
11719         before feeding URLs to curl.
11720
11721 2010-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
11722
11723         * gnus-html.el (gnus-html-wash-tags, gnus-html-put-image): Mark cid and
11724         internal images as deletable by `W D D'.
11725
11726         * gnus-async.el (gnus-html-prefetch-images): Autoload it when compiling.
11727         (gnus-async-article-callback): Fix typo.
11728
11729 2010-09-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11730
11731         * gnus-html.el (gnus-html-wash-tags): Limit end-tag matching to the
11732         current line to work around bugs in the output from w3m.
11733
11734         * gnus-async.el (gnus-async-article-callback): Always prefetch images
11735         for groups that want that.
11736
11737         * nntp.el (nntp-wait-for-string): Supply a timeout for
11738         accept-process-output to ensure progress.
11739
11740         * gnus-start.el (gnus-get-unread-articles): If being given an explicit
11741         level to get unread articles from, then use that for foreign groups,
11742         too.
11743
11744         * gnus-html.el (gnus-html-wash-tags): Remove <a name...> tags, which
11745         confuses the rest of the function.
11746
11747         * gnus-start.el (gnus-read-active-for-groups): Do a `gnus-request-scan'
11748         for the methods that support -retrieve-groups, too.
11749
11750         * nnml.el (nnml-save-nov): Remove some debugging-related messages.
11751
11752 2010-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
11753
11754         * dgnushack.el (dgnushack-compile, dgnushack-make-cus-load)
11755         (dgnushack-make-auto-load): Exclude .dir-locals.el file.
11756
11757         * pop3.el: Require cl when compiling.
11758         (pop3-number-of-responses): Search for "+OK", not "+OK ".
11759
11760 2010-09-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11761
11762         * gnus-start.el (gnus-get-unread-articles): Don't bother with groups
11763         that aren't going to be activated.
11764         (gnus-get-unread-articles): Fix up the last commit.
11765
11766         * gnus-html.el (gnus-article-html): Allow calling without specifying
11767         the handle.  In that case, dissect the buffer first.
11768
11769         * gnus-sum.el (gnus-set-mode-line): Don't pad the mode line string.
11770
11771         * nnimap.el (nnimap-open-connection): Revert the change that would look
11772         into authinfo for imaps instead of imap.
11773
11774         * gnus-start.el (gnus-activate-group): Take an optional parameter to
11775         say that you don't want to call gnus-request-group with don-check, but
11776         do check the reponse.  This is for virtual groups only.
11777         (gnus-get-unread-articles): Count the archive groups as secondary, so
11778         that they're activated the same way as before.
11779
11780         * imap.el (imap-message-map): Removed optional buffer parameter, since
11781         no callers use it.
11782         (imap-message-get): Ditto.
11783         (imap-message-put): Ditto.
11784         (imap-mailbox-map): Ditto.
11785         (imap-mailbox-put): Ditto.
11786         (imap-mailbox-get): Ditto.
11787         (imap-mailbox-get): Revert last change for this function.
11788
11789         * nnimap.el (nnimap-request-list): Servers may return \NoSelect
11790         case-insensitively.
11791         (nnimap-debug): Remove.
11792
11793         * net/imap.el (imap-fetch-safe): Remove function, and alter all
11794         callers to use `imap-fetch' instead.  According to the comments, this
11795         should be safe, since all other IMAP clients use the 1:* syntax.
11796         (imap-enable-exchange-bug-workaround): Remove.
11797         (imap-debug): Remove -- doesn't seem very useful.
11798
11799         * mail-source.el (mail-source-fetch): Don't message if we're fetching
11800         mail from a file, and the file doesn't exist.
11801
11802         * imap.el (imap-log): New convenience function used throughout instead
11803         of repeating the same code all over the place.
11804
11805         * pop3.el (pop3-streaming-movemail): Return t for success.
11806
11807         * nnimap.el (nnimap-open-connection): Look for the "imaps" entry in the
11808         .authinfo if we're using ssl connection.
11809
11810         * nnvirtual.el (nnvirtual-create-mapping): Use the active info we
11811         already have if we're in a main Gnus `g' run.
11812
11813         * gnus-start.el (gnus-method-rank): Get info for virtual groups last.
11814
11815 2010-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
11816
11817         * gnus-start.el (gnus-method-rank): Replace equalp with equal.
11818
11819         * nnmh.el (nnmh-request-list-1): Bind `file'.
11820
11821         * pop3.el (pop3-set-process-query-on-exit-flag): New function that's an
11822         alias to set-process-query-on-exit-flag or process-kill-without-query.
11823         (pop3-open-server): Use it.
11824
11825 2010-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11826
11827         * mail-source.el (mail-source-delete-crash-box): Always move the crash
11828         box to the Incoming file.  Fixes mistake in previous checkin.
11829
11830         * pop3.el (pop3-send-streaming-command): Off-by-one error on the
11831         request loop (for debugging purposes) removed.
11832
11833         * nnml.el (nnml-save-nov): Message around nnml-save-nov so that the
11834         culprit is more visible.
11835         (nnml-save-incremental-nov, nnml-open-incremental-nov)
11836         (nnml-add-incremental-nov): New functions to do "incremental" nov
11837         updates, where we just append to the end of the existing nov files
11838         without reading/writing them in full.
11839
11840         * mail-source.el (mail-source-delete-crash-box): Really only check the
11841         incoming files once in a while.
11842
11843         * pop3.el (pop3-streaming-movemail): Always close the pop3 connection.
11844
11845         * mail-source.el (mail-source-delete-crash-box): Only check the
11846         incoming files for deletion once per day to save a lot of file
11847         accesses.
11848
11849         * pop3.el (pop3-logon): Fix up unbound variable typo.
11850
11851         * mail-source.el (pop3-streaming-movemail): Autoload.
11852
11853         * pop3.el (pop3-streaming-movemail):
11854         Respect pop3-leave-mail-on-server.
11855
11856         * mail-source.el (mail-source-fetch-pop): Use streaming pop3
11857         retrieval.
11858
11859         * pop3.el (pop3-process-filter): Remove unused function.
11860         (pop3-streaming-movemail, pop3-send-streaming-command)
11861         (pop3-wait-for-messages, pop3-write-to-file)
11862         (pop3-number-of-responses): New functions for streaming pop3
11863         retrieval.
11864
11865         * gnus-start.el (gnus-get-unread-articles): Protect against groups that
11866         come from no known methods.
11867         (gnus-make-hashtable-from-newsrc-alist): Remove duplicates from .newsrc
11868         list.
11869
11870         * pop3.el (pop3-display-message-size-flag): Remove -- everybody wants
11871         message sizes.
11872         (pop3-movemail): Use erase-buffer instead of looping and deleting
11873         regions, which seems rather odd.
11874
11875         * gnus-agent.el (gnus-agent-load-local): Only read the agent.lib/local
11876         file once per `g' run.
11877
11878         * nnmh.el (nnmh-request-list-1): Output active lines also for empty
11879         directories.  This makes the draft queue directory work.
11880
11881         * gnus-start.el (gnus-get-unread-articles): Rewrite the way we request
11882         data from the backends, so that we only request the list of groups from
11883         each method once.  This should speed things up considerably.
11884
11885         * nnvirtual.el (nnvirtual-request-list): Remove function so that we can
11886         detect that it's not implemented.
11887
11888         * nnmh.el (nnmh-request-list-1): Fix up the recursion behavior so that
11889         we actually do recurse down into the tree, but don't stat all leaf
11890         nodes.
11891
11892         * gnus-html.el (gnus-html-show-images): If there are no images to show,
11893         then say so instead of bugging out.
11894
11895         * gnus-agent.el (gnus-agent-load-alist): Check whether the agentview
11896         files exist before trying to read them.
11897
11898         * gnus-html.el (gnus-html-wash-tags): Remove even more white space
11899         around <pre_int>.
11900
11901         * gnus-art.el (gnus-article-copy-string): Say what data we copied.
11902
11903         * nnmh.el (nnmh-request-list-1): Optimize for speed.
11904
11905 2010-09-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11906
11907         * mm-util.el (mm-image-load-path): Just return the image directories,
11908         not all directories in the path in addition to the image directories.
11909         (mm-image-load-path): Maintain a cache of the image directories so that
11910         the `g' command in Gnus doesn't have to stat dozens of directories each
11911         time.
11912
11913         * gnus-html.el (gnus-html-put-image): Allow images to be removed.
11914         (gnus-html-wash-tags): Add a new `i' command to insert images.
11915         (gnus-html-insert-image): New command and keystroke.
11916         (gnus-html-redisplay-with-images): New command and keystroke.
11917         (gnus-html-show-images): Rename command.
11918         (gnus-html-wash-tags): Remove more white space before <pre_int> image
11919         spacers.
11920         (gnus-html-wash-tags): Decode entities at the end, so that entities
11921         inside the tags don't mess up the rest of the "parsing".
11922
11923         * gnus-agent.el (gnus-agent-auto-agentize-methods): Change the default
11924         so that nnimap methods aren't agentized by default.  There's apparently
11925         many problems related to agent/imap behavior.
11926
11927         * gnus-art.el (gnus-article-copy-string): New command and key binding.
11928
11929         * gnus-html.el: Doc fix.
11930
11931 2010-09-03  Katsumi Yamaoka  <yamaoka@jpl.org>
11932
11933         * lpath.el: Fbind device-on-window-system-p, glyph-image, glyphp, and
11934         specifier-spec-list for Emacs 21.
11935
11936         * gnus-html.el (gnus-html-put-image): Use gnus-graphic-display-p,
11937         glyph-width and glyph-height instead of display-graphic-p and
11938         image-size; make avoidance of displaying small images work for XEmacs.
11939
11940         * gnus-util.el (gnus-graphic-display-p): Use device-on-window-system-p
11941         for XEmacs.
11942
11943         * gnus-ems.el (gnus-set-process-plist, gnus-process-plist): Change name
11944         of symbol that holds plist data.
11945         (gnus-process-plist): Remove plist of process after getting it.
11946
11947 2010-09-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11948
11949         * message.el (message-generate-hashcash): Change default to
11950         'opportunistic if hashcash is installed.
11951
11952         * gnus-html.el (gnus-html-rescale-image): Fix up typo in rescaling.
11953         (gnus-html-put-image): Only call image-size once, since it's somewhat
11954         time-consuming on remote X servers.
11955
11956 2010-09-02  Katsumi Yamaoka  <yamaoka@jpl.org>
11957
11958         * gnus-xmas.el (gnus-xmas-create-image): Don't try to examine image
11959         type on data, not a file name.
11960
11961         * lpath.el: Fbind w3-parse-buffer for Emacs <=22 and XEmacs; fbind
11962         window-pixel-edges for Emacs 21.
11963
11964         * gnus-html.el (gnus-article-html): Make work buffer multibyte for
11965         decoded contents.
11966         (gnus-html-put-image, gnus-html-rescale-image): Pass `file' argument.
11967
11968 2010-09-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11969
11970         * gnus-group.el (gnus-group-line-format): Remove %O (moderated) from
11971         group line format, since it isn't very interesting.
11972
11973         * gnus-agent.el (gnus-agent-short-article),
11974         (gnus-agent-long-article): Increase values for these two variables,
11975         since most people are likely to have more network connection and
11976         storage than before.
11977
11978         * gnus.el (gnus-refer-article-method): Change default to 'current.
11979         When referring an article, the common behavior is to refer it from the
11980         current select method, not the native select method.  The chances of
11981         the native select method having the message in question is rather slim
11982         these days.
11983
11984         * gnus-sum.el (gnus-auto-select-subject): Change default to
11985         `unseen-or-unread'.  I think it's likely that most people want to
11986         select an unseen article over a previously seen, but unread one.
11987
11988         * gnus.el (gnus-mode-non-string-length): Change default to 30.  nil
11989         means that in the article buffer none of the minor mode elements will
11990         be shown, usually, and this is not desirable in most cases.
11991
11992         * gnus-sum.el (gnus-summary-goto-unread): Change default to nil, so
11993         that commands like `d' (and the like) go to the next line in the
11994         buffer, instead of the next unread article.  I think this is the
11995         behavior that is most natural for most users.
11996         (gnus-single-article-buffer): Change default to nil, so that people can
11997         have as many article buffers open as they have summary buffer.  I think
11998         this is the most natural way for the groups to behave.
11999
12000         * message.el (message-generate-new-buffers): Change default to
12001         `unsent', so that all new message buffers start their names with the
12002         string "*unsent", and it's easier to find the buffers if you move from
12003         them.
12004
12005 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12006
12007         * gnus-html.el (gnus-html-wash-tags): Don't show images that are really
12008         small.  They're probably tracking images.
12009         (gnus-html-wash-tags): Remove all <pre_int> place holders.
12010         (gnus-html-rescale-image): Yet another try at getting the image sizing
12011         right.
12012
12013         * nntp.el (nntp-request-set-mark): Refuse to do marks if
12014         nntp-marks-file-name is nil.
12015
12016 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
12017
12018         * gnus-html.el (gnus-html-wash-tags)
12019         (gnus-html-schedule-image-fetching, gnus-html-image-url-blocked-p):
12020         Better logging.
12021
12022 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12023
12024         * nndoc.el (nndoc-type-alist): Add a new type for Google digests.
12025
12026         * gnus-html.el (gnus-html-wash-tags): Check the value of
12027         gnus-blocked-images in the summary buffer.
12028
12029 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
12030
12031         * gnus-html.el (gnus-html-image-url-blocked-p): Doc fix.
12032
12033 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12034
12035         * gnus-html.el (gnus-html-wash-tags): "A" is also used for links, just
12036         like "a", it seems like.
12037         (gnus-html-image-url-blocked-p): Take a parameter for blocked-images
12038         since it needs to be picked from the correct buffer.
12039
12040         * nnwfm.el: Remove.
12041
12042         * nnlistserv.el: Remove.
12043
12044 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
12045
12046         * gnus-html.el (gnus-html-image-url-blocked-p): New function.
12047         (gnus-html-prefetch-images, gnus-html-wash-tags): Use it.
12048
12049 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12050
12051         * nnkiboze.el: Remove.
12052
12053         * nndb.el: Remove.
12054
12055         * gnus-html.el (gnus-html-put-image): Use the deleted text as the image
12056         alt text.
12057         (gnus-html-rescale-image): Try to get the rescaling logic right for
12058         images that are just wide and not tall.
12059
12060         * gnus.el (gnus-string-or): Fix the syntax to not use eval or
12061         overshadow variable bindings.
12062
12063 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
12064
12065         * gnus-html.el (gnus-html-wash-tags)
12066         (gnus-html-schedule-image-fetching, gnus-html-prefetch-images):
12067         Add extra logging.
12068
12069 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12070
12071         * gnus-html.el (gnus-html-wash-tags): Delete the IMG_ALT region.
12072         (gnus-max-image-proportion): New variable.
12073         (gnus-html-rescale-image): New function.
12074         (gnus-html-put-image): Rescale images.
12075
12076 2010-09-01  Stefan Monnier  <monnier@iro.umontreal.ca>
12077
12078         Fix up some byte-compiler warnings.
12079         * gnus.el (gnus-group-find-parameter, gnus-kill-save-kill-buffer):
12080         * gnus-cite.el (gnus-article-highlight-citation, gnus-dissect-cited-text)
12081         (gnus-article-fill-cited-article, gnus-article-hide-citation)
12082         (gnus-article-hide-citation-in-followups, gnus-cite-toggle):
12083         * gnus-group.el (gnus-group-set-mode-line, gnus-group-quit)
12084         (gnus-group-set-info, gnus-add-mark): Use with-current-buffer.
12085         (gnus-group-update-group): Use save-excursion and with-current-buffer.
12086
12087 2010-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
12088
12089         * gnus-html.el (gnus-article-html): Decode contents by charset.
12090
12091 2010-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
12092
12093         * gnus-html.el (gnus-html-cache-directory, gnus-html-cache-size)
12094         (gnus-html-frame-width, gnus-blocked-images):
12095         * message.el (message-prune-recipient-rules): Add custom version.
12096         * gnus-sum.el (gnus-auto-expirable-marks): Bump custom version.
12097
12098         * gnus-ems.el (gnus-process-get, gnus-process-put): New compatibility
12099         functions.
12100
12101         * gnus-html.el (gnus-html-curl-sentinel): Replace process-get with
12102         gnus-process-get.
12103
12104 2010-08-31  Julien Danjou  <julien@danjou.info>  (tiny change)
12105
12106         * nnimap.el (nnimap-request-newgroups): Use nnimap-request-list-method
12107         instead of lsub directly.
12108
12109 2010-08-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12110
12111         * nnwarchive.el: Remove.
12112
12113         * gnus-soup.el: Remove.
12114
12115         * nnsoup.el: Remove.
12116
12117         * nnultimate.el: Remove.
12118
12119         * gnus-html.el (gnus-blocked-images): New variable.
12120
12121         * message.el (message-prune-recipients): New function.
12122         (message-prune-recipient-rules): New variable.
12123
12124         * gnus-cite.el (gnus-article-natural-long-line-p): New function to
12125         guess whether a long line is natural text or not.
12126
12127         * gnus-html.el (gnus-html-schedule-image-fetching):
12128         Use gnus-process-plist and friends for compatibility.
12129
12130 2010-08-31  Stefan Monnier  <monnier@iro.umontreal.ca>
12131
12132         * gnus-html.el: Require packages that define macros used in this file.
12133         (gnus-article-mouse-face): Declare to silence byte-compiler.
12134         (gnus-html-curl-sentinel): Use with-current-buffer, inhibit-read-only, and
12135         process-get.
12136         (gnus-html-put-image): Use plist-get to avoid getf.
12137         (gnus-html-prefetch-images): Use with-current-buffer.
12138
12139 2010-08-31  Katsumi Yamaoka  <yamaoka@jpl.org>
12140
12141         * gnus-ems.el: Provide compatibility functions for
12142         gnus-set-process-plist.
12143
12144         * lpath.el: Bind completion-styles for Emacs 21 and XEmacs; bind
12145         header-line-format for XEmacs 21.4.
12146
12147         * gnus-sum.el (gnus-summary-stop-at-end-of-message):
12148         * gnus.el (gnus-valid-select-methods):
12149         * message.el (message-send-mail-partially-limit):
12150         * mm-decode.el (mm-text-html-renderer):
12151         * mml.el (mml-insert-mime-headers-always):
12152         * smiley.el (smiley-regexp-alist): Bump custom version.
12153
12154 2010-08-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12155
12156         * gnus-html.el: Require mm-url.
12157         (gnus-html-wash-tags): Clarify the code a bit by renaming the variable
12158         with the url to `url'.
12159         (gnus-html-wash-tags): Support cid: URLs/images.
12160
12161 2010-08-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12162
12163         * gnus-sum.el: As per discussion 3 years, 8 weeks, 3 days, 9 hours, 57
12164         minutes, 56 seconds ago on the ding list, remove the `w' and `i'
12165         bindings, as they aren't useful at all.  `w' is moved to `W w'.
12166
12167         * gnus-move.el: Remove file, since it doesn't really work.
12168
12169         * gnus-html.el (gnus-article-html): Tell w3m that the input is
12170         UTF-8.  This seems to fix problems with some German web feeds.
12171
12172         * gnus.el (gnus-group-startup-message): Put the xpm version of the logo
12173         at the top so that the proper colors are applied.
12174
12175         * gnus-xmas.el (gnus-xmas-create-image): Make this work on files that
12176         don't have dots in their names.
12177
12178         * gnus-art.el (gnus-article-view-part): Doc fix.
12179
12180         * gnus-html.el (gnus-html-put-image): Use gnus-create-image to be
12181         XEmacs-compatible.
12182         (gnus-html-put-image): Don't do images on non-graphic displays.
12183
12184         * nnslashdot.el: Remove this unused backend.
12185
12186         * gnus-undo.el (gnus-undo-register-1): Limit the undo actions to 100
12187         actions.
12188         (gnus-undo-register-1): Revert last change.
12189
12190         * gnus-group.el (gnus-group-completing-read): Protect against not
12191         having completion-styles bound.
12192
12193         * mml.el (mml-insert-mime-headers-always): Change the default to t, to
12194         make broken recipients happier.
12195
12196         * gnus-html.el (gnus-html-put-image): Use gnus-put-image.
12197
12198         * gnus-ems.el (gnus-put-image): Have gnus-put-image take an optional
12199         point parameter.
12200
12201         * gnus-xmas.el (gnus-xmas-put-image): Ditto.
12202
12203         * gnus-group.el (gnus-group-completing-read): Add 'substring to
12204         completion-styles for group selection.
12205
12206 2009-02-04  Andreas Schwab  <schwab@suse.de>
12207
12208         * gnus-score.el (gnus-score-string): Fix regex for matching extra
12209         headers and regexp-quote the match if necessary.
12210
12211 2009-03-24  Miles Bader  <miles@gnu.org>
12212
12213         * smiley.el (smiley-regexp-alist): Don't delete the semicolon before
12214         the blinking smiley.
12215
12216 2009-03-24  Simon Josefsson  <simon@josefsson.org>
12217
12218         * smiley.el (smiley-regexp-alist): Disallow ;;) from being treated as a
12219         blink smiley.
12220
12221 2010-08-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12222
12223         * gnus-start.el (gnus-dribble-read-file): Ensure that the directory
12224         where the dribbel file lives exists.
12225
12226         * message.el (message-send-mail-partially-limit): Change the default to
12227         nil, since most people don't want this.
12228
12229         * mm-url.el (mm-url-decode-entities): Also decode entities like
12230         &#x3212.
12231
12232 2009-07-16  Kevin Ryde  <user42@zip.com.au>  (tiny change)
12233
12234         * gnus-sum.el (gnus-summary-idna-message):
12235         * nnrss.el (nnrss-normalize-date, nnrss-discover-feed):
12236         Hyperlink urls in docstrings with URL `...'.
12237
12238 2010-08-29  Adam Sjøgren  <asjo@koldfront.dk>
12239
12240         * gnus-html.el (gnus-html-put-image): Use XEmacs-compatible image
12241         functions.
12242
12243 2010-08-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12244
12245         * gnus-art.el (gnus-article-add-button): Take an optional parameter to
12246         say what the mouseover text should be.
12247
12248         * gnus-html.el (gnus-html-prefetch-images): Use the summary-local
12249         version of the mm-w3m-safe-url-regexp variable to only download images
12250         in the groups where we want that to happen.
12251
12252         * gnus-sum.el (gnus-summary-stop-at-end-of-message): New variable.
12253
12254         * gnus-art.el (gnus-article-beginning-of-window): Make into defun for
12255         easier debugging.
12256         (gnus-article-beginning-of-window): Add kludge to allow spacing past
12257         big pictures in the article buffer.
12258
12259         * mm-decode.el (mm-text-html-renderer): Default the html renderer to
12260         gnus-article-html.
12261         (mm-text-html-renderer): gnus-article-html needs curl in addition to
12262         w3m.
12263
12264         * gnus-html.el: Start a new super-simple HTML renderer based on w3m.
12265
12266 2010-08-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12267
12268         * gnus.el (gnus-valid-select-methods): Remove reference to nngoogle,
12269         which doesn't exist.
12270
12271         * message.el (message-inhibit-ecomplete): New variable to allow some
12272         function to inhibit ecomplete address storage.
12273         (message-resend): Disable ecomplete message storage when resending
12274         messages.
12275
12276         * nntp.el (nntp-async-kluge): Remove the Emacs 20.3-related kluge.
12277
12278 2010-08-27  Katsumi Yamaoka  <yamaoka@jpl.org>
12279
12280         * gnus-sum.el (gnus-summary-move-article, gnus-summary-delete-article):
12281         Save excursion while copying, moving, and deleting articles in order to
12282         prevent the cursor from jumping to unforeseen place.
12283
12284 2010-08-17  Katsumi Yamaoka  <yamaoka@jpl.org>
12285
12286         * lpath.el: No need to bind bookmark-current-buffer,
12287         bookmark-yank-point and bookmark-make-record-function.
12288
12289 2010-08-17  Glenn Morris  <rgm@gnu.org>
12290
12291         * gnus-sync.el: Require gnus components whose functions are used.
12292
12293         * gnus-art.el (bookmark-make-record-function):
12294         * gnus-sum.el (bookmark-yank-point, bookmark-current-bookmark):
12295         Declare for compiler.
12296
12297         * mm-url.el (mml-compute-boundary): Autoload.
12298
12299 2010-08-15  Katsumi Yamaoka  <yamaoka@jpl.org>
12300
12301         * gnus-start.el (gnus-start-draft-setup): Move doc string forward.
12302
12303 2010-08-14  Teodor Zlatanov  <tzz@lifelogs.com>
12304
12305         Typo fix "hoo4a" -> "hook".
12306
12307         * gnus-sync.el (gnus-sync-install-hooks): Typo fix.
12308
12309 2010-08-14  Glenn Morris  <rgm@gnu.org>
12310
12311         * gnus-sync.el (gnus-sync): Fix defgroup version.
12312
12313 2010-08-13  Teodor Zlatanov  <tzz@lifelogs.com>
12314
12315         Doc fixes and keep unknown groups (ammended for nunion bug fix).
12316
12317         * gnus-sync.el: Fix docs.
12318         (gnus-sync-save): Keep unknown groups in `gnus-sync-newsrc-loader'.
12319         (gnus-sync-read): Don't wipe `gnus-sync-newsrc-loader' after reading.
12320
12321 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
12322
12323         Optimizations for gnus-sync.el.
12324
12325         * gnus-sync.el: Add docs about gnus-sync-backend
12326         possibilities.
12327         (gnus-sync-save): Remove unnecessary message.
12328         (gnus-sync-read): Optimize and show what groups were skipped.
12329
12330 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
12331
12332         Minor bug fixes for gnus-sync.el.
12333
12334         * gnus-sync.el (gnus-sync-unload-hook, gnus-sync-install-hooks):
12335         Don't read the sync on get-new-news.
12336
12337         * gnus-sync.el (gnus-sync-save): Define `variable' so the compiler is
12338         quiet.
12339
12340         * gnus-sync.el (gnus-sync-read): Use `gnus-sync-newsrc-offsets'
12341         (fix typo).
12342
12343 2010-07-30  Lawrence Mitchell  <wence@gmx.li>
12344
12345         Make saving and restoring of hidden threads work with overlays.
12346         Patch applied by Ted Zlatanov.
12347
12348         * gnus-sum.el (gnus-hidden-threads-configuration)
12349         (gnus-restore-hidden-threads-configuration): Update to deal with text
12350         properties, rather than searching for a magic character.
12351
12352 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
12353
12354         New gnus-sync.el library for synchronization of marks.
12355
12356         * gnus-sync.el: New library for synchronization of marks.
12357
12358         * gnus-util.el (gnus-grep-in-list): Move from gnus-registry.el and
12359         renamed from `gnus-registry-grep-in-list'.
12360
12361         * gnus-registry.el (gnus-registry-follow-group-p):
12362         Use `gnus-grep-in-list'.
12363
12364         * gnus-start.el (gnus-start-draft-setup): Make it interactive.
12365
12366 2010-08-06  Katsumi Yamaoka  <yamaoka@jpl.org>
12367
12368         * rfc2047.el (rfc2047-encode): Use utf-8 as a last resort if
12369         determining charset of text fails.
12370
12371 2010-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
12372
12373         * nnmail.el (nnmail-get-new-mail-1): Revert.
12374
12375         * nnml.el (nnml-active-number): Make sure names of newly created groups
12376         in nnml-group-alist are encoded.
12377
12378 2010-07-30  Katsumi Yamaoka  <yamaoka@jpl.org>
12379
12380         * nnmail.el (nnmail-get-new-mail-1): Encode group names possibly
12381         containing non-ASCII characters in active file for nnml back end.
12382
12383 2010-07-24  David Engster  <dengste@eml.cc>
12384
12385         * mml-smime.el (mml-smime-epg-verify): Also accept the older
12386         x-pkcs7-signature MIME type as signature (RFC 2311, C.1).
12387
12388 2010-07-21  Daiki Ueno  <ueno@unixuser.org>
12389
12390         * mml.el (mml-parse-1): Collect "certfile" attributes in "<#secure>"
12391         tag (Bug#6654).
12392
12393 2010-07-20  Katsumi Yamaoka  <yamaoka@jpl.org>
12394
12395         * gnus-sum.el (gnus-summary-bookmark-make-record): Bookmark position in
12396         the article buffer, not the summary buffer.
12397
12398 2010-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
12399
12400         * gnus-sum.el (gnus-summary-bookmark-make-record): Make it work for
12401         Emacs 23 as well.
12402
12403 2010-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
12404
12405         * lpath.el: Bind bookmark-current-buffer, bookmark-yank-point for all
12406         Emacs versions; bind bookmark-make-record-function for Emacs >=22.
12407
12408 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
12409
12410         Allow C-w when setting a bookmark in a Gnus Article buffer (Bug#5975).
12411         Patch applied by Karl Fogel.
12412
12413         * gnus-sum.el (gnus-summary-bookmark-make-record):
12414         Set `bookmark-yank-point' and `bookmark-current-buffer' to allow C-w.
12415
12416 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
12417
12418         Allow bookmarks to be set from Gnus Article buffers (Bug#5975).
12419         Patch applied (with minor tweaks) by Karl Fogel.  Note this leaves
12420         C-w still not working correctly from Article buffers; Thierry's
12421         patch to fix that will be applied after this.
12422
12423         * gnus-art.el (bookmark-make-record-function): New local variable.
12424
12425         * gnus-sum.el (gnus-summary-bookmark-make-record): Allow setting from
12426         article buffer.
12427         (gnus-summary-bookmark-jump): Maybe jump to article buffer.
12428
12429 2010-07-13  Karl Fogel  <kfogel@red-bean.com>
12430
12431         * gnus-sum.el (bookmark-make-record-default): Adjust declaration, based
12432         on changes in bookmark.el.
12433
12434 2010-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
12435
12436         * gnus-xmas.el (gnus-xmas-read-event-char): Use display-message with
12437         `no-log' instead of message not to log prompt string.
12438
12439 2010-06-22  Mark A. Hershberger  <mah@everybody.org>
12440
12441         * mm-url.el (mm-url-encode-multipart-form-data): New function to handle
12442         the *other* type of HTML form submission.
12443
12444 2010-06-15  Michael Albinus  <michael.albinus@gmx.de>
12445
12446         * auth-source.el (auth-source-pick): If choice does not contain a
12447         questioned keyword, set the check to t.
12448
12449 2010-06-12  Romain Francoise  <romain@orebokech.com>
12450
12451         * gnus-util.el (gnus-date-get-time): Move up before first use.
12452
12453 2010-06-10  Katsumi Yamaoka  <yamaoka@jpl.org>
12454
12455         * gnus-art.el (gnus-mime-buttonized-part-id): New internal variable.
12456         (gnus-article-edit-part): Bind it to make last part that is substituted
12457         or deleted visible.
12458         (gnus-mime-display-single): Buttonize part of which id equals to
12459         gnus-mime-buttonized-part-id.
12460
12461 2010-06-10  Dan Christensen  <jdc@uwo.ca>
12462
12463         * gnus-util.el (gnus-user-date): Use gnus-date-get-time.
12464         (gnus-dd-mmm): Use gnus-date-get-time.
12465         * gnus-sum.el (gnus-thread-latest-date): Use gnus-date-get-time and
12466         simplify logic.
12467         (gnus-summary-limit-to-age): Use gnus-date-get-time.
12468         (gnus-sort-threads): Emit message if gnus-sort-threads-loop used.
12469
12470 2010-06-08  Michael Albinus  <michael.albinus@gmx.de>
12471
12472         * auth-source.el (top): Autoload `secrets-list-collections',
12473         `secrets-create-item', `secrets-delete-item'.
12474         (auth-sources): Fix tag string.
12475         (auth-get-source, auth-source-retrieve, auth-source-create)
12476         (auth-source-delete): New defuns.
12477         (auth-source-pick): Rewrite in order to avoid 2 passes.
12478         (auth-source-forget-user-or-password): New parameter USERNAME.
12479         (auth-source-user-or-password): New parameters CREATE-MISSING and
12480         DELETE-EXISTING.  Retrieve password interactively, if needed.
12481
12482 2010-06-07  Teemu Likonen  <tlikonen@iki.fi>  (tiny change)
12483
12484         * gnus-agent.el (gnus-agent-expire-unagentized-dirs): Don't ask about
12485         deleting unused directories when gnus-expert-user is t.
12486
12487 2010-06-02  Katsumi Yamaoka  <yamaoka@jpl.org>
12488
12489         * gnus-art.el (gnus-article-browse-delete-temp-files): Don't make query
12490         for each temp file when gnus-article-browse-delete-temp is ask.
12491
12492 2010-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
12493
12494         * gnus-uu.el, imap.el, nndoc.el, nnrss.el, rfc2047.el, utf7.el:
12495         Replace Lisp calls to delete-backward-char by calls to delete-char.
12496
12497 2010-05-20  Kevin Ryde  <user42@zip.com.au>
12498
12499         * gnus-start.el (gnus-level-unsubscribed): Doc fix.  (Bug#6206)
12500
12501 2010-05-19  Michael Albinus  <michael.albinus@gmx.de>
12502
12503         * password-cache.el (password-cache-remove): Fix docstring.
12504
12505 2010-05-14  Katsumi Yamaoka  <yamaoka@jpl.org>
12506
12507         * gnus-sum.el (gnus-summary-save-article): Don't bother to re-fetch
12508         article unless decoding article to be saved.
12509
12510 2010-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
12511
12512         * mml1991.el (mml1991-mailcrypt-encrypt, mml1991-gpg-encrypt):
12513         * mml2015.el (mml2015-gpg-encrypt): Disable multibyte in buffers
12514         generated within the mm-with-unibyte-current-buffer macro.
12515
12516 2010-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
12517
12518         * gnus-art.el (gnus-bind-safe-url-regexp): Bind mm-w3m-safe-url-regexp
12519         to nil when we're in a mml-preview buffer and no group is selected.
12520
12521 2010-05-12  Andreas Seltenreich  <seltenreich@gmx.de>
12522
12523         * gnus-sum.el (gnus-summary-read-group-1): Don't jump to next group
12524         when catching the `C-g'.  Reported by "Leo".
12525
12526 2010-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
12527
12528         * message.el (message-forward-make-body-plain)
12529         (message-forward-make-body-mml): Use mm-multibyte-string-p instead of
12530         multibyte-string-p.
12531
12532         * lpath.el: Revert.
12533
12534 2010-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
12535
12536         * message.el (message-forward-make-body-mml): Assume original message
12537         is multibyte string; error on unibyte.
12538         (message-forward-make-body-plain): Ditto; don't add excessive newline
12539         in body end.
12540
12541         * lpath.el: Fbind multibyte-string-p for XEmacs 21.4 and SXEmacs.
12542
12543 2010-05-11  Andreas Seltenreich  <seltenreich@gmx.de>
12544
12545         * gnus-sum.el (gnus-summary-kill-thread): Use gnus-summary-mark-article
12546         instead of g-s-m-a-as-unread to set the expirable mark.  (Bug#5284)
12547
12548 2010-05-11  Katsumi Yamaoka  <yamaoka@jpl.org>
12549
12550         * mm-extern.el (mm-extern-url): Don't use
12551         mm-with-unibyte-current-buffer.
12552         (mm-extern-cache-contents): Use with-current-buffer instead of
12553         save-excursion + set-buffer.
12554
12555 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
12556
12557         * mm-util.el (mm-emacs-mule): Remove.
12558
12559 2010-05-10  Andreas Seltenreich  <seltenreich@gmx.de>
12560
12561         * gnus-sum.el (gnus-summary-mode): Don't make minor-mode-alist
12562         buffer-local as it's incompatible with Stefan Monnier's 2010-05-03
12563         change.
12564
12565 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
12566
12567         * mm-util.el (mm-with-unibyte-current-buffer): Redefine it so as not to
12568         bind the default value of enable-multibyte-characters to nil.
12569
12570 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
12571
12572         * message.el (message-forward-make-body-plain)
12573         (message-forward-make-body-mml):
12574         Don't use mm-with-unibyte-current-buffer.
12575
12576 2010-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
12577
12578         * dns-mode.el (auto-mode-alist): Add entry for .zone files.
12579
12580 2010-05-07  Christian von Roques  <roques@mti.ag>  (tiny change)
12581
12582         * mml2015.el (mml2015-epg-find-usable-key): Skip disabled key
12583         (Bug#5592).
12584
12585 2010-05-07  Julien Danjou  <julien@danjou.info>
12586
12587         * gnus-art.el (gnus-mime-pipe-part): Add optional argument `cmd'; pass
12588         it to mm-pipe-part.
12589
12590         * mm-decode.el (mm-pipe-part): Add optional argument `cmd'; use it if
12591         it is given.
12592
12593 2010-05-07  Katsumi Yamaoka  <yamaoka@jpl.org>
12594
12595         * binhex.el (binhex-decode-region-internal):
12596         * dns.el (dns-read-string-name, dns-write, dns-read, dns-read-type):
12597         (dns-query):
12598         * nnweb.el (nnweb-gmane-search):
12599         * pgg-parse.el (pgg-parse-armor):
12600         * pgg.el (pgg-verify-region):
12601         * sha1.el (sha1-string-external):
12602         * uudecode.el (uudecode-decode-region-internal):
12603         * yenc.el (yenc-decode-region): Don't run set-buffer-multibyte for
12604         XEmacs.
12605
12606         * gnus-art.el (gnus-article-browse-html-parts):
12607         * gnus-group.el (gnus-read-ephemeral-gmane-group):
12608         (gnus-read-ephemeral-bug-grou): Use mm-make-temp-file instead of
12609         make-temp-file.
12610
12611         * gnus-dired.el (gnus-dired-mode): Bind gnus-dired-mode-hook,
12612         gnus-dired-mode-on-hook and gnus-dired-mode-off-hook for XEmacs when
12613         compiling.
12614
12615         * gnus-ml.el (gnus-mailing-list-mode): Bind gnus-mailing-list-mode-hook,
12616         gnus-mailing-list-mode-on-hook and gnus-mailing-list-mode-off-hook for
12617         XEmacs when compiling.
12618
12619         * gnus-salt.el (gnus-pick-mode): Bind gnus-pick-mode-on-hook and
12620         gnus-pick-mode-off-hook for XEmacs when compiling.
12621         (gnus-binary-mode): Bind gnus-binary-mode-on-hook and
12622         gnus-binary-mode-off-hook for XEmacs when compiling.
12623
12624         * gnus-sum.el (gnus-summary-limit-strange-charsets-predicate):
12625         Return nil if char-charset is not available.
12626
12627         * imap.el (imap-disable-multibyte)
12628         * sieve-manage.el (sieve-manage-disable-multibyte): Redefine them as
12629         macros.
12630
12631         * mm-url.el (mm-url-form-encode-xwfu): Use mm-encode-coding-string
12632         instead of encode-coding-string.
12633
12634         * mm-util.el (mm-enable-multibyte, mm-disable-multibyte): Use (featurep
12635         'xemacs) instead of mm-emacs-mule to switch function definitions.
12636         (mm-with-unibyte-current-buffer): Make it a progn macro for XEmacs.
12637
12638         * lpath.el: Fbind delete-overlay and overlay-lists for XEmacs;
12639         bind temporary-file-directory for XEmacs;
12640         fbind make-temp-file, set-buffer-multibyte, string-as-multibyte and
12641         timer-set-function for XEmacs 21.4 and SXEmacs;
12642         bind timer-list for XEmacs 21.4 and SXEmacs;
12643         fbind char-charset and find-charset-region for non-Mule XEmacs;
12644         fbind decode-coding-region, decode-coding-string, detect-coding-region,
12645         encode-coding-region and encode-coding-string for XEmacs having no
12646         file-coding feature.
12647
12648 2010-05-06  Tommi Vainikainen  <thv@iki.fi>  (tiny change)
12649
12650         * mml-sec.el (mml-secure-message-sign): Fix cut and paste error.
12651
12652 2010-05-06  Katsumi Yamaoka  <yamaoka@jpl.org>
12653
12654         * gnus-dired.el, gnus-draft.el, gnus-ml.el, gnus-salt.el, gnus-sum.el,
12655         gnus-undo.el, mml.el: Require easy-mmode for XEmacs when compiling.
12656
12657 2010-05-03  Juanma Barranquero  <lekktu@gmail.com>
12658
12659         * mm-util.el (mm-decompress-buffer): Use `delete-file';
12660         alias `jka-compr-delete-temp-file' no longer exists.
12661
12662 2010-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
12663
12664         Use define-minor-mode in Gnus where applicable.
12665         * mml.el (mml-mode): Use define-minor-mode.
12666         * gnus-undo.el (gnus-undo-mode-map): Initialize in declaration.
12667         (gnus-undo-mode): Use define-minor-mode.
12668         * gnus-sum.el (gnus-dead-summary-mode-map): Initialize in declaration.
12669         (gnus-dead-summary-mode): Use define-minor-mode.
12670         * gnus-salt.el (gnus-pick-mode-map, gnus-binary-mode-map):
12671         Initialize in declaration.
12672         (gnus-pick-mode, gnus-binary-mode): Use define-minor-mode.
12673         * gnus-ml.el (gnus-mailing-list-mode-map): Initialize in declaration.
12674         (gnus-mailing-list-mode): Use define-minor-mode.
12675         * gnus-draft.el (gnus-draft-mode-map): Initialize in declaration.
12676         (gnus-draft-mode): Use define-minor-mode.
12677         * gnus-dired.el (gnus-dired-mode-map): Initialize in declaration.
12678         (gnus-dired-mode): Use define-minor-mode.
12679
12680 2010-05-01  Andreas Seltenreich  <seltenreich@gmx.de>
12681
12682         * mml.el (mml-generate-mime-1, mml-compute-boundary-1): Update 'mml
12683         handles on recursive mml-to-mime translation and check them for
12684         boundary delimiter collisions.  Reported by Greg Troxel.
12685
12686 2010-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
12687
12688         * gnus-util.el: Don't load tm and apel XEmacs packages when compiling.
12689
12690 2010-04-23  Stefan Monnier  <monnier@iro.umontreal.ca>
12691
12692         * mm-util.el (mm-find-buffer-file-coding-system):
12693         * yenc.el (yenc-decode-region): Don't let-bind a read-only variable.
12694
12695 2010-04-22  Andreas Seltenreich  <seltenreich@gmx.de>
12696
12697         * message.el (message-generate-headers): Record insertion of optional
12698         headers as well.  Otherwise the check to prevent repeated insertion of
12699         optional headers is a no-op.
12700
12701 2010-04-17  Teodor Zlatanov  <tzz@lifelogs.com>
12702
12703         * smime.el: Don't mention CVS.
12704
12705         * nnrss.el (nnrss-fetch): Don't mention CVS.
12706
12707         * nnir.el: Don't mention CVS.
12708
12709 2010-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
12710
12711         * gnus-sum.el (gnus-summary-bookmark-make-record):
12712         Add `location' field.
12713
12714 2010-04-14  Katsumi Yamaoka  <yamaoka@jpl.org>
12715
12716         * lpath.el: Fbind bookmark-default-handler,
12717         bookmark-get-bookmark-record, bookmark-make-record-default,
12718         bookmark-prop-get for Emacs <23 and XEmacs.
12719
12720 2010-04-12  Stefan Monnier  <monnier@iro.umontreal.ca>
12721
12722         * gnus-sum.el: Add bookmark declarations to silence the compiler.
12723         (gnus-mark-xrefs-as-read, gnus-summary-limit-to-bodies):
12724         Use with-current-buffer to silence the byte-compiler.
12725         (gnus-summary-bookmark-make-record): Use derived-mode-p and don't
12726         bother to require `gnus'.
12727         (gnus-summary-bookmark-jump): Don't forget to autoload.  Simplify.
12728
12729 2010-04-12  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
12730
12731         * gnus-sum.el (gnus-summary-bookmark-make-record)
12732         (gnus-summary-bookmark-jump): New functions.
12733         (gnus-summary-mode): Setup bookmark support.
12734
12735 2010-04-01  Andreas Schwab  <schwab@linux-m68k.org>
12736
12737         * mm-uu.el (mm-uu-pgp-signed-extract-1): Use buffer-file-coding-system
12738         if set.
12739
12740 2010-03-31  Katsumi Yamaoka  <yamaoka@jpl.org>
12741
12742         * gnus-art.el (gnus-article-browse-html-save-cid-content): Rename from
12743         gnus-article-browse-html-save-cid-image; make it work recursively for
12744         forwarded messages as well.
12745         (gnus-article-browse-html-parts): Work when prefix arg is given.
12746         (gnus-article-browse-html-article): Doc fix.
12747
12748 2010-03-30  Chong Yidong  <cyd@stupidchicken.com>
12749
12750         * message.el (message-default-mail-headers)
12751         (message-default-headers): Carry the value mail-default-headers over
12752         into message-default-mail-headers, rather than message-default-headers.
12753
12754 2010-03-30  Martin Stjernholm  <mast@lysator.liu.se>
12755
12756         * mm-decode.el (mm-add-meta-html-tag): Add option to override the
12757         charset.
12758
12759         * gnus-art.el (gnus-article-browse-html-parts): Force the correct
12760         charset into the <meta> tag when the article is encoded to utf-8.
12761
12762 2010-03-30  Katsumi Yamaoka  <yamaoka@jpl.org>
12763
12764         * gnus-art.el (gnus-article-browse-delete-temp-files):
12765         Delete directories as well.
12766         (gnus-article-browse-html-parts): Work for images that do not specify
12767         file names; delete temp directory when quitting; insert header at the
12768         right place; use file: scheme for image files.
12769
12770 2010-03-30  Eric Schulte  <schulte.eric@gmail.com>
12771
12772         * gnus-art.el (gnus-article-browse-html-save-cid-image): New function.
12773         (gnus-article-browse-html-parts): Use it to make temporary cid image
12774         files in addition to html file so that browser may display them.
12775
12776 2010-03-29  Katsumi Yamaoka  <yamaoka@jpl.org>
12777
12778         * mm-decode.el (mm-add-meta-html-tag): Fix regexp matching meta tag.
12779
12780 2010-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
12781
12782         * auth-source.el (auth-source-pick): Fix for non-secrets specifier.
12783
12784 2010-03-27  Teodor Zlatanov  <tzz@lifelogs.com>
12785
12786         * auth-source.el (auth-sources): Change default to be simpler.
12787         Explain about Secret Service API sources.  Improve Customize options.
12788         (auth-source-pick): Change to accept any number of search parameters.
12789         Implement fallbacks iteratively, not recursively.  Add scoring on the
12790         second pass and sort by score.  Call Secret Service API when needed.
12791         (auth-source-user-or-password): Use it.  Call Secret Service API
12792         directly when needed to get the user name and the password.
12793
12794 2010-03-24  Juanma Barranquero  <lekktu@gmail.com>
12795
12796         * message.el (message-interactive): Doc fix.
12797         (message-qmail-inject-args): Reflow.
12798         (message-kill-to-signature): Fix typo in docstring.
12799
12800         * smiley.el (smiley-buffer): Fix typo in docstring.
12801
12802 2010-03-24  Glenn Morris  <rgm@gnu.org>
12803
12804         * mail-source.el (gnus-message): Declare.
12805         (mail-source-delete-old-incoming): Require gnus-util.
12806
12807 2010-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
12808
12809         * gnus-art.el (canlock-verify): Autoload it for Emacs 21.
12810
12811         * message.el (ecomplete-setup): Autoload it for Emacs <23.
12812
12813         * mml-sec.el (mml-secure-cache-passphrase): Default to t that is
12814         password-cache's default if it is not bound.
12815         (mml-secure-passphrase-cache-expiry): Default to 16 that is
12816         password-cache-expiry's default if it is not bound.
12817
12818         * pop3.el (pop3-list): Don't use 3rd arg of `split-string' which is not
12819         available in Emacs 21.
12820
12821         * lpath.el: Suppress compiler warnings for:
12822         canlock-insert-header and smtpmail-default-smtp-server for Emacs 21 and
12823         XEmacs;
12824         ecomplete-add-item, ecomplete-save, hashcash-wait-async,
12825         mail-add-payment, mail-add-payment-async, netrc-get, netrc-machine,
12826         netrc-machine-user-or-password and netrc-parse for Emacs 22 and XEmacs.
12827
12828 2010-03-23  Teodor Zlatanov  <tzz@lifelogs.com>
12829
12830         * auth-source.el (auth-sources): Fix up definition so extra parameters
12831         are always inline.
12832
12833 2010-03-22  Martin Stjernholm  <mast@lysator.liu.se>
12834
12835         * nnimap.el (nnimap-verify-uidvalidity): Fix bug where uidvalidity
12836         wasn't updated after mismatch.  Clear cached mailbox info correctly
12837         when uidvalidity changes.
12838         (nnimap-group-prefixed-name): New function to avoid some code
12839         duplication.
12840         (nnimap-verify-uidvalidity, nnimap-group-overview-filename)
12841         (nnimap-request-group): Use it.
12842         (nnimap-retrieve-groups, nnimap-verify-uidvalidity)
12843         (nnimap-update-unseen): Significantly improved speed of Gnus startup
12844         with many imap folders.  This is done by caching the group status from
12845         the imap server persistently in a group parameter `imap-status'.  (This
12846         was cached before too if `nnimap-retrieve-groups-asynchronous' was set,
12847         but not persistently, so every Gnus startup was still very slow.)
12848
12849 2010-03-22  Teodor Zlatanov  <tzz@lifelogs.com>
12850
12851         * assistant.el (assistant-render-text): Run `widget-setup' and don't
12852         delete the extra newline.  Otherwise editing of :string and :number
12853         types don't work.
12854
12855 2010-03-20  Teodor Zlatanov  <tzz@lifelogs.com>
12856
12857         * auth-source.el: Set up autoloads.  Bump to 23.2 because of the
12858         secrets.el dependency.
12859         (auth-sources): Add optional user name.  Add secrets.el configuration
12860         choice (unused right now).
12861
12862 2010-03-20  Teodor Zlatanov  <tzz@lifelogs.com>
12863
12864         * gnus-sum.el (gnus-summary-make-menu-bar):
12865         Let `gnus-registry-install-shortcuts' fill in the functions.
12866
12867         * gnus-registry.el (gnus-summary-misc-menu): Declare to avoid
12868         warnings.
12869         (gnus-registry-misc-menus): Variable to hold registry mark menus.
12870         (gnus-registry-install-shortcuts): Populate and use it in a
12871         `gnus-summary-menu-hook' lambda, under "Gnus"->"Registry Marks".
12872
12873 2010-03-20  Martin Stjernholm  <mast@lysator.liu.se>
12874
12875         * nnimap.el (nnimap-decode-group-name, nnimap-encode-group-name):
12876         In-place substitutions for the group name encoding/decoding.
12877         (nnimap-find-minmax-uid, nnimap-possibly-change-group)
12878         (nnimap-retrieve-headers-progress, nnimap-possibly-change-group)
12879         (nnimap-retrieve-headers-progress, nnimap-request-article-part)
12880         (nnimap-update-unseen, nnimap-request-list)
12881         (nnimap-retrieve-groups, nnimap-request-update-info-internal)
12882         (nnimap-request-set-mark, nnimap-split-to-groups)
12883         (nnimap-split-articles, nnimap-request-newgroups)
12884         (nnimap-request-create-group, nnimap-request-accept-article)
12885         (nnimap-request-delete-group, nnimap-request-rename-group)
12886         (nnimap-acl-get, nnimap-acl-edit): Use them.  Replace `mbx' with
12887         `encoded-mbx' for consistency.
12888         (nnimap-close-group): Call `imap-current-mailbox' instead of using the
12889         variable `imap-current-mailbox'.
12890
12891         * gnus-agent.el (gnus-agent-fetch-articles, gnus-agent-fetch-headers)
12892         (gnus-agent-regenerate-group): Use `gnus-agent-decoded-group-name'.
12893
12894 2010-03-20  Bojan Petrovic  <bpetrovi@f.bg.ac.rs>
12895
12896         * pop3.el (pop3-display-message-size-flag): Display message size byte
12897         counts during POP3 download.
12898         (pop3-movemail): Use it.
12899         (pop3-list): Implement listing of available messages.
12900
12901 2010-03-20  Mark Triggs  <mst@dishevelled.net>  (tiny change)
12902
12903         * nnir.el (nnir-get-article-nov-override-function): New function to
12904         override the normal NOV retrieval.
12905         (nnir-retrieve-headers): Use it.
12906
12907 2010-03-19  Michael Albinus  <michael.albinus@gmx.de>
12908
12909         * auth-source.el (netrc-machine-user-or-password): Autoload.
12910
12911 2010-03-19  Glenn Morris  <rgm@gnu.org>
12912
12913         Stop message.el from loading about 40 libraries it doesn't always need.
12914         The general approach is to autoload rather than require, and to
12915         require in the specific functions rather than the file.  (Bug#5642)
12916
12917         * gmm-utils.el: Don't require wid-edit.
12918         (widget-create-child-value, widget-convert, widget-default-get):
12919         Autoload.
12920
12921         * gnus-util.el: Don't require time-date, netrc.
12922         (message-fetch-field, gnus-group-name-decode): Declare rather than
12923         autoloading.
12924         (gnus-fetch-field): Require message.
12925         (gnus-decode-newsgroups): Require gnus-group.
12926
12927         * ietf-drums.el: Don't require time-date.
12928
12929         * message.el: Don't require hashcash, canlock, ecomplete.
12930         Do require mail-utils.  Require nnheader only when compiling.
12931         (smtpmail-default-smtp-server): Remove declaration.
12932         (message-send-mail-function): Check smtpmail-default-smtp-server
12933         is bound rather than requiring smtpmail.
12934         (message-auto-save-directory, message-insert-signature):
12935         Use expand-file-name rather than nnheader-concat.
12936         (nnheader-insert-file-contents): Autoload.
12937         (hashcash-wait-async): Declare.
12938         (message-send-mail): Only call gnus-setup-posting-charset if
12939         gnus-group-posting-charset-alist is bound.  Require hashcash if needed.
12940         (message-send-mail-with-sendmail): Require sendmail.
12941         (canlock-password, canlock-password-for-verify): Declare.
12942         (message-canlock-password): Require canlock.
12943         (nnheader-get-report): Autoload.
12944         (gnus-setup-posting-charset): Declare.
12945         (message-send-news): Require gnus-msg.
12946         (message-make-references, message-make-in-reply-to): Use mail-header-id
12947         rather than the alias mail-header-message-id.
12948         (ecomplete-add-item, ecomplete-save): Declare.
12949         (message-put-addresses-in-ecomplete): Require ecomplete.
12950         (ecomplete-display-matches): Autoload.
12951
12952         * mm-decode.el: Don't require mailcap, gnus-util.
12953         (gnus-map-function, gnus-replace-in-string, gnus-read-shell-command)
12954         (message-fetch-field, mailcap-parse-mailcaps, mailcap-mime-info):
12955         Autoload.
12956         (mailcap-mime-extensions): Declare.
12957
12958         * mm-encode.el: Don't require mailcap.
12959         (mailcap-extension-to-mime): Autoload.
12960
12961         * mml-sec.el: Don't require password-cache.
12962
12963         * mml.el (gnus-setup-posting-charset): Declare rather than autoload.
12964         (mailcap-parse-mimetypes, mailcap-mime-types): Declare.
12965         (mml-minibuffer-read-type): Require mailcap.
12966         (mml-preview): Require gnus-msg.
12967
12968         * mml1991.el: Require password-cache.
12969         (password-cache-expiry): Remove declaration.
12970
12971         * mml2015.el: Require password-cache.
12972         (password-cache-expiry): Remove declaration.
12973
12974         * nneething.el (mailcap): Require mailcap.
12975
12976         * nnheader.el (declare-function): Add compatibility stub.
12977         (message-remove-header): Declare rather than autoload.
12978         (nnheader-replace-header): Require message.
12979
12980         * nnimap.el (declare-function): Add compatibility stub.
12981         (netrc-parse, netrc-machine-user-or-password): Declare.
12982         (nnimap-open-connection): Require netrc.
12983
12984         * nntp.el (declare-function): Add compatibility stub.
12985         (netrc-parse, netrc-machine, netrc-get): Declare.
12986         (nntp-send-authinfo): Require netrc.
12987
12988         * rfc2047.el: Don't require qp.
12989         (quoted-printable-encode-region, quoted-printable-decode-string):
12990         Autoload.
12991
12992         * sieve-mode.el: Don't require easymenu.
12993         (easy-menu-add-item): Autoload it.
12994
12995         * spam-stat.el (time-to-number-of-days): Autoload it.
12996
12997 2010-03-19  Glenn Morris  <rgm@gnu.org>
12998
12999         * password-cache.el (password-cache, password-cache-expiry): Autoload.
13000
13001 2010-03-18  Glenn Morris  <rgm@gnu.org>
13002
13003         * hashcash.el (declare-function): Remove duplicate definition.
13004
13005 2010-03-17  Kevin Ryde  <user42@zip.com.au>
13006
13007         * mml.el (mml-read-tag): Unquote values with `read' to reverse
13008         prin1 in mml-insert-tag (just stripping the quotes gave wrong
13009         value if any backslash escapes).
13010
13011 2010-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
13012
13013         * mm-util.el (mm-charset-to-coding-system): Use coding-system-from-name
13014         if it is available.  (bug#5647)
13015
13016         * lpath.el: Suppress compiler warning for coding-system-from-name for
13017         Emacs 21 and XEmacs.
13018
13019 2010-03-14  Juri Linkov  <juri@jurta.org>
13020
13021         * hmac-def.el:
13022         * hmac-md5.el:
13023         * netrc.el: Fix keywords.
13024
13025 2010-02-26  Glenn Morris  <rgm@gnu.org>
13026
13027         * message.el (message-send-mail-function): Change the default, so that
13028         it inherits from a customized send-mail-function.  (Bug#5643)
13029
13030 2010-02-24  Stefan Monnier  <monnier@iro.umontreal.ca>
13031
13032         * gnus-art.el (gnus-treat-display-x-face): Don't burp if
13033         shell-command-to-string signals an error (bug#5299).
13034
13035 2010-02-24  Glenn Morris  <rgm@gnu.org>
13036
13037         * message.el (message-smtpmail-send-it)
13038         (message-send-mail-with-mailclient): Doc fixes.
13039
13040 2010-02-16  Glenn Morris  <rgm@gnu.org>
13041
13042         * message.el (message-default-mail-headers): Change the default value
13043         to ease the transition from mail-mode to message-mode.  (Bug#5555)
13044
13045 2010-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
13046
13047         * parse-time.el (parse-time-syntax): Define it for only XEmacs.
13048         (parse-time-string-chars): Implement 2009-08-16 change for Emacs.
13049
13050 2010-01-18  Chong Yidong  <cyd@stupidchicken.com>
13051
13052         * time-date.el (date-to-time): Doc fix (Bug#5408).
13053
13054 2010-01-17  Chong Yidong  <cyd@stupidchicken.com>
13055
13056         * message.el (message-mail): Just pass yank-action on to message-setup.
13057         (message-setup): Handle (FUN . ARGS) form of yank-action.
13058         (message-with-reply-buffer, message-widen-reply)
13059         (message-yank-original): Handle non-buffer values of
13060         message-reply-buffer (Bug#4080).
13061         (message-setup-1): Prefer to save message-reply-buffer as a buffer.
13062
13063 2010-01-17  Juanma Barranquero  <lekktu@gmail.com>
13064
13065         * nnmairix.el (nnmairix-group-delete-recreate-this-group):
13066         Fix typo in docstring.
13067
13068 2010-01-08  Jason Rumney  <jasonr@gnu.org>
13069
13070         * sieve-manage.el (sieve-manage-parse-capability-1): Loosely match OK
13071         response.
13072
13073 2010-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
13074
13075         * gnus-art.el (gnus-article-describe-bindings): Work for prefix keys.
13076
13077         * gnus-xmas.el (gnus-xmas-article-describe-bindings): Ditto.
13078
13079         * message.el (message-check-news-header-syntax): Protect against a
13080         string that `rfc822-addresses' returns when parsing fails.
13081
13082 2010-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
13083
13084         * gnus-util.el (gnus-invisible-p, gnus-next-char-property-change)
13085         (gnus-previous-char-property-change): New functions.
13086
13087         * gnus-sum.el (gnus-forward-line-ignore-invisible): Use them.
13088
13089 2010-01-05  Andreas Schwab  <schwab@linux-m68k.org>
13090
13091         * gnus-sum.el (gnus-forward-line-ignore-invisible): New function.
13092         (gnus-summary-recenter): Use it instead of forward-line.  (Bug#5257)
13093
13094 2010-01-02  Chong Yidong  <cyd@stupidchicken.com>
13095
13096         * message.el (message-exchange-point-and-mark): Rework last change to
13097         avoid using optional arg of exchange-point-and-mark, for backward
13098         compatibility.
13099
13100 2010-01-01  Chong Yidong  <cyd@stupidchicken.com>
13101
13102         * message.el (message-exchange-point-and-mark):
13103         Call exchange-point-and-mark with an argument rather than setting
13104         mark-active by hand (Bug#5175).
13105
13106 2009-12-18  Katsumi Yamaoka  <yamaoka@jpl.org>
13107
13108         * nntp.el (nntp-service-to-port): Work for service expressed with
13109         numeric string; replace [:digit:] with [0-9] for XEmacs.
13110
13111 2009-12-17  Glenn Morris  <rgm@gnu.org>
13112
13113         * gnus-group.el (gnus-bug-group-download-format-alist):
13114         Change emacs entry to debbugs.gnu.org.  Bump :version.
13115
13116 2009-12-13  Reiner Steib  <Reiner.Steib@gmx.de>
13117
13118         * mm-encode.el (mm-sign-option, mm-encrypt-option): Add :version tag.
13119
13120 2009-12-12  Reiner Steib  <Reiner.Steib@gmx.de>
13121
13122         * message.el (message-info): Explain why we use `Info-goto-node'.
13123
13124 2009-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
13125
13126         * lpath.el: Always bind default-file-name-coding-system for (S)XEmacs.
13127
13128 2009-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
13129
13130         * message.el (message-completion-in-region): New compatibility function.
13131         (message-expand-group): Use it.
13132
13133 2009-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
13134
13135         * gnus-group.el (gnus-group-prepare-flat): Check also whether groups
13136         with no unread article should be listed if the 2nd arg `predicate' is
13137         given.
13138
13139 2009-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
13140
13141         * lpath.el: Fbind recenter-top-bottom for Emacs 21, 22, and (S)XEmacs.
13142
13143 2009-11-29  Juri Linkov  <juri@jurta.org>
13144
13145         * gnus-sum.el (gnus-recenter): Use `recenter-top-bottom'
13146         when it is fboundp in GNU Emacs 23.1.  Put `isearch-scroll' property
13147         on `gnus-recenter'.  (Bug#4698, Bug#4981)
13148
13149 2009-11-26  Kevin Ryde  <user42@zip.com.au>
13150
13151         * sha1.el (sha1-string-external): default-directory "/" in case
13152         otherwise non-existent.  process-connection-type pipe for touch of
13153         efficiency recommended by elisp manual.  (An aside in Bug#3911.)
13154
13155 2009-11-25  Kevin Ryde  <user42@zip.com.au>
13156
13157         * dns-mode.el: Add "Keywords: comm".  It's only an editing mode, but
13158         it's comms related and sgml-mode.el has "comm" on that basis too.
13159
13160 2009-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
13161
13162         * rfc2047.el (rfc2047-decode-region): Don't quote decoded words
13163         containing tspecial characters if they have been already quoted.
13164
13165 2009-11-05  Dan Nicolaescu  <dann@ics.uci.edu>
13166
13167         * dns-mode.el (auto-mode-alist): Purecopy string.
13168
13169 2009-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
13170
13171         * hashcash.el (hashcash-generate-payment): Use with-current-buffer.
13172
13173 2009-10-24  Glenn Morris  <rgm@gnu.org>
13174
13175         * gnus-art.el (help-xref-stack-item): Define for compiler.
13176
13177 2009-10-21  Kevin Ryde  <user42@zip.com.au>
13178
13179         * dns.el: Add "Keywords: comm", as per net/net-utils.el.
13180
13181 2009-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
13182
13183         * gnus-sum.el (gnus-remove-overlays): eval-and-compile.
13184
13185 2009-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
13186
13187         * gnus-sum.el (gnus-summary-show-thread): Remove useless goto-char.
13188         (gnus-summary-show-thread, gnus-summary-hide-thread): Indent.
13189
13190 2009-10-16  Katsumi Yamaoka  <yamaoka@jpl.org>
13191
13192         * gnus.el (gnus-overlay-get): New alias to overlay-get.
13193         (gnus-overlays-in): New alias to overlays-in.
13194
13195         * gnus-sum.el (gnus-remove-overlays): Use gnus-overlays-in,
13196         gnus-overlay-get, and gnus-delete-overlay.
13197         (gnus-summary-show-thread): Make it work as well for systems in which
13198         next-single-char-property-change is not available.
13199         (gnus-summary-hide-thread): Use gnus-make-overlay and gnus-overlay-put.
13200
13201         * gnus-xmas.el (gnus-xmas-overlays-in): New function.
13202         (gnus-overlay-get): New alias to extent-property.
13203         (gnus-overlays-in): New alias to gnus-xmas-overlays-in.
13204
13205         * dgnushack.el: Autoload add-to-invisibility-spec for XEmacs 21.4 and
13206         SXEmacs.
13207
13208         * lpath.el: Fbind next-single-char-property-change for XEmacs 21.4 and
13209         SXEmacs.
13210
13211 2009-10-14  Reiner Steib  <Reiner.Steib@gmx.de>
13212
13213         * gnus-sum.el (gnus-remove-overlays): Add doc string and alias.
13214
13215 2009-10-14  Dan Nicolaescu  <dann@ics.uci.edu>
13216
13217         * gnus-sum.el (gnus-remove-overlays): Compatibility code for Emacs 21
13218         and XEmacs that don't have `remove-overlays'.
13219
13220 2009-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
13221
13222         * gnus-sum.el (gnus-summary-mode, gnus-summary-show-all-threads)
13223         (gnus-summary-show-thread, gnus-summary-hide-thread): Get rid of
13224         selective display.  Use overlays instead.
13225
13226 2009-10-04  Juanma Barranquero  <lekktu@gmail.com>
13227
13228         * spam-stat.el (spam-stat-strip-xref): Fix typo in docstring.
13229
13230 2009-09-29  Juanma Barranquero  <lekktu@gmail.com>
13231
13232         * spam-stat.el (spam-stat-load): Fix typo in message.
13233
13234 2009-09-24  Juanma Barranquero  <lekktu@gmail.com>
13235
13236         * dig.el (dig-invoke): Fix typo in docstring.
13237         (query-dig): Reflow docstring.
13238
13239 2009-09-23  Juanma Barranquero  <lekktu@gmail.com>
13240
13241         * gnus-art.el (gnus-article-encrypt-body):
13242         * message.el (message-check-recipients):
13243         * mm-util.el (mm-codepage-setup):
13244         * nnir.el (gnus-summary-nnir-goto-thread, nnir-run-waissearch)
13245         (nnir-run-swish++, nnir-run-swish-e): Fix typos in error messages.
13246
13247 2009-09-22  Daiki Ueno  <ueno@unixuser.org>
13248
13249         * mm-encode.el (mm-sign-option, mm-encrypt-option): New user option.
13250         * mml2015.el (mml2015-epg-sign, mml2015-epg-encrypt): Let users select
13251         keys from the menu if mm-{sign,encrypt}-option is 'guided.
13252         * mml-smime.el (mml-smime-epg-sign, mml-smime-epg-encrypt): Ditto.
13253         * mml1991.el (mml1991-epg-sign, mml1991-epg-encrypt): Ditto.
13254
13255 2009-09-21  Kevin Ryde  <user42@zip.com.au>
13256
13257         * dig.el: Add "Keywords: comm", as per net-utils.el.
13258
13259 2009-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
13260
13261         * dig.el (dig-mode): Use define-derived-mode.
13262
13263 2009-09-19  Glenn Morris  <rgm@gnu.org>
13264
13265         * pgg-pgp.el (pgg-pgp-encrypt-region): Add missing mapconcat separator.
13266
13267 2009-09-18  Glenn Morris  <rgm@gnu.org>
13268
13269         * gnus-diary.el (gnus-diary-check-message):
13270         * message.el (message-insert-formatted-citation-line):
13271         * nnbabyl.el (top-level):
13272         * nndiary.el (nndiary-schedule):
13273         Fix typos in condition-case handlers.
13274
13275 2009-09-15  Katsumi Yamaoka  <yamaoka@jpl.org>
13276
13277         * gnus-art.el (gnus-article-edit-part): Work for the buffer
13278         configuration that provides the sole article window in a frame;
13279         position point correctly after deleting a part.
13280
13281 2009-09-14  Adam Sjøgren  <asjo@koldfront.dk>
13282
13283         * spam.el (spam-unregister-on-reregister): Add boolean variable.
13284         (spam-resolve-registrations-routine): Use it to unregister articles
13285         that change status.
13286
13287 2009-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
13288
13289         * parse-time.el (parse-time-syntax): Restore it to keep compatibility
13290         with XEmacs.
13291         (parse-time-string-chars): Use it.
13292
13293 2009-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
13294
13295         * imap.el (imap-interactive-login): Better messages.
13296         (imap-open): Fix bug with renamed buffer on reconnect.
13297         (imap-authenticate): Add buffer-local imap-last-authenticator variable
13298         for easier debugging and cleaner code.  On successful (guessed based on
13299         server capabilities) secondary authentication, set imap-state
13300         correctly.
13301         (imap-last-authenticator): Define imap-last-authenticator as a variable
13302         to avoid warnings.
13303
13304 2009-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
13305
13306         * nnrss.el (nnrss-request-article): Remove binding of
13307         default-enable-multibyte-characters that has gotten needless by
13308         the 2007-07-13 change in rfc2047-encode-message-header.
13309
13310         * mml.el (mml-insert-multipart): Error on the message header.
13311         (mml-insert-part): Error on the message header; position point at
13312         the end of a MIME tag.
13313
13314 2009-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
13315
13316         * time-date.el (autoload): Expand define-obsolete-function-alias into
13317         defalias and make-obsolete for old Emacsen that Gnus supports.
13318         (with-no-warnings): Define it for old Emacsen.
13319         (time-to-seconds): Don't use (featurep 'xemacs) to check if float-time
13320         is available.
13321         (time-to-number-of-days): Don't use (featurep 'xemacs) to check if
13322         float-time is available; suppress compile warning for time-to-seconds.
13323
13324         * gnus-util.el (with-no-warnings): Define it for old Emacsen.
13325         (gnus-float-time): Alias to float-time if it exists.
13326
13327         * ecomplete.el (with-no-warnings): Define it for old Emacsen.
13328         (ecomplete-add-item): Don't use (featurep 'xemacs) to check if
13329         float-time is available; suppress compile warning for time-to-seconds.
13330
13331         * lpath.el: Fbind time-to-seconds for Emacs 21.; fbind float-time for
13332         XEmacs.
13333
13334 2009-09-09  Teodor Zlatanov  <tzz@lifelogs.com>
13335
13336         * imap.el (imap-message-map): Docstring fix.
13337
13338 2009-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
13339
13340         * mm-encode.el (mm-encode-buffer): Don't force 7bit encoding since MTA
13341         may break data.  Suggested by Dmitri Paduchikh <dpaduch@k66.ru>.
13342         Add the optional argument `encoding' that overrides the default.
13343
13344         * mml.el (mml-generate-mime-1): Pass encoding defined by a user to
13345         mm-encode-buffer.
13346
13347 2009-09-04  Glenn Morris  <rgm@gnu.org>
13348
13349         * qp.el (quoted-printable-encode-string): Use mm-enable-multibyte, or
13350         mm-disable-multibyte, rather than default-enable-multibyte-characters.
13351         * utf7.el (utf7-encode, utf7-decode): Use mm-with-multibyte-buffer, or
13352         mm-with-unibyte-buffer, rather than default-enable-multibyte-characters.
13353         * mm-util.el (mm-with-unibyte-current-buffer)
13354         (mm-find-buffer-file-coding-system):
13355         * yenc.el (yenc-decode-region): Use default-value rather than
13356         default-enable-multibyte-characters.
13357
13358 2009-09-03  Glenn Morris  <rgm@gnu.org>
13359
13360         * mm-util.el (mm-emacs-mule, mm-default-multibyte-p):
13361         * rfc2047.el (rfc2047-encode-message-header): Use default-value rather
13362         than default-enable-multibyte-characters.
13363
13364 2009-09-02  Karl Kleinpaste  <karl@kleinpaste.org>
13365
13366         * gnus-art.el (gnus-article-read-summary-keys):
13367         Fix gnus-buffer-configuration's value temporarily used.
13368
13369 2009-09-02  Glenn Morris  <rgm@gnu.org>
13370
13371         * gnus-util.el (gnus-float-time): New function.
13372         * gnus-delay.el (gnus-delay-article):
13373         * gnus-sum.el (gnus-thread-latest-date):
13374         * gnus-util.el (gnus-user-date): Use gnus-float-time.
13375         * nnspool.el (nnspool-request-newgroups):
13376         Use gnus-float-time rather than time-to-seconds.
13377         * ecomplete.el (ecomplete-add-item): In Emacs, use float-time.
13378
13379         * gnus-art.el (gnus-signature-face, gnus-header-from-face)
13380         (gnus-header-subject-face, gnus-header-newsgroups-face)
13381         (gnus-header-name-face, gnus-header-content-face):
13382         * gnus-cite.el (gnus-cite-attribution-face, gnus-cite-face-1)
13383         (gnus-cite-face-2, gnus-cite-face-3, gnus-cite-face-4)
13384         (gnus-cite-face-5, gnus-cite-face-6, gnus-cite-face-7)
13385         (gnus-cite-face-8, gnus-cite-face-9, gnus-cite-face-10)
13386         (gnus-cite-face-11):
13387         * gnus-picon.el (gnus-picon-xbm-face, gnus-picon-face):
13388         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
13389         (gnus-server-closed-face, gnus-server-denied-face)
13390         (gnus-server-offline-face):
13391         * gnus.el (gnus-group-news-1-face, gnus-group-news-1-empty-face)
13392         (gnus-group-news-2-face, gnus-group-news-2-empty-face)
13393         (gnus-group-news-3-face, gnus-group-news-3-empty-face)
13394         (gnus-group-news-4-face, gnus-group-news-4-empty-face)
13395         (gnus-group-news-5-face, gnus-group-news-5-empty-face)
13396         (gnus-group-news-6-face, gnus-group-news-6-empty-face)
13397         (gnus-group-news-low-face, gnus-group-news-low-empty-face)
13398         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face)
13399         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face)
13400         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face)
13401         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face)
13402         (gnus-summary-selected-face, gnus-summary-cancelled-face)
13403         (gnus-summary-high-ticked-face, gnus-summary-low-ticked-face)
13404         (gnus-summary-normal-ticked-face, gnus-summary-high-ancient-face)
13405         (gnus-summary-low-ancient-face, gnus-summary-normal-ancient-face)
13406         (gnus-summary-high-undownloaded-face)
13407         (gnus-summary-low-undownloaded-face)
13408         (gnus-summary-normal-undownloaded-face)
13409         (gnus-summary-high-unread-face, gnus-summary-low-unread-face)
13410         (gnus-summary-normal-unread-face, gnus-summary-high-read-face)
13411         (gnus-summary-low-read-face, gnus-summary-normal-read-face)
13412         (gnus-splash-face):
13413         * message.el (message-header-to-face, message-header-cc-face)
13414         (message-header-subject-face, message-header-newsgroups-face)
13415         (message-header-other-face, message-header-name-face)
13416         (message-header-xheader-face, message-separator-face)
13417         (message-cited-text-face, message-mml-face):
13418         * sieve-mode.el (sieve-control-commands-face)
13419         (sieve-action-commands-face, sieve-test-commands-face)
13420         (sieve-tagged-arguments-face):
13421         * spam.el (spam-face):
13422         Mark face aliases with "-face" in the name as obsolete.
13423
13424 2009-09-01  Glenn Morris  <rgm@gnu.org>
13425
13426         * gnus-salt.el (gnus-pick-mouse-pick-region): Use forward-line rather
13427         than goto-line.
13428
13429 2009-08-31  Katsumi Yamaoka  <yamaoka@jpl.org>
13430
13431         * mml.el (mml-attach-file, mml-attach-buffer, mml-attach-external):
13432         Don't move point if the command is invoked inside the message header.
13433
13434 2009-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
13435
13436         * imap.el (imap-send-command): Simplify.
13437         (imap-wait-for-tag): point-max -> buffer-size.
13438
13439 2009-08-29  Stefan Monnier  <monnier@iro.umontreal.ca>
13440
13441         * spam.el (spam-ifile-path, spam-bogofilter-path, spam-sa-learn-path)
13442         (spam-ifile-database-path, spam-bsfilter-path, spam-spamassassin-path):
13443         * nnmail.el (nnmail-spool-file, nnmail-fix-eudora-headers):
13444         * nnir.el (nnir-swish-e-index-file):
13445         * gnus-sum.el (gnus-summary-delete-marked-as-read)
13446         (gnus-summary-delete-marked-with, gnus-summary-mark-as-unread-forward)
13447         (gnus-summary-mark-as-unread-backward, gnus-summary-mark-as-unread):
13448         * gnus-msg.el (gnus-inews-mark-gcc-as-read):
13449         * gnus-art.el (gnus-article-hide-pgp-hook, gnus-treat-strip-pgp)
13450         (gnus-treat-display-xface): Add Emacs version of obsolescence.
13451
13452 2009-08-28  Katsumi Yamaoka  <yamaoka@jpl.org>
13453
13454         * mml.el (mml-attach-file, mml-attach-buffer, mml-attach-external):
13455         Don't save excursion.
13456
13457 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
13458
13459         * nnheader.el (nnheader-find-file-noselect):
13460         * mm-util.el (mm-insert-file-contents):
13461         Use (default-value 'major-mode) instead of default-major-mode.
13462
13463 2009-08-27  Stefan Monnier  <monnier@iro.umontreal.ca>
13464
13465         * nnrss.el (nnrss-request-article): Avoid default-fill-column.
13466
13467 2009-08-26  Glenn Morris  <rgm@gnu.org>
13468
13469         * parse-time.el (parse-time-rules): Autoload riskiness here, rather
13470         than placing in files.el.
13471
13472 2009-08-25  Glenn Morris  <rgm@gnu.org>
13473
13474         * nnir.el (top-level): Don't require cl at run-time.
13475         (nnir-run-waissearch, nnir-run-swish-e, nnir-run-hyrex):
13476         Replace cl-function substitute with gnus-replace-in-string.
13477         (nnir-run-waissearch, nnir-run-swish++, nnir-run-swish-e)
13478         (nnir-run-hyrex, nnir-run-namazu): Replace cl-function sort* with sort.
13479         (nnir-run-find-grep): Replace cl-functions find-if and subseq with
13480         simplified expansions.
13481
13482 2009-08-25  Kevin Ryde  <user42@zip.com.au>
13483
13484         * dig.el (dig): Add autoload cookie.
13485
13486 2009-08-22  Glenn Morris  <rgm@gnu.org>
13487
13488         * gnus-art.el (gnus-button-patch): Use forward-line rather than
13489         goto-line.
13490
13491 2009-08-16  Chong Yidong  <cyd@stupidchicken.com>
13492
13493         * parse-time.el (parse-time-string-chars): Save match data.
13494
13495 2009-08-16  Jan Seeger  <jan.seeger@thenybble.de>  (tiny change)
13496
13497         * parse-time.el (parse-time-string-chars): Compute using character
13498         classes, to handle non-ascii characters (Bug#3190).
13499
13500 2009-08-12  Katsumi Yamaoka  <yamaoka@jpl.org>
13501
13502         * gnus-group.el (gnus-safe-html-newsgroups): New user option.
13503
13504         * gnus-art.el (gnus-bind-safe-url-regexp): New macro.
13505         (gnus-mime-view-all-parts, gnus-mime-view-part-internally)
13506         (gnus-mm-display-part, gnus-mime-display-single)
13507         (gnus-mime-display-alternative): Use gnus-bind-safe-url-regexp to
13508         override mm-w3m-safe-url-regexp according to gnus-safe-html-newsgroups.
13509
13510         * gnus-sum.el
13511         (gnus-mark-copied-or-moved-articles-as-expirable): New user option.
13512         (gnus-summary-move-article): Add expirable mark to articles copied or
13513         moved to group that has auto-expire turned on if the option is non-nil.
13514
13515 2009-07-24  Glenn Morris  <rgm@gnu.org>
13516
13517         * gnus-demon.el (gnus-demon-add-nntp-close-connection):
13518         Fix typo.  (Bug#3903)
13519
13520 2009-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
13521
13522         * gnus-art.el (gnus-article-mode-map): Bind the "e" key to
13523         gnus-article-read-summary-keys rather than gnus-summary-edit-article
13524         that should not be used for draft articles.
13525         (gnus-article-read-summary-keys): Use key-binding instead of lookup-key
13526         that has no concern in minor mode keys.
13527         (gnus-article-summary-command, gnus-article-summary-command-nosave):
13528         Abolish.
13529
13530 2009-07-16  Katsumi Yamaoka  <yamaoka@jpl.org>
13531
13532         * nnrss.el (nnrss-request-article): Allow mml-to-mime to generate MIME
13533         article without making inquiry to a user for unknown encoding.
13534
13535         * nnmaildir.el (nnmaildir--group-maxnum, nnmaildir--new-number)
13536         (nnmaildir--scan): Assume i-node and device number that file-attributes
13537         returns might be cons-cell.
13538
13539         * dgnushack.el: Autoload thing-at-point for XEmacs 21.5.
13540
13541         * lpath.el: Fbind cp-supported-codepages for XEmacs 21.5.
13542
13543 2009-07-16  Teodor Zlatanov  <tzz@lifelogs.com>
13544
13545         * auth-source.el: Remove docs now in auth.texi.  Don't use
13546         `gnus-message' for logging.  Add new variables `auth-source-debug' and
13547         `auth-source-hide-passwords' and use them.
13548
13549 2009-07-15  Glenn Morris  <rgm@gnu.org>
13550
13551         * gnus-spec.el (gnus-make-format-preserve-properties): Doc fix.
13552
13553 2009-07-10  Katsumi Yamaoka  <yamaoka@jpl.org>
13554
13555         * gnus-group.el (gnus-group-make-rss-group): Strip newlines and
13556         excessive whitespace from the default values of title and description.
13557
13558 2009-06-22  Katsumi Yamaoka  <yamaoka@jpl.org>
13559
13560         * mm-decode.el (mm-dissect-buffer): Use message-fetch-field instead of
13561         mail-fetch-field to fetch Content-Description header in order to
13562         exclude newlines.
13563
13564 2009-06-18  Ulrich Mueller  <ulm@gentoo.org>
13565
13566         * pgg-gpg.el (pgg-gpg-lookup-key-owner): Handle colon listings
13567         format used by GnuPG 2.0.11.
13568
13569 2009-06-01  Katsumi Yamaoka  <yamaoka@jpl.org>
13570
13571         * gnus-art.el (gnus-mime-delete-part): Specify gnus-decoded as charset
13572         to deleted part.
13573
13574 2009-05-30  David Engster  <dengste@eml.cc>
13575
13576         * nnmairix.el: Remove old documentation in the commentary block.
13577         (nnmairix-request-group): Do not update active file for nnml back ends.
13578         (nnmairix-retrieve-headers): Set gnus-nov-is-evil to t for nnimap back
13579         end so that overview files are ignored.
13580         (nnmairix-update-groups): Make updating the groups more robust by using
13581         marks.
13582         (nnmairix-determine-original-group-from-path): Circumvent mairix bug
13583         with dollar characters in message-id.
13584
13585 2009-04-28  Reiner Steib  <Reiner.Steib@gmx.de>
13586
13587         * spam.el: Use dns-query instead of query-dns.  Was renamed on
13588         2008-12-25 in dns.el.
13589
13590 2009-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
13591
13592         * rfc2047.el (rfc2047-decode-region): Don't skip past `start', which
13593         could happen if the text is only composed of spaces and/or tabs.
13594
13595 2009-03-03  Brian Sniffen  <bts@evenmere.org>  (tiny change)
13596
13597         * gnus-draft.el (gnus-draft-send): Bind gnus-message-setup-hook to nil
13598         when sending a queued message to avoid extra mml tags.
13599
13600 2009-03-02  Katsumi Yamaoka  <yamaoka@jpl.org>
13601
13602         * mml.el (mml-insert-mime): Don't break parts that mm-uu dissected.
13603
13604 2009-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
13605
13606         * lpath.el: Fbind rmail-swap-buffers-maybe for Emacs 21~22;
13607         fbind rmail-msg-restore-non-pruned-header, rmail-swap-buffers-maybe and
13608         rmail-toggle-header for XEmacs;
13609         bind rmail-default-file and rmail-default-rmail-file for XEmacs.
13610
13611 2009-02-25  Katsumi Yamaoka  <yamaoka@jpl.org>
13612
13613         * gnus-dired.el: Remove autoload for gnus-setup-message.
13614         (gnus-dired-attach): Fake this-command value to prevent Gnus from
13615         displaying Gnus logo; always use compose-mail.
13616
13617 2009-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
13618
13619         * gnus-dired.el: Tell autoload that gnus-setup-message is a macro.
13620
13621 2009-02-18  Katsumi Yamaoka  <yamaoka@jpl.org>
13622
13623         * gnus-nocem.el (gnus-nocem-groups): Remove invalid NoCeM groups.
13624         (gnus-nocem-issuers): List currently active issuers; fix custom type.
13625         (gnus-nocem-verifyer): Default to gnus-nocem-epg-verify if EasyPG is
13626         available.
13627         (gnus-nocem-epg-verify): New function.
13628
13629 2009-02-15  Reiner Steib  <Reiner.Steib@gmx.de>
13630
13631         * gnus-art.el (gnus-button-alist): Recognize Konqueror info links.
13632
13633 2009-02-15  Glenn Morris  <rgm@gnu.org>
13634
13635         * gnus-util.el (rmail-insert-rmail-file-header)
13636         (rmail-count-new-messages, rmail-show-message): Remove unnecessary
13637         autoloads.
13638         (rmail-default-rmail-file): Remove unnecessary declaration.
13639         (gnus-output-to-rmail): Handle mbox Rmail as well as Babyl Rmail.
13640
13641 2009-02-14  Glenn Morris  <rgm@gnu.org>
13642
13643         * gnus.el (rmail-default-rmail-file): Remove declaration of deleted
13644         variable (only used in gnus-util, which declares it anyway).
13645         (rmail-output-to-rmail-file): Remove autoload of deleted function,
13646         which was only needed by gnus-art (changed to not use it any more).
13647         (rmail-insert-rmail-file-header): Remove autoload of deleted function,
13648         only used in gnus-util, which autoloads it itself.
13649         (rmail-update-summary): Fix autoload.
13650
13651         * gnus-art.el (gnus-summary-save-in-mail): Use gnus-output-to-rmail
13652         rather than rmail-output-to-rmail-file.
13653
13654 2009-02-07  Glenn Morris  <rgm@gnu.org>
13655
13656         * message.el (rmail-msg-restore-non-pruned-header): Remove unneeded
13657         autoload of function that no longer exists.
13658         (rmail-toggle-header): Declare.
13659         (message-forward-rmail-make-body): Handle mbox Rmail.
13660
13661 2009-01-31  Glenn Morris  <rgm@gnu.org>
13662
13663         * gnus-sum.el (gnus-summary-next-article): XEmacs-friendly version of
13664         2009-01-09 change.
13665
13666 2009-01-31  Dave Love  <fx@gnu.org>
13667
13668         * imap.el (imap-fetch-safe): Bind debug-on-error.
13669         (imap-debug): Add imap-fetch-safe.
13670
13671 2009-01-26  Teodor Zlatanov  <tzlatanov@jumptrading.com>
13672
13673         * auth-source.el (auth-source-forget-user-or-password): Clarify docs.
13674         (auth-source-forget-all-cached): New convenience function.
13675         (auth-source-user-or-password): Accept list of modes or a single mode.
13676
13677         * mail-source.el (mail-source-bind, mail-source-set-1): Use list of
13678         auth-source modes.
13679
13680         * netrc.el (netrc-machine-user-or-password): Use list of
13681         auth-source modes.
13682
13683         * nnimap.el (nnimap-open-connection): Use list of
13684         auth-source modes.
13685
13686         * nntp.el (nntp-send-authinfo): Use list of
13687         auth-source modes.
13688
13689 2009-01-16  Teodor Zlatanov  <tzz@lifelogs.com>
13690
13691         * auth-source.el: Update docs to reflect epa-file-enable is to be used
13692         now.
13693
13694 2009-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
13695
13696         * nnmail.el (nnmail-pathname-coding-system): Default to the `file-name'
13697         coding system in XEmacs; add a workaround for XEmacs.
13698
13699         * lpath.el: Fbind coding-system-aliasee.
13700
13701 2009-01-14  Katsumi Yamaoka  <yamaoka@jpl.org>
13702
13703         * mm-util.el (mm-coding-system-priorities): Protect against nil value
13704         of current-language-environment.
13705
13706 2009-01-13  Reiner Steib  <Reiner.Steib@gmx.de>
13707
13708         * nnfolder.el (nnfolder-read-folder): Check if most-positive-fixnum is
13709         available at runtime.
13710
13711 2009-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
13712
13713         * gnus-art.el (article-date-ut): Fix end point of narrowing.
13714
13715 2009-01-11  Aidan Kehoe  <kehoea@parhasard.net>
13716
13717         * nnfolder.el (nnfolder-read-folder): The (lsh -1 -1) trick to generate
13718         the greatest positive fixnum value doesn't work under an XEmacs with
13719         bignum support; use the most-positive-fixnum constant instead,
13720         available since Emacs 21.1 with cl and XEmacs 21.1.
13721
13722 2009-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
13723
13724         * gnus-sum.el (gnus-summary-next-article): Revert last change by which
13725         XEmacs gets not to work.
13726
13727 2009-01-09  Katsumi Yamaoka  <yamaoka@jpl.org>
13728
13729         * mm-util.el (mm-coding-system-priorities): Allow the value like
13730         "Japanese (UTF-8)" of current-language-environment.
13731
13732 2009-01-09  Glenn Morris  <rgm@gnu.org>
13733
13734         * gnus-sum.el (gnus-summary-next-article): Replace last-command-char
13735         with last-command-event.
13736
13737 2009-01-08  Reiner Steib  <Reiner.Steib@gmx.de>
13738
13739         * imap.el (imap-enable-exchange-bug-workaround): Explain auto-detection
13740         in the doc string.
13741
13742         * message.el (message-fix-before-sending): Amend comment.
13743
13744 2009-01-08  Dave Love  <fx@gnu.org>
13745
13746         * imap.el (imap-message-appenduid-1): Fix typo in imap-fetch-safe call.
13747
13748 2009-01-07  David Engster  <dengste@eml.cc>
13749
13750         * gnus-msg.el (gnus-inews-do-gcc): Fix last patch to deal with
13751         simplified server definitions by converting it via
13752         gnus-server-to-method.
13753
13754 2009-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
13755
13756         * gnus-sum.el (gnus-summary-set-local-parameters): Always evaluate
13757         parameter's operands.
13758
13759 2009-01-06  David Engster  <dengste@eml.cc>
13760
13761         * gnus-msg.el (gnus-inews-do-gcc): Reduce to short group name when on
13762         primary select method (for gnus-group-mark-article-as-read).
13763
13764 2009-01-06  Tassilo Horn  <tassilo@member.fsf.org>
13765
13766         * gnus-art.el (gnus-treat-display-face): Fix docstring link to point to
13767         `(gnus)Face', not `(gnus)X-Face'.
13768
13769 2009-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
13770
13771         * mm-util.el (mm-ucs-to-char): New function.
13772
13773         * mm-url.el (mm-url-decode-entities): Use it.
13774
13775         * lpath.el: Fbind decode-char, int-to-char, ucs-to-char and
13776         unicode-to-char.
13777
13778 2009-01-05  Dave Love  <fx@gnu.org>
13779
13780         * time-date.el: Require cl for `declare'.
13781
13782 2009-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
13783
13784         * time-date.el (format-seconds): Explain `assoc-string'.  Suggested by
13785         Dave Love.
13786
13787 2009-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
13788
13789         * message.el (message-fix-before-sending): Add `eight-bit' to
13790         illegible-text check.
13791
13792 2009-01-03  Michael Olson  <mwolson@gnu.org>
13793
13794         * nnimap.el (nnimap-retrieve-headers-progress): Handle edge case where
13795         `headers' is nil.  This can occur if the IMAP server does not have
13796         permissions to read messages from a folder, but can write new messages
13797         to the folder.
13798         (nnimap-request-article-part): Do not insert `data' if it is nil.
13799
13800         * imap.el (imap-parse-fetch): Courier can insert spurious blank
13801         characters which will confuse `read', so skip past them.
13802
13803 2009-01-01  Dave Love  <fx@gnu.org>
13804
13805         * imap.el (imap-string-to-integer): Fix typo.
13806         (imap-fetch-safe): New function.
13807         (imap-message-copyuid-1, imap-message-appenduid-1): Use it.
13808
13809         * nnimap.el (nnimap-find-minmax-uid): Use imap-fetch-safe.
13810
13811         * imap.el (imap-process-connection-type, imap-debug, imap-open):
13812         (imap-parse-greeting): Fix doc strings.
13813         (imap-tls-open, imap-search, imap-message-appenduid-1): Add FIXMEs.
13814         (imap-parse-flag-list): Make messages unique.
13815         (imap-parse-body): Fix comments.  Add comment on Exchange 2007.
13816
13817         * nnimap.el: Fix author email.
13818         (nnimap-split-rule): Add FIXME comment.
13819         (nnimap-debug): Fix doc string.
13820
13821 2008-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
13822
13823         * dns.el (dns-set-servers): Check "Address".  Fix typo.
13824
13825 2008-12-25  Reiner Steib  <Reiner.Steib@gmx.de>
13826
13827         * dns.el (dns-set-servers): Renamed from dns-parse-resolv-conf.  Call
13828         nslookup if resolv.conf isn't available.
13829         (dns-query): Rename from query-dns.
13830         (dns-query-cached): Rename from query-dns-cached.
13831
13832 2008-12-25  Katsumi Yamaoka  <yamaoka@jpl.org>
13833
13834         * gnus-sum.el (gnus-summary-set-article-display-arrow): Make
13835         overlay-arrow-position and overlay-arrow-string buffer-local; no need
13836         to check if those variables exist (first appeared in Emacs 18.50).
13837
13838 2008-12-24  Katsumi Yamaoka  <yamaoka@jpl.org>
13839
13840         * mm-util.el (mm-line-number-at-pos): New function.
13841
13842         * spam-report.el (spam-report-process-queue): Use it.
13843
13844 2008-12-24  David Engster  <dengste@eml.cc>
13845
13846         * gnus-sum.el (gnus-summary-set-local-parameters): Don't bind
13847         parameters that haven't existed as variables as buffer-local variables.
13848
13849 2008-12-23  Dave Love  <fx@gnu.org>
13850
13851         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days): Don't use
13852         cadar.
13853
13854         * sieve-manage.el (sieve-manage-starttls-p): Rename from
13855         imap-starttls-p.
13856         (sieve-manage-starttls-open): Rename from imap-starttls-open.
13857
13858 2008-12-22  Dave Love  <fx@gnu.org>
13859
13860         * imap.el: Fix author email.  Doc fixes.
13861         (imap-parse-body): Work around assertion failure in bogus Exchange 2007
13862         reply.
13863
13864 2008-12-22  Reiner Steib  <Reiner.Steib@gmx.de>
13865
13866         * spam-report.el (spam-report-gmane-max-requests): New constant.
13867         (spam-report-gmane-wait): New variable.
13868         (spam-report-gmane-ham, spam-report-gmane-spam)
13869         (spam-report-url-ping-plain, spam-report-process-queue): Wait only if
13870         spam-report-gmane-wait is non-nil should be sufficient to avoid DOS-ing
13871         the server.
13872
13873         * nnheader.el (nnheader-read-timeout, nnheader-accept-process-output):
13874         Add explanations.
13875
13876         * pop3.el (pop3-accept-process-output, pop3-read-timeout): Use
13877         nnheader-accept-process-output and nnheader-read-timeout if available.
13878         (pop3-movemail): Use it.
13879
13880         * message.el (message-check-news-body-syntax): Fix signature check if
13881         there's an attachment.
13882
13883 2008-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
13884
13885         * mm-util.el: Add comments to the mm- emulating functions.
13886
13887 2008-12-21  Reiner Steib  <Reiner.Steib@gmx.de>
13888
13889         * gnus-start.el (gnus-before-startup-hook): Fix doc string.
13890         Reported by Stephen Berman <stephen.berman@gmx.net>.
13891
13892 2008-12-18  Katsumi Yamaoka  <yamaoka@jpl.org>
13893
13894         * mm-util.el (mm-substring-no-properties): New function.
13895         (mm-read-charset, mm-subst-char-in-string, mm-replace-in-string)
13896         (mm-special-display-p): Enable those lambda forms to be byte compiled.
13897         (mm-string-to-multibyte): Doc fix.
13898
13899         * mml.el (mml-attach-file): Use mm-substring-no-properties.
13900
13901 2008-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
13902
13903         * mml.el (mml-attach-file): Strip text properties from file name.
13904         (Bug#1574)
13905
13906 2008-12-16  Glenn Morris  <rgm@gnu.org>
13907
13908         * mm-util.el (mm-charset-override-alist): Declare for compiler.
13909
13910 2008-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
13911
13912         * mml.el (mml-generate-mime-1): Prefer the MIME charset that Emacs
13913         knows since the charset specified might be a bogus alias that
13914         mm-charset-synonym-alist provides.
13915
13916 2008-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
13917
13918         * mm-util.el (mm-charset-synonym-alist): Add bogus names "UTF8" and
13919         "ISO_8859-1".
13920
13921         * gnus-start.el (gnus-backup-startup-file): Improve doc string.
13922
13923 2008-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
13924
13925         * mm-util.el (mm-charset-eval-alist):
13926         Define it before mm-charset-to-coding-system.
13927         (mm-charset-to-coding-system): Add optional argument `silent';
13928         define it before mm-charset-override-alist.
13929         (mm-charset-override-alist): Add `(gb2312 . gbk)' to the
13930         default value if it can be used in Emacs currently running;
13931         silence mm-charset-to-coding-system.
13932
13933 2008-12-10  Katsumi Yamaoka  <yamaoka@jpl.org>
13934
13935         * rfc2047.el (rfc2047-charset-to-coding-system): Add new argument
13936         `allow-override' which says whether to use `mm-charset-override-alist'.
13937         (rfc2047-decode-encoded-words): Use it.
13938
13939         * mm-util.el (mm-charset-override-alist): Fix custom type;
13940         add `(gb2312 . gbk)' to choices.
13941
13942 2008-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
13943
13944         * mm-view.el (mm-inline-text-html-render-with-w3m): Make it simple and
13945         fast.
13946
13947         * gnus-art.el (gnus-article-wash-html-with-w3m): Ditto.
13948
13949         * lpath.el: Bind w3m-link-map for Emacs 21, 22, and XEmacs.
13950
13951 2008-12-04  Naohiro Aota  <nao.aota@gmail.com>
13952
13953         * mm-view.el (mm-inline-text-html-render-with-w3m): Put special keymap
13954         on links.
13955
13956         * gnus-art.el (gnus-article-wash-html-with-w3m): Ditto.
13957
13958 2008-12-03  Lute Kamstra  <lute@gnu.org>
13959
13960         * sha1.el: Remove leading * from docstrings of defcustoms,
13961         deffaces, defconsts and defuns.
13962
13963 2008-12-03  Katsumi Yamaoka  <yamaoka@jpl.org>
13964
13965         * message.el (message-idna-to-ascii-rhs-1): Protect against local
13966         users' addresses that don't have domain parts.
13967         (message-idna-to-ascii-rhs): Use message-narrow-to-headers-or-head
13968         rather than message-narrow-to-head since there will be the message
13969         header separator.
13970
13971 2008-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
13972
13973         * nnimap.el (nnimap-retrieve-headers-progress): Don't use nnimap-demule
13974         since the result is inserted in a unibyte buffer anyway.
13975         (nnimap-demule-use-string-to-multibyte): Remove.
13976         (nnimap-demule): Alias it to mm-string-to-multibyte.
13977
13978 2008-11-29  Reiner Steib  <Reiner.Steib@gmx.de>
13979
13980         * nnimap.el (nnimap-demule-use-string-to-multibyte): New temporary
13981         variable for debugging bug#464 and bug#1174.
13982         (nnimap-demule): Use it.
13983
13984 2008-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
13985
13986         * gnus-score.el (gnus-score-find-trace): Handle default score in total
13987         score calculation correctly.
13988
13989 2008-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
13990
13991         * message.el (message-send-mail): Just set the buffer to unibyte
13992         rather than use mm-with-unibyte-current-buffer which does a lot more.
13993         (message-send-mail-partially): Don't bother with
13994         mm-with-unibyte-current-buffer since it's already been made unibyte by
13995         message-send-mail.
13996
13997 2008-11-11  Teodor Zlatanov  <tzz@lifelogs.com>
13998
13999         * nnrss.el (nnrss-make-hash-index): Debug message of full item.
14000
14001 2008-11-10  Teodor Zlatanov  <tzz@lifelogs.com>
14002
14003         * netrc.el (netrc-parse): If a list is passed in as FILE, return it.
14004
14005 2008-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
14006
14007         * starttls.el (starttls-any-program-available): Rewritten so it doesn't
14008         require itself and to remove `with-no-warnings'.
14009
14010 2008-11-03  Teodor Zlatanov  <tzz@lifelogs.com>
14011
14012         * starttls.el (starttls-any-program-available): Get the name of the
14013         available TLS layer program.
14014         (starttls-open-steam-gnutls, starttls-open-stream): Put port number as
14015         well as the host name in the "opening" message.
14016
14017         * auth-source.el (auth-source-cache, auth-source-do-cache)
14018         (auth-source-user-or-password): Cache passwords and logins by default,
14019         allow override with `auth-source-do-cache'.
14020         (auth-source-forget-user-or-password): Allow users to remove cache
14021         entries if needed.
14022
14023 2008-11-01  Juanma Barranquero  <lekktu@gmail.com>
14024
14025         * md4.el (md4-buffer): Fix typo in docstring.
14026         (md4, md4-64): Doc fixes.
14027         (md4-pack-int32): Reflow docstring.
14028
14029 2008-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
14030
14031         * ietf-drums.el (ietf-drums-remove-comments): Localize second
14032         condition-case to only the forward-sexp call.
14033
14034 2008-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
14035
14036         * ietf-drums.el (ietf-drums-remove-comments): Fix bug with single
14037         quotes contained.  Make it more robust regardless by an extra
14038         condition-case wrapper.
14039
14040 2008-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
14041
14042         * lpath.el: No need to fbind codepage-setup for Emacs 23.
14043
14044 2008-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
14045
14046         * nnml.el (nnml-request-expire-articles): Check if the function set to
14047         `nnmail-expiry-target' returns the symbol `delete'.
14048
14049         * nnfolder.el (nnfolder-request-expire-articles): Ditto.
14050
14051         * nnmail.el (nnmail-expiry-target): Fix custom type.
14052
14053 2008-10-02  Glenn Morris  <rgm@gnu.org>
14054
14055         * mm-util.el (mm-codepage-setup): Tweak codepage error.
14056         Silence compiler warning.
14057
14058 2008-10-01  Magnus Henoch  <mange@freemail.hu>
14059
14060         * tls.el (open-tls-stream): Show the actual command being
14061         executed, instead of the format string.
14062
14063 2008-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
14064
14065         * lpath.el: Fbind codepage-setup for Emacs 23.
14066
14067 2008-09-30  Chong Yidong  <cyd@stupidchicken.com>
14068
14069         * mml.el (mml-menu): Don't assume mml2015 is bound.
14070
14071 2008-09-29  Katsumi Yamaoka  <yamaoka@jpl.org>
14072
14073         * gnus-art.el (gnus-article-read-summary-keys): Check if summary window
14074         exists.
14075
14076 2008-09-27  Glenn Morris  <rgm@gnu.org>
14077
14078         * gnus-util.el (mail-header-remove-comments): Autoload it.
14079
14080 2008-09-27  Andreas Schwab  <schwab@suse.de>
14081
14082         * gnus-util.el (gnus-split-references): Strip comments.
14083         (gnus-parent-id): Likewise.
14084
14085 2008-09-26  Reiner Steib  <Reiner.Steib@gmx.de>
14086
14087         * message.el (message-confirm-send): Fix version.
14088
14089 2008-09-25  Katsumi Yamaoka  <yamaoka@jpl.org>
14090
14091         * message.el (message-idna-to-ascii-rhs-1): Use
14092         mail-extract-address-components rather than mail-header-parse-addresses
14093         that is an alias by default to ietf-drums-parse-addresses that does not
14094         support non-ASCII names in headers' contents.
14095
14096 2008-09-25  Teodor Zlatanov  <tzz@lifelogs.com>
14097
14098         * message.el (message-confirm-send): Fix variable documentation to
14099         avoid the "y/n" wording.
14100
14101 2008-09-25  Francis Litterio  <flitterio@gmail.com>  (tiny change)
14102
14103         * message.el (message-set-auto-save-file-name): Save to a different
14104         filename so multiple messages (especially drafts) can be recovered.
14105
14106 2008-09-24  Teodor Zlatanov  <tzz@lifelogs.com>
14107
14108         * message.el (message-confirm-send): Add appropriate version.
14109
14110 2008-09-22  Teodor Zlatanov  <tzz@lifelogs.com>
14111
14112         * mm-view.el (mm-pkcs7-enveloped-magic): Fix extra parenthesis in
14113         defvar.
14114
14115 2008-09-22  Daiki Ueno  <ueno@unixuser.org>
14116
14117         * mm-view.el (mm-pkcs7-signed-magic): Use literals.
14118         (mm-pkcs7-enveloped-magic): Ditto.
14119
14120 2008-09-17  Simon Josefsson  <simon@josefsson.org>
14121
14122         * sieve-manage.el (sieve-manage-is-string): Accept literals too.
14123         Reported by Arnt Gulbrandsen <arnt@oryx.com>.
14124
14125 2008-09-16  Teodor Zlatanov  <tzz@lifelogs.com>
14126
14127         * gnus-registry.el (gnus-registry-use-long-group-names): Make t the
14128         default, it's better.
14129
14130 2008-09-11  Teodor Zlatanov  <tzz@lifelogs.com>
14131
14132         * gnus-sum.el (gnus-summary-insert-line): Trap errors on setting the
14133         summary line gnus-number property and ignore them (with a warning
14134         message).
14135
14136 2008-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
14137
14138         * gnus-group.el (gnus-group-make-useful-group): Don't use the compiler
14139         macro caddr in the interactive form since it won't be expanded.
14140
14141 2008-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
14142
14143         * gnus-art.el (gnus-mime-set-charset-parameters): Add new argument
14144         `charset'; fix name of function called recursively.
14145         (gnus-mime-view-part-as-charset): Don't bind gnus-newsgroup-charset.
14146
14147 2008-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
14148
14149         * gnus-art.el (gnus-mime-strip-charset-parameters): Remove.
14150         (gnus-mime-set-charset-parameters): New function.
14151         (gnus-mime-view-part-as-charset): Use it to correctly display part
14152         specifying wrong charset.
14153
14154 2008-09-08  David Engster  <dengste@eml.cc>
14155
14156         * nnmairix.el (nnmairix-create-server-and-default-group): Require match
14157         in completing-read for back end server.
14158
14159 2008-09-03  Teodor Zlatanov  <tzz@lifelogs.com>
14160
14161         * message.el (message-confirm-send): New variable to confirm sending a
14162         message.
14163         (message-send): Use it.
14164
14165 2008-08-30  Teodor Zlatanov  <tzz@lifelogs.com>
14166
14167         * gnus-spec.el (gnus-parse-simple-format): Revert last patch.
14168
14169 2008-08-29  Katsumi Yamaoka  <yamaoka@jpl.org>
14170
14171         * gnus-spec.el (gnus-parse-simple-format): Remove trailing whitespace.
14172
14173 2008-08-21  Teodor Zlatanov  <tzz@lifelogs.com>
14174
14175         * gnus-registry.el (gnus-registry-max-track-groups): New variable to
14176         prevent tracking too many groups.
14177         (gnus-registry-split-fancy-with-parent, gnus-registry-fetch-groups):
14178         Use it.
14179
14180 2008-08-11  Ralf Angeli  <angeli@caeruleus.net>
14181
14182         * gnus-art.el (gnus-article-next-page): Respect `scroll-margin' when
14183         moving point to the bottom of the window in order to avoid recentering.
14184
14185 2008-08-11  Katsumi Yamaoka  <yamaoka@jpl.org>
14186
14187         * lpath.el: Bind scroll-margin for XEmacs 21.4 and SXEmacs.
14188
14189         * gnus-art.el (gnus-article-next-page, gnus-article-prev-page)
14190         (gnus-article-next-page-1): Use compiler directive (featurep 'xemacs).
14191         (gnus-article-beginning-of-window): Fix calculation.
14192
14193 2008-08-08  Katsumi Yamaoka  <yamaoka@jpl.org>
14194
14195         * gnus-msg.el (gnus-summary-supersede-article)
14196         (gnus-summary-resend-message-edit): Bind mail-parse-charset to the
14197         value of gnus-newsgroup-charset to decode non-MIME encoded text in
14198         message header.
14199
14200 2008-08-02  Chong Yidong  <cyd@stupidchicken.com>
14201
14202         * pgg-gpg.el (pgg-gpg-process-region): Accept any remaining
14203         pending output coming after the status change.
14204
14205 2008-07-31  Dan Nicolaescu  <dann@ics.uci.edu>
14206
14207         * message.el:
14208         * gnus-start.el:
14209         * gnus-registry.el: Remove VMS support.
14210
14211 2008-07-30  Katsumi Yamaoka  <yamaoka@jpl.org>
14212
14213         * rfc2104.el (rfc2104-string-make-unibyte): Define it as a compiler
14214         macro.
14215         (rfc2104-hash): Use it.
14216
14217 2008-07-30  Reiner Steib  <Reiner.Steib@gmx.de>
14218
14219         * gnus-sum.el (gnus-summary-sort-by-most-recent-number)
14220         (gnus-summary-sort-by-most-recent-date): New commands.
14221         (gnus-summary-mode-map, gnus-summary-make-menu-bar): Add key bindings
14222         and menu entries.
14223
14224 2008-07-29  Katsumi Yamaoka  <yamaoka@jpl.org>
14225
14226         * gnus-art.el (gnus-summary-save-in-pipe): Generate work buffer always;
14227         don't redisplay article for raw contents; remove plural articles stuff.
14228
14229         * gnus-sum.el (gnus-summary-pipe-output): Pipe raw articles by symbolic
14230         prefix `r'; use gnus-summary-save-in-pipe directly instead of relying
14231         on gnus-summary-save-article; display results properly.
14232
14233 2008-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
14234
14235         * lpath.el: No need to fbind ns-focus-frame.
14236
14237 2008-07-24  Katsumi Yamaoka  <yamaoka@jpl.org>
14238
14239         * gnus-art.el (gnus-summary-save-in-pipe): Add optional argument `raw'.
14240
14241 2008-07-22  Katsumi Yamaoka  <yamaoka@jpl.org>
14242
14243         * gnus-art.el (gnus-summary-save-in-pipe):
14244         Consider gnus-save-all-headers.
14245
14246 2008-07-21  Dan Nicolaescu  <dann@ics.uci.edu>
14247
14248         * gnus-util.el (ns-focus-frame): Remove declaration.
14249         (gnus-select-frame-set-input-focus): Undo previous change.  Treat ns
14250         like x.
14251
14252 2008-07-21  Thien-Thi Nguyen  <ttn@gnuvola.org>
14253
14254         * rfc2104.el (rfc2104-zero): Delete defconst.
14255         (rfc2104-hex-alist): Likewise.
14256         (rfc2104-hex-to-int): Delete func.
14257         (rfc2104-hexstring-to-bitstring): Likewise.
14258         (rfc2104-nybbles): New defconst.
14259         (rfc2104-hash): Rewrite for speed.
14260
14261 2008-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
14262
14263         * tls.el (open-tls-stream): Make it work with the 2nd argument
14264         BUFFER that is a string but does not exist as a buffer object, as
14265         mentioned in the doc-string.
14266
14267 2008-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
14268
14269         * lpath.el: Fbind ns-focus-frame for Emacs 21, 22, XEmacs 21.4, and
14270         SXEmacs.
14271
14272 2008-07-16  Glenn Morris  <rgm@gnu.org>
14273
14274         * gnus-util.el (ns-focus-frame): Declare for compiler.
14275
14276 2008-07-10  Katsumi Yamaoka  <yamaoka@jpl.org>
14277
14278         * gnus-art.el (gnus-article-save): Ignore gnus-visible-headers that is
14279         set as a group parameter.
14280         (gnus-summary-save-in-pipe): Work when it is called independently.
14281         (gnus-summary-pipe-to-muttprint): Don't modify
14282         gnus-summary-pipe-output-default-command.
14283
14284 2008-07-10  Stefan Monnier  <monnier@iro.umontreal.ca>
14285
14286         * message.el (message-send-mail-with-sendmail):
14287         Display the error message.
14288
14289 2008-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
14290
14291         * gnus-art.el (gnus-default-article-saver):
14292         Add gnus-summary-save-in-pipe to choices.
14293         (gnus-summary-save-in-pipe): Add :decode and :headers properties; use
14294         gnus-summary-pipe-output-default-command as the default command.
14295         (gnus-summary-pipe-to-muttprint): Update gnus-summary-muttprint-program
14296         instead of gnus-last-shell-command.
14297
14298         * gnus-sum.el (gnus-summary-pipe-output-default-command):
14299         New user option.
14300         (gnus-summary-muttprint-program): Mention the value will be changed.
14301         (gnus-summary-save-article): Force showing of all headers.
14302         (gnus-summary-pipe-output): Work with the 2nd argument HEADERS.
14303
14304 2008-07-01  Rupert Swarbrick  <rswarbrick@googlemail.com>  (tiny change)
14305
14306         * gnus-score.el (gnus-score-find-trace): Add "Total score" line.
14307
14308 2008-07-02  Juanma Barranquero  <lekktu@gmail.com>
14309
14310         * nnimap.el (nnimap-id):
14311         * sieve-manage.el (sieve-manage-open): Doc fixes.
14312
14313 2008-07-02  Francesc Rocher  <rocher@member.fsf.org>
14314
14315         * gnus.el (gnus-group-startup-message): Prefer SVG or PNG image,
14316         if available.
14317
14318 2008-06-25  Stefan Monnier  <monnier@iro.umontreal.ca>
14319
14320         * mm-util.el (mm-with-multibyte, mm-with-unibyte): Remove.
14321
14322         * nnkiboze.el (nnkiboze-generate-group):
14323         Use explicit mm-disable-multibyte rather than mm-with-unibyte.
14324
14325         * nnmairix.el: Require CL.
14326
14327 2008-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
14328
14329         * dgnushack.el: Autoload get-display-table and put-display-table for
14330         XEmacs 21.5.
14331
14332         * lpath.el: Fbind get-display-table and put-display-table for XEmacs
14333         21.4 and SXEmacs.
14334
14335 2008-06-15  David Engster  <dengste@eml.cc>
14336
14337         * nnimap.el (nnimap-request-delete-group): Unselect group if necessary.
14338
14339 2008-06-14  Aidan Kehoe  <kehoea@parhasard.net>
14340
14341         * gnus-util.el (gnus-put-display-table, gnus-get-display-table):
14342         New macros that expand to an `aset'/`aref' call under Emacs, and to a
14343         runtime choice under XEmacs.
14344
14345         * gnus-sum.el (gnus-summary-set-display-table):
14346         Use `gnus-put-display-table', `gnus-get-display-table',
14347         `gnus-set-display-table' for the display table, instead of `aset'.
14348
14349         * gnus-xmas.el (gnus-xmas-summary-set-display-table):
14350         Use `gnus-put-display-table', `gnus-get-display-table',
14351         `gnus-set-display-table' for the display table.
14352
14353 2008-06-14  Reiner Steib  <Reiner.Steib@gmx.de>
14354
14355         * nnmairix.el: Add autoloads.
14356
14357 2008-06-14  Reiner Steib  <Reiner.Steib@gmx.de>
14358
14359         * nnmairix.el (nnmairix-delete-recreate-group)
14360         (nnmairix-update-and-clear-marks): Fix error messages.
14361
14362 2008-06-14  David Engster  <dengste@eml.cc>
14363
14364         * nnmairix.el: Upgrade to version 0.6.
14365         (nnmairix-group-toggle-propmarks-this-group)
14366         (nnmairix-group-toggle-readmarks-this-group)
14367         (nnmairix-group-delete-recreate-this-group)
14368         (nnmairix-group-toggle-allowfast-this-group, nnmairix-propagate-marks)
14369         (nnmairix-remove-tick-mark-original-article): New commands.
14370         (nnmairix-mairix-search-options, nnmairix-propagate-marks-upon-close)
14371         (nnmairix-propagate-marks-to-nnmairix-groups)
14372         (nnmairix-only-use-registry, nnmairix-allowfast-default)
14373         (nnmairix-marks-cache, nnmairix-version-output): New variables.
14374         (nnmairix-request-set-mark, nnmairix-request-update-info): New back end
14375         functions needed for marks propagation and manipulation of read marks.
14376         (nnmairix-update-groups): New function.
14377         (nnmairix-get-groups-from-server, nnmairix-delete-recreate-group)
14378         (nnmairix-determine-original-group-from-registry)
14379         (nnmairix-determine-original-group-from-path)
14380         (nnmairix-get-group-from-file-path, nnmairix-map-range)
14381         (nnmairix-check-mairix-version, nnmairix-group-toggle-parameter):
14382         New helper functions.
14383         (nnmairix-group-mode-hook, nnmairix-summary-mode-hook): Insert new
14384         keystrokes for new commands.
14385         (nnmairix-delete-and-create-on-change): Doc string cleanup.
14386         (nnmairix-request-group): Check allow-fast group parameter.
14387         (nnmairix-request-create-group): Set allow-fast group parameter if
14388         nnmairix-allowfast-default is set.
14389         (nnmairix-close-group): Propagate marks upon closing if needed.
14390         (nnmairix-group-toggle-threads-this-group): Use new.
14391         nnmairix-group-toggle-parameter helper function.
14392         (nnmairix-search): Better check for empty search result.
14393         (nnmairix-goto-original-article): Use new helper functions for
14394         determining original article.
14395         (nnmairix-show-original-article): Make sure message-id is in brackets.
14396         (nnmairix-call-mairix-binary): Change variable name.
14397         (nnmairix-update-and-clear-marks): Use nnmairix-delete-recreate-group
14398         helper function.
14399         (nnmairix-widget-toggle-activate): Fix doc string.
14400
14401 2008-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
14402
14403         * nnir.el: Require edmacro when compiling with XEmacs.
14404         (nnir-run-find-grep): Don't use 3rd arg of `split-string' which is not
14405         available in Emacs 21.
14406
14407 2008-06-11  Glenn Morris  <rgm@gnu.org>
14408
14409         * gnus-util.el (x-focus-frame):
14410         * gnus.el (image-size):
14411         * mm-decode.el (image-size): Declare.
14412
14413         * gnus-picon.el (declare-function): Add compat definition.
14414         (image-size): Declare.
14415
14416         * gnus-group.el (tool-bar-map):
14417         * gnus-sum.el (tool-bar-map): Define for compiler.
14418
14419         * gnus-ems.el (gnus-x-splash): Check tool-bar-mode is bound.
14420
14421         * nnfolder.el (gnus-intersection): Remove unnecessary autoload.
14422
14423         * gnus-agent.el, gnus-cache.el, gnus-ems.el, gnus-group.el:
14424         * gnus-logic.el, gnus-msg.el, gnus-util.el, gnus.el, mail-source.el:
14425         * message.el, mm-decode.el, mm-encode.el, mm-view.el, mml.el:
14426         * mml1991.el, mml2015.el, nnfolder.el, nnheader.el, nnimap.el:
14427         * nnmail.el, nnml.el, nnrss.el, nntp.el, nnvirtual.el:
14428         * sieve-manage.el, spam-report.el, spam.el:
14429         Remove unnecessary eval-and-compile of autoloads.
14430
14431 2008-06-08  Michael Albinus  <michael.albinus@gmx.de>
14432
14433         * auth-source.el: Precise Tramp doc.
14434
14435 2008-06-07  Glenn Morris  <rgm@gnu.org>
14436
14437         * nnmairix.el: Remove unnecessary eval-when-compile.
14438
14439 2008-06-06  Katsumi Yamaoka  <yamaoka@jpl.org>
14440
14441         * lpath.el: Fbind propertize for XEmacs 21.4.
14442
14443 2008-06-05  Reiner Steib  <Reiner.Steib@gmx.de>
14444
14445         * nnir.el: Move here from ../contrib.
14446
14447 2008-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
14448
14449         * gnus-util.el (gnus-read-shell-command): New function.
14450         * mm-decode.el (mm-pipe-part):
14451         * gnus-art.el (gnus-summary-save-in-pipe): Use it.
14452
14453 2008-06-05  Katsumi Yamaoka  <yamaoka@jpl.org>
14454
14455         * message.el (message-disassociate-draft): Revert 2008-03-18 change.
14456
14457 2008-06-03  Glenn Morris  <rgm@gnu.org>
14458
14459         * pop3.el (nnheader-accept-process-output): Autoload it.
14460
14461 2008-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
14462
14463         * rfc2231.el (rfc2231-decode-encoded-string): Don't decode things that
14464         are not 2-digit hexadecimal characters that follow `%'s.
14465
14466 2008-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
14467
14468         * message.el (message-bogus-recipient-p): Fix type in doc string.
14469         Reported by Stephen Eglen <S.J.Eglen@damtp.cam.ac.uk>.
14470         (message-bogus-addresses): Rename from message-bogus-address-regexp.
14471         Improve custom options.
14472         (message-bogus-recipient-p): Adjust accordingly.
14473
14474 2008-05-27  Chong Yidong  <cyd@stupidchicken.com>
14475
14476         * parse-time.el (parse-time-months, parse-time-weekdays): Add
14477         long-form month and day names.
14478
14479 2008-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
14480
14481         * dgnushack.el: Autoload debug, eudc-expand-inline and
14482         pgg-snarf-keys-region for XEmacs.
14483
14484         * lpath.el: Fbind w3m-region, bind ps-print-color-p for XEmacs.
14485
14486         * nnmairix.el: Require edmacro when compiling with XEmacs.
14487
14488 2008-05-24  Reiner Steib  <Reiner.Steib@gmx.de>
14489
14490         * gnus-sum.el (gnus-summary-initial-limit): Use unless instead of if.
14491         (gnus-fetch-old-headers): Warn about setting it to t for Gmane groups.
14492
14493 2008-05-20  Teodor Zlatanov  <tzz@lifelogs.com>
14494
14495         * auth-source.el: Add more docs.
14496
14497         * netrc.el (netrc-machine): Always match if the port is not given.
14498
14499 2008-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14500
14501         * nnheader.el (nnheader-read-timeout): Change the default timeout from
14502         0.1 seconds to 0.01 seconds.  This will make nntp and pop3 article
14503         retrieval faster in some cases, but might make CPU usage larger.
14504         If this has any bad side effects, we might revert this change.
14505
14506         * pop3.el (pop3-movemail): Change the sit-for from 0.1 to 0.01, which
14507         seems to make mail retrieval much, much faster.
14508         (pop3-movemail): Use nnheader-accept-process-output instead of sleeping
14509         unconditionally.
14510
14511         * gnus-draft.el (gnus-group-send-queue):
14512         Bind message-send-mail-partially-limit to nil to avoid being prompted.
14513
14514 2008-05-16  Reiner Steib  <Reiner.Steib@gmx.de>
14515
14516         * mml.el (mml-attach-buffer): Prompt for `disposition'.
14517
14518         * message.el (message-bogus-address-regexp): Fix and improve custom
14519         type.
14520         (message-setup-hook): Add message-check-recipients as custom option.
14521
14522 2008-05-15  Reiner Steib  <Reiner.Steib@gmx.de>
14523
14524         * message.el (message-cite-function): Remove bogus autoload which crept
14525         in during merge from v5-10.
14526
14527 2008-05-14  Teodor Zlatanov  <tzz@lifelogs.com>
14528
14529         * nnimap.el (nnimap-open-connection): Fix login/password bug.
14530
14531         * nnrss.el (nnrss-normalize-date): Accept Unix-style epoch timestamps.
14532
14533         * auth-source.el: Preliminary Tramp docs.
14534         (auth-sources): Change the default auth-sources to use
14535         EPA .gpg files.
14536
14537 2008-05-09  Teodor Zlatanov  <tzz@lifelogs.com>
14538
14539         * nntp.el: Autoload `auth-source-user-or-password'.
14540         (nntp-send-authinfo): Use it.
14541
14542         * nnimap.el: Autoload `auth-source-user-or-password'.
14543         (nnimap-open-connection): Use it.
14544
14545         * auth-source.el: Add docs on using with url-auth.  Import gnus-util
14546         for the gnus-message function.
14547         (auth-source-user-or-password): Use it.
14548
14549 2008-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
14550
14551         * rfc2104.el (rfc2104-hexstring-to-bitstring): Rename it back from
14552         rfc2104-hexstring-to-byte-list.  Return a unibyte string.
14553         (rfc2104-hash): Use it.
14554
14555 2008-05-08  Juanma Barranquero  <lekktu@gmail.com>
14556
14557         * gnus-art.el (gnus-article-toggle-truncate-lines):
14558         Don't use `iff' in docstring.
14559
14560 2008-05-07  Teodor Zlatanov  <tzz@lifelogs.com>
14561
14562         * gnus-registry.el: Adjusted copyright dates and added a keyword.
14563
14564         * gnus-util.el (gnus-extract-address-component-name)
14565         (gnus-extract-address-component-email): Convenience functions around
14566         `gnus-extract-address-components'.
14567
14568         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
14569         Use `gnus-extract-address-component-email' to fix bug of comparing full
14570         sender name to `user-mail-address'.
14571
14572 2008-05-05  Teodor Zlatanov  <tzz@lifelogs.com>
14573
14574         * gnus-registry.el (gnus-registry-grep-in-list): Fix logic, use
14575         catch/throw to optimize.
14576         (gnus-registry-find-keywords): Just use member to find a keyword.
14577
14578 2008-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
14579
14580         * gnus-srvr.el (gnus-enter-server-buffer): Make sure the server-buffer
14581         is current before calling gnus-server-prepare.
14582         (gnus-server-setup-buffer, gnus-server-update-server)
14583         (gnus-server-read-server, gnus-browse-exit): Use with-current-buffer.
14584
14585 2008-05-04  Juri Linkov  <juri@jurta.org>
14586
14587         * mailcap.el (mailcap-replace-in-string): New compatibility alias.
14588         (mailcap-file-default-commands): Use mailcap-replace-in-string
14589         instead of replace-regexp-in-string, and mailcap-delete-duplicates
14590         instead of delete-dups.  Use [ \t\n]* for whitespace in regexp.
14591
14592 2008-05-03  Reiner Steib  <reiner.steib@gmx.de>
14593
14594         * gnus-sum.el (gnus-propagate-marks): Fix custom version.
14595
14596 2008-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
14597
14598         * gnus.el: Bump version to 0.11.
14599
14600 2008-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
14601
14602         * gnus.el: No Gnus v0.10 is released.
14603
14604 2008-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14605
14606         * gnus-sum.el (gnus-summary-save-parts): Inhibit even more treatment
14607         hooks.
14608         (gnus-update-read-articles): Speed up non-marks-using users.
14609         (gnus-use-marks): Define gnus-use-marks.
14610         (gnus-propagate-marks): Rename variable to something more sensible.
14611
14612 2008-05-02  Juanma Barranquero  <lekktu@gmail.com>
14613
14614         * gmm-utils.el (gmm, gmm-verbose, gmm-lazy, gmm-customize-mode)
14615         (gmm-image-load-path-for-library): Fix typos in docstrings.
14616         (gmm-message): Reflow docstring.
14617
14618 2008-04-28  Teodor Zlatanov  <tzz@lifelogs.com>
14619
14620         * mail-source.el (mail-source-set-1, mail-source-bind):
14621         Move auth-source code out of the macro to clean it up and fix bugs.
14622
14623 2008-04-26  Teodor Zlatanov  <tzz@lifelogs.com>
14624
14625         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Don't split
14626         by sender if it's equal to user-mail-address, it's likely to be
14627         useless.
14628
14629         * mail-source.el (mail-source-bind): Don't use user or password if they
14630         are not bound.  Unintern them if they are nil.  Don't use server unless
14631         it's bound, and default it to empty string otherwise.
14632
14633 2008-04-25  Teodor Zlatanov  <tzz@lifelogs.com>
14634
14635         * mail-source.el: Load auth-source.el.
14636         (mail-source-bind): Add comments.  Call auth-source-user-or-password to
14637         get user name or password, if auth-sources is set up.
14638
14639         * gnus-registry.el (gnus-registry-split-strategy): New variable for
14640         strategy of splitting with parent.
14641         (gnus-registry-split-fancy-with-parent)
14642         (gnus-registry-post-process-groups): Use it and fix prior
14643         bug (returning a list as the split result).
14644
14645         * auth-source.el (auth-sources): Remove server parameter.
14646         (auth-source-pick, auth-source-user-or-password)
14647         (auth-source-user-or-password-imap)
14648         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
14649         (auth-source-user-or-password-sftp)
14650         (auth-source-user-or-password-smtp): Remove server parameter.
14651
14652 2008-04-25  Juanma Barranquero  <lekktu@gmail.com>
14653
14654         * smime.el (smime-sign-region, smime-encrypt-region)
14655         (smime-decrypt-region):
14656         Remove redundant calls to `generate-new-buffer-name'.
14657
14658 2008-04-24  Luca Capello  <luca@pca.it>  (tiny change)
14659
14660         * mm-encode.el (mm-safer-encoding): Add optional argument `type'.
14661         Don't use QP for message/rfc822.
14662         (mm-content-transfer-encoding): Pass `type' to mm-safer-encoding.
14663
14664 2008-04-24  Stefan Monnier  <monnier@iro.umontreal.ca>
14665
14666         * sieve-manage.el (sieve-string-bytes): Remove.
14667         (sieve-manage-putscript): Use length instead: `string-bytes' gives the
14668         correct byte-length only if the process's coding-system is the same as
14669         the one used internally by Emacs to represent strings.
14670
14671 2008-04-22  Juri Linkov  <juri@jurta.org>
14672
14673         * mailcap.el (mailcap-file-default-commands): New function.
14674
14675 2008-04-13  Reiner Steib  <Reiner.Steib@gmx.de>
14676
14677         * message.el (message-signature-separator, message-cite-function):
14678         Change custom version.
14679
14680 2008-04-13  Naohiro Aota  <nao.aota@gmail.com>  (tiny change)
14681
14682         * tls.el (tls-program): Add -ign_eof argument to call the openssl
14683         commands.
14684         (tls-checktrust): Ditto.
14685
14686 2008-04-13  Reiner Steib  <Reiner.Steib@gmx.de>
14687
14688         * mm-decode.el (mm-display-external): Make temp file read-only.
14689
14690 2008-04-12  Reiner Steib  <Reiner.Steib@gmx.de>
14691
14692         * gnus-diary.el (gnus-article-edit-mode-map, message-mode-map): Remove
14693         binding for `gnus-diary-version'.  Bind `gnus-diary-check-message' to
14694         `C-c C-f d'.
14695
14696 2008-04-12  Adrian Aichner  <adrian@xemacs.org>
14697
14698         * gnus-sum.el (gnus-summary-goto-subject): Typo fix.
14699
14700 2008-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
14701
14702         * gnus.el: Bump version to 0.9.
14703
14704 2008-04-10  Reiner Steib  <Reiner.Steib@gmx.de>
14705
14706         * gnus.el: No Gnus v0.8 is released.
14707
14708 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
14709
14710         * mail-source.el (mail-source-value):
14711         Prefer fboundp to functionp so it works with macros as well.
14712
14713 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
14714
14715         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
14716         Fix last change in case the element is not even a symbol.
14717
14718 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
14719
14720         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
14721         Prefer fboundp to functionp so it works with macros as well.
14722
14723 2008-04-09  Teodor Zlatanov  <tzz@lifelogs.com>
14724
14725         * auth-source.el: Add docs.
14726         (auth-sources): Modify format to support server.
14727         (auth-source-pick, auth-source-user-or-password)
14728         (auth-source-user-or-password-imap)
14729         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
14730         (auth-source-user-or-password-sftp)
14731         (auth-source-user-or-password-smtp): Add server parameter.
14732
14733 2008-04-08  Teodor Zlatanov  <tzz@lifelogs.com>
14734
14735         * gnus-registry.el: Initialize the registry when gnus-registry-install
14736         is t.
14737
14738 2008-04-08  Katsumi Yamaoka  <yamaoka@jpl.org>
14739
14740         * compface.el (uncompface): Make buffer unibyte.
14741
14742 2008-04-07  Stefan Monnier  <monnier@iro.umontreal.ca>
14743
14744         * mail-source.el (mail-source-value):
14745         Prefer fboundp to functionp so it works with macros as well.
14746
14747 2008-04-05  Glenn Morris  <rgm@gnu.org>
14748
14749         * gnus-ems.el (mm-disable-multibyte): Autoload it.
14750
14751 2008-04-05  Stefan Monnier  <monnier@iro.umontreal.ca>
14752
14753         * mm-util.el (mm-with-unibyte-buffer, mm-with-multibyte-buffer):
14754         Prefer mm-(en|dis)able-multibyte to default-enable-multibyte-characters.
14755
14756         * nnheader.el (nnheader-init-server-buffer): Change buffer's
14757         multibyteness after rather than before erasing it.
14758
14759         * gnus-art.el (gnus-mime-replace-part): Remove unnecessary use of
14760         mm-with-multibyte.
14761         (gnus-request-article-this-buffer): Make sure the proper decoding is
14762         used if gnus-original-article-buffer happens to be unibyte.
14763
14764         * gnus-ems.el (gnus-x-splash): Prefer mm-disable-multibyte to
14765         default-enable-multibyte-characters.
14766
14767         * gnus-fun.el (gnus-display-x-face-in-from): Remove unnecessary use of
14768         default-enable-multibyte-characters.
14769
14770         * mm-decode.el (mm-inline-media-tests): Add entry for x-diff.
14771
14772         * nnweb.el (nnweb-init): Avoid nn-with-unibyte.
14773
14774 2008-04-03  Stefan Monnier  <monnier@iro.umontreal.ca>
14775
14776         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
14777         Fix last change in case the element is not even a symbol.
14778
14779 2008-04-02  Simon Josefsson  <simon@josefsson.org>
14780
14781         * imap.el (imap-enable-exchange-bug-workaround): New variable.
14782         (imap-message-copyuid-1): Use it.
14783         (imap-message-appenduid-1): Likewise.  Based on patch by Nathan
14784         J. Williams in
14785         <http://permalink.gmane.org/gmane.emacs.gnus.general/65855>.
14786
14787         * nnimap.el (nnimap-enable-minmax-bug-workaround): Remove, replaced by
14788         imap-enable-exchange-bug-workaround.
14789         (nnimap-find-minmax-uid): Use imap-enable-exchange-bug-workaround.
14790
14791 2008-04-01  Simon Josefsson  <simon@josefsson.org>
14792
14793         * nnimap.el (nnimap-find-minmax-uid): Revert last fix, the "fix" turns
14794         a 100 byte status-checks into a 2-3MB transfer for each group.
14795         (nnimap-enable-minmax-bug-workaround): New variable to toggle whether
14796         to enable bug workaround or not.
14797         (nnimap-find-minmax-uid): Only enable workaround conditionally.
14798
14799 2008-03-31  Glenn Morris  <rgm@gnu.org>
14800
14801         * message.el (mml2015-use): Declare for compiler.
14802         (message-info): Require mml2015 when appropriate.
14803
14804 2008-03-31  Katsumi Yamaoka  <yamaoka@jpl.org>
14805
14806         * Makefile.in (EMACS_COMP): Quote directory name that might contain
14807         whitespace.
14808
14809 2008-03-30  Stefan Monnier  <monnier@iro.umontreal.ca>
14810
14811         * nntp.el (nntp-netcat-command): Rename from nntp-via-netcat-command.
14812         (nntp-netcat-switches): Rename from nntp-via-netcat-switches.
14813         (nntp-open-telnet, nntp-open-rlogin): Use with-current-buffer.
14814         (nntp-service-to-port): New function.
14815         (nntp-open-via-rlogin-and-netcat, nntp-open-via-telnet-and-telnet)
14816         (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet): Use it.
14817         (nntp-open-netcat-stream): New function.
14818         (nntp-open-via-rlogin-and-netcat): Don't use a pty.
14819
14820 2008-03-29  Sven Joachim  <svenjoac@gmx.de>
14821
14822         * gnus-sum.el (gnus-summary-make-menu-bar): Add missing dots.
14823
14824 2008-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
14825
14826         * message.el (message-make-in-reply-to): Use mm-with-multibyte-buffer.
14827
14828 2008-03-28  Magnus Henoch  <mange@freemail.hu>
14829
14830         * dns.el (dns-write): Use set-buffer-multibyte.
14831
14832 2008-03-28  Michael Harnois  <mdharnois@gmail.com>  (tiny change)
14833
14834         * nnimap.el (nnimap-find-minmax-uid): Fix Exchange 2007 IMAP problem.
14835
14836 2008-03-24  Reiner Steib  <Reiner.Steib@gmx.de>
14837
14838         * message.el (message-signature-separator): Change default.
14839         Improve custom type.
14840         (message-cite-function): Change default to
14841         message-cite-original-without-signature.
14842
14843         * gnus-sum.el (gnus-summary-make-menu-bar): Add message-cite-function
14844         toggle.
14845
14846         * message.el (message-check-news-body-syntax): Fix signature check.
14847         (message-setup-1): Mark buffer as unmodified _after_ running
14848         message-setup-hook and handling message-alternative-emails.
14849         (message-shorten-references): Be more strict when building list of
14850         valid references to comply with GNKSA.
14851
14852         * gnus-group.el (gnus-read-ephemeral-bug-group)
14853         (gnus-read-ephemeral-debian-bug-group)
14854         (gnus-read-ephemeral-emacs-bug-group): Use the correct variable.
14855
14856         * message.el (message-info): Don't use booleanp which isn't supported
14857         in Emacs 21 and XEmacs.
14858
14859 2008-03-22  Reiner Steib  <Reiner.Steib@gmx.de>
14860
14861         * gnus-group.el (gnus-gmane-group-download-format): Rename from
14862         gnus-group-gmane-group-download-format.
14863         (gnus-group-read-ephemeral-gmane-group): Rename from
14864         gnus-group-read-ephemeral-gmane-group.
14865         (gnus-read-ephemeral-gmane-group-url): Rename from
14866         gnus-group-read-ephemeral-gmane-group-url.
14867         (gnus-bug-group-download-format-alist): New variable.
14868         (gnus-read-ephemeral-bug-group, gnus-read-ephemeral-debian-bug-group)
14869         (gnus-read-ephemeral-emacs-bug-group): New commands.
14870
14871 2008-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
14872
14873         * gnus-art.el (gnus-article-browse-html-article): Fix documentation.
14874         (gnus-visible-headers): Improve custom type.
14875
14876 2008-03-20  Reiner Steib  <Reiner.Steib@gmx.de>
14877
14878         * mml.el (mml-menu): Add workarounds for XEmacs.
14879
14880         * gnus-art.el (gnus-article-browse-html-article): Inhibit display of
14881         X-Boundary header.
14882
14883         * message.el (message-simplify-recipients): Fix previous commit.
14884
14885 2008-03-20  Stefan Monnier  <monnier@iro.umontreal.ca>
14886
14887         * mm-util.el (mm-set-buffer-multibyte): New function.
14888         * mm-decode.el (mm-copy-to-buffer): Use it.
14889
14890         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
14891         Prefer fboundp to functionp so it works with macros as well.
14892
14893 2008-03-19  Glenn Morris  <rgm@gnu.org>
14894
14895         * tls.el (open-tls-stream): Restore use of `tls-end-of-info'.
14896         Accidentally removed in the sync process with Emacs.
14897
14898 2008-03-19  Reiner Steib  <Reiner.Steib@gmx.de>
14899
14900         * message.el (message-alter-recipients-discard-bogus-full-name):
14901         New function.
14902         (message-alter-recipients-function): New variable.
14903         (message-get-reply-headers): Use it.
14904         (message-replace-header): New helper function.
14905         (message-recipients-without-full-name): New variable.
14906         (message-simplify-recipients): New command.
14907
14908         * mml.el (mml-menu): Add toggle for gnus-gcc-externalize-attachments.
14909
14910         * message.el (message-info): Handle EasyPG manual.
14911
14912         * mml.el (mml-menu): Add entry for EasyPG.
14913
14914 2008-03-18  Nils Ackermann  <nils@ackermath.info>  (tiny change)
14915
14916         * nnmh.el (nnmh-request-expire-articles): Prefer expiry-target group
14917         parameter.
14918
14919         * message.el (message-disassociate-draft): Specify drafts group name
14920         fully.
14921
14922 2008-03-17  Teodor Zlatanov  <tzz@lifelogs.com>
14923
14924         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
14925         Eliminate unnecessary duplicates from the match list.
14926
14927 2008-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
14928
14929         * dgnushack.el: Autoload Info-index and Info-index-next for XEmacs.
14930
14931         * lpath.el: Fbind Info-index and Info-index-next for Emacs 21, 22.
14932
14933         * gnus-art.el (gnus-button-handle-info-keystrokes): Don't use optional
14934         args of `how-many' of which the XEmacs version doesn't take; declare
14935         Info-index-next as function.
14936
14937 2008-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
14938
14939         * gnus-score.el (gnus-score-headers): Fix handling of
14940         gnus-inhibit-slow-scoring.
14941
14942         * gnus-art.el (gnus-article-browse-html-article): Fix type in doc
14943         string.
14944         (gnus-button-url-regexp): Improve handling of parenthesis.
14945         (gnus-button-alist): Extend gnus-button-handle-info-keystrokes entry.
14946         (gnus-button-handle-info-keystrokes): Handle index entries.
14947
14948 2008-03-15  Glenn Morris  <rgm@gnu.org>
14949
14950         * parse-time.el (parse-time-string): Simplify.
14951
14952 2008-03-14  Katsumi Yamaoka  <yamaoka@jpl.org>
14953
14954         * mail-source.el (mail-source-delete-old-incoming) Fix regexp to find
14955         Incoming* files.
14956
14957 2008-03-13  Teodor Zlatanov  <tzz@lifelogs.com>
14958
14959         * auth-source.el (auth-sources): Rename from auth-source-choices.
14960         (auth-source-pick): Use it.
14961
14962 2008-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
14963
14964         * binhex.el (binhex-decode-region-internal):
14965         * uudecode.el (uudecode-decode-region-internal):
14966         * dns.el (dns-read-string-name, dns-read, dns-read-type, query-dns):
14967         * sha1.el (sha1-string-external): Use set-buffer-multibyte rather than
14968         setting default-enable-multibyte-characters.
14969
14970 2008-03-12  Teodor Zlatanov  <tzz@lifelogs.com>
14971
14972         * auth-source.el (auth-source-protocols)
14973         (auth-source-protocols-customize, auth-source-choices): Add and
14974         modified variable customizations and defaults.
14975         (auth-source-pick, auth-source-user-or-password)
14976         (auth-source-protocol-defaults, auth-source-user-or-password-imap)
14977         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
14978         (auth-source-user-or-password-sftp)
14979         (auth-source-user-or-password-smtp): Use new variables and provide an
14980         interface to netrc.el.
14981
14982 2008-03-12  Katsumi Yamaoka  <yamaoka@jpl.org>
14983
14984         * nntp.el (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet)
14985         (nntp-open-via-rlogin-and-netcat, nntp-open-via-telnet-and-telnet):
14986         Make sure the nntp port to specify is a string.
14987
14988 2008-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
14989
14990         * nntp.el: Use with-current-buffer.
14991         (nntp-send-buffer): Just set the buffer to unibyte rather than use the
14992         dubious mm-with-unibyte-current-buffer.
14993         (nntp-with-open-group-function): New function extracted from
14994         nntp-with-open-group macro.
14995         (nntp-with-open-group): Use the function, so it's easier to debug.
14996         Add indentation and debugging info.
14997         (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet):
14998         Recommend the use of the netcat alternatives.
14999
15000         * rfc2047.el (rfc2047-decode-string): Don't use `m'.
15001         Avoid mm-string-as-multibyte as well.
15002
15003         * nnweb.el (nnweb-insert-html):
15004         Remove use of nnheader-string-as-multibyte.
15005
15006         * nnheader.el (nnheader-init-server-buffer): Use with-current-buffer.
15007         (nnheader-string-as-multibyte): Remove.
15008
15009         * mm-view.el: Use inhibit-read-only.
15010         (mm-inline-text-html-render-with-w3, mm-inline-message): Use dolist.
15011         (mm-pkcs7-signed-magic, mm-pkcs7-enveloped-magic): Use just string
15012         or unibyte-string.
15013
15014         * mm-uu.el (mm-uu-copy-to-buffer): Preserve (uni/multi)byteness.
15015         (mm-uu-yenc-extract): Use with-current-buffer.
15016
15017         * gnus-soup.el (gnus-soup-send-packet): Don't use
15018         mm-with-unibyte-current-buffer since the buffer is unibyte anyway.
15019
15020         * nnmh.el: Use with-current-buffer.
15021         (nnmh-request-list-1): Use mm-string-to-multibyte rather than
15022         mm-string-as-multibyte on the output of mm-encode-coding-string.
15023
15024         * nnimap.el (nnimap-retrieve-headers-progress): Use a unibyte buffer.
15025         (nnimap-request-move-article): Use with-current-buffer.
15026
15027         * mm-decode.el (mm-with-part): Set the buffer to unibyte before
15028         inserting the handle-buffer's text, so the implicit multibyte->unibyte
15029         conversion uses string-make-unibyte rather than string-as-unibyte.
15030
15031         * gnus-msg.el: Use with-current-buffer.
15032
15033         * message.el (message-ignored-resent-headers): Add "Delivered-To".
15034
15035 2008-03-10  Daiki Ueno  <ueno@unixuser.org>
15036
15037         * mml2015.el (mml2015-epg-passphrase-callback): Type cast KEY-ID to a
15038         string for caching if it is 'PIN.
15039
15040 2008-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
15041
15042         * lpath.el: Consider the case without Emacs/W3.
15043
15044 2008-03-08  Glenn Morris  <rgm@gnu.org>
15045
15046         * time-date.el (date-to-time, time-subtract, time-add)
15047         (safe-date-to-time): Doc fixes.
15048
15049 2008-03-08  Reiner Steib  <Reiner.Steib@gmx.de>
15050
15051         * mail-source.el (mail-source-delete-old-incoming-confirm):
15052         Change default to nil.
15053         (mail-source-delete-old-incoming): Make confirmation prompt more clear.
15054
15055 2008-03-07  Katsumi Yamaoka  <yamaoka@jpl.org>
15056
15057         * lpath.el: Rearrange.
15058
15059         * gnus-art.el (gnus-narrow-to-page): Position point properly.
15060         (gnus-article-goto-prev-page): Work for articles having ^L's.
15061
15062         * gnus-sum.el (gnus-summary-end-of-article): Remove needless narrowing.
15063
15064         * mm-view.el (mm-w3m-standalone-supports-m17n-p): Fix typo.
15065
15066 2008-03-07  Karl Fogel  <kfogel@red-bean.com>
15067
15068         * gnus-bookmark.el: Adjust for renames in bookmark.el.
15069         (gnus-bookmark-make-record): Was `gnus-bookmark-make-cell'.
15070         (gnus-bookmark-jump): Adjust some variable names.
15071
15072 2008-03-06  Teodor Zlatanov  <tzz@lifelogs.com>
15073
15074         * auth-source.el: New package.
15075         (auth-source-choices): Add customization entry point variable.
15076
15077         * gnus-registry.el (gnus-registry-user-format-function-M): Fix concat
15078         bug.
15079
15080 2008-03-05  Teodor Zlatanov  <tzz@lifelogs.com>
15081
15082         * gnus-registry.el (gnus-registry-install): Allow 'ask as an option.
15083         (gnus-registry-initialize, gnus-registry-install-p): Use it.
15084         (gnus-registry-install-shortcuts): Rename from
15085         gnus-registry-install-shortcuts-and-menus.  Installs the shortcuts in
15086         the `gnus-registry-mark-map' keymap dynamically from
15087         `gnus-registry-marks'.  The generated functions update the summary line
15088         when a registry mark is added or deleted, and will call
15089         `gnus-registry-install-p' (see the comments in the code).
15090         (gnus-registry-user-format-function-M): Use concat intelligently.
15091
15092         * gnus-sum.el (gnus-summary-make-menu-bar): Add menu entries for all
15093         the registry mark functions.
15094
15095 2008-03-05  Glenn Morris  <rgm@gnu.org>
15096
15097         * gnus-art.el (gnus-article-mode-line-format-alist): Move to gnus-sum.
15098         * gnus-sum.el (gnus-article-mode-line-format-alist): Move here from
15099         gnus-art.
15100         (top-level): No need to load own source when compiling.
15101
15102 2008-03-04  Reiner Steib  <Reiner.Steib@gmx.de>
15103
15104         * gnus-sum.el (gnus-print-buffer): Honor ps-print-color-p.
15105         Suggested by <chris.anderton@zetnet.co.uk>.
15106
15107 2008-03-04  Glenn Morris  <rgm@gnu.org>
15108
15109         * gnus-sum.el (top-level): No need to require gnus when compiling,
15110         since unconditionally required near start of file.
15111         (gnus-summary-display-while-building): Move definition before use.
15112
15113 2008-03-04  Teodor Zlatanov  <tzz@lifelogs.com>
15114
15115         * gnus-registry.el (gnus-registry-user-format-function-M):
15116         Add formatting function.
15117
15118 2008-03-03  Teodor Zlatanov  <tzz@lifelogs.com>
15119
15120         * gnus-registry.el (gnus-registry-marks): Change format to be nicer
15121         with plists.
15122         (gnus-registry-do-marks, gnus-registry-install-shortcuts-and-menus):
15123         Use new format.
15124
15125 2008-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
15126
15127         * gnus-art.el (gnus-article-describe-bindings): Work for the version of
15128         `where-is-internal' that returns a range of key sequences.
15129
15130 2008-03-03  Stefan Monnier  <monnier@iro.umontreal.ca>
15131
15132         * mm-bodies.el (mm-decode-content-transfer-encoding): Simplify.
15133
15134         * gnus-sum.el: Use inhibit-read-only and with-current-buffer.
15135         (gnus-summary-jump-to-group): Consider windows on other displayed
15136         frames as well.  Similar changes might be needed elsewhere, but that's
15137         the one I've bumped into during my use.
15138
15139         * nndoc.el (nndoc-oe-dbx-type-p):
15140         * gnus-msg.el (gnus-debug):
15141         * gnus-group.el (gnus-update-group-mark-positions):
15142         Use mm-string-to-multibyte.
15143
15144 2008-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
15145
15146         * mml2015.el (mml2015-extract-cleartext-signature): Explain that it
15147         doesn't handle NotDashEscaped.
15148
15149         * mml.el (mml-menu): Improve help entries.  Move Sign/Encrypt Part.
15150         (mml-dnd-attach-options): Fix typo in custom choice.
15151
15152         * gnus-group.el (gnus-group-read-ephemeral-gmane-group):
15153         Change nndoc-article-type to mbox.
15154         (gnus-group-read-ephemeral-gmane-group-url): Support permalink.
15155
15156         * mm-decode.el (mm-text-html-renderer): Prefer w3m over w3.  Fall back
15157         to nil, instead of html2text.
15158
15159         * imap.el (imap-debug): Add `imap-ping-server'.
15160
15161         * gnus-bookmark.el: Add FIXMEs.
15162
15163         * message.el (message-form-letter-separator)
15164         (message-send-form-letter-delay): New variables.
15165         (message-send-form-letter): Use them.  New command to send form
15166         letters.  Requested by Uwe Siart.
15167         (message-send-mail-function): Doc fix.  Add "Other" custom option.
15168
15169 2008-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
15170
15171         * Update copyright years.
15172
15173 2008-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
15174
15175         Sync from EMACS_22_BASE.
15176
15177         * parse-time.el: Rename elt->parse-time-elt and val->parse-time-val.
15178
15179 2008-02-29  Andreas Seltenreich  <andreas@gate450.dyndns.org>
15180
15181         * nnweb.el (nnweb-google-parse-1): Fix date parsing on articles with
15182         empty author.
15183
15184 2008-02-29  Teodor Zlatanov  <tzz@lifelogs.com>
15185
15186         * gnus-registry.el (gnus-registry-marks): Add variable for
15187         customization of marks and their appearance.
15188         (gnus-registry-read-mark): Use it.
15189         (gnus-registry-do-marks): Add utility function to loop through
15190         `gnus-registry-marks'.
15191         (gnus-registry-install-shortcuts-and-menus): Add function to install
15192         shortcuts and menus.
15193         (gnus-registry-initialize): Use it.
15194         (gnus-registry-default-mark): Clarify documentation.
15195
15196 2008-02-29  Glenn Morris  <rgm@gnu.org>
15197
15198         * gnus-art.el, gnus-bookmark.el, gnus-dired.el, gnus-draft.el:
15199         * gnus-group.el, gnus-msg.el, gnus-score.el, gnus-sum.el, gnus-util.el:
15200         * gnus.el, mail-source.el, message.el, mm-decode.el, mm-uu.el, mml.el:
15201         * nnmail.el, pop3.el, smiley.el, smime.el, spam-report.el:
15202         Change defcustom :version from 23.0 to 23.1.
15203
15204 2008-02-28  Teodor Zlatanov  <tzz@lifelogs.com>
15205
15206         * gnus-registry.el (gnus-registry-follow-group-p)
15207         (gnus-registry-post-process-groups): Add functions to aid registry
15208         splitting and improve logging.  Clarify behavior in function
15209         documentation.
15210         (gnus-registry-split-fancy-with-parent): Use them.
15211
15212 2008-02-28  Stefan Monnier  <monnier@iro.umontreal.ca>
15213
15214         * gnus-art.el: Use with-current-buffer.
15215
15216 2008-02-27  David Engster  <dengste@eml.cc>
15217
15218         * nnmairix.el (nnmairix-request-group-with-article-number-correction):
15219         Express real group name in the response.
15220
15221 2008-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
15222
15223         * nnmairix.el (nnmairix-group-regexp, nnmairix-valid-backends)
15224         (nnmairix-last-server, nnmairix-current-server): Defvar them.
15225         (nnmairix-goto-original-article): Defvar gnus-registry-install and
15226         autoload gnus-registry-fetch-group when compiling.
15227         (nnmairix-request-group-with-article-number-correction):
15228         Remove unreferenced argument passed to nnmairix-call-backend.
15229
15230 2008-02-27  Reiner Steib  <Reiner.Steib@gmx.de>
15231
15232         * mm-uu.el (mm-uu-type-alist): Fix message-marks non-hide arguments.
15233         (mm-uu-extract): Improve face for low color ttys.
15234         Reported by Sascha Wilde.
15235
15236 2008-02-27  Glenn Morris  <rgm@gnu.org>
15237
15238         * nnmairix.el: Change defcustom :version from 23.0 to 23.1.
15239         (nnmairix-group-regexp, nnmairix-valid-backends): Convert from free
15240         variables to defconsts.  Convert comments to doc-strings.
15241         (nnmairix-last-server, nnmairix-current-server): Convert from free
15242         variables to defvars.  Convert comments to doc-strings.
15243         (gnus-registry-fetch-group): Autoload.
15244         (nnmairix-replace-group-and-numbers): Use mapc rather than mapcar.
15245         (nnmairix-widget-get-values, nnmairix-widget-make-query-from-widgets)
15246         (nnmairix-widget-build-editable-fields): Use car cddr rather than
15247         caddr.
15248         (nnmairix-request-group): Bind nnmairix-fast and nnmairix-group around
15249         nnmairix-request-group-with-article-number-correction call.
15250         (nnmairix-fast, nnmairix-group): New, less general names, for free
15251         variables passed from nnmairix-request-group to
15252         nnmairix-request-group-with-article-number-correction.  Declare.
15253         (nnmairix-request-group-with-article-number-correction):
15254         Use nnmairix-fast, nnmairix-group rather than fast, group.
15255
15256 2008-02-26  David Engster  <dengste@eml.cc>
15257
15258         * nnmairix.el: New file.  Mairix back end for Gnus.  Initial import of
15259         version 0.5.
15260
15261 2008-02-26  Teodor Zlatanov  <tzz@lifelogs.com>
15262
15263         * gnus-registry.el (gnus-registry-register-message-ids): Use `id'
15264         instead of making an extra function call.  Don't add the current group
15265         to articles only when they have the group.  Use
15266         `gnus-registry-fetch-groups' instead of `gnus-registry-fetch-group'.
15267         Reported by David <de_bb@arcor.de>.
15268
15269 2008-02-24  Miles Bader  <miles@gnu.org>
15270
15271         * mm-util.el (mm-hack-charsets, mm-iso-8859-15-compatible)
15272         (mm-iso-8859-x-to-15-table, mm-iso-8859-x-to-15-region)
15273         (mm-find-mime-charset-region):
15274         * mm-bodies.el (mm-encode-body):
15275         * mml.el (mml-parse-1): Revert removal of `mm-hack-charsets'.
15276
15277 2008-02-20  Katsumi Yamaoka  <yamaoka@jpl.org>
15278
15279         * lpath.el: Fbind pgg-display-output-buffer for systems in which EasyPG
15280         has been installed; bind pgg-parse-crc24 for only non-Mule XEmacs.
15281
15282 2008-02-16  Reiner Steib  <Reiner.Steib@gmx.de>
15283
15284         * mail-source.el (mail-source-delete-incoming): Change default.
15285         Supplement doc string.
15286
15287         * gnus-util.el (gnus-y-or-n-p, gnus-y-or-n-p): Update comments.
15288
15289 2008-02-14  Glenn Morris  <rgm@gnu.org>
15290
15291         * time-date.el (format-seconds): New function.
15292
15293 2008-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
15294
15295         * nnmail.el (nnmail-message-id-cache-file): Derive from
15296         `gnus-home-directory'.
15297
15298 2008-02-11  Reiner Steib  <Reiner.Steib@gmx.de>
15299
15300         * gnus-topic.el (gnus-topic-select-group, gnus-topic-read-group):
15301         Document negative prefix.
15302
15303         * gnus-group.el (gnus-group-read-group): Document negative prefix.
15304
15305 2008-02-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15306
15307         * message.el (message-unsent-separator): Add the Exim bounce
15308         separator.
15309
15310 2008-02-10  Daiki Ueno  <ueno@unixuser.org>
15311
15312         * mml2015.el (mml2015-epg-sign): Remove skipped signers from the signer
15313         list.
15314         (mml2015-epg-encrypt): Remove skipped recipients/signers from the
15315         recipient/signer list.
15316
15317 2008-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
15318
15319         * Makefile.in (datarootdir): Define.
15320         (EMACS_COMP, install-el, install-elc, install-el-elc): Quote directory
15321         name that might contain whitespace.
15322
15323 2008-02-10  Reiner Steib  <Reiner.Steib@gmx.de>
15324
15325         * mm-util.el (mm-codepage-setup): If cp-supported-codepages isn't
15326         fbound (Emacs 23 unicode), signal an error.
15327
15328 2008-02-08  Glenn Morris  <rgm@gnu.org>
15329
15330         * gnus-art.el (pgg-display-output-buffer): Declare as function.
15331
15332 2008-02-07  Tassilo Horn  <tassilo@member.fsf.org>
15333
15334         * nnimap.el (nnimap-open-connection): Add "143" and "993" as default
15335         ports to the calls to `netrc-machine-user-or-password' in addition to
15336         "imap" and "imaps".
15337
15338 2008-02-01  Zhang Wei  <id.brep@gmail.com>
15339
15340         * rfc2047.el (rfc2047-charset-encoding-alist): Add gbk and GB18030.
15341
15342         * mm-util.el (mm-mime-mule-charset-alist): Add gbk and GB18030.
15343
15344 2008-02-01  Kenichi Handa  <handa@m17n.org>
15345
15346         * rfc2104.el (rfc2104-hexstring-to-byte-list): Rename from
15347         rfc2104-hexstring-to-bitstring and changed to return a byte list.
15348         (rfc2104-hash): Convert the result of concat to unibyte string.
15349
15350 2008-02-01  Dave Love  <fx@gnu.org>
15351
15352         * gnus-start.el (gnus-read-newsrc-el-file): Don't bind
15353         coding-system-for-read.
15354         (gnus-gnus-to-quick-newsrc-format): Insert coding cookie.
15355
15356 2008-02-03  Reiner Steib  <Reiner.Steib@gmx.de>
15357
15358         * gnus.el (gnus-group-startup-message): Add `find-image' call before
15359         image-load-path is let-bound.  Reported by Harald Hanche-Olsen
15360         <hanche@math.ntnu.no>.
15361
15362 2008-02-01  Katsumi Yamaoka  <yamaoka@jpl.org>
15363
15364         * gnus-art.el (gnus-article-describe-bindings): Work for draft group.
15365
15366         * gnus-xmas.el (gnus-xmas-article-describe-bindings): Ditto.
15367
15368 2008-01-28  Dan Nicolaescu  <dann@ics.uci.edu>
15369
15370         * sieve.el (sieve-make-overlay, sieve-overlay-put, sieve-overlays-at):
15371         * message.el (message-beginning-of-line): Use featurep instead of bound
15372         tests in order to resolve conditionals at compile time.
15373
15374 2008-01-24  Michael Sperber  <sperber@deinprogramm.de>
15375
15376         * mail-source.el (mail-sources): Add `group' choice.
15377
15378         * nnmail.el (nnmail-get-new-mail-1): Abstract this out to add another
15379         parameter `in-group' to control into which group the articles go.
15380         Add treatment of `group' mail-source.
15381
15382 2008-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
15383
15384         * gnus-art.el (gnus-insert-mime-button): Don't decode description.
15385
15386         * mm-decode.el (mm-dissect-buffer): Decode description.
15387
15388         * mml.el (mml-to-mime): Encode message header first.
15389
15390 2008-01-18  Katsumi Yamaoka  <yamaoka@jpl.org>
15391
15392         * gnus-art.el (gnus-article-describe-bindings): Make it possible to use
15393         xrefs, i.e. [back] and [forward] buttons, in *Help* buffer.
15394
15395         * lpath.el: Fbind help-buffer for Emacs 21 and XEmacs; bind
15396         help-xref-stack-item for Emacs 21, Emacs 22.1, and XEmacs.
15397
15398 2008-01-18  Teodor Zlatanov  <tzz@lifelogs.com>
15399
15400         * gnus-registry.el (gnus-registry-trim): Use append, not concat.
15401
15402 2008-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
15403
15404         * gnus-art.el (gnus-article-read-summary-keys): Work for some `A'
15405         prefix keys.
15406         (gnus-article-read-summary-send-keys): Use gnus-character-to-event.
15407         (gnus-article-describe-bindings): Simplify; move XEmacs stuff to
15408         gnus-xmas.el.
15409
15410         * gnus-xmas.el: Bind gnus-agent-summary-mode when compiling.
15411         (gnus-xmas-article-describe-bindings): New function.
15412         (gnus-xmas-redefine): Make gnus-article-describe-bindings alias to
15413         gnus-xmas-article-describe-bindings.
15414
15415         * lpath.el: Don't fbind character-to-event and map-keymap for Emacs 21.
15416
15417 2008-01-16  Teodor Zlatanov  <tzz@lifelogs.com>
15418
15419         * gnus-registry.el (gnus-registry-marks, gnus-registry-default-mark):
15420         Add new variables for article mark management.
15421         (gnus-registry-extra-entries-precious, gnus-registry-trim): Define a
15422         list of extra data entries which, when present, will indicate that the
15423         article ID should not be trimmed from the registry.
15424         (gnus-registry-mark-article, gnus-registry-article-marks): Remove these
15425         functions.
15426         (gnus-registry-read-mark): New function to read a mark name from the
15427         user.
15428         (gnus-registry-set-article-mark, gnus-registry-remove-article-mark)
15429         (gnus-registry-set-article-mark-internal): New functions to add and
15430         remove marks.
15431         (gnus-registry-get-article-marks): New function to show the marks for
15432         an article, or retrieve them for further use.
15433
15434 2008-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
15435
15436         * gnus-art.el (gnus-article-describe-bindings): Show all `S' prefix
15437         keys when no argument is given.
15438
15439 2008-01-14  Reiner Steib  <Reiner.Steib@gmx.de>
15440
15441         * imap.el (imap-ping-server): New variable.
15442         (imap-opened): On add extra ping if imap-ping-server is non-nil.
15443         (imap-ping-server): Minor doc string fixes.
15444
15445 2008-01-14  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
15446
15447         * imap.el (imap-ping-server): New function.
15448         (imap-opened): Call imap-ping-server.
15449
15450 2008-01-12  Reiner Steib  <Reiner.Steib@gmx.de>
15451
15452         * gnus-sum.el (gnus-article-sort-by-random)
15453         (gnus-thread-sort-by-random): Fix doc strings.
15454         Reported by jidanni@jidanni.org.
15455
15456 2008-01-11  Katsumi Yamaoka  <yamaoka@jpl.org>
15457
15458         * gnus-art.el (gnus-article-describe-bindings): New function.
15459         (gnus-article-read-summary-keys): Use it.
15460         (gnus-article-mode-map): Bind `C-h b' to it.
15461
15462 2008-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
15463
15464         * gnus-art.el (gnus-article-read-summary-keys): Work for `C-h' on
15465         XEmacs.
15466         (gnus-article-describe-key, gnus-article-describe-key-briefly):
15467         Protect against non-character events.
15468
15469         * lpath.el: Fbind map-keymap for Emacs 21.
15470
15471 2008-01-09  Reiner Steib  <Reiner.Steib@gmx.de>
15472
15473         * gnus-group.el (gnus-group-read-ephemeral-gmane-group-url):
15474         New command.
15475         (gnus-group-read-ephemeral-gmane-group): Use optional argument RANGE
15476         instead of END.  Change name of the temp file.
15477         (gnus-group-gmane-group-download-format): Add doc string.  Make it
15478         customizable.
15479
15480 2008-01-09  Katsumi Yamaoka  <yamaoka@jpl.org>
15481
15482         * gnus-art.el (gnus-article-send-map): New keymap for `S' prefix keys;
15483         bind `S W' to gnus-article-wide-reply-with-original; set default
15484         binding to gnus-article-read-summary-send-keys.
15485         (gnus-article-read-summary-keys): Fix the order of keys; display
15486         continuation keys correctly in the echo area; describe bindings
15487         correctly when keys end with `C-h'.
15488         (gnus-article-read-summary-send-keys): New function.
15489         (gnus-article-describe-key, gnus-article-describe-key-briefly):
15490         Work for gnus-article-read-summary-send-keys; display continuation keys
15491         correctly in the echo area.
15492         (gnus-article-reply-with-original): Ignore prefix argument.
15493         (gnus-article-wide-reply-with-original): New function.
15494
15495         * lpath.el: Fbind character-to-event and set-keymap-default-binding for
15496         Emacs 21.
15497
15498 2008-01-08  Katsumi Yamaoka  <yamaoka@jpl.org>
15499
15500         * gnus-bookmark.el (gnus-bookmark-mouse-available-p): Don't test for
15501         display-color-p.  Reported by Reiner Steib <Reiner.Steib@gmx.de>.
15502
15503 2008-01-06  Reiner Steib  <Reiner.Steib@gmx.de>
15504
15505         * gnus-group.el (gnus-group-gmane-group-download-format): New variable.
15506         (gnus-group-read-ephemeral-gmane-group): New command.
15507
15508 2008-01-06  Dan Nicolaescu  <dann@ics.uci.edu>
15509
15510         * gnus.el (gnus-use-long-file-name): Remove reference to xenix.
15511
15512 2007-12-28  Reiner Steib  <Reiner.Steib@gmx.de>
15513
15514         * message.el (message-send-mail-function): Increase custom version.
15515
15516         * mml-sec.el, sieve-manage.el, smime.el: Simplify loading of
15517         password-cache or password.  Suggested by Glenn Morris <rgm@gnu.org>.
15518
15519 2007-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
15520
15521         * imap.el (imap-authenticate): Use current-buffer instead of buffer,
15522         for the cases where imap-authenticate is called with a nil buffer
15523         parameter.
15524
15525 2007-12-19  Katsumi Yamaoka  <yamaoka@jpl.org>
15526
15527         * gnus-art.el (gnus-article-browse-html-parts): Work for two or more
15528         html parts correctly; support forwarded messages.
15529         (gnus-article-browse-html-article): Remove work buffers.
15530
15531         * netrc.el: Bind encrypt-file-alist for Emacs 21 and XEmacs when
15532         compiling.
15533         (netrc-bound-and-true-p): New macro.
15534         (netrc-parse): Use it instead of bound-and-true-p that is not available
15535         in XEmacs 21.4.
15536
15537 2007-12-19  Teodor Zlatanov  <tzz@lifelogs.com>
15538
15539         * gnus-registry.el (gnus-registry-mark-article)
15540         (gnus-registry-article-marks): Add functionality to mark articles
15541         through the Gnus registry.
15542
15543         * encrypt.el: Clarify documentation for the new pgg method.
15544         (encrypt-file-alist): Add PGG option.
15545         (encrypt-insert-file-contents, encrypt-write-file-contents): Use PGG
15546         functionality.  Abstract password key and messaging to external
15547         functions.
15548         (encrypt-password-key, encrypt-get-passphrase-if-needed)
15549         (encrypt-message-method-and-cipher): Add new convenience external
15550         functions.
15551         (encrypt-pgg-encode-buffer, encrypt-pgg-decode-buffer)
15552         (encrypt-pgg-process-buffer): Add PGG functionality glue.
15553
15554         * netrc.el: Autoload encrypt when encrypt-file-alist is set.
15555         (netrc-parse): Use encrypt-file-alist to determine if
15556         encrypt-find-model or encrypt-insert-file-contents should be used.
15557
15558         * encrypt.el: Clarify documentation.  Load password-cache or
15559         password, whichever one is found first, instead of autoloading.
15560
15561 2007-12-19  Glenn Morris  <rgm@gnu.org>
15562
15563         * mml.el (message-options-set, message-narrow-to-head)
15564         (message-in-body-p, message-mail-p, message-encode-message-body):
15565         Autoload.
15566         (message-remove-header, message-narrow-to-headers-or-head)
15567         (message-subscribed-p, message-make-mail-followup-to)
15568         (message-position-on-field, message-news-p)
15569         (message-options-set-recipient, message-generate-headers)
15570         (message-sort-headers): Declare as functions.
15571
15572 2007-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
15573
15574         * gnus-draft.el (gnus-draft-send-message): Mention process/prefix
15575         convention in doc string.
15576
15577 2007-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
15578
15579         * gnus-art.el (gnus-article-browse-html-parts): Add message header and
15580         title to html parts.
15581         (gnus-article-browse-html-article): Pass message header to it.
15582
15583         * mm-decode.el (mm-display-external): Use mm-add-meta-html-tag.
15584
15585 2007-12-16  Reiner Steib  <Reiner.Steib@gmx.de>
15586
15587         * mml-sec.el, sieve-manage.el, smime.el: Make loading of password-cache
15588         or password compatible with XEmacs.
15589
15590 2007-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
15591
15592         * gnus-art.el (article-verify-x-pgp-sig): Add reference to X-PGP-Sig
15593         format document.
15594         (gnus-mime-delete-part): Don't write description line if empty.
15595         (gnus-article-encrypt-body): Add confirmation for gnus-novice-user.
15596
15597 2007-12-14  Johan Bockgård  <bojohan@gnu.org>
15598
15599         * gnus-sum.el (gnus-summary-mark-unread-as-read)
15600         (gnus-summary-mark-read-and-unread-as-read)
15601         (gnus-summary-mark-current-read-and-unread-as-read)
15602         (gnus-summary-mark-unread-as-ticked): Doc fix.
15603         `gnus-mark-article-hook', not `gnus-summary-mark-article-hook'.
15604
15605 2007-12-14  Reiner Steib  <Reiner.Steib@gmx.de>
15606
15607         * gnus-sum.el (gnus-summary-prev-article): Fix doc string.
15608         Reported by Christoph Conrad <christoph.conrad@gmx.de>.
15609
15610 2007-12-14  Reiner Steib  <Reiner.Steib@gmx.de>
15611
15612         * gnus-util.el (gnus-y-or-n-p, gnus-yes-or-no-p): Alias to y-or-n-p and
15613         yes-or-no-p.
15614
15615 2007-12-11  Katsumi Yamaoka  <yamaoka@jpl.org>
15616
15617         * mm-decode.el (mm-add-meta-html-tag): New function.
15618         (mm-save-part-to-file, mm-pipe-part): Use it.
15619
15620         * gnus-art.el (gnus-article-browse-delete-temp-files):
15621         Use gnus-y-or-n-p instead of y-or-n-p.
15622         (gnus-article-browse-html-parts): Work with message/external-body; use
15623         mm-add-meta-html-tag.
15624
15625 2007-12-11  Glenn Morris  <rgm@gnu.org>
15626
15627         * gnus-cache.el: Require gnus-sum not just when compiling.
15628
15629         * gnus-fun.el (gnus-display-x-face-in-from): Require gnus-art.
15630
15631         * gnus-int.el (gnus-server-opened, gnus-status-message):
15632         Move definitions before use.
15633
15634         * mm-decode.el: Require gnus-util.
15635         (mm-remove-part): Only call delete-annotation on XEmacs.
15636
15637         * mm-uu.el (gnus-original-article-buffer): Define for compiler.
15638
15639         * nnmail.el: Require gnus-int.
15640
15641         * spam.el: Move `require's before `eval-when-compile's.
15642
15643         * gnus-ems.el (gnus-alive-p):
15644         * gnus-fun.el (message-goto-eoh):
15645         * gnus-util.el (gnus-group-name-decode):
15646         * mail-source.el (gnus-compress-sequence):
15647         * message.el (Info-goto-node, format-spec):
15648         * mm-bodies.el (message-options-get):
15649         * mm-decode.el (mm-view-pkcs7):
15650         * mm-util.el (gmm-write-region):
15651         * mml-smime.el (mml-compute-boundary)
15652         (gnus-completing-read-with-default):
15653         * mml.el (widget-button-press, gnus-make-hashtable):
15654         * mml1991.el (mm-decode-content-transfer-encoding)
15655         (mm-encode-content-transfer-encoding)
15656         (message-options-get, message-options-set):
15657         * mml2015.el (gnus-buffer-live-p, gnus-get-buffer-create):
15658         * nnfolder.el (gnus-request-group):
15659         * nnheader.el (ietf-drums-unfold-fws):
15660         * rfc1843.el (mail-header-parse-content-type, message-narrow-to-head):
15661         * smime.el (gnus-run-mode-hooks):
15662         * spam-stat.el (gnus-message): Autoload.
15663
15664         * gnus-cache.el, gnus-fun.el, gnus-group.el, gnus.el, mail-source.el:
15665         * mm-bodies.el, mm-decode.el, mm-extern.el, mm-util.el:
15666         * mml-smime.el, mml.el, mml1991.el, mml2015.el, nndb.el, nnfolder.el:
15667         * nnmail.el, nnmaildir.el, nnrss.el, rfc1843.el, spam.el:
15668         Add declare-function compatibility definition.
15669
15670         * gnus-cache.el (nnvirtual-find-group-art):
15671         * gnus-fun.el (article-narrow-to-head, gnus-article-goto-header)
15672         (gnus-add-image, gnus-add-wash-type):
15673         * gnus-group.el (nnkiboze-score-file):
15674         * gnus-sum.el (turn-on-gnus-mailing-list-mode)
15675         (gnus-cache-write-active, mm-uu-dissect, idna-to-unicode):
15676         * gnus-util.el (gnus-find-method-for-group, gnus-group-name-charset)
15677         (message-tokenize-header, gnus-get-buffer-create)
15678         (mm-enable-multibyte, gnus-put-text-property, gnus-overlay-put)
15679         (gnus-make-overlay, mm-disable-multibyte, gnus-add-text-properties):
15680         * gnus.el (gnus-group-decoded-name):
15681         * mail-source.el (imap-capability):
15682         * mm-bodies.el (message-options-set):
15683         * mm-decode.el (gnus-configure-windows):
15684         * mm-extern.el (message-goto-body):
15685         * mm-util.el (mm-delete-duplicates, mm-detect-coding-region):
15686         * mml-smime.el (epg-key-sub-key-list, epg-sub-key-capability)
15687         (epg-sub-key-validity, message-options-set):
15688         * mml.el (widget-event-point, gnus-configure-windows):
15689         * mml1991.el (mc-encrypt-generic, gpg-sign-encrypt, gpg-encrypt):
15690         * mml2015.el (epg-check-configuration, epg-configuration)
15691         (message-options-set):
15692         * nndb.el (nndb-request-article):
15693         * nnfolder.el (gnus-request-create-group):
15694         * nnmail.el (gnus-activate-group, gnus-group-mark-article-read):
15695         * nnmaildir.el (gnus-group-mark-article-read):
15696         * nnrss.el (w3-parse-buffer, gnus-group-make-rss-group):
15697         * rfc1843.el (message-fetch-field):
15698         * spam.el (gnus-extract-address-components):
15699         Declare as functions.
15700
15701 2007-12-10  Katsumi Yamaoka  <yamaoka@jpl.org>
15702
15703         * gnus-art.el (gnus-article-browse-html-parts): Decode CTE.
15704
15705         * pgg.el (pgg-run-at-time, pgg-cancel-timer): Use eval-and-compile.
15706
15707         * lpath.el: Fbind run-mode-hooks for Emacs 21;
15708         bind show-trailing-whitespace for XEmacs.
15709
15710 2007-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
15711
15712         * hashcash.el, imap.el, pgg.el, pgg-parse.el (declare-function): Add
15713         new no-op macro for backward compatibility.
15714
15715         * imap.el (imap-string-to-integer): New function.
15716
15717 2007-12-09  Glenn Morris  <rgm@gnu.org>
15718
15719         * gnus-uu.el (gnus-uu-yenc-article): Use insert-buffer-substring.
15720
15721         * gnus-art.el, gnus-spec.el, gnus-sum.el, gnus-util.el:
15722         * message.el, mm-view.el, sieve-manage.el, smime.el:
15723         Add declare-function compatibility definition.
15724
15725         * gnus-art.el (w3-region, w3m-region, Info-menu):
15726         * gnus-spec.el (gnus-summary-from-or-to-or-newsgroups):
15727         * gnus-sum.el (gnus-get-predicate):
15728         * gnus-util.el (mm-append-to-file, w32-focus-frame):
15729         * message.el (mail-abbrev-in-expansion-header-p):
15730         * mm-view.el (w3-do-setup, w3-region, w3-prepare-buffer)
15731         (w3m-detect-meta-charset, w3m-region):
15732         * sieve-manage.el (password-read, password-cache-add)
15733         (password-cache-remove):
15734         * smime.el (password-read-and-add): Declare as functions.
15735
15736 2007-12-08  David Kastrup  <dak@gnu.org>
15737
15738         * gnus-sum.el (gnus-summary-simplify-subject-query):
15739         * ecomplete.el (ecomplete-display-matches): Fix buggy call to
15740         `message'.
15741
15742 2007-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
15743
15744         * dgnushack.el (dgnushack-emacs-compile-defcustom-p): New function; use
15745         it to bind idna-program, installation-directory, defined-colors, and
15746         face-attribute for XEmacs of the version that compiles defcustom forms.
15747
15748 2007-12-07  Glenn Morris  <rgm@gnu.org>
15749
15750         * gnus-art.el (article-make-date-line): Revert previous change.
15751
15752 2007-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
15753
15754         * gnus-start.el (gnus-load): Rename local variable to avoid confusion.
15755
15756 2007-12-06  Christian Plate  <cplate@web.de>  (tiny change)
15757
15758         * nnmaildir.el (nnmaildir-request-update-info): Improve performance.
15759         Call gnus-add-to-range ranges only once with a prepared article-list.
15760
15761 2007-12-06  Paul Jarc  <prj@po.cwru.edu>
15762
15763         * nnmaildir.el (nnmaildir-request-list, nnmaildir-retrieve-groups)
15764         (nnmaildir-request-group, nnmaildir-retrieve-headers): Escape spaces in
15765         group names with backslashes.
15766         Reported by Tassilo Horn <tassilo@member.fsf.org>.
15767
15768 2007-12-06  Deepak Goel  <deego3@gmail.com>
15769
15770         * gnus-art.el (article-make-date-line):
15771         * gnus-start.el (gnus-load):
15772         * pop3.el (pop3-read-response): Fix buggy call to `error'.
15773
15774 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
15775
15776         * gnus-art.el (gnus-use-idna):
15777         * gnus-start.el (gnus-site-init-file):
15778         * message.el (message-use-idna):
15779         * mm-uu.el (mm-uu-hide-markers):
15780         * smiley.el (smiley-style): Revert changes that suppress warnings.
15781
15782 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
15783
15784         * gnus-art.el (gnus-article-browse-html-parts): Add meta html tag to
15785         specify charset to html source.
15786         Reported by Christoph Conrad <christoph.conrad@gmx.de>.
15787
15788 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
15789
15790         * gnus-art.el (gnus-use-idna): Don't directly refer to the value of
15791         idna-program in order to suppress byte compile warning issued by XEmacs
15792         that came to byte compile the default value section of defcustom forms
15793         recently.
15794
15795         * gnus-start.el (gnus-site-init-file): Don't directly refer to the
15796         value of installation-directory.
15797
15798         * message.el (message-use-idna): Don't directly refer to the value of
15799         idna-program.
15800
15801         * mm-uu.el (mm-uu-hide-markers): Don't directly call defined-colors.
15802
15803         * smiley.el (smiley-style): Don't directly call face-attribute.
15804
15805 2007-12-04  Reiner Steib  <Reiner.Steib@gmx.de>
15806
15807         * gnus-group.el (gnus-group-highlight-line): Add FIXME.
15808
15809         * gnus-dired.el: Reduce Gnus dependencies.
15810         (gnus-ems, gnus-msg, gnus-util, message, mm-decode, mml):
15811         Don't require.  Use autoloads instead.
15812         (mml-attach-file, mm-default-file-encoding, mailcap-extension-to-mime)
15813         (mailcap-mime-info, mm-mailcap-command, ps-print-preprint)
15814         (message-buffers, gnus-setup-message, gnus-print-buffer): Autoload.
15815         (gnus-dired-mode): Adjust doc string.
15816         (gnus-dired-mail-mode): New variable.
15817         (gnus-dired-mode-map): Avoid using `gnus-define-keys'.
15818         (gnus-dired-mode): Avoid using `gnus-run-hooks'.
15819         (gnus-dired-mail-buffers): New function.  Return mail or message
15820         composition buffers.
15821         (gnus-dired-attach): Use it.
15822         (gnus-dired-find-file-mailcap): Call `mailcap-mime-info' with
15823         NO-DECODE.
15824         (gnus-dired-print): Use `gnus-print-buffer' depending on
15825         `gnus-dired-mail-mode'.
15826
15827 2007-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
15828
15829         * rfc2047.el (rfc2047-encoded-word-regexp)
15830         (rfc2047-encoded-word-regexp-loose): Move forward; add comments
15831         explaining what regexp patterns are for.
15832
15833 2007-12-04  Glenn Morris  <rgm@gnu.org>
15834
15835         * password.el: Move to password-cache.el.
15836
15837         * mml1991.el (password-read, password-cache-add, password-cache-remove):
15838         * mml2015.el (password-read, password-cache-add, password-cache-remove):
15839         * mml-smime.el (password-read, password-cache-add)
15840         (password-cache-remove):
15841         No need to autoload, since mml-sec requires password.
15842
15843         * gnus.el (gnus-spam-resend-to, gnus-ham-resend-to):
15844         * message.el (gnus-extract-address-components):
15845         * mml-smime.el (gnus-extract-address-components): Define for compiler.
15846
15847         * mml-sec.el, sieve-manage.el, smime.el: Require password-cache or
15848         password.
15849
15850 2007-12-03  Reiner Steib  <Reiner.Steib@gmx.de>
15851
15852         * mailcap.el: Reduce dependencies.
15853         (mail-header-parse-content-type): Autoload.
15854         (mailcap-delete-duplicates): New alias.
15855         (mailcap-mime-info): Add optional argument NO-DECODE.
15856         (mailcap-mime-types): Use mailcap-delete-duplicates.
15857
15858         * message.el (message-ignored-supersedes-headers): Add "X-ID".
15859
15860 2007-12-03  Nathan J. Williams  <nathanw@MIT.EDU>  (tiny change)
15861
15862         * imap.el (imap-mailbox-status-asynch): Upcase STATUS items.
15863         (imap-parse-status): Upcase status-att for servers that sends them
15864         lower-case (e.g., MS Exchange 2007).
15865
15866 2007-12-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15867
15868         * gnus-sum.el (gnus-uu-extract-map): Add a command for the yenc
15869         function.
15870
15871         * gnus-uu.el (gnus-uu-decode-yenc): New command.
15872         (gnus-uu-yenc-article): New function.
15873
15874         * yenc.el (yenc-first-part-p, yenc-last-part-p): New functions.
15875
15876         * mm-uu.el (mm-uu-yenc-extract): Get the data from the original buffer.
15877
15878 2007-12-02  Glenn Morris  <rgm@gnu.org>
15879
15880         * binhex.el (binhex): New custom group.
15881         (binhex-decoder-program, binhex-decoder-switches)
15882         (binhex-use-external): Move to the binhex custom group.
15883
15884         * uudecode.el (uudecode): New custom group.
15885         (uudecode-decoder-program, uudecode-decoder-switches)
15886         (uudecode-use-external): Move to the uudecode custom group.
15887
15888         * netrc.el (top-level): Don't load `encrypt' features.
15889         (netrc-parse): Don't use encrypt.
15890         (netrc-find-service-name, netrc-find-service-number): Don't use caddr.
15891
15892         * encrypt.el: Remove file.
15893
15894 2007-12-01  Reiner Steib  <Reiner.Steib@gmx.de>
15895
15896         * message.el (message-cite-prefix-regexp): Remove `-' and `+' to avoid
15897         matches on patches.
15898
15899         * gnus-art.el (gnus-article-browse-html-article):
15900         Mention `mm-text-html-renderer' in the doc string.
15901
15902         * rfc2047.el (rfc2047-encode-max-chars): Refer to RFC 2047 in doc
15903         string.  Add comments.
15904
15905         * message.el (message-idna-to-ascii-rhs-1): Don't call `idna-to-ascii'
15906         if rhs is ASCII.
15907
15908 2007-12-01  Glenn Morris  <rgm@gnu.org>
15909
15910         * mail-source.el (top-level): Require format-spec before
15911         eval-when-compile.
15912
15913 2007-11-30  Glenn Morris  <rgm@gnu.org>
15914
15915         * encrypt.el: Require password, rather than autoloading password-read.
15916
15917 2007-11-29  Glenn Morris  <rgm@gnu.org>
15918
15919         * imap.el (sasl-find-mechanism, sasl-mechanism-name)
15920         (sasl-make-client, sasl-next-step, sasl-step-data)
15921         (sasl-step-set-data): Declare as functions.
15922
15923 2007-11-28  Reiner Steib  <Reiner.Steib@gmx.de>
15924
15925         * tls.el (tls-hostmismatch, open-tls-stream): Checkdoc cleanup.
15926
15927 2007-11-28  Elias Oltmanns  <eo@nebensachen.de>
15928
15929         * tls.el (open-tls-stream): Actually consult tls-checktrust to see if
15930         certs should be verified and what is to be done in the event of a
15931         verification failure.
15932
15933         * gnus.el (gnus-method-to-server): Add an optional parameter so the
15934         caller can indicate whether the cache should be disregarded for this
15935         call.  This way the result of the call is reproducible at all times and
15936         can be considered a canonical server name for the supplied method.
15937         (gnus-agent-method-p): Canonicalize server names by pushing their
15938         method through `gnus-method-to-server' using the no-cache argument.
15939
15940         * gnus-srvr.el (gnus-server-insert-server-line):
15941         Call `gnus-method-to-server' with `no-cache' argument.
15942
15943         * gnus-agent.el (gnus-agent-toggle-plugged): Don't call
15944         gnus-agent-possibly-synchronize-flags as this should be called when the
15945         server is actually being opened.
15946         (gnus-agent-possibly-synchronize-flags)
15947         (gnus-agent-possibly-synchronize-flags-server): Move check for the
15948         flags file of an agentized server to the latter function.
15949
15950         * gnus-int.el (gnus-agent-possibly-synchronize-flags-server): Autoload.
15951         (gnus-open-server): Call gnus-agent-possibly-synchronize-flags-server
15952         after a connection has been established successfully.
15953
15954 2007-11-28  Katsumi Yamaoka  <yamaoka@jpl.org>
15955
15956         * gnus-art.el (article-display-face): Force to display face if called
15957         interactively; check if gnus-article-x-face-too-ugly matches author.
15958         (article-display-x-face): Display face even if From header is missing
15959         as article-display-face does.
15960
15961 2007-11-27  Dan Nicolaescu  <dann@ics.uci.edu>
15962
15963         * hashcash.el (message-narrow-to-headers-or-head)
15964         (message-fetch-field, message-goto-eoh)
15965         (message-narrow-to-headers): Declare as functions.
15966
15967 2007-11-27  Reiner Steib  <Reiner.Steib@gmx.de>
15968
15969         * mail-source.el (mail-sources): Default to fetch from file for
15970         compatibility with default of nnmail-spool-file.
15971
15972 2007-11-27  Katsumi Yamaoka  <yamaoka@jpl.org>
15973
15974         * rfc2047.el (rfc2047-allow-irregular-q-encoded-words): New variable.
15975         (rfc2047-encodable-p): Use rfc2047-encoded-word-regexp instead of "=?"
15976         to look for encoded word that should be encoded again.
15977         (rfc2047-encoded-word-regexp): Make B encoding pattern strict.
15978         (rfc2047-encoded-word-regexp-loose): New constant that has loose Q
15979         encoding pattern.
15980         (rfc2047-decode-region): Switch strict regexp and loose one according
15981         to rfc2047-allow-irregular-q-encoded-words.
15982
15983 2007-11-25  Romain Francoise  <romain@orebokech.com>
15984
15985         * gnus-msg.el (gnus-summary-reply): Delete extra paren.
15986
15987 2007-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
15988
15989         * tls.el (tls-program): Provide more custom choices from
15990         `tls-checktrust'.  Refer to `tls-checktrust' in doc string.
15991         (tls-process-connection-type, tls-success): Remove "*" in doc string.
15992
15993 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
15994
15995         * nnmail.el (nnmail-spool-file): Remove obsolete variable.
15996         (nnmail-get-new-mail): Remove code using `nnmail-spool-file'.
15997
15998         * gnus-start.el (defvar, gnus-get-unread-articles): Remove code using
15999         `nnmail-spool-file'.
16000
16001         * nnkiboze.el (nnkiboze-generate-groups): Don't bind obsolete
16002         `nnmail-spool-file'.
16003
16004         * gnus-move.el (gnus-change-server): Ditto.
16005
16006         * gnus-kill.el (gnus-batch-score): Ditto.
16007
16008         * gnus-cache.el (gnus-jog-cache): Ditto.
16009
16010         * gnus-msg.el (gnus-summary-reply):
16011         Ignore gnus-confirm-mail-reply-to-news for wide and very wide replies.
16012
16013 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
16014
16015         * tls.el (tls-checktrust, tls-hostmismatch, tls-untrusted): Add custom
16016         version.  Minor improvement to doc strings.
16017         (tls-program): Add comment.
16018
16019 2007-11-24  Elias Oltmanns  <eo@nebensachen.de>
16020
16021         * tls.el (tls-certtool-program, tls-hostmismatch): New variables.
16022         (tls-checktrust): New variable.  Check if GNU TLS complained about a
16023         mismatch between the hostname provided in the certificate and the name
16024         of the host connnecting to.
16025         (open-tls-stream): Use them.  Check certificates against trusted root
16026         certificates.
16027
16028 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
16029
16030         * gnus-cache.el (gnus-cache-generate-nov-databases):
16031         Use nnml-generate-nov-databases-directory instead of
16032         nnml-generate-nov-databases-1.
16033
16034 2007-11-24  Glenn Morris  <rgm@gnu.org>
16035
16036         * message.el (message-tool-bar-retro): Update for rename
16037         mail_send.xpm->mail-send.xpm.
16038
16039 2007-11-22  Reiner Steib  <Reiner.Steib@gmx.de>
16040
16041         * smime.el (smime-cert-by-ldap-1): Use `ldap-search' instead of
16042         `smime-ldap-search' for Emacs 22 and up.
16043
16044 2007-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
16045
16046         * gnus-art.el (gnus-article-truncate-lines): Use `truncate-lines'.
16047
16048         * message.el (message-send-mail-function): Fix error convention.
16049         (message-mailer-swallows-blank-line, message-send-mail-with-sendmail)
16050         (message-widen-reply, message-send-mail, message-talkative-question)
16051         (message-with-reply-buffer, message-generate-new-buffer-clone-locals)
16052         (message-clone-locals, message-send-news): Use with-current-buffer.
16053         (message-insert-or-toggle-importance): Remove unused var `valid'.
16054         (message-make-references): Remove unused var `new-references'.
16055         (message-make-mail-followup-to): Remove unused var `subscribed-lists'.
16056
16057 2007-11-22  Juanma Barranquero  <lekktu@gmail.com>
16058
16059         * spam.el (spam-find-spam, spam-enter-list): Doc fixes.
16060         (spam-split-symbolic-return-positive): Reflow docstring.
16061         (spam-backends, spam-summary-exit-behavior)
16062         (spam-mark-ham-unread-before-move-from-spam-group)
16063         (spam-summary-score-preferred-header, spam-sa-learn-spam-switch)
16064         (spam-sa-learn-ham-switch, spam-sa-learn-unregister-switch)
16065         (spam-clear-cache, spam-backend-check, spam-install-backend)
16066         (spam-install-statistical-backend, spam-list-of-processors)
16067         (spam-group-processor-p, spam-split, spam-bogofilter-score)
16068         (spam-bsfilter-score, spam-check-bsfilter, spam-crm114-score)
16069         (spam-check-crm114, spam-initialize, spam-unload-hook):
16070         Fix typos in docstrings.
16071
16072 2007-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
16073
16074         * gnus-start.el (gnus-get-unread-articles): Mark groups as having never
16075         been checked if they have never been read and those group levels are
16076         higher than the one that a user specified.
16077
16078 2007-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
16079
16080         * gnus-start.el (gnus-get-unread-articles): Don't prevent from checking
16081         foreign groups unless a group level is specified by a user.
16082         Reported by Dan Nicolaescu <dann@ics.uci.edu>.
16083
16084 2007-11-21  Reiner Steib  <Reiner.Steib@gmx.de>
16085
16086         * message.el (message-send-mail-function): Require sendmail.
16087
16088 2007-11-20  Reiner Steib  <Reiner.Steib@gmx.de>
16089
16090         * message.el (message-send-mail-function): Check for smtpmail too.
16091
16092         * utf7.el (utf7-encode, utf7-decode): Use coding system
16093         `utf-7'/`utf-7-imap' from utf-7.el' if available.
16094
16095         * message.el (message-send-mail-function): New function.
16096         (message-send-mail-function): Set default using
16097         message-send-mail-function.  Adjust doc string.
16098         (message-send-mail-with-mailclient): New function.
16099
16100 2007-11-16  Dan Nicolaescu  <dann@ics.uci.edu>
16101
16102         * smime.el (from):
16103         * rfc2047.el (message-posting-charset):
16104         * qp.el (mm-use-ultra-safe-encoding):
16105         * pop3.el (parse-time-months):
16106         * nnrss.el (mm-text-html-renderer, mm-text-html-washer-alist):
16107         * nnml.el (files):
16108         * nnheader.el (gnus-newsgroup-name, nnheader-file-coding-system)
16109         (jka-compr-compression-info-list, ange-ftp-path-format)
16110         (efs-path-regexp):
16111         * nndiary.el (files):
16112         * mml2015.el (mc-default-scheme, mc-schemes, pgg-default-user-id)
16113         (pgg-errors-buffer, pgg-output-buffer, epg-user-id-alist)
16114         (epg-digest-algorithm-alist, inhibit-redisplay)
16115         (password-cache-expiry):
16116         * mml1991.el (pgg-default-user-id, pgg-errors-buffer)
16117         (pgg-output-buffer, password-cache-expiry):
16118         * mml.el (mml-dnd-protocol-alist, ange-ftp-name-format)
16119         (efs-path-regexp):
16120         * mml-smime.el (epg-user-id-alist, epg-digest-algorithm-alist)
16121         (inhibit-redisplay):
16122         * mm-uu.el (file-name, start-point, end-point, entry)
16123         (gnus-newsgroup-name, gnus-newsgroup-charset):
16124         * mm-util.el (mm-mime-mule-charset-alist, latin-unity-coding-systems)
16125         (latin-unity-ucs-list):
16126         * mm-bodies.el (mm-uu-yenc-decode-function, mm-uu-decode-function)
16127         (mm-uu-binhex-decode-function):
16128         * message.el (gnus-message-group-art, gnus-list-identifiers)
16129         (rmail-enable-mime-composing, gnus-local-organization)
16130         (gnus-post-method, gnus-select-method, gnus-active-hashtb)
16131         (gnus-read-active-file, facemenu-add-face-function)
16132         (facemenu-remove-face-function, gnus-article-decoded-p)
16133         (tool-bar-mode):
16134         * mail-source.el (display-time-mail-function):
16135         * gnus-util.el (nnmail-pathname-coding-system)
16136         (nnmail-active-file-coding-system, gnus-emphasize-whitespace-regexp)
16137         (gnus-original-article-buffer, gnus-user-agent)
16138         (rmail-default-rmail-file, mm-text-coding-system, tool-bar-mode)
16139         (xemacs-codename, sxemacs-codename, emacs-program-version):
16140         * gnus-sum.el (tool-bar-mode, gnus-tmp-header, number):
16141         * gnus-start.el (gnus-agent-covered-methods)
16142         (gnus-agent-file-loading-local, gnus-agent-file-loading-cache)
16143         (gnus-current-headers, gnus-thread-indent-array, gnus-newsgroup-name)
16144         (gnus-newsgroup-headers, gnus-group-list-mode)
16145         (gnus-group-mark-positions, gnus-newsgroup-data)
16146         (gnus-newsgroup-unreads, nnoo-state-alist)
16147         (gnus-current-select-method, mail-sources)
16148         (nnmail-scan-directory-mail-source-once, nnmail-split-history)
16149         (nnmail-spool-file, gnus-cache-active-hashtb):
16150         * gnus-mh.el (mh-lib-progs):
16151         * gnus-ems.el (gnus-tmp-unread, gnus-tmp-replied)
16152         (gnus-tmp-score-char, gnus-tmp-indentation, gnus-tmp-opening-bracket)
16153         (gnus-tmp-lines, gnus-tmp-name, gnus-tmp-closing-bracket)
16154         (gnus-tmp-subject-or-nil, gnus-check-before-posting, gnus-mouse-face)
16155         (gnus-group-buffer):
16156         * gnus-cite.el (font-lock-defaults-computed, font-lock-keywords)
16157         (font-lock-set-defaults):
16158         * gnus-art.el (tool-bar-map, w3m-minor-mode-map)
16159         (gnus-face-properties-alist, charset, gnus-summary-article-menu)
16160         (gnus-summary-post-menu, total-parts, type, condition, length):
16161         * gnus-agent.el (gnus-agent-read-agentview):
16162         * flow-fill.el (show-trailing-whitespace):
16163         * gnus-group.el (tool-bar-mode, nnrss-group-alist): Remove unnecessary
16164         eval-and-compile wrappers for byte compiler pacifiers.
16165
16166         * mm-view.el (mm-inline-image-xemacs): Only do something for XEmacs.
16167         (mm-display-inline-fontify): Check for featurep 'xemacs not
16168         extent-list.
16169
16170         * mm-decode.el (mm-display-external): Check for featurep 'xemacs not
16171         itimer-list.
16172         (mm-create-image-xemacs): Only do something for XEmacs.
16173         (mm-image-fit-p): Check for featurep 'xemacs not glyph-width.
16174
16175         * mm-util.el (mm-find-buffer-file-coding-system): Add check for XEmacs.
16176
16177         * gnus-registry.el (gnus-adaptive-word-syntax-table):
16178         * gnus-fun.el (gnus-face-properties-alist): Pacify byte compiler.
16179
16180 2007-11-15  Juanma Barranquero  <lekktu@gmail.com>
16181
16182         * nnimap.el (nnimap-split-download-body):
16183         * gnus-demon.el (gnus-demon):
16184         * gnus-uu.el (gnus-uu-default-view-rules): Fix typos in docstrings.
16185
16186 2007-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
16187
16188         * nntp.el (nntp-insert-buffer-substring, nntp-copy-to-buffer):
16189         New macros.
16190         (nntp-wait-for, nntp-retrieve-articles, nntp-async-trigger)
16191         (nntp-retrieve-headers-with-xover): Use nntp-insert-buffer-substring to
16192         copy data from unibyte buffer to multibyte current buffer.
16193         (nntp-retrieve-headers, nntp-retrieve-groups): Use nntp-copy-to-buffer
16194         to copy data from unibyte current buffer to multibyte buffer.
16195         (nntp-make-process-buffer): Make process buffer unibyte.
16196
16197         * pop3.el (pop3-open-server): Fix typo in Lisp code.
16198
16199 2007-11-14  Denys Duchier  <denys.duchier@univ-orleans.fr>  (tiny change)
16200
16201         * pop3.el (pop3-open-server): Accept and process data more robustly at
16202         connection start to avoid spurious "POP SSL connection failed" errors.
16203
16204 2007-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
16205
16206         * gnus-start.el (gnus-active-to-gnus-format): Use unibyte buffer to
16207         read group names.
16208
16209 2007-11-12  Reiner Steib  <Reiner.Steib@gmx.de>
16210
16211         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Adjust :version.
16212
16213 2007-11-12  Katsumi Yamaoka  <yamaoka@jpl.org>
16214
16215         * nnmail.el (nnmail-parse-active): Make group names unibyte.
16216         (nnmail-save-active): Use a unibyte buffer when saving active file,
16217         which may contain non-ASCII group names.
16218
16219         * nnml.el (nnml-request-group): Decode group names in messages.
16220
16221 2007-11-05  Reiner Steib  <Reiner.Steib@gmx.de>
16222
16223         * message.el (message-citation-line-function)
16224         (message-insert-formatted-citation-line): Fix spelling of
16225         `message-insert-formated-citation-line'.
16226
16227 2007-11-03  Reiner Steib  <Reiner.Steib@gmx.de>
16228
16229         * gnus-sum.el (gnus-summary-highlight): Mark as risky local variable.
16230
16231 2007-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
16232
16233         * nnml.el (nnml-request-rename-group): Bind file-name-coding-system to
16234         nnmail-pathname-coding-system.
16235
16236         * gnus-group.el (gnus-group-rename-group): Encode non-ASCII group name
16237         that a user enters; decode group names in messages.
16238
16239         * gnus-msg.el (gnus-inews-do-gcc): Encode non-ASCII group names.
16240
16241 2007-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
16242
16243         * mm-util.el (mm-charset-eval-alist): Mark as risky local variable.
16244
16245         * gnus.el (gnus-group-charter-alist): Mark as risky local variable.
16246
16247         * gnus-art.el (gnus-button-alist, gnus-header-button-alist): Mark as
16248         risky local variable.
16249
16250         * gnus-group.el (gnus-group-icon-list): Mark as risky local variable.
16251
16252 2007-11-01  Teodor Zlatanov  <tzz@lifelogs.com>
16253
16254         * encrypt.el: Improve documentation to fix function name typo.
16255         Reported by Daiki Ueno <ueno@unixuser.org>.
16256
16257 2007-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
16258
16259         * gnus-art.el (gnus-article-next-page): Honor gnus-article-over-scroll
16260         even if the point is not in the last page of an article.
16261         (gnus-article-prev-page): Honor gnus-article-over-scroll when moving
16262         back to the previous page.
16263
16264 2007-10-30  Reiner Steib  <Reiner.Steib@gmx.de>
16265
16266         * qp.el (quoted-printable-decode-string): Fix typo in doc string.
16267
16268 2007-10-30  Katsumi Yamaoka  <yamaoka@jpl.org>
16269
16270         * gnus-ems.el (gnus-x-splash): Work even if there's no scroll bar.
16271
16272 2007-10-29  Stefan Monnier  <monnier@iro.umontreal.ca>
16273
16274         * message.el (message-check-news-body-syntax):
16275         Avoid mm-string-as-multibyte.
16276         (message-hide-headers): Don't assume (point-min)==1.
16277
16278 2007-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
16279
16280         * message.el (message-remove-blank-cited-lines): Fix if remove is
16281         given.
16282         (message-bogus-address-regexp): New variable.
16283         (message-bogus-recipient-p): New function.
16284         (message-check-recipients): New command.
16285         (message-syntax-checks): Add `bogus-recipient'.
16286         (message-fix-before-sending): Add `bogus-recipient'.
16287
16288         * gnus-art.el (gnus-button-mid-or-mail-heuristic-alist): Add "alpine".
16289         (gnus-treat-body-boundary): Don't test window-system.
16290
16291 2007-10-28  Leo Liu  <sdl.web@gmail.com>
16292
16293         * gnus-art.el (gnus-treat-emphasize): Don't test window-system.
16294
16295 2007-10-28  Miles Bader  <miles@gnu.org>
16296
16297         * nnheader.el (nnheader-uniquify-message-id): Make sure this is defined
16298         at compile-time too.
16299
16300 2007-10-27  Reiner Steib  <Reiner.Steib@gmx.de>
16301
16302         * gnus-msg.el (gnus-message-setup-hook):
16303         Add `message-remove-blank-cited-lines' to options.
16304
16305 2007-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
16306
16307         * message.el (message-remove-blank-cited-lines): New function.
16308         Suggested by Karl Plästerer.
16309
16310 2007-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
16311
16312         * hashcash.el (mail-add-payment): Replace mapcar called for effect with
16313         mapc.
16314
16315         * imap.el (imap-open): Replace mapcar called for effect with mapc.
16316         (top-level): Use mapc to set functions to be traced for debugging.
16317
16318         * legacy-gnus-agent.el (gnus-agent-convert-agentview): Replace mapcar
16319         called for effect with while loop.
16320
16321         * message.el (message-talkative-question): Replace mapcar called for
16322         effect with mapc.
16323
16324         * mm-util.el: Use mapc instead of mapcar to make compatible functions.
16325         (mm-find-mime-charset-region, mm-find-charset-region): Replace mapcar
16326         called for effect with dolist.
16327
16328         * mml.el (mml-insert-mime): Replace mapcar called for effect with mapc.
16329
16330         * nndiary.el: Use dolist instead of mapcar to add diary headers to
16331         gnus-extra-headers and nnmail-extra-headers.
16332
16333         * nnimap.el (nnimap-request-update-info-internal): Replace mapcar
16334         called for effect with dolist.
16335         (top-level): Use mapc to set functions to be traced for debugging.
16336
16337         * nnmail.el (nnmail-read-incoming-hook): Doc fix.
16338         (nnmail-split-fancy-with-parent): Replace mapcar called for effect with
16339         dolist.
16340
16341         * nnmaildir.el (nnmaildir--delete-dir-files, nnmaildir-request-close):
16342         Replace mapcar called for effect with mapc.
16343         (nnmaildir--scan, nnmaildir-request-scan, nnmaildir-retrieve-groups)
16344         (nnmaildir-request-update-info, nnmaildir-request-delete-group)
16345         (nnmaildir-retrieve-headers, nnmaildir-request-set-mark)
16346         (nnmaildir-close-group): Replace mapcar called for effect with dolist.
16347
16348         * nnrss.el (nnrss-make-hash-index): Use gnus-remove-if instead of
16349         remove-if that's a cl function.
16350
16351         * webmail.el (webmail-debug): Replace mapcar called for effect with
16352         dolist.
16353
16354         * gnus-xmas.el (gnus-group-add-icon): Replace mapcar called for effect
16355         with mapc.
16356
16357 2007-10-24  Katsumi Yamaoka  <yamaoka@jpl.org>
16358
16359         * gnus-agent.el (gnus-agent-read-agentview, gnus-agent-save-alist)
16360         (gnus-agent-expire-unagentized-dirs): Replace mapcar called for effect
16361         with while loop.
16362
16363         * gnus-art.el: Use mapc instead of mapcar to make gnus-article-*
16364         functions from article-* functions.
16365         (gnus-multi-decode-header): Replace mapcar called for effect with
16366         dolist.
16367
16368         * gnus-bookmark.el (gnus-bookmark-bmenu-list)
16369         (gnus-bookmark-show-details): Replace mapcar called for effect with
16370         while loop.
16371
16372         * gnus-diary.el (gnus-diary-update-group-parameters): Replace mapcar
16373         called for effect with while loop.
16374
16375         * gnus-group.el (gnus-group-suspend): Replace mapcar called for effect
16376         with dolist.
16377
16378         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
16379         Replace mapcar called for effect with dolist.
16380
16381         * gnus-spec.el (gnus-correct-length): Make it simple and fast.
16382
16383         * gnus-sum.el (gnus-multi-decode-encoded-word-string)
16384         (gnus-build-sparse-threads, gnus-summary-limit-include-expunged):
16385         Replace mapcar called for effect with dolist.
16386         (gnus-simplify-buffer-fuzzy): Replace mapcar called for effect with
16387         mapc.
16388
16389         * gnus-topic.el (gnus-topic-find-groups, gnus-topic-move-group):
16390         Replace mapcar called for effect with dolist.
16391         (gnus-topic-list): Replace mapcar called for effect with mapc.
16392
16393         * gnus.el: Use mapc instead of mapcar to add autoloads.
16394
16395 2007-10-23  Richard Stallman  <rms@gnu.org>
16396
16397         * gnus-group.el (gnus-group-highlight): Mark as risky.
16398
16399 2007-10-23  Katsumi Yamaoka  <yamaoka@jpl.org>
16400
16401         * gnus.el (gnus-server-to-method): Return method found first in
16402         gnus-newsrc-alist.
16403
16404         * gnus-art.el (gnus-article-highlight-signature)
16405         (gnus-insert-prev-page-button, gnus-insert-next-page-button): Make a
16406         button overlay without the front stickiness.
16407
16408 2007-10-22  Kevin Greiner  <kevin.greiner@compsol.cc>
16409
16410         * gnus-agent.el (gnus-agent-expire-group-1): The check for an unsorted
16411         overview buffer needed a catch to receive its throw.
16412         (gnus-agent-flush-cache): Declare as interactive to make this function
16413         easier to use.
16414
16415 2007-10-20  Reiner Steib  <Reiner.Steib@gmx.de>
16416
16417         * html2text.el (html2text-fix-paragraph): Use `forward-line' instead of
16418         `next-line'.
16419
16420 2007-10-18  Katsumi Yamaoka  <yamaoka@jpl.org>
16421
16422         * nnmail.el (nnmail-fancy-expiry-target): Use rmail-dont-reply-to to
16423         exclude address matching message-dont-reply-to-names.
16424
16425 2007-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
16426
16427         * gnus-util.el (gnus-string<): New function.
16428
16429         * gnus-sum.el (gnus-article-sort-by-author)
16430         (gnus-article-sort-by-recipient, gnus-article-sort-by-subject): Use it.
16431
16432 2007-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
16433
16434         * gnus-win.el (gnus-configure-windows): Focus on the frame for which
16435         the frame-focus tag is set in gnus-buffer-configuration.
16436
16437 2007-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
16438
16439         * gnus-art.el (gnus-article-add-button): Make a button overlay without
16440         the front stickiness.
16441
16442 2007-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
16443
16444         * gnus-art.el (gnus-button-alist): Exclude newline in RFC2396-compliant
16445         url pattern; remove duplicate one.
16446         (gnus-article-extend-url-button): New function.
16447         (gnus-article-add-buttons): Use it.
16448         (gnus-button-push): Use concatenated url that it makes.
16449
16450 2007-10-04  Juanma Barranquero  <lekktu@gmail.com>
16451
16452         * sieve-manage.el (sieve-manage-interactive-login): Doc fix.
16453
16454 2007-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
16455
16456         * gnus-uu.el (gnus-uu-reginize-string, gnus-uu-expand-numbers):
16457         Don't hardcode point-min==1.
16458
16459 2007-10-08  Reiner Steib  <Reiner.Steib@gmx.de>
16460
16461         * mm-util.el (mm-charset-synonym-alist): Alias gbk to cp936.
16462         Fix comment about "iso8859-1".
16463
16464 2007-10-08  Daiki Ueno  <ueno@unixuser.org>
16465
16466         * mm-decode.el (mm-possibly-verify-or-decrypt): Replace PARTS with the
16467         ones returned from the verify-function.
16468
16469         * mm-uu.el (mm-uu-pgp-signed-extract-1):
16470         Call mml2015-extract-cleartext-signature if extraction failed.
16471
16472 2007-10-07  Daiki Ueno  <ueno@unixuser.org>
16473
16474         * mm-uu.el (mm-uu-pgp-signed-extract-1): Delete the first line
16475         beginning with "-----BEGIN PGP SIGNED MESSAGE-----" if extraction
16476         failed.
16477
16478 2007-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
16479
16480         * Relicense "GPLv2 or later" files to "GPLv3 or later".
16481
16482 2007-10-03  Reiner Steib  <Reiner.Steib@gmx.de>
16483
16484         * pgg.el, pgg-def.el, pgg-gpg.el: Revert to the version in v5-10.  The
16485         trunk version of PGG was unmaintained.  The author of PGG, Daiki Ueno,
16486         recommends to use EasyPG instead of PGG.
16487
16488         * pgg.el: Revert to revision 6.23.2.16.
16489
16490         * pgg-def.el: Revert to revision 6.6.2.14.
16491
16492         * pgg-gpg.el: Revert to revision 6.23.2.34.
16493
16494 2007-09-27  Teodor Zlatanov  <tzz@lifelogs.com>
16495
16496         * gnus-sum.el (gnus-summary-kill-thread): Allow universal prefix zero
16497         to mark a thread as expirable.  Add variable `hide' to handle hiding of
16498         thread for both the null and zero (kill/expire thread) universal prefix
16499         cases.
16500         (gnus-summary-expire-thread): Add new function to expire a thread,
16501         using gnus-summary-kill-thread.
16502         (gnus-summary-mode-map, gnus-summary-thread-map): Add 'M-C-e' and 'T e'
16503         shortcuts for gnus-summary-expire-thread.
16504         (gnus-summary-mode-map, gnus-summary-thread-map): Remove `M-C-e' and `T
16505         e' bindings for gnus-summary-expire-thread.  Add `T E' binding.
16506
16507 2007-09-25  Teodor Zlatanov  <tzz@lifelogs.com>
16508
16509         * gnus-registry.el (gnus-registry-store-extra-entry): Allow for nil
16510         extras value, so an extras entry can be deleted.
16511         (gnus-registry-delete-extra-entry): Use it.
16512         (gnus-registry-fetch-extra-flags, gnus-registry-has-extra-flag)
16513         (gnus-registry-store-extra-flags, gnus-registry-delete-extra-flags)
16514         (gnus-registry-delete-all-extra-flags): Allow for arbitrary flag symbol
16515         storage through the gnus-registry, and provide an appropriate API for
16516         it.
16517
16518 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
16519
16520         * gnus-sum.el (gnus-newsgroup-maximum-articles): Move from gnus.el.
16521         Suggested by Leo <sdl.web@gmail.com>.
16522
16523         * gnus.el: Do.
16524
16525 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
16526
16527         * gnus.el (gnus-newsgroup-maximum-articles): Rename from
16528         gnus-maximum-newsgroup.  Suggested by Leo <sdl.web@gmail.com>.
16529
16530         * gnus-agent.el (gnus-agent-fetch-headers): Do.
16531
16532         * gnus-sum.el (gnus-articles-to-read, gnus-list-of-unread-articles)
16533         (gnus-list-of-read-articles, gnus-sequence-of-unread-articles): Do.
16534
16535 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
16536
16537         * nnmbox.el (nnmbox-request-article): Don't assume delim regexp matches
16538         newline.
16539         (nnmbox-request-accept-article): Don't change article in source buffer;
16540         narrow to header to use message-fetch-field rather than
16541         nnmail-fetch-field; use with-current-buffer instead of save-excursion.
16542         (nnmbox-request-replace-article): Quote lines that'll be misidentified
16543         as delimiters; make sure article ends with newline.
16544         (nnmbox-delete-mail): Correct last position of article to be deleted;
16545         ignore X-Gnus-Newsgroup header in article body.
16546         (nnmbox-save-mail): Quote lines looking like delimiters at the right
16547         positions; make sure article ends with newline.
16548
16549         * message.el (message-display-abbrev): Don't infloop when a user
16550         inserts SPC in the beginning of header.
16551
16552         * lpath.el: Don't bind define-ccl-program for non-Mule XEmacs; bind
16553         coding-system-for-read and coding-system-for-write for XEmacs having no
16554         file-coding feature.
16555
16556         * dgnushack.el: Bind or autoload define-ccl-program for XEmacs.
16557
16558 2007-09-12  Teodor Zlatanov  <tzz@lifelogs.com>
16559
16560         * gnus-registry.el (gnus-registry-unfollowed-groups): Add INBOX to the
16561         list of groups not followed by default.  Fix type to be regexp.
16562         (gnus-registry-grep-in-list): Fix inverted parameters to string-match.
16563
16564 2007-09-06  Tassilo Horn  <tassilo@member.fsf.org>
16565
16566         * hmac-def.el (define-hmac-function): Switch from old-style to
16567         new-style backquotes.
16568
16569         * md4.el (md4-make-step): Likewise.
16570
16571 2007-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
16572
16573         * gnus-start.el (gnus-gnus-to-newsrc-format): Use a unibyte buffer and
16574         raw-text coding system when saving .newsrc file, which may contain
16575         non-ASCII group names.
16576
16577 2007-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
16578
16579         * gnus-cus.el (gnus-score-extra): New widget.
16580         (gnus-score-extra-convert): New function.
16581         (gnus-score-customize): Use it for Extra.
16582
16583 2007-08-31  Daiki Ueno  <ueno@unixuser.org>
16584
16585         * mml2015.el (mml2015-extract-cleartext-signature): New function.
16586         (mml2015-mailcrypt-clear-verify): Use it.
16587         (mml2015-gpg-clear-verify): Use it.
16588         (mml2015-pgg-clear-verify): Use it.
16589         (mml2015-epg-clear-verify): Replace the current part with the output
16590         from GnuPG; don't extract the plaintext by itself.
16591
16592         * mm-uu.el (mm-uu-pgp-beginning-signature): Abolish.
16593         (mm-uu-pgp-signed-extract-1): Bind coding-system-for-read when calling
16594         mml2015-clear-verify-function; don't touch the armor headers or
16595         dash-escaped text here.
16596
16597 2007-08-24  Katsumi Yamaoka  <yamaoka@jpl.org>
16598
16599         * gnus-art.el (gnus-article-edit-part): Don't jump to nonexistent part.
16600         (gnus-mime-view-part-as-type-internal): Default to text/plain for text
16601         parts, or application/octet-stream as a last resort.
16602         (gnus-mime-view-part-as-type): Don't toggle display.
16603         (gnus-mime-view-part-as-charset): Don't turn off display before
16604         querying charset.
16605
16606         * mm-view.el (mm-inline-text-html-render-with-w3): Don't add XEmacs
16607         stuff to undisplayer function in Emacs.
16608         (mm-inline-text-html-render-with-w3m): Remove Emacs/W3 stuff.
16609
16610         * mml.el (mml-generate-mime-1): Prefer utf-8 when encoding
16611         text/calendar parts.
16612
16613 2007-08-23  Katsumi Yamaoka  <yamaoka@jpl.org>
16614
16615         * gnus-art.el (gnus-mime-display-single): Use utf-8 by default for
16616         decoding text/calendar parts.
16617
16618         * message.el (message-forward-make-body-mime): Always mark body as
16619         having no illegible text; remove signed-or-encrypted argument.
16620         (message-forward-make-body): Don't pass signed-or-encrypted arg to it.
16621
16622         * mml.el (mml-generate-mime): Make sure it uses multibyte temp buffer.
16623         (mml-generate-mime-1): Don't encode body if it is specified to be in
16624         raw form; don't make buffer be unibyte when inserting multibyte string.
16625
16626 2007-08-23  Stefan Monnier  <monnier@iro.umontreal.ca>
16627
16628         * sha1.el: Fix up comment style.
16629         (sha1-F0, sha1-F1, sha1-F2, sha1-F3, sha1-S1, sha1-S5, sha1-S30)
16630         (sha1-OP, sha1-add-to-H): Use new-style backquotes.
16631
16632         * hex-util.el: Fix up comment style.
16633         (hex-char-to-num, num-to-hex-char): Use new-style backquotes.
16634
16635         * gnus-salt.el: Use with-current-buffer.
16636         (gnus-pick-setup-message): Fix long-standing typo.
16637
16638 2007-08-17  Katsumi Yamaoka  <yamaoka@jpl.org>
16639
16640         * imap.el (imap-logout-timeout): New variable.
16641         (imap-logout, imap-logout-wait): New functions.
16642         (imap-kerberos4-open, imap-gssapi-open, imap-close): Use them.
16643
16644         * nnimap.el (nnimap-logout-timeout): New server variable.
16645         (nnimap-open-server, nnimap-close-server): Bind imap-logout-timeout to
16646         nnimap-logout-timeout.
16647
16648         * gnus-art.el (gnus-article-summary-command-nosave)
16649         (gnus-article-read-summary-keys): Don't use 3rd arg of pop-to-buffer.
16650
16651 2007-08-14  Katsumi Yamaoka  <yamaoka@jpl.org>
16652
16653         * gnus.el (gnus-maximum-newsgroup): New variable.
16654
16655         * gnus-agent.el (gnus-agent-fetch-headers): Limit the range of articles
16656         according to gnus-maximum-newsgroup.
16657
16658         * gnus-sum.el (gnus-articles-to-read, gnus-list-of-unread-articles)
16659         (gnus-list-of-read-articles, gnus-sequence-of-unread-articles):
16660         Limit the range of articles according to gnus-maximum-newsgroup.
16661
16662 2007-08-14  Tassilo Horn  <tassilo@member.fsf.org>
16663
16664         * gnus-art.el (gnus-sticky-article): Fix problems described in
16665         <b4mps1qitio.fsf@jpl.org> on ding.  Thanks to Katsumi.
16666         Don't perform gnus-configure-windows here; reuse existing sticky
16667         article buffer.
16668
16669         * gnus-sum.el (gnus-summary-display-article): Setup article buffer if
16670         it doesn't exist in gnus-article-mode.
16671
16672 2007-08-13  Katsumi Yamaoka  <yamaoka@jpl.org>
16673
16674         * gnus-agent.el (gnus-agent-decoded-group-names): New variable.
16675         (gnus-agent-decoded-group-name): New function.
16676         (gnus-agent-group-path, gnus-agent-group-pathname): Use it.
16677         (gnus-agent-expire-group-1): Use it; decode group name in messages.
16678
16679 2007-08-12  Tassilo Horn  <tassilo@member.fsf.org>
16680
16681         * gnus-sum.el (gnus-summary-article-map, gnus-summary-make-menu-bar):
16682         Add binding for gnus-sticky-article.
16683         (gnus-summary-exit): Don't kill sticky article buffers.
16684
16685         * gnus-art.el (gnus-sticky-article-mode): New mode to generate a sticky
16686         article buffer.
16687         (gnus-sticky-article, gnus-kill-sticky-article-buffer)
16688         (gnus-kill-sticky-article-buffers): New commands.
16689
16690 2007-08-10  Katsumi Yamaoka  <yamaoka@jpl.org>
16691
16692         * nntp.el (nntp-xref-number-is-evil): New server variable.
16693         (nntp-find-group-and-number): If it is non-nil, don't trust article
16694         numbers in the Xref header.
16695
16696 2007-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
16697
16698         * gnus-agent.el (gnus-agent-read-group): New function.
16699         (gnus-agent-flush-group, gnus-agent-expire-group)
16700         (gnus-agent-regenerate-group): Use it.
16701         (gnus-agent-expire-unagentized-dirs): Bind file-name-coding-system to
16702         nnmail-pathname-coding-system.
16703
16704 2007-08-06  Katsumi Yamaoka  <yamaoka@jpl.org>
16705
16706         * gnus-ems.el (gnus-x-splash): Bind inhibit-read-only to t.
16707
16708         * gnus-sum.el (gnus-summary-insert-articles): Mark inserted articles
16709         that are unread as unread, and also as selected so that information of
16710         marks having been changed by a user may be updated when exiting group.
16711
16712 2007-08-04  Reiner Steib  <Reiner.Steib@gmx.de>
16713
16714         * gnus-art.el (article-hide-headers): Bind inhibit-read-only to t.
16715
16716 2007-08-03  Katsumi Yamaoka  <yamaoka@jpl.org>
16717
16718         * gnus-art.el (gnus-mime-display-single): Pass part number that is
16719         calculated ignoring signature parts to gnus-treat-article.
16720
16721 2007-08-02  Katsumi Yamaoka  <yamaoka@jpl.org>
16722
16723         * gnus-art.el (gnus-mime-security-verify-or-decrypt): Don't narrow to
16724         a point here in order to keep the window start.
16725         (gnus-insert-mime-security-button): Make a button overlay without the
16726         front stickiness.
16727         (gnus-mime-display-security): Goto the end of a button.
16728
16729         * gnus-group.el (gnus-group-name-at-point): Fix regexps.
16730
16731 2007-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
16732
16733         * gnus-group.el (gnus-group-name-at-point): Rewrite; rename from
16734         group-name-at-point.
16735         (gnus-group-completing-read): New function that offers decoded
16736         non-ASCII group names for completion.
16737         (gnus-fetch-group, gnus-group-read-ephemeral-group)
16738         (gnus-group-jump-to-group, gnus-group-make-group-simple)
16739         (gnus-group-unsubscribe-group, gnus-group-fetch-charter)
16740         (gnus-group-fetch-control): Use it.
16741         (gnus-fetch-group): Use group-name-at-point for the initial value
16742         rather than the default value; use gnus-alive-p.
16743
16744         * gnus-msg.el (gnus-group-mail, gnus-group-news, gnus-group-post-news)
16745         (gnus-summary-mail-other-window, gnus-summary-news-other-window)
16746         (gnus-summary-post-news): Use gnus-group-completing-read.
16747
16748         * gnus-sum.el (gnus-select-newsgroup): Decode group name in error msg.
16749         (gnus-read-move-group-name): Decode group name for completion.
16750
16751 2007-07-31  Teodor Zlatanov  <tzz@lifelogs.com>
16752
16753         * gnus-srvr.el (gnus-server-close-all-servers): Close servers not only
16754         in gnus-inserted-opened-servers but also in gnus-server-alist (Katsumi
16755         Yamaoka slightly modified the code).
16756
16757 2007-07-24  Katsumi Yamaoka  <yamaoka@jpl.org>
16758
16759         * nnmail.el (nnmail-group-names-not-encoded-p): New variable.
16760         (nnmail-split-incoming): Bind it.
16761
16762         * nnml.el (nnml-group-name-charset): New function.
16763         (nnml-decoded-group-name): Use it; don't decode group name if
16764         nnmail-group-names-not-encoded-p is non-nil.
16765         (nnml-encoded-group-name): New function.
16766         (nnml-group-pathname): Inline nnml-decoded-group-name.
16767         (nnml-request-expire-articles): Decode group name in message.
16768         (nnml-request-delete-group): Ditto; bind file-name-coding-system to
16769         nnmail-pathname-coding-system.
16770         (nnml-save-mail, nnml-active-number): Work with decoded group names and
16771         not decoded ones according to nnmail-group-names-not-encoded-p.
16772         (nnml-generate-active-info): Use nnml-encoded-group-name.
16773
16774 2007-08-08  Glenn Morris  <rgm@gnu.org>
16775
16776         * gmm-utils.el, gnus-async.el, gnus-msg.el, gnus-score.el
16777         * gnus-util.el, imap.el, mailcap.el, nnimap.el: Replace `iff' in
16778         doc-strings and comments.
16779
16780 2007-07-25  Glenn Morris  <rgm@gnu.org>
16781
16782         * Relicense all FSF files to GPLv3 or later.
16783
16784 2007-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
16785
16786         * gnus-sum.el (gnus-summary-move-article):
16787         Make gnus-summary-respool-article work.
16788
16789 2007-07-21  Reiner Steib  <Reiner.Steib@gmx.de>
16790
16791         * mm-uu.el (mm-uu-type-alist): Refer to mm-uu-configure-list in doc
16792         string.
16793
16794 2007-07-20  Michaël Cadilhac  <michael@cadilhac.name>
16795
16796         * nnrss.el (nnrss-ignore-article-fields): New variable.  List of fields
16797         that should be ignored when comparing distant RSS articles with local
16798         ones.
16799         (nnrss-make-hash-index): New function.  Create a hash index according
16800         to the ignored fields.
16801         (nnrss-check-group): Use it.
16802
16803 2007-07-20  Katsumi Yamaoka  <yamaoka@jpl.org>
16804
16805         * gnus-agent.el (gnus-agent-group-pathname): Take notice of the method.
16806
16807         * gnus-art.el (article-decode-group-name): Decode Xref header too.
16808
16809         * gnus-group.el (gnus-group-make-group): Encode group name here unless
16810         the new optional argument ENCODED is non-nil.
16811         (gnus-group-make-doc-group): Use gnus-group-name-charset to determine
16812         coding system for encoding group name.
16813         (gnus-group-make-rss-group): Pass un-encoded group name to
16814         gnus-group-make-group.
16815         (gnus-group-set-info): Tell gnus-group-make-group that group name is
16816         encoded.
16817
16818         * gnus-sum.el (gnus-summary-move-article, gnus-read-move-group-name):
16819         Encode group name to which articles are moved or copied.
16820         (gnus-summary-edit-article): Use gnus-group-name-charset to determine
16821         coding system for encoding Newsgroup, Followup-To and Xref headers.
16822
16823         * nnagent.el (nnagent-request-set-mark): Use unibyte buffer to compose
16824         marks; use nnheader-file-coding-system to write a file.
16825         (nnagent-retrieve-headers): Bind file-name-coding-system to
16826         nnmail-pathname-coding-system.
16827
16828         * nnmail.el (nnmail-insert-xref): Don't break non-ASCII group name.
16829
16830         * nnml.el (nnml-decoded-group-name, nnml-group-pathname): New functions.
16831         (nnml-request-article, nnml-request-create-group)
16832         (nnml-request-rename-group, nnml-find-id)
16833         (nnml-possibly-change-directory, nnml-possibly-create-directory)
16834         (nnml-save-mail, nnml-active-number, nnml-marks-changed-p)
16835         (nnml-save-marks): Use nnml-group-pathname instead of
16836         nnmail-group-pathname.
16837
16838         (nnml-request-create-group, nnml-request-expire-articles)
16839         (nnml-request-move-article, nnml-request-delete-group)
16840         (nnml-deletable-article-p, nnml-possibly-create-directory)
16841         (nnml-get-nov-buffer, nnml-generate-nov-databases-directory)
16842         (nnml-open-marks): Bind file-name-coding-system to
16843         nnmail-pathname-coding-system.
16844
16845         (nnml-request-article): Pass server argument to nnml-find-group-number.
16846         (nnml-request-create-group, nnml-active-number, nnml-save-marks):
16847         Pass server argument to nnml-possibly-create-directory.
16848         (nnml-request-accept-article): Pass server argument to
16849         nnml-active-number and nnml-save-mail.
16850         (nnml-find-group-number): Pass server argument to nnml-find-id.
16851         (nnml-request-update-info): Pass server argument to
16852         nnml-marks-changed-p.
16853
16854         (nnml-find-id, nnml-find-group-number, nnml-possibly-create-directory)
16855         (nnml-save-mail, nnml-active-number): Add server argument.
16856
16857         (nnml-request-delete-group): Warn if group is missing.
16858         (nnml-get-nov-buffer): Decode group name.
16859         (nnml-generate-active-info): Encode group name.
16860         (nnml-open-marks): Decode group name in messages.
16861
16862 2007-07-19  Katsumi Yamaoka  <yamaoka@jpl.org>
16863
16864         * gnus-art.el (gnus-article-part-wrapper): Work with the nearest part
16865         if it is not specified.
16866         (gnus-article-pipe-part, gnus-article-save-part)
16867         (gnus-article-interactively-view-part, gnus-article-copy-part)
16868         (gnus-article-view-part-as-charset, gnus-article-view-part-externally)
16869         (gnus-article-inline-part, gnus-article-save-part-and-strip)
16870         (gnus-article-replace-part, gnus-article-delete-part)
16871         (gnus-article-view-part-as-type): Pass raw prefix argument to
16872         gnus-article-part-wrapper.
16873
16874 2007-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
16875
16876         * gnus-agent.el (gnus-agent-save-active):
16877         Bind nnheader-file-coding-system to gnus-agent-file-coding-system.
16878
16879         * gnus-cache.el (gnus-cache-save-buffers)
16880         (gnus-cache-possibly-enter-article, gnus-cache-request-article)
16881         (gnus-cache-retrieve-headers, gnus-cache-change-buffer)
16882         (gnus-cache-possibly-remove-article, gnus-cache-articles-in-group)
16883         (gnus-cache-braid-nov, gnus-cache-braid-heads)
16884         (gnus-cache-generate-active, gnus-cache-rename-group)
16885         (gnus-cache-delete-group, gnus-cache-update-file-total-fetched-for)
16886         (gnus-cache-update-overview-total-fetched-for):
16887         Bind file-name-coding-system to nnmail-pathname-coding-system.
16888         (gnus-cache-decoded-group-names, gnus-cache-unified-group-names):
16889         New variables.
16890         (gnus-cache-decoded-group-name): New function.
16891         (gnus-cache-file-name): Use it.
16892         (gnus-cache-generate-active): Use non-decoded group name for active.
16893
16894         * gnus-util.el (gnus-write-buffer): Bind file-name-coding-system at the
16895         right place.
16896         (gnus-write-active-file): Don't break non-ASCII group names.
16897
16898         * nntp.el (nntp-marks-changed-p): Bind file-name-coding-system to
16899         nnmail-pathname-coding-system.
16900
16901         * lpath.el: Bind default-file-name-coding-system,
16902         file-name-coding-system and language-info-alist for XEmacs.
16903
16904         * gnus-uu.el (gnus-uu-decode-save): Typo.
16905
16906 2007-07-16  Katsumi Yamaoka  <yamaoka@jpl.org>
16907
16908         * gnus-srvr.el (gnus-server-font-lock-keywords): Quote faces.
16909
16910 2007-07-14  David Kastrup  <dak@gnu.org>
16911
16912         * gnus-art.el (gnus-mime-delete-part): Don't go through article-edit
16913         finishing actions if we did not edit the article.
16914
16915 2007-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
16916
16917         * gnus-agent.el (gnus-agent-rename-group, gnus-agent-delete-group)
16918         (gnus-agent-fetch-articles, gnus-agent-unfetch-articles)
16919         (gnus-agent-crosspost, gnus-agent-backup-overview-buffer)
16920         (gnus-agent-flush-group, gnus-agent-flush-cache)
16921         (gnus-agent-fetch-headers, gnus-agent-load-alist)
16922         (gnus-agent-read-agentview, gnus-agent-expire-group-1)
16923         (gnus-agent-retrieve-headers, gnus-agent-request-article)
16924         (gnus-agent-regenerate-group)
16925         (gnus-agent-update-files-total-fetched-for)
16926         (gnus-agent-update-view-total-fetched-for):
16927         Bind file-name-coding-system to nnmail-pathname-coding-system.
16928         (gnus-agent-group-pathname): Don't encode file names by
16929         nnmail-pathname-coding-system.
16930         (gnus-agent-save-local): Bind file-name-coding-system correctly; bind
16931         coding-system-for-write instead of buffer-file-coding-system to
16932         gnus-agent-file-coding-system.
16933
16934         * gnus-msg.el (gnus-inews-make-draft, gnus-inews-insert-archive-gcc):
16935         Decode group name.
16936
16937         * gnus-srvr.el (gnus-browse-foreign-server): Make group names unibyte.
16938
16939         * gnus-start.el (gnus-update-active-hashtb-from-killed)
16940         (gnus-read-newsrc-el-file): Make group names unibyte.
16941
16942         * nnmail.el (nnmail-group-pathname): Don't encode file names by
16943         nnmail-pathname-coding-system.
16944
16945         * nnrss.el (nnrss-file-coding-system): Doc fix; make it begin with *.
16946         (nnrss-request-delete-group): Bind file-name-coding-system to
16947         nnmail-pathname-coding-system.
16948         (nnrss-read-server-data, nnrss-read-group-data):
16949         Bind file-name-coding-system correctly.
16950         (nnrss-check-group): Pass nnrss-file-coding-system to md5.
16951
16952         * nntp.el: Require gnus-group for the function gnus-group-name-charset.
16953         (nntp-server-to-method-cache): New variable.
16954         (nntp-group-pathname): New function that decodes non-ASCII group names.
16955         (nntp-possibly-create-directory, nntp-marks-changed-p)
16956         (nntp-save-marks, nntp-open-marks): Use it.
16957         (nntp-possibly-create-directory, nntp-open-marks):
16958         Bind file-name-coding-system to nnmail-pathname-coding-system.
16959         (nntp-open-marks): Decode group names when bootstrapping marks.
16960
16961         * rfc2047.el (rfc2047-encode-message-header): Make XEmacs decode
16962         Newsgroups and Followup-To headers.
16963
16964 2007-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
16965
16966         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
16967         (gnus-server-closed-face, gnus-server-denied-face)
16968         (gnus-server-offline-face): Remove variable.
16969         (gnus-server-font-lock-keywords): Use faces that are not aliases.
16970
16971         * gnus-util.el (gnus-message-with-timestamp-1): Use log-message instead
16972         of modifying message-stack directly for XEmacs.
16973
16974         * mm-util.el (mm-decode-coding-string, mm-encode-coding-string)
16975         (mm-decode-coding-region, mm-encode-coding-region): Don't modify string
16976         if the coding-system argument is nil for XEmacs.
16977
16978         * nnrss.el (nnrss-compatible-encoding-alist): Inherit the value of
16979         mm-charset-override-alist.
16980
16981         * rfc2047.el: Don't require base64; require rfc2045 for the function
16982         rfc2045-encode-string.
16983         (rfc2047-encode-parameter): Use rfc2045-encode-string to quote or not
16984         to quote the parameter value.
16985
16986 2007-07-06  Katsumi Yamaoka  <yamaoka@jpl.org>
16987
16988         * gnus-group.el (gnus-group-name-charset): Allow a method of the short
16989         form in gnus-group-name-charset-method-alist.
16990
16991         * gnus-eform.el (gnus-edit-form): Add optional argument layout which
16992         overrides the default layout edit-form.
16993
16994         * gnus-win.el (gnus-buffer-configuration): Add edit-server.
16995
16996         * gnus-srvr.el (gnus-server-edit-server): Use edit-server layout.
16997
16998 2007-07-04  Katsumi Yamaoka  <yamaoka@jpl.org>
16999
17000         * gnus-sum.el (gnus-summary-catchup): Don't recognize cached articles
17001         as unfetched articles.
17002
17003 2007-07-02  Reiner Steib  <Reiner.Steib@gmx.de>
17004
17005         * gnus-start.el (gnus-level-unsubscribed): Improve doc string.
17006
17007 2007-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
17008
17009         * nnagent.el (nnagent-request-set-mark): Also set the marks for the
17010         original back end that keeps marks in the local system.
17011
17012 2007-06-26  Katsumi Yamaoka  <yamaoka@jpl.org>
17013
17014         * gnus-art.el (gnus-article-summary-command-nosave): Don't set the 3rd
17015         arg of pop-to-buffer for XEmacs.
17016         (gnus-article-read-summary-keys): Ditto; don't restore window
17017         configuration if summary command ends up with neither article buffer
17018         nor summary buffer; describe bindings if summary keys end with C-h.
17019
17020 2007-06-22  Katsumi Yamaoka  <yamaoka@jpl.org>
17021
17022         * message.el (message-fix-before-sending): Skip raw message part to be
17023         forwarded while checking illegible text.
17024         (message-forward-make-body-mime, message-forward-make-body):
17025         Mark signed or encrypted raw message as having no illegible text.
17026
17027 2007-06-19  Katsumi Yamaoka  <yamaoka@jpl.org>
17028
17029         * gnus-util.el (gnus-add-timestamp-to-message): New user option.
17030         (gnus-message-with-timestamp-1): New macro.
17031         (gnus-message-with-timestamp): New function.
17032         (gnus-message): Use them.
17033
17034         * nnheader.el (nnheader-message): Use them.
17035
17036 2007-06-16  Reiner Steib  <Reiner.Steib@gmx.de>
17037
17038         * gnus-start.el (gnus-gnus-to-quick-newsrc-format): Add newlines to
17039         .newsrc.eld file.
17040
17041 2007-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
17042
17043         * gnus-agent.el (gnus-agent-fetch-headers)
17044         (gnus-agent-retrieve-headers):
17045         Bind gnus-decode-encoded-address-function to identity.
17046
17047         * nntp.el (nntp-send-xover-command): Recognize an xover command is
17048         available also when the server returns simply a dot.
17049
17050         * gnus-ems.el (gnus-x-splash): Redisplay window before measuring it.
17051
17052 2007-06-08  Katsumi Yamaoka  <yamaoka@jpl.org>
17053
17054         * gnus-ems.el (gnus-x-splash): Fix calculation; error in tty.
17055
17056 2007-06-07  Katsumi Yamaoka  <yamaoka@jpl.org>
17057
17058         * gnus-ems.el (gnus-x-splash): Make it work.
17059
17060         * gnus-start.el (gnus-1): Relax restrictions that prevent gnus-x-splash
17061         from being used.
17062
17063         * lpath.el: Bind line-spacing and tool-bar-mode for XEmacs.
17064
17065 2007-06-05  Katsumi Yamaoka  <yamaoka@jpl.org>
17066
17067         * gnus-xmas.el (gnus-xmas-define): Make gnus-make-overlay ignore the
17068         4th and the 5th arguments.
17069
17070         * gnus-art.el (gnus-insert-mime-button): Make a button overlay without
17071         the front stickiness.
17072         (gnus-article-summary-command-nosave): Correct the order of the
17073         arguments passed to pop-to-buffer.
17074         (gnus-article-read-summary-keys): Ditto; make it work properly when the
17075         summary command ends up with the article buffer.
17076
17077         * mm-decode.el (mm-insert-part): Separate the extracted parts that have
17078         the same faces.
17079
17080 2007-06-07  Juanma Barranquero  <lekktu@gmail.com>
17081
17082         * gnus-art.el (gnus-split-methods): Fix typo in docstring.
17083
17084 2007-06-06  Juanma Barranquero  <lekktu@gmail.com>
17085
17086         * gnus-diary.el (gnus-diary-time-format, gnus-summary-sort-by-schedule):
17087         * gnus-sum.el (gnus-summary-highlight):
17088         * pgg.el (pgg-sign-region, pgg-sign):
17089         * mail-source.el (mail-source-delete-old-incoming-confirm):
17090         * nndiary.el (nndiary-reminders): Fix typos in docstrings.
17091
17092 2007-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
17093
17094         * gnus-art.el (gnus-mime-view-part-externally)
17095         (gnus-mime-view-part-internally): Fix predicate function passed to
17096         completing-read.
17097
17098         * mm-decode.el (mm-image-fit-p): Return t if argument is not an image.
17099
17100         * gnus.el (gnus-update-message-archive-method): Add :version.
17101
17102 2007-06-01  Katsumi Yamaoka  <yamaoka@jpl.org>
17103
17104         * gnus.el (gnus-update-message-archive-method): New variable.
17105
17106         * gnus-start.el (gnus-setup-news): Update saved "archive" method
17107         according to gnus-message-archive-method if
17108         gnus-update-message-archive-method is non-nil.
17109
17110 2007-05-29  Katsumi Yamaoka  <yamaoka@jpl.org>
17111
17112         * gnus-sum.el (gnus-summary-limit-to-address): New function.
17113         Suggested by Loic Dachary <loic@dachary.org>.
17114         (gnus-summary-limit-map, gnus-summary-make-menu-bar): Add it.
17115
17116 2007-05-28  Katsumi Yamaoka  <yamaoka@jpl.org>
17117
17118         * message.el (message-pop-to-buffer): Add switch-function argument.
17119         (message-mail): Pass switch-function argument to it.
17120
17121 2007-05-25  Reiner Steib  <Reiner.Steib@gmx.de>
17122
17123         * mm-decode.el (mm-file-name-rewrite-functions): Make it customizable.
17124         Improve doc string.
17125
17126 2007-05-25  Katsumi Yamaoka  <yamaoka@jpl.org>
17127
17128         * gnus-art.el (gnus-header-from, gnus-header-subject, gnus-header-name)
17129         (gnus-header-content):
17130         * gnus-cite.el (gnus-cite-10):
17131         * gnus-srvr.el (gnus-server-closed):
17132         * gnus.el (gnus-group-mail-1, gnus-group-mail-1-empty)
17133         (gnus-group-mail-2, gnus-group-mail-2-empty, gnus-group-mail-3)
17134         (gnus-group-mail-3-empty, gnus-group-mail-low)
17135         (gnus-group-mail-low-empty, gnus-splash):
17136         * message.el (message-header-to, message-header-cc)
17137         (message-header-subject, message-header-other, message-header-name)
17138         (message-header-xheader, message-separator, message-cited-text)
17139         (message-mml): Lighten colors of faces used for dark background.
17140
17141 2007-05-24  Simon Josefsson  <simon@josefsson.org>
17142
17143         * nnimap.el (nnimap-need-unselect-to-notice-new-mail): Change default
17144         to t as an experiment.  Suggested by Greg Troxel <gdt@work.lexort.com>.
17145
17146 2007-05-24  Katsumi Yamaoka  <yamaoka@jpl.org>
17147
17148         * message.el (message-narrow-to-headers-or-head):
17149         Ignore mail-header-separator in the body.
17150
17151 2007-05-23  Katsumi Yamaoka  <yamaoka@jpl.org>
17152
17153         * mm-decode.el (mm-image-fit-p): Return t if image size is just the
17154         same as window size.
17155
17156 2007-05-22  Kevin Ryde  <user42@zip.com.au>
17157
17158         * message.el (message-font-lock-keywords): Use message-header-xheader
17159         face for "X-Foo", its apparent intended purpose.  Move "X-" pattern
17160         ahead of the anything pattern, to get it recognized.
17161
17162 2007-05-22  Katsumi Yamaoka  <yamaoka@jpl.org>
17163
17164         * dgnushack.el: Autoload ad-add-advice for XEmacs.  bbdb-com.el that
17165         spam.el loads uses it in the compiled defadvice form.
17166
17167 2007-05-12  Michaël Cadilhac  <michael@cadilhac.name>
17168
17169         * gnus-sum.el (gnus-articles-to-read)
17170         (gnus-summary-insert-old-articles): Don't truncate group name for
17171         `read-string'.
17172
17173         * gnus-util.el (gnus-limit-string): Delete this function.
17174
17175         * gnus-sum.el (gnus-simplify-subject-fully):
17176         Use `truncate-string-to-width' instead.
17177
17178 2007-05-11  Michaël Cadilhac  <michael@cadilhac.name>
17179
17180         * gnus-sum.el (gnus-summary-next-group-on-exit): New variable.
17181         Tell if, on summary exit, the next group has to be selected.
17182         (gnus-summary-exit): Use it.
17183
17184 2007-05-10  Reiner Steib  <Reiner.Steib@gmx.de>
17185
17186         * gnus-art.el (gnus-article-mode): Fix comment about displaying
17187         non-break space.
17188
17189 2007-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
17190
17191         * nnfolder.el (nnfolder-request-group, nnfolder-request-create-group):
17192         Check if group is not a directory.
17193         (nnfolder-request-expire-articles): Don't delete articles if the target
17194         group is not available.
17195
17196         * nnml.el (nnml-request-create-group): Properly check if group is not a
17197         file.
17198         (nnml-request-expire-articles): Don't delete articles if the target
17199         group is not available.
17200
17201         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
17202         Don't quote characters that are within parentheses.
17203
17204 2007-05-09  Katsumi Yamaoka  <yamaoka@jpl.org>
17205
17206         * gnus-sum.el (gnus-auto-select-on-ephemeral-exit): New variable.
17207         (gnus-handle-ephemeral-exit): Select article according to it.
17208
17209 2007-05-08  Reiner Steib  <Reiner.Steib@gmx.de>
17210
17211         * message.el (message-insert-formated-citation-line): Remove newline.
17212         (message-citation-line-format): Add final \n here so that the user can
17213         avoid a blank line.
17214
17215 2007-05-03  Dan Christensen  <jdc@uwo.ca>
17216
17217         * nndoc.el (nndoc-type-alist, nndoc-lanl-gov-announce-type-p)
17218         (nndoc-transform-lanl-gov-announce, nndoc-generate-lanl-gov-head):
17219         Update lanl/arXiv support.
17220
17221 2007-05-02  Reiner Steib  <Reiner.Steib@gmx.de>
17222
17223         * gnus.el: Bump version number.
17224
17225 2007-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17226
17227         * gnus.el (gnus-version-number): Bump version.
17228
17229 2007-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
17230
17231         * gnus.el: No Gnus v0.6 is released.
17232
17233 2007-04-27  Didier Verna  <didier@xemacs.org>
17234
17235         * gnus-util.el (gnus-orify-regexp): Move and rename to ...
17236         * gmm-utils.el (gmm-regexp-concat): ... here.
17237         * message.el: Don't require 'gnus-util.
17238         (message-dont-reply-to-names): Handle name change above.
17239         * gnus-sum.el (gnus-ignored-from-addresses): Ditto.
17240
17241 2007-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
17242
17243         * mm-util.el (mm-charset-synonym-alist): Don't make it a user option
17244         since the initial value varies according to the system.
17245
17246 2007-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
17247
17248         * mm-util.el (mm-charset-synonym-alist): Defcustom.
17249
17250 2007-04-25  NAKAJI Hiroyuki  <nakaji@jp.freebsd.org>  (tiny change)
17251
17252         * mm-util.el (mm-charset-synonym-alist): Map iso8859-1 to iso-8859-1.
17253
17254 2007-04-24  Didier Verna  <didier@xemacs.org>
17255
17256         Improve the type of gnus-ignored-from-addresses.
17257         * gnus-util.el (gnus-orify-regexp): New function.
17258         * message.el (gnus-util): Require it.
17259         * message.el (message-dont-reply-to-names): Use gnus-orify-regexp.
17260         * gnus-sum.el (gnus-ignored-from-addresses): New function.
17261         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Use it.
17262
17263 2007-04-24  Didier Verna  <didier@xemacs.org>
17264
17265         * gnus-sum.el:
17266         * gnus-utils.el: Fix some trailing whitespaces.
17267
17268 2007-04-23  Katsumi Yamaoka  <yamaoka@jpl.org>
17269
17270         * gnus-msg.el (gnus-summary-resend-message-edit): Add Gcc header.
17271         (gnus-summary-resend-bounced-mail): Ditto; search whole body for parent
17272         article's Message-ID; refer parent article in summary buffer.
17273
17274         * message.el (message-bounce): Call mime-to-mml.
17275
17276         * dgnushack.el (byte-optimize-form-code-walker): Fix the form which was
17277         not helpful to Emacs 21.1 and 21.2 for detecting a bug that does not
17278         optimize and/or forms properly.
17279
17280 2007-04-22  Reiner Steib  <Reiner.Steib@gmx.de>
17281
17282         * dgnushack.el (with-syntax-table): XEmacs bug has been fixed.  Add
17283         URL.
17284
17285 2007-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
17286
17287         * gnus-msg.el (gnus-summary-supersede-article): Add Gcc header.
17288
17289 2007-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
17290
17291         * gnus-art.el (gnus-mime-strip-charset-parameters): New function.
17292         (gnus-mime-view-part-as-charset): Use it; redisplay subpart currently
17293         displayed of multipart/alternative part if it is invoked from summary
17294         buffer.
17295
17296         * mm-view.el (mm-inline-text-html-render-with-w3m)
17297         (mm-inline-text-html-render-with-w3m-standalone)
17298         (mm-inline-render-with-function): Use mail-parse-charset by default.
17299
17300 2007-04-18  Levin Du  <zslevin@gmail.com>  (tiny change)
17301
17302         * parse-time.el (parse-time-string-chars): Check if CHAR
17303         is less than the length of parse-time-syntax.
17304
17305 2007-04-17  Katsumi Yamaoka  <yamaoka@jpl.org>
17306
17307         * gnus-uu.el (gnus-uu-digest-mail-forward): Pull articles processed
17308         from gnus-newsgroup-processable.
17309
17310 2007-04-16  Didier Verna  <didier@xemacs.org>
17311
17312         * gnus-msg.el (gnus-configure-posting-styles):
17313         Handle message-signature-directory properly with :file syntax.
17314         Reported by "Leo".
17315
17316 2007-04-11  Didier Verna  <didier@xemacs.org>
17317
17318         New user option: message-signature-directory.
17319         * gnus-msg.el (gnus-configure-posting-styles): Support it.
17320         * message.el (message-insert-signature): Ditto.
17321         * message.el (message-signature-file): Doc update.
17322         * message.el (message-signature-directory): New.
17323
17324 2007-04-10  Katsumi Yamaoka  <yamaoka@jpl.org>
17325
17326         * gnus-msg.el (gnus-inews-yank-articles):
17327         Use message-exchange-point-and-mark instead of exchange-point-and-mark.
17328
17329 2007-04-09  Katsumi Yamaoka  <yamaoka@jpl.org>
17330
17331         * message.el (message-yank-original): Make sure cited text ends with
17332         newline; don't exchange point and mark.
17333
17334 2007-04-07  Chong Yidong  <cyd@stupidchicken.com>
17335
17336         * tls.el (open-tls-stream): Properly handle case where there
17337         is no associated buffer.
17338
17339 2007-04-03  Thien-Thi Nguyen  <ttn@gnu.org>
17340
17341         * gnus-msg.el (gnus-inews-yank-articles): Fix bug: After
17342         message-yank-original, make sure (< mark TEXT point).
17343
17344 2007-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
17345
17346         * message.el (message-fill-column): New variable.
17347         (message-mode): Use it.  Add comment on a possible new hook.
17348
17349         * nnmail.el (nnmail-spool-file): Mark as obsolete.
17350         (nnmail-get-new-mail): Reformat.
17351
17352         * gnus-registry.el (gnus-registry-cache-save): Add FIXME comment.
17353
17354         * gmm-utils.el: Fix Commentary.
17355         (gmm-tool-bar-from-list): Fix typo in doc string.
17356
17357 2007-03-27  Thien-Thi Nguyen  <ttn@gnu.org>
17358
17359         * message.el (message-yank-original): Don't switch point and mark
17360         unnecessarily to put point and mark as documented.
17361
17362 2007-03-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17363
17364         * message.el (message-put-addresses-in-ecomplete): Only fetch headers
17365         from the message heads.
17366
17367 2007-03-25  Kevin Greiner  <kevin.greiner@compsol.cc>
17368
17369         * gnus-art.el (gnus-article-set-window-start): Do nothing when the
17370         article buffer does not have a window.  This may not be the best
17371         solution but is certainly better than setting the start of the null,
17372         that is the current, window.
17373
17374 2007-03-24  Reiner Steib  <Reiner.Steib@gmx.de>
17375
17376         * gnus-draft.el (gnus-draft-setup-hook): New hook.
17377         (gnus-draft-setup): Run it.
17378
17379         * gnus-score.el (gnus-inhibit-slow-scoring): New variable, renamed from
17380         gnus-score-fast-scoring.  Allow regexp.
17381         (gnus-score-headers): Use it.
17382
17383         * gnus-util.el (gnus-emacs-version): Include "no MULE" in no-MULE
17384         XEmacs.
17385
17386         * gnus-art.el (gnus-article-browse-html-article): Fix typo in doc
17387         string.
17388         (gnus-button-alist): Also catch `<f1> k ...'.
17389         (gnus-treat-display-x-face): Fix doc string.
17390
17391 2007-03-25  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17392
17393         * gnus-msg.el (gnus-setup-message, gnus-inews-add-send-actions): Move
17394         evaluation of gnus-extended-version to ensure correct generation of the
17395         User-Agent header when message-generate-headers-first is used.
17396
17397 2007-03-24  Simon Josefsson  <simon@josefsson.org>
17398
17399         * hashcash.el (hashcash-generate-payment-async): Don't crash if
17400         hashcash-path is nil.  Don't call callback with incorrect number of
17401         parameters if val is 0.
17402
17403 2007-03-20  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17404
17405         * message.el (message-required-news-headers):
17406         * gnus-util.el (gnus-intern-safe): Fix typo in docstring.
17407
17408 2007-03-18  Thien-Thi Nguyen  <ttn@gnu.org>
17409
17410         * tls.el (open-tls-stream): In handshake-waiting loop,
17411         don't wait more if there is output available to process.
17412
17413 2007-03-17  Thien-Thi Nguyen  <ttn@gnu.org>
17414
17415         * tls.el (tls-program): Doc fix.
17416
17417 2007-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
17418
17419         * message.el (message-generate-new-buffers): Change the meaning of the
17420         nil value; add `standard' to the choices; treat t as `unique'; improve
17421         doc string.
17422         (gnus-select-frame-set-input-focus): Autoload.
17423         (message-buffer-name): Search for the existing message buffer if
17424         message-generate-new-buffers is nil or `standard'; treat the value t of
17425         message-generate-new-buffers as `unique'.
17426         (message-pop-to-buffer): Raise the frame already displaying the message
17427         buffer; clear the echo area after querying.
17428         (message-setup): Pass the `continue' argument to compose-mail.
17429         (message-mail): Prefer `switch-function' if it is given; search for the
17430         existing message buffer if the `continue' argument is non-nil; pass
17431         continue and switch-function arguments to compose-mail by way of
17432         message-setup.
17433         (message-mail-other-window): Adjust argument of message-setup.
17434         (message-mail-other-frame): Ditto.
17435
17436 2007-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>
17437
17438         * gnus-cite.el (font-lock-set-defaults): Autoload it for Emacs.
17439         (gnus-message-citation-mode): Require font-lock for XEmacs; make sure
17440         to turn font-lock on when turning gnus-message-citation-mode on.
17441
17442 2007-03-06  Daiki Ueno  <ueno@unixuser.org>
17443
17444         * mml-smime.el (mml-smime-use): New variable; default to use openssl.
17445         (mml-smime-function-alist): New variable; add epg as the backend.
17446         * mml-sec.el (mml-smime-sign): Don't require mml-smime, autoload
17447         mml-smime- functions instead.
17448         * mm-view.el: Require smime.
17449
17450 2007-03-05  Didier Verna  <didier@xemacs.org>
17451
17452         * gnus-topic.el (gnus-topic-hierarchical-parameters): Perform merging
17453         instead of just inheritance for posting styles.
17454         * gnus.el (gnus-group-fast-parameter): Fix typo in comment.
17455
17456 2007-02-24  Chris Moore  <dooglus@gmail.com>
17457
17458         * pgg-pgp5.el (pgg-pgp5-encrypt-region):
17459         * pgg-pgp.el (pgg-pgp-encrypt-region):
17460         * pgg-gpg.el (pgg-gpg-encrypt-region):
17461         Check pgg-encrypt-for-me if no other recipients.
17462
17463 2007-02-24  John Paul Wallington  <jpw@pobox.com>
17464
17465         * tls.el (tls-certtool-program): Fix custom type.
17466
17467 2007-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
17468
17469         * gnus-cite.el (gnus-message-search-citation-line): Use point-at-bol
17470         and point-at-eol instead of line-(beginning|end)-position.
17471
17472         * assistant.el (assistant-parse-buffer): Ditto.
17473
17474         * netrc.el (netrc-parse-services): Ditto.
17475
17476 2007-02-28  Daiki Ueno  <ueno@unixuser.org>
17477
17478         * mml2015.el (mml2015-epg-find-usable-key): New function.
17479         (mml2015-epg-sign): Use it.
17480         (mml2015-epg-encrypt): Use it.
17481
17482 2007-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
17483
17484         * message.el (message-make-in-reply-to): Quote name containing
17485         non-ASCII characters.  It will make the RFC2047 encoder cause an error
17486         if there are special characters.  Reported by NAKAJI Hiroyuki
17487         <nakaji@jp.freebsd.org>.
17488
17489 2007-02-27  Didier Verna  <didier@xemacs.org>
17490
17491         Include the group parameters as well as the topic ones in the
17492         inheritance filter process.
17493         * gnus-topic.el (gnus-topic-hierarchical-parameters): New optional
17494         argument GROUP-PARAMS-LIST.
17495         * gnus-topic.el (gnus-group-topic-parameters): Use it.
17496
17497 2007-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
17498
17499         * nntp.el (nntp-never-echoes-commands)
17500         (nntp-open-connection-functions-never-echo-commands): New variables.
17501         (nntp-send-command): Use them.
17502
17503 2007-02-20  Daiki Ueno  <ueno@unixuser.org>
17504
17505         * mml2015.el (mml2015-epg-verify): Simplify.
17506
17507 2007-02-19  Katsumi Yamaoka  <yamaoka@jpl.org>
17508
17509         * mml.el (mml-content-disposition-alist): New user option.
17510         (mml-content-disposition): New function.
17511         (mml-insert-mime-headers, mml-minibuffer-read-disposition): Use it.
17512         (mml-attach-file, mml-dnd-attach-file): Pass file name to it.
17513
17514 2007-02-19  Daiki Ueno  <ueno@unixuser.org>
17515
17516         * mml2015.el (mml2015-epg-verify): Convert LF to CRLF before signature
17517         verification.
17518
17519 2007-02-15  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17520
17521         * nnweb.el (nnweb-google-parse-1): Fix date parsing to also match on
17522         articles posted in the last 24 hours.
17523
17524 2007-02-14  Chong Yidong  <cyd@stupidchicken.com>
17525
17526         * smiley.el (smiley-regexp-alist): Add "dead" smiley.
17527
17528 2007-02-14  Michaël Cadilhac  <michael@cadilhac.name>
17529
17530         * nntp.el (nntp-send-command): Don't wait for echoes when
17531         nntp-open-ssl-stream is used.
17532
17533 2007-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
17534
17535         * gnus-cite.el (gnus-test-font-lock-add-keywords)
17536         (gnus-message-add-citation-keywords)
17537         (gnus-message-remove-citation-keywords): Remove.
17538         (gnus-message-citation-mode): Instead of modifying font-lock-keywords
17539         directly, make the variables in font-lock-defaults buffer-local, add
17540         gnus-message-citation-keywords to them and then update the value of
17541         font-lock-keywords.
17542
17543 2007-02-09  Katsumi Yamaoka  <yamaoka@jpl.org>
17544
17545         * message.el (message-cite-original-1): Don't call
17546         gnus-article-highlight-citation.
17547
17548         * gnus-cite.el (gnus-cite-parse): Work with two or more MS-type
17549         citations; fix line count.
17550
17551 2007-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
17552
17553         * gnus-cite.el (gnus-test-font-lock-add-keywords): New function.
17554         (gnus-message-add-citation-keywords)
17555         (gnus-message-remove-citation-keywords): Use it; fix the emulating
17556         versions of font-lock-add-keywords and font-lock-remove-keywords to
17557         work with XEmacs correctly.
17558
17559 2007-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
17560
17561         * gnus-cite.el (gnus-cite-face-list): Set the values of
17562         gnus-message-max-citation-depth and gnus-message-citation-keywords.
17563         (gnus-message-max-citation-depth): Use defvar rather than defconst.
17564         (gnus-message-cite-prefix-regexp): New variable.
17565         (gnus-message-search-citation-line): Use it; protect against long
17566         citation prefix; fill match data with nil rather than 0 for XEmacs; set
17567         the 0th match data for Emacs.
17568         (gnus-message-citation-keywords): Set LAXMATCH flag in every HIGHLIGHT.
17569         (gnus-message-add-citation-keywords): Append keywords rather than
17570         prepending; emulate font-lock-add-keywords if it is not available.
17571         (gnus-message-remove-citation-keywords):
17572         Emulate font-lock-remove-keywords if it is not available.
17573
17574         * gnus-msg.el (gnus-message-highlight-citation): Default to t.
17575
17576         * message.el (message-cite-prefix-regexp): Set the value of
17577         gnus-message-cite-prefix-regexp.
17578
17579 2007-02-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17580
17581         * nnweb.el (nnweb-google-parse-1): Update parser.
17582
17583 2007-01-29  Juanma Barranquero  <lekktu@gmail.com>
17584
17585         * gnus-art.el (gnus-button-prefer-mid-or-mail): Fix typo in docstring.
17586
17587 2007-01-28  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17588
17589         * nnslashdot.el (nnslashdot-request-article): Update end-of-article
17590         regexp.
17591
17592 2007-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
17593
17594         * uudecode.el (uudecode-string-to-multibyte): New function emulating
17595         string-to-multibyte.
17596         (uudecode-decode-region-internal): Use it.
17597
17598         * lpath.el: Fbind string-as-multibyte for XEmacs.
17599
17600 2007-01-23  Reiner Steib  <Reiner.Steib@gmx.de>
17601
17602         * gnus-score.el (gnus-home-score-file, gnus-home-adapt-file):
17603         Fix custom choice.
17604
17605         * gnus-art.el (gnus-signature-limit): Fix custom choice.
17606
17607 2007-01-22  Daiki Ueno  <ueno@unixuser.org>
17608
17609         * mm-util.el (mm-inhibit-file-name-handlers): Add epa-file-handler.
17610
17611         * mm-decode.el (mm-save-part-to-file): Use `mm-write-region' instead of
17612         `write-region' to respect `mm-inhibit-file-name-handlers'.
17613
17614 2007-01-19  Reiner Steib  <Reiner.Steib@gmx.de>
17615
17616         * nnsoup.el (nnsoup-directory, nnsoup-packer, nnsoup-packet-directory):
17617         Use gnus-home-directory instead of "~/" or "$HOME".
17618
17619 2007-01-17  Teodor Zlatanov  <tzz@lifelogs.com>
17620
17621         * encrypt.el (encrypt-insert-file-contents): Add better prompt
17622         to mention filename.
17623         Add comments at beginning regarding usage.
17624         (encrypt-write-file-contents): Change interactive so a string is
17625         acceptable.  If the file has no associated model, show an error instead
17626         of a nonsense prompt.
17627
17628 2007-01-16  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
17629
17630         * spam.el (spam-bsfilter-ham-switch): Fix typo.
17631         Thanks to Yoshihiko Yamada for kind notification of this typo.
17632
17633 2007-01-12  Kenichi Handa  <handa@m17n.org>
17634
17635         * uudecode.el (uudecode-decode-region-internal): Make it work in a
17636         multibyte buffer.
17637
17638 2007-01-14  Reiner Steib  <Reiner.Steib@gmx.de>
17639
17640         * gnus-score.el (gnus-score-fast-scoring): New variable.
17641         (gnus-score-headers): Use it.
17642
17643         * gnus-sum.el (gnus-auto-select-first): Improve doc string.
17644
17645         * message.el (message-cite-original-1):
17646         Call gnus-article-highlight-citation if requested.
17647         (message-make-from): Allow name and address as optional arguments.
17648
17649         * gnus-cite.el (gnus-article-highlight-citation): Add SAME-BUFFER arg.
17650
17651         * gnus-art.el (gnus-article-browse-html-article): Add warning about web
17652         bugs to doc string.
17653         (gnus-button-alist): Add mid\\|message-id.
17654         (gnus-button-fetch-group): Extend for use in
17655         `browse-url-browser-function'.
17656         (gnus-button-url-regexp): Try to catch paired parentheses like in
17657         Wikipedia URLs.
17658
17659         * gnus-sum.el (gnus-summary-reparent-children): Another doc string fix.
17660         Suggested by Simon Krahnke <overlord@gmx.li>.
17661
17662 2007-01-13  Romain Francoise  <romain@orebokech.com>
17663
17664         * nnml.el (nnml-use-compressed-files): Fix typo in docstring.
17665         Update copyright.
17666
17667 2007-01-13  Patric Mueller  <bhaak@bigfoot.com>  (tiny change)
17668
17669         * gnus-sum.el (gnus-summary-reparent-children): Fix typo in doc string.
17670
17671 2007-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
17672
17673         * gnus-registry.el (gnus-registry-unfollowed-groups)
17674         (gnus-registry-split-fancy-with-parent): Fix documentation.
17675
17676 2007-01-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17677
17678         * spam-report.el (spam-report-gmane-internal): Speed up spam reporting
17679         from nnweb groups.
17680
17681 2006-12-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17682
17683         * spam-report.el (spam-report-gmane-internal): Add necessary "/" to
17684         Xref urls.  Erase buffer before requesting head.
17685
17686         * mm-decode.el (mm-display-external): Use itimer function for XEmacs.
17687
17688 2007-01-07  Reiner Steib  <Reiner.Steib@gmx.de>
17689
17690         * gnus-soup.el (gnus-soup): New custom group.  Make user variables
17691         customizable.
17692
17693 2007-01-05  Daiki Ueno  <ueno@unixuser.org>
17694
17695         * mml2015.el (mml2015-epg-sign): Ask user whether to skip or abort if
17696         no signing key is found.
17697         (mml2015-epg-encrypt): Ask user whether to skip or abort if
17698         no encrypting and/or signing key is found.
17699
17700 2007-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
17701
17702         * spam-report.el (spam-report-gmane-spam): Remove redundant message.
17703
17704 2007-01-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17705
17706         * nnweb.el (nnweb-gmane-create-mapping): Put back code to merge the
17707         headers read from disk with the ones newly found in the current search.
17708         This should no longer cause problems, because the article numbers in
17709         Gmane's `nov.php' output are ignored since the previous change.
17710
17711 2007-01-02  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17712
17713         * gmm-utils.el (gmm-tool-bar-style): Fix custom type.
17714
17715 2007-01-01  Katsumi Yamaoka  <yamaoka@jpl.org>
17716
17717         * lpath.el: Fbind clear-string and cp-supported-codepages; don't fbind
17718         replace-regexp-in-string; bind url-version; fbind display-images-p and
17719         timer-set-function for XEmacs; bind timer-list for XEmacs; fbind
17720         find-face and set-itimer-function for Emacs; bind itimer-list for
17721         Emacs.
17722
17723         * mm-decode.el (mm-display-external): Use itimer function for XEmacs.
17724
17725 2007-01-01  Romain Francoise  <romain@orebokech.com>
17726
17727         * gnus-sum.el (gnus-summary-make-menu-bar): Fix typo.
17728
17729 2006-12-31  Steve Youngs  <steve@sxemacs.org>
17730
17731         * gnus-cite.el: Load easy-mmode at compile time for (S)XEmacs to get
17732         `define-minor-mode' macro definition expanded properly.
17733         (gnus-message-citation-mode): This is now OK for (S)XEmacs so don't
17734         exclude it there.
17735
17736         * gnus-msg.el (gnus-message-highlight-citation): Revert Reiner's patch
17737         of 2006-12-30.  The default is nil on (S)XEmacs already because of the
17738         `fboundp' test.
17739         (gnus-message-citation-mode): Revert Reiner's patch of 2006-12-30.
17740         This is OK to autoload in (S)XEmacs now.
17741
17742 2006-12-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17743
17744         * gnus-sum.el (gnus-summary-limit-to-singletons): New command and
17745         keystroke.
17746         (gnus-summary-limit-to-singletons): Fix typo.
17747
17748         * spam-report.el (spam-report-gmane-internal): Fall back on Xref if all
17749         else fails.
17750
17751 2006-12-30  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17752
17753         * gnus-cite.el (turn-off-gnus-message-citation-mode): Fix typo in
17754         docstring.
17755
17756         * gnus-sum.el (gnus-summary-insert-ticked-articles): New command.
17757         (gnus-summary-make-menu-bar, gnus-summary-buffer-map): Bind it.
17758         (gnus-summary-insert-dormant-articles): Fix typo in message.
17759
17760 2006-12-30  Reiner Steib  <Reiner.Steib@gmx.de>
17761
17762         * gnus-msg.el (gnus-message-highlight-citation): Ensure default to be
17763         nil for XEmacs.
17764         (gnus-message-citation-mode): Don't autoload in XEmacs.
17765
17766         * gnus-cite.el (gnus-message-citation-mode): Don't define in XEmacs.
17767
17768 2006-12-29  Jouni K. Seppänen  <jks@iki.fi>
17769
17770         * nnimap.el (nnimap-expunge-search-string):
17771         Mention nnimap-search-uids-not-since-is-evil in docstring.
17772
17773 2006-12-28  Reiner Steib  <Reiner.Steib@gmx.de>
17774
17775         * spam.el: Revert to make-obsolete-variable because
17776         define-obsolete-variable-alias is not supported in Emacs 21.
17777
17778         * spam.el (spam-ifile-path, spam-ifile-database-path)
17779         (spam-bogofilter-path): Use define-obsolete-variable-alias instead of
17780         make-obsolete-variable.
17781         (spam-bsfilter-path, spam-bsfilter-program)
17782         (spam-spamassassin-path, spam-spamassassin-program)
17783         (spam-sa-learn-path, spam-sa-learn-program): Rename variables.
17784         Don't use "path" inappropriately.
17785         (spam-check-spamassassin, spam-spamassassin-register-with-sa-learn)
17786         (spam-check-bsfilter, spam-bsfilter-register-with-bsfilter): Use new
17787         variable names.
17788
17789 2006-12-28  Daiki Ueno  <ueno@unixuser.org>
17790
17791         * gnus-sum.el (gnus-summary-next-article): Make sure we are in the
17792         summary buffer.
17793
17794         * password.el (password-cache-remove): Use clear-string to burn
17795         password, if available.
17796
17797 2006-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
17798
17799         * gnus-msg.el (gnus-message-citation-mode): Fix autoload.
17800
17801         * gnus-cite.el (gnus-message-highlight-citation): Move to gnus-msg.el.
17802
17803         * gnus-msg.el (gnus-setup-message): Add gnus-message-citation-mode.
17804         (gnus-message-highlight-citation): Move defcustom here from
17805         gnus-cite.el.
17806         (gnus-message-citation-mode): Autoload.
17807
17808         * gnus-cite.el: Adjust Oliver's code to Gnus namespace.  Add some
17809         checks to make it compile with XEmacs.
17810         (gnus-message-citation-mode): New minor mode.
17811         (gnus-message-max-citation-depth, gnus-message-citation-keywords)
17812         (gnus-message-highlight-citation): New variables.
17813         (gnus-message-search-citation-line)
17814         (gnus-message-add-citation-keywords)
17815         (gnus-message-remove-citation-keywords)
17816         (turn-on-gnus-message-citation-mode)
17817         (turn-off-gnus-message-citation-mode): New functions.
17818
17819 2006-12-26  Oliver Scholz  <epameinondas@gmx.de>
17820
17821         * gnus-cite.el: Enable highlighting of different citation levels in
17822         message-mode.
17823
17824 2006-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
17825
17826         * message.el (message-make-fqdn): Fix comment.
17827         (message-bogus-system-names): Add ".local".
17828
17829         * spam.el (spam-ifile-path, spam-ifile-program)
17830         (spam-ifile-database-path, spam-ifile-database)
17831         (spam-bogofilter-path, spam-bogofilter-program): Rename variables.
17832         Don't use "path" inappropriately.
17833         (spam-spamoracle-database, spam-get-ifile-database-parameter): Fix doc
17834         strings.
17835         (spam-check-ifile, spam-ifile-register-with-ifile)
17836         (spam-check-bogofilter, spam-bogofilter-register-with-bogofilter):
17837         Use new variable names.
17838
17839         * gnus-art.el (gnus-treat-display-x-face, gnus-treat-display-face)
17840         (gnus-treat-display-smileys): Simplify using
17841         gnus-image-type-available-p.
17842
17843         * gnus-ems.el (gnus-image-type-available-p): Use display-images-p if
17844         available.
17845
17846         * gnus-xmas.el (gnus-xmas-image-type-available-p):
17847         Use `display-images-p' if available.
17848
17849 2006-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
17850
17851         * nnrss.el (nnrss-fetch): Replace buffer's contents with the decoded
17852         one after turning on the buffer's multibyteness instead of decoding
17853         them directly in the unibyte buffer that causes unexpected conversion
17854         in Emacs 23 (unicode).
17855
17856 2006-12-21  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17857
17858         * message.el (message-generate-hashcash): Fix custom type.
17859
17860 2006-12-20  Reiner Steib  <Reiner.Steib@gmx.de>
17861
17862         * gnus-sum.el (gnus-summary-recenter): Remove debug messages.
17863
17864 2006-12-20  Reiner Steib  <Reiner.Steib@gmx.de>
17865
17866         * gnus-group.el (gnus-group-tool-bar-gnome): Exchange connect and
17867         disconnect icons.  Add help text.
17868
17869 2006-12-20  Teodor Zlatanov  <tzz@lifelogs.com>
17870
17871         * spam.el (spam-extra-header-to-number): CRM114 spam score is
17872         negated to be consistent with the others we handle.
17873
17874 2006-12-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17875
17876         * gnus-art.el (gnus-article-setup-buffer): Actually set the local
17877         version of gnus-summary-buffer to something, so that we can use two
17878         article buffers at the same time.
17879
17880 2006-12-18  Teodor Zlatanov  <tzz@lifelogs.com>
17881
17882         * spam.el (spam-necessary-extra-headers): Make spam-use-regex-headers
17883         trigger all the extra headers.
17884         (spam-extra-header-to-number): Don't require spam-use-crm114 for header
17885         sorting.
17886
17887 2006-12-14  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
17888
17889         * nnweb.el (nnweb-gmane-create-mapping): Keep the mapping stable for
17890         solid groups.
17891
17892 2006-12-17  Chong Yidong  <cyd@stupidchicken.com>
17893
17894         * pgg-gpg.el (pgg-gpg-use-agent): Default to t.
17895
17896 2006-12-13  Reiner Steib  <Reiner.Steib@gmx.de>
17897
17898         * legacy-gnus-agent.el: Add Copyright notice.
17899
17900 2006-12-12  Chong Yidong  <cyd@stupidchicken.com>
17901
17902         * gnus-sum.el (gnus-make-thread-indent-array): Fix last change.
17903
17904 2006-12-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17905
17906         * nnweb.el (nnweb-gmane-search): Placeholder TOPDOC setting.
17907
17908         * gnus-sum.el (gnus-summary-recenter): Force setting the window start
17909         to make it work reliably in CVS Emacs.
17910         (gnus-summary-limit-strange-charsets-predicate)
17911         (gnus-summary-limit-to-predicate): New functions.
17912
17913 2006-12-08  Chong Yidong  <cyd@stupidchicken.com>
17914
17915         * gnus-sum.el (gnus-make-thread-indent-array): New optional arg
17916         specifying array size.
17917         (gnus-summary-insert-line, gnus-summary-prepare-threads): Regrow indent
17918         array if it is too small.
17919         (gnus-sort-threads-recursive): Rename from gnus-sort-thread-1.
17920         (gnus-sort-threads-loop): New function.
17921
17922 2006-12-06  Chris Moore  <dooglus@gmail.com>
17923
17924         * gnus-sum.el (gnus-sort-threads, gnus-summary-limit-children):
17925         Use `max' to avoid the value of `max-lisp-eval-depth' decreasing.
17926
17927 2006-12-04  Jouni K. Seppänen  <jks@iki.fi>
17928
17929         * mm-url.el (mm-url-predefined-programs): Call curl with correct
17930         options.
17931
17932 2006-12-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17933
17934         * spam-report.el (spam-report-url-ping-plain): Wait for output to avoid
17935         DOS-ing the recipient.
17936
17937         * nnweb.el (nnweb-gmane-create-mapping): Use the article number from
17938         the headers when creating the mapping to avoid mismappings.
17939         (nnweb-gmane-create-mapping): Always nix out old mapping.
17940
17941 2006-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
17942
17943         * message.el (message-signed-or-encrypted-p): Bind mm-decrypt-option
17944         and mm-verify-option to never.
17945
17946 2006-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
17947
17948         * message.el (message-signed-or-encrypted-p): New function.
17949         (message-forward-make-body): Use it.
17950
17951         * mml2015.el (mml2015-pgg-clear-verify, mml2015-epg-clear-verify):
17952         Replace encode-coding-string with mm-encode-coding-string.
17953
17954 2006-11-29  Katsumi Yamaoka  <yamaoka@jpl.org>
17955
17956         * nneething.el (nneething-decode-file-name):
17957         Replace decode-coding-string with mm-decode-coding-string.
17958
17959         * gnus-int.el (gnus-open-server): Say failed server's name.
17960
17961 2006-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
17962
17963         * pgg-pgp.el (pgg-pgp-process-region): Change `args' from a list of
17964         strings to a single string.  Quote `errors-file-name'.
17965         (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region, pgg-pgp-sign-region)
17966         (pgg-pgp-verify-region, pgg-pgp-insert-key, pgg-pgp-snarf-keys-region):
17967         Adjust calls.  Use `shell-quote-argument'.
17968
17969 2006-11-24  Juanma Barranquero  <lekktu@gmail.com>
17970
17971         * gnus-agent.el (gnus-agent-expire-unagentized-dirs)
17972         (gnus-agent-regenerate-group): Fix space/tab mixup in messages.
17973
17974         * gnus-art.el (gnus-article-x-face-command, gnus-numeric-save-name):
17975         * gnus-group.el (gnus-group-sort-function, gnus-group-line-format)
17976         (gnus-group-mode, gnus-group-read-group, gnus-group-delete-group)
17977         (gnus-group-make-directory-group, gnus-group-transpose-groups):
17978         * gnus-start.el (gnus-options-subscribe, gnus-options-not-subscribe)
17979         (gnus-subscribe-newsgroup, gnus-1):
17980         * gnus-sum.el (gnus-summary-make-false-root, gnus-make-threads):
17981         * gnus.el (gnus-nntp-server, gnus-use-cross-reference)
17982         (gnus-valid-select-methods, total-expire, gnus-summary-line-format)
17983         (gnus-group-read-only-p): Fix space/tab mixup in docstrings.
17984
17985 2006-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17986
17987         * gnus-sum.el (gnus-summary-limit-to-headers): New command and
17988         keystroke.
17989         (gnus-summary-limit-to-bodies): Implement headersp.
17990
17991 2006-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17992
17993         * dns.el (query-dns): Protect against "Process dns deleted" strings.
17994
17995 2006-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
17996
17997         * mm-util.el (mm-string-to-multibyte): Alias to identity in XEmacs.
17998
17999 2006-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18000
18001         * message.el (message-generate-hashcash): Expand range of values to
18002         include `opportunistic'.
18003         (message-send-mail): Use it.
18004
18005 2006-11-18  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18006
18007         * mm-uu.el (mm-uu-pgp-signed-extract-1): Make last fix more thorough
18008         and comment it.
18009
18010         * nnslashdot.el (nnslashdot-retrieve-headers-1): Update regexp.
18011
18012 2006-11-15  Reiner Steib  <Reiner.Steib@gmx.de>
18013
18014         * gnus-util.el (gnus-extract-address-components): Improve comment.
18015
18016 2006-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
18017
18018         * gnus-util.el (gnus-extract-address-components): Work with address in
18019         which the name portion contains @.
18020
18021         * lpath.el: Fbind custom-autoload.
18022
18023 2006-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
18024
18025         * gnus.el (gnus-start): Move custom group up.
18026         (gnus-select-method): Don't autoload, but make it available for
18027         `customize-variable'.
18028         (gnus-getenv-nntpserver): Don't autoload.
18029
18030 2006-11-14  Teodor Zlatanov  <tzz@lifelogs.com>
18031
18032         * spam.el: Revert to 7.82 (removed changes since 2006-10-16).
18033
18034 2006-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
18035
18036         * message.el (message-sendmail-extra-arguments): New variable.
18037         (message-send-mail-with-sendmail): Use it.
18038
18039 2006-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
18040
18041         * mml.el (mml-generate-mime-1): Use mm-string-as-unibyte instead of
18042         mm-with-unibyte-current-buffer to make string unibyte.
18043
18044         * mm-decode.el (mm-insert-part): Use mm-string-to-multibyte instead of
18045         mm-string-as-multibyte.
18046
18047 2006-11-14  Daiki Ueno  <ueno@unixuser.org>
18048
18049         * mml2015.el (mml2015-epg-sign): Prefix "pgp-" to a micalg value.
18050         Reported by Werner Koch <wk@gnupg.org>.
18051
18052 2006-11-14  Daiki Ueno  <ueno@p360>
18053
18054         * mml2015.el: Autoload epa-select-keys when compiling.
18055
18056 2006-11-13  Daiki Ueno  <ueno@unixuser.org>
18057
18058         * mml2015.el (mml2015-epg-sign): Save the signing keys in
18059         message-options.
18060         (mml2015-epg-encrypt): Save the recipient keys in message-options.
18061
18062 2006-11-13  Daiki Ueno  <ueno@unixuser.org>
18063
18064         * mml2015.el (mml2015-epg-encrypt): Remove backward compatibility for
18065         EasyPG (< 0.0.6).
18066         (mml2015-always-trust): New user option.
18067         (mml2015-epg-passphrase-callback): Display key ID on the passphrase
18068         prompt.
18069
18070 2006-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
18071
18072         * nntp.el (nntp-authinfo-force): New variable.
18073         (nntp-send-authinfo): Use it.
18074
18075 2006-11-09  Reiner Steib  <Reiner.Steib@gmx.de>
18076
18077         * message.el (message-strip-subject-encoded-words): Allow _not_ to
18078         decode encoded words.  Improve prompt.  Add comment about forwarding.
18079         (message-replacement-char): Move up.
18080
18081 2006-11-08  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
18082
18083         * gnus-sum.el (gnus-summary-catchup): Use gnus-sorted-intersection
18084         instead of gnus-intersection because arguments of gnus-sorted-nunion
18085         must be sorted.  This avoids corruption of gnus-newsgroup-unreads.
18086
18087 2006-11-07  Reiner Steib  <Reiner.Steib@gmx.de>
18088
18089         * message.el (message-strip-subject-encoded-words): Reformat prompt.
18090         (message-simplify-subject-functions):
18091         Enable message-strip-subject-encoded-words by default.
18092
18093 2006-11-06  Reiner Steib  <Reiner.Steib@gmx.de>
18094
18095         * message.el (message-strip-subject-encoded-words): New function.
18096         (message-simplify-subject-functions): New variable.
18097         (message-simplify-subject): Use it.  Fix typo in doc string.
18098         Support message-strip-subject-encoded-words.
18099
18100 2006-11-03  Juanma Barranquero  <lekktu@gmail.com>
18101
18102         * gnus-diary.el (gnus-diary-delay-format-function):
18103         * nndiary.el (nndiary-reminders):
18104         * nnsoup.el (nnsoup-always-save): Use "non-nil" in docstrings.
18105
18106 2006-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
18107
18108         * gnus-art.el (article-hide-boring-headers): Fetch date from
18109         gnus-original-article-buffer to avoid problems with localized date
18110         strings.
18111
18112 2006-10-30  Katsumi Yamaoka  <yamaoka@jpl.org>
18113
18114         * html2text.el (html2text-format-tags): Avoid infloop on open tags.
18115
18116 2006-10-29  Reiner Steib  <Reiner.Steib@gmx.de>
18117
18118         * mm-util.el (mm-codepage-iso-8859-list, mm-codepage-ibm-list):
18119         New variables.
18120         (mm-setup-codepage-iso-8859, mm-setup-codepage-ibm): New functions.
18121         (mm-charset-synonym-alist): Move some entries to
18122         mm-codepage-iso-8859-list.
18123         (mm-charset-synonym-alist, mm-charset-override-alist):
18124         Add iso-8859-8/windows-1255 and iso-8859-9/windows-1254.
18125
18126 2006-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
18127
18128         * gnus-sum.el (gnus-set-mode-line): Quote % in group name.
18129
18130 2006-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
18131
18132         * gnus-agent.el (gnus-agent-make-mode-line-string): Make it compatible
18133         with Emacs 21 and XEmacs.
18134
18135 2006-10-27  Teodor Zlatanov  <tzz@lifelogs.com>
18136
18137         * spam.el (spam-parse-address): New function for better parsing,
18138         catching errors, etc.
18139         (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list): Use it.
18140
18141 2006-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
18142
18143         * mm-view.el: Add interactive arg to html2text autoload.
18144
18145 2006-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
18146
18147         * gnus-sum.el (gnus-summary-move-article): Use no-encode for `B B'.
18148
18149 2006-10-24  Reiner Steib  <Reiner.Steib@gmx.de>
18150
18151         * mm-util.el (mm-codepage-iso-8859-list, mm-codepage-ibm-list):
18152         New variables.
18153         (mm-setup-codepage-iso-8859, mm-setup-codepage-ibm): New functions.
18154         (mm-charset-synonym-alist): Move some entries to
18155         mm-codepage-iso-8859-list.
18156
18157         * gnus.el (gnus-getenv-nntpserver, gnus-select-method): Autoload.
18158
18159 2006-10-23  Reiner Steib  <Reiner.Steib@gmx.de>
18160
18161         * message.el (message-citation-line-format)
18162         (message-insert-formated-citation-line): Fix implementation of %E, %N
18163         and %n according to the doc string.
18164
18165 2006-10-20  Teodor Zlatanov  <tzz@lifelogs.com>
18166
18167         * spam.el (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list):
18168         Use car-safe to avoid bad parses.
18169
18170 2006-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
18171
18172         * gnus-group.el (gnus-group-make-doc-group): Work for non-ASCII group
18173         names.
18174
18175         * gnus-sum.el (gnus-select-newsgroup): Decode group name.
18176
18177 2006-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
18178
18179         * gnus-draft.el (gnus-draft-edit-message): Make sure to remove Date
18180         header.
18181
18182         * message.el (message-draft-headers): Add Date.
18183         (message-headers-to-generate): Fix typo in docstring.
18184
18185         * nndraft.el (nndraft-required-headers): New variable.
18186         (nndraft-generate-headers): Use it.
18187
18188         * gnus-registry.el (gnus-registry-wash-for-keywords): Bind `word'.
18189
18190 2006-10-16  Teodor Zlatanov  <tzz@lifelogs.com>
18191
18192         * gnus-registry.el (gnus-registry-wash-for-keywords)
18193         (gnus-registry-find-keywords): New functions to allow easy searching of
18194         articles that are in the registry.
18195
18196 2006-10-16  Teodor Zlatanov  <tzz@lifelogs.com>
18197
18198         * spam.el (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list):
18199         Use ietf-drums-parse-address instead of gnus-extract-address-components.
18200         Reported by Damien Elmes <damien@repose.cx>.
18201
18202 2006-10-19  Reiner Steib  <Reiner.Steib@gmx.de>
18203
18204         * gnus.el (gnus-mime): Remove unused custom group.
18205
18206 2006-10-13  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18207
18208         * mm-uu.el (mm-uu-pgp-signed-extract-1): Use RFC 2440 definition of
18209         "blank line" when searching for end of armor headers.
18210
18211 2006-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
18212
18213         * gmm-utils.el (gmm-write-region): Fix variable name.
18214
18215 2006-10-10  Reiner Steib  <Reiner.Steib@gmx.de>
18216
18217         * gmm-utils.el (gmm-write-region): New function based on compatibility
18218         code from `mm-make-temp-file'.
18219
18220         * mm-util.el (mm-make-temp-file): Use `gmm-write-region'.
18221
18222         * nnmaildir.el (nnmaildir--update-nov)
18223         (nnmaildir-request-replace-article, nnmaildir-request-accept-article):
18224         Use `gmm-write-region'.
18225
18226 2006-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
18227
18228         * mm-util.el (mm-charset-synonym-alist, mm-charset-override-alist):
18229         Add iso-8859-8/windows-1255 and iso-8859-9/windows-1254.
18230
18231         * nnheader.el (nnheader-find-file-noselect): Inhibit version-control.
18232
18233         * message.el (message-replacement-char): New variable.
18234         (message-fix-before-sending): Use it.
18235         (message-simplify-subject): New function to remove duplicate code.
18236         (message-reply, message-followup): Use it.
18237
18238         * gnus-sum.el (gnus-summary-make-menu-bar):
18239         Clarify gnus-summary-limit-to-articles.
18240
18241 2006-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
18242
18243         * gnus-util.el (gnus-with-local-quit): New macro.
18244
18245         * gnus-demon.el (gnus-demon): Replace with-local-quit with it.
18246
18247 2006-10-02  Teodor Zlatanov  <tzz@lifelogs.com>
18248
18249         * gnus-util.el (gnus-string-remove-all-properties): Another fix to
18250         ignore non-string data.
18251
18252 2006-09-29  Teodor Zlatanov  <tzz@lifelogs.com>
18253
18254         * gnus-util.el (gnus-string-remove-all-properties): Fix to ignore
18255         non-string data (needs to be done in the registry too).
18256
18257 2006-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
18258
18259         * gnus-registry.el (gnus-registry-save, gnus-registry-cache-save)
18260         (gnus-registry-remove-alist-text-properties, gnus-registry-action)
18261         (gnus-registry-split-fancy-with-parent)
18262         (gnus-registry-fetch-simplified-message-subject-fast)
18263         (gnus-registry-fetch-sender-fast, gnus-registry-store-extra-entry):
18264         Remove text properties on ingress into the registry and when it's saved.
18265         (gnus-registry-clean-empty-function): Fix bug with cleaning the
18266         registry from entries with no groups.
18267
18268 2006-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
18269
18270         * gnus-util.el (gnus-string-remove-all-properties): Add utility
18271         function to remove string properties.
18272
18273 2006-09-28  Reiner Steib  <Reiner.Steib@gmx.de>
18274
18275         * gmm-utils.el (gmm): Adjust custom version.
18276
18277         * mm-util.el (mm-charset-override-alist, mm-charset-eval-alist):
18278         Adjust custom version.
18279
18280         * gnus-draft.el (gnus-draft-mode): Don't call `mml-mode'.
18281
18282 2006-09-27  Reiner Steib  <Reiner.Steib@gmx.de>
18283
18284         * gnus-art.el (gnus-insert-prev-page-button)
18285         (gnus-insert-next-page-button): Simplify.  Reformat.
18286
18287 2006-09-27  Maxime Edouard Robert Froumentin  <max@lapin-bleu.net>
18288
18289         * gnus-art.el (gnus-insert-prev-page-button)
18290         (gnus-insert-next-page-button): Apply gnus-article-button-face.
18291
18292 2006-09-25  Chong Yidong  <cyd@stupidchicken.com>
18293
18294         * gnus-demon.el (gnus-demon): Use with-local-quit to avoid hangs.
18295
18296 2006-09-20  Maxime Edouard Robert Froumentin  <max@lapin-bleu.net>
18297
18298         * gnus-art.el (gnus-insert-mime-button)
18299         (gnus-insert-mime-security-button):
18300         Apply gnus-article-button-face to MIME and security buttons.
18301
18302 2006-09-20  Reiner Steib  <Reiner.Steib@gmx.de>
18303
18304         * gnus-art.el (gnus-button-url-regexp): Try to make the value more
18305         readable.
18306
18307 2006-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
18308
18309         * dgnushack.el: Autoload browse-url-of-file for XEmacs.
18310
18311 2006-09-20  Steve Youngs  <steve@sxemacs.org>
18312
18313         * gnus-art.el (gnus-article-browse-html-parts): They're files, so use
18314         `browse-url-of-file' instead of `browse-url'.
18315
18316 2006-09-19  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18317
18318         * nnslashdot.el (nnslashdot-request-article): Update end-of-article
18319         regexp.  Articles containing quotation were cut prematurely.
18320
18321 2006-09-16  Katsumi Yamaoka  <yamaoka@jpl.org>
18322
18323         * message.el (message-cite-original-1): Use nobody by default for the
18324         value of From header.
18325         (message-reply): Ditto.
18326
18327 2006-09-11  Daiki Ueno  <ueno@unixuser.org>
18328
18329         * mml2015.el (mml2015-epg-clear-decrypt): Don't append verify results
18330         to the gnus-info.  This fixes a bug of inline-PGP message verification.
18331         Reported by Michael Piotrowski <mxp@dynalabs.de>.
18332
18333 2006-09-09  Reiner Steib  <Reiner.Steib@gmx.de>
18334
18335         * pop3.el (pop3-leave-mail-on-server): Mention problem of duplicate
18336         mails in the doc string.  Add some URLs in comment.
18337         (pop3-movemail): Warn about pop3-leave-mail-on-server.
18338
18339 2006-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
18340
18341         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings): Fix
18342         backslashes handling and the way to find boundaries of quoted strings.
18343
18344 2006-09-07  Daiki Ueno  <ueno@unixuser.org>
18345
18346         * mml1991.el (mml1991-epg-encrypt): Simply throw an error if
18347         mml1991-encrypt-to-self is set and mml1991-signers is not set.
18348         * mml2015.el (mml2015-epg-encrypt): Simply throw an error if
18349         mml2015-encrypt-to-self is set and mml2015-signers is not set.
18350
18351 2006-09-06  Reiner Steib  <Reiner.Steib@gmx.de>
18352
18353         * gnus-art.el (gnus-button-marker-list): Move up.  Convert comment into
18354         doc string.
18355         (gnus-button-regexp, gnus-button-last): Remove unused variables.
18356
18357 2006-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
18358
18359         * lpath.el: Fbind epg-check-configuration.
18360
18361 2006-09-06  Simon Josefsson  <jas@extundo.com>
18362
18363         * mml2015.el (mml2015-use): Doc fix, mention epg.
18364
18365 2006-09-06  Daiki Ueno  <ueno@unixuser.org>
18366
18367         * mml2015.el (mml2015-use): Default to epg, if available.
18368
18369 2006-09-06  Daiki Ueno  <ueno@unixuser.org>
18370
18371         * mml1991.el (mml1991-epg-sign): Don't lookup a private key by
18372         message-sender.
18373         (mml1991-epg-encrypt): Ditto.
18374         * mml2015.el (mml2015-epg-sign): Don't lookup a private key by
18375         message-sender.
18376         (mml2015-epg-encrypt): Ditto.
18377
18378 2006-09-04  Chong Yidong  <cyd@stupidchicken.com>
18379
18380         * message.el (message-send-mail-with-sendmail): Look for sendmail in
18381         several common directories.
18382
18383 2006-09-05  Daiki Ueno  <ueno@unixuser.org>
18384
18385         * mml2015.el (mml2015-epg-encrypt): Expand group configuration.
18386         * mml1991.el (mml1991-epg-encrypt): Expand group configuration.
18387
18388 2006-09-04  Katsumi Yamaoka  <yamaoka@jpl.org>
18389
18390         * gnus-art.el (article-decode-encoded-words): Make it fast.
18391
18392 2006-09-04  Katsumi Yamaoka  <yamaoka@jpl.org>
18393
18394         * gnus-art.el (article-decode-encoded-words): Don't infloop in XEmacs.
18395
18396         * rfc2047.el (rfc2047-strip-backslashes-in-quoted-strings): Decode `\\'
18397         in quoted string into `\'.
18398
18399 2006-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
18400
18401         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
18402         Use standard-syntax-table.
18403
18404 2006-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
18405
18406         * gnus-art.el (gnus-decode-address-function): New variable.
18407         (article-decode-encoded-words): Use it to decode headers which are
18408         assumed to contain addresses.
18409         (gnus-mime-delete-part): Remove useless `or'.
18410
18411         * gnus-sum.el (gnus-decode-encoded-address-function): New variable.
18412         (gnus-summary-from-or-to-or-newsgroups): Use it to decode To header.
18413         (gnus-nov-parse-line): Use it to decode From header.
18414         (gnus-get-newsgroup-headers): Ditto.
18415         (gnus-summary-enter-digest-group): Use it to decode `to-address'.
18416
18417         * mail-parse.el (mail-decode-encoded-address-region): New alias.
18418         (mail-decode-encoded-address-string): New alias.
18419
18420         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
18421         New function.
18422         (rfc2047-encode-message-header, rfc2047-encode-region): Use it.
18423         (rfc2047-strip-backslashes-in-quoted-strings): New fnction.
18424         (rfc2047-decode-region): Use it; add optional argument `address-mime'.
18425         (rfc2047-decode-string): Ditto.
18426         (rfc2047-decode-address-region): New function.
18427         (rfc2047-decode-address-string): New function.
18428
18429 2006-08-31  Reiner Steib  <Reiner.Steib@gmx.de>
18430
18431         * message.el (message-caesar-buffer-body): Allow rotating headers.
18432
18433         * gnus-sum.el (gnus-summary-caesar-message): Allow rotating headers.
18434
18435         * message.el (message-insert-formated-citation-line): Fix %f.
18436         Reported by Torsten Bronger <bronger@physik.rwth-aachen.de> .
18437
18438 2006-08-18  Katsumi Yamaoka  <yamaoka@jpl.org>
18439
18440         * gnus-bookmark.el (gnus-bookmark-file-coding-system): New variable.
18441         (gnus-bookmark-mouse-available-p): New macro.
18442         (gnus-bookmark-bmenu-list): Use it; use gnus-mouse-2.
18443         (gnus-bookmark-bmenu-show-infos): Use it.
18444         (gnus-bookmark-insert-details): Use it; use gnus-mouse-2.
18445         (gnus-bookmark-bmenu-hide-infos): Ditto.
18446         (gnus-bookmark-remove-properties): New function.
18447         (gnus-bookmark-set, gnus-bookmark-make-cell): Use it.
18448         (gnus-bookmark-set-bookmark-name): Don't use 2nd arg of split-string.
18449         (gnus-bookmark-write-file): Bind coding-system-for-write.
18450         (gnus-bookmark-insert-file-format-version-stamp): Add coding cookie.
18451         (gnus-bookmark-jump): Make completing-read work with XEmacs; activate
18452         group before selecting it.
18453         (gnus-bookmark-get-bookmark): Use assoc instead of assoc-string.
18454         (gnus-bookmark-bmenu-mode-map): Bind `q' to bury-buffer instead of
18455         quit-window if it is not available; use gnus-mouse-2 and bind it to
18456         gnus-bookmark-bmenu-select-by-mouse.
18457         (gnus-bookmark-show-details): Remove unused variable `details-list'.
18458         (gnus-bookmark-bmenu-select-by-mouse): New function.
18459
18460 2006-08-13  Romain Francoise  <romain@orebokech.com>
18461
18462         * mm-extern.el (mm-extern-mail-server): End `y-or-n-p' prompt with a
18463         space.
18464
18465 2006-08-10  Romain Francoise  <romain@orebokech.com>
18466
18467         * dns-mode.el: Alias `zone-mode' to `dns-mode'.
18468         (dns-mode-soa-auto-increment-serial): New user option.
18469         (dns-mode-soa-maybe-increment-serial): New function.
18470         (dns-mode): Add the latter to `write-contents-functions'.
18471
18472 2006-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
18473
18474         * compface.el (uncompface): Use binary rather than raw-text-unix.
18475
18476 2006-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
18477
18478         * compface.el (uncompface): Make sure the eol conversion doesn't take
18479         place when communicating with the external programs.
18480         Reported by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
18481
18482 2006-07-31  Katsumi Yamaoka  <yamaoka@jpl.org>
18483
18484         * nnheader.el (nnheader-insert-head): Fix typo in comment.
18485
18486 2006-07-31  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18487
18488         * nnweb.el (nnweb-google-parse-1): Update regexp for author and date.
18489         Make it more robust by parsing author and date independently.
18490
18491 2006-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
18492
18493         * nnheader.el (nnheader-insert-head): Make it work with Mac as well.
18494
18495 2006-07-28  Daiki Ueno  <ueno@unixuser.org>
18496
18497         * mml2015.el (mml2015-epg-sign): If mml2015-signers is not set, use the
18498         first matching secret key.
18499         (mml2015-epg-encrypt): Ditto.
18500
18501         * mml1991.el (mml1991-epg-sign): If mml1991-signers is not set, use the
18502         first matching secret key.
18503         (mml1991-epg-encrypt): Ditto.
18504
18505         * mml2015.el (mml2015-encrypt-to-self): New user option.
18506         (mml2015-epg-encrypt): Append mml2015-signers to recipients list if
18507         mml2015-epg-encrypt-to-self is set.
18508
18509         * mml1991.el (mml1991-encrypt-to-self): New variable.
18510         (mml1991-epg-encrypt): Append mml1991-signers to recipients list if
18511         mml1991-epg-encrypt-to-self is set.
18512
18513         * mml2015.el (mml2015-signers): New user option.
18514         (mml2015-epg-sign): Reflect the value of mml2015-signers.
18515         (mml2015-epg-encrypt): Allow to select signing keys.
18516
18517         * mml1991.el (mml1991-signers): New variable.
18518         (mml1991-epg-sign): Reflect the value of mml1991-signers.
18519         (mml1991-epg-encrypt): Allow to select signing keys.
18520
18521 2006-07-27  Katsumi Yamaoka  <yamaoka@jpl.org>
18522
18523         * nnheader.el (nnheader-insert-head): Make it work even if the file
18524         uses CRLF for the line-break code.
18525
18526 2006-07-25  Daiki Ueno  <ueno@unixuser.org>
18527
18528         * mml2015.el: Require mml-sec instead of password.
18529         (mml2015-verbose): Inherit the default value from mml-secure-verbose.
18530         (mml2015-cache-passphrase): Inherit the default value from
18531         mml-secure-cache-passphrase.
18532         (mml2015-passphrase-cache-expiry): Inherit the default value from
18533         mml-secure-passphrase-cache-expiry.
18534
18535         * mml1991.el: Require mml-sec instead of password.
18536         (mml1991-verbose): Inherit the default value from mml-secure-verbose.
18537         (mml1991-cache-passphrase): Inherit the default value from
18538         mml-secure-cache-passphrase.
18539         (mml1991-passphrase-cache-expiry): Inherit the default value from
18540         mml-secure-passphrase-cache-expiry.
18541
18542         * mml-sec.el: Require password.
18543         (mml-secure-verbose): New user option.
18544         (mml-secure-cache-passphrase): New user option.
18545         (mml-secure-passphrase-cache-expiry): New user option.
18546
18547 2006-07-24  David Smith  <davidsmith@acm.org>  (tiny change)
18548             Andreas Vögele  <andreas@altroot.de>   (tiny change)
18549
18550         * pgg-def.el (pgg-truncate-key-identifier):
18551         Truncate the key ID to 8 letters from the end.
18552
18553 2006-07-19  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18554
18555         * mm-url.el (mm-url-insert-file-contents): Inhibit Connection: close
18556         workaround for the url package included with Emacs.
18557
18558         * nnweb.el (nnweb-google-create-mapping): Update regexp.
18559
18560 2006-07-19  Katsumi Yamaoka  <yamaoka@jpl.org>
18561
18562         * gnus-sum.el (gnus-select-newsgroup): Setup the article buffer
18563         correctly.  This fixes a bug caused by the 2006-05-12 change.
18564
18565 2006-07-18  Karl Fogel  <kfogel@red-bean.com>
18566
18567         * nnmail.el (nnmail-article-group): If splitting raises an error, give
18568         some information about the error when saying that the `bogus' mail
18569         group will be used.
18570
18571 2006-07-17  Reiner Steib  <Reiner.Steib@gmx.de>
18572
18573         * gnus-sum.el (gnus-summary-delete-article): Don't use TAB in doc
18574         string.
18575
18576 2006-07-16  NAKAJI Hiroyuki  <nakaji@heimat.jp>  (tiny change)
18577
18578         * mm-util.el (mm-charset-synonym-alist): Map windows-31j to cp932.
18579
18580 2006-07-14  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18581
18582         * gnus-start.el (gnus-subscribe-options-newsgroup-method): Doc fix.
18583
18584 2006-07-10  Daiki Ueno  <ueno@unixuser.org>
18585
18586         * mml1991.el (mml1991-function-alist): Add epg.
18587         (mml1991-epg-passphrase-callback, mml1991-epg-sign)
18588         (mml1991-epg-encrypt): New functions.
18589
18590 2006-07-10  Daiki Ueno  <ueno@unixuser.org>
18591
18592         * mml2015.el (mml2015-verbose): New variable.
18593         (mml2015-cache-passphrase): Ditto.
18594         (mml2015-passphrase-cache-expiry): Ditto.
18595         (mml2015-function-alist): Add epg.
18596         (mml2015-epg-passphrase-callback, mml2015-epg-decrypt)
18597         (mml2015-epg-clear-decrypt, mml2015-epg-verify)
18598         (mml2015-epg-clear-verify, mml2015-epg-sign, mml2015-epg-encrypt):
18599         New functions.
18600
18601 2006-07-08  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18602
18603         * message.el (message-cite-original-1): Preserve region when removing
18604         quoted text due to X-No-Archive in order to avoid bogus attribution
18605         when citing multiple messages.
18606
18607 2006-06-27  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18608
18609         * gnus-group.el (gnus-group-sort-by-unread): Fix typo.
18610         Reported by Kenneth Jacker <khj@be.cs.appstate.edu>.
18611
18612 2006-06-26  Reiner Steib  <Reiner.Steib@gmx.de>
18613
18614         * gnus-diary.el (gnus-user-format-function-d)
18615         (gnus-user-format-function-D): Autoload.
18616
18617         * imap.el (Commentary): Fix typo.
18618
18619         * gnus-util.el (kill-empty-logs, gnus-byte-compile): Remove anonymous
18620         2006-04-22 contribution.
18621
18622 2006-06-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18623
18624         * gnus.el (gnus-valid-select-methods): Revert last change for nnweb.
18625         It didn't really fix the bogosity I'm seeing with solid web groups.
18626
18627 2006-06-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18628
18629         * gnus.el (gnus-valid-select-methods): Declare nnweb with 'address.
18630         Since revision 6.95 (2003-01-05) of gnus-group.el, solid web groups are
18631         created using server names.  If we use the feature without declaring
18632         it, Gnus does not properly manage server and group state.
18633
18634         * nnweb.el (nnweb-google-search): Respect nnweb-max-hits as upper
18635         bound.
18636
18637 2006-06-25  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18638
18639         * gnus.el (gnus-find-method-for-group): On killed/unknown groups, try
18640         looking up the method using GROUP's prefix before inventing a new one.
18641         It is used on killed/unknown groups in various places where returning
18642         an all-new method isn't expected by the caller.
18643
18644         * gnus-util.el (gnus-group-server): Fix for empty virtual server names
18645         and match semantics of gnus-group-real-prefix.
18646
18647 2006-06-22  Reiner Steib  <Reiner.Steib@gmx.de>
18648
18649         * nnmail.el (nnmail-broken-references-mailers): New variable.
18650         (nnmail-ignore-broken-references): New function generalizing
18651         nnmail-fix-eudora-headers.
18652         (nnmail-fix-eudora-headers): Now obsolete.
18653
18654         * gnus-art.el (gnus-button-handle-custom):
18655         Support `customize-apropos*'.
18656
18657 2006-06-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18658
18659         * gnus-art.el (article-hide-headers): Inhibit read-only stuff.
18660
18661         * gnus-group.el (gnus-fetch-group): Document ARTICLES and select those
18662         articles.
18663
18664 2006-06-21  Reiner Steib  <Reiner.Steib@gmx.de>
18665
18666         * message.el (message-cite-reply-above): New variable.
18667         (message-yank-original): Use it.
18668
18669 2006-06-20  Katsumi Yamaoka  <yamaoka@jpl.org>
18670
18671         * rfc2231.el (rfc2231-parse-string): Allow `*'s in parameter values.
18672
18673 2006-06-20  Reiner Steib  <Reiner.Steib@gmx.de>
18674
18675         * gnus-bookmark.el (gnus-bookmark-jump): Don't mark unrelated articles
18676         as read.
18677
18678         * gnus-group.el (gnus-group-quick-select-group): Add GROUP argument.
18679
18680 2006-06-19  Reiner Steib  <Reiner.Steib@gmx.de>
18681
18682         * gnus-bookmark.el: Fix Copyright, keywords, whitespace, etc.
18683         (gnus-bookmark-default-file): Use gnus-directory.
18684         (gnus-bookmark-bmenu-file-column, gnus-bookmark-use-annotations):
18685         Remove "*" in doc string.
18686         (gnus-bookmark-write-file): Simplify.
18687         (gnus-bookmark-maybe-sort-alist): Use `when'.
18688         (gnus-bookmark-get-bookmark): Fix typo in doc string.
18689         (gnus-bookmark-set-bookmark-name, gnus-bookmark-get-bookmark):
18690         Add FIXME about Emacs 21 and XEmacs compatibility.
18691         (gnus-bookmark-set-bookmark-name): Use `gnus-replace-in-string' for
18692         compatibility.
18693         (gnus-bookmark-bmenu-mode): Use `gnus-run-mode-hooks' for
18694         compatibility.
18695         (gnus-bookmark-menu-heading): Fix version.
18696
18697 2006-06-19  Bastien Guerry  <bzg@altern.org>
18698
18699         * gnus-bookmark.el: New file.
18700
18701 2006-06-19  Katsumi Yamaoka  <yamaoka@jpl.org>
18702
18703         * message.el (message-syntax-checks): Doc fix.
18704
18705 2006-06-17  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18706
18707         * gnus-srvr.el (gnus-browse-unsubscribe-group): Don't subscribe
18708         unsubscribed groups as if they were killed ones.  It causes duplicate
18709         entries in gnus-newsrc-alist.
18710
18711 2006-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
18712
18713         * message.el (message-syntax-checks): Doc fix.
18714         (message-send-mail): Add check for continuation headers.
18715         (message-check-news-header-syntax): Fix regexp used to check for
18716         continuation headers.
18717
18718 2006-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
18719
18720         * gnus-art.el (gnus-display-mime): Make sure body ends with newline.
18721
18722 2006-06-11  Reiner Steib  <Reiner.Steib@gmx.de>
18723
18724         * gnus-art.el (gnus-article-toggle-truncate-lines): Fix code.
18725
18726 2006-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
18727
18728         * gnus-art.el (gnus-article-truncate-lines): Default to the value of
18729         default-truncate-lines.
18730
18731 2006-06-06  Katsumi Yamaoka  <yamaoka@jpl.org>
18732
18733         * mm-util.el (mm-mime-mule-charset-alist): Use unicode-precedence-list
18734         to fill the utf-8 entry.
18735
18736         * lpath.el: Fbind unicode-precedence-list.
18737
18738 2006-06-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18739
18740         * nnweb.el (nnweb-google-parse-1): Update regexp for author and date.
18741
18742 2006-05-30  Kevin Greiner  <kevin.greiner@compsol.cc>
18743
18744         * gnus-agent.el (directory-files-and-attributes): Move all the way
18745         forward (the third and final move).
18746         (gnus-agent-read-agentview): Trap reconstruction errors due to
18747         nonexistent directory.  Handle by returning nil.
18748
18749 2006-05-30  Didier Verna  <didier@xemacs.org>
18750
18751         * message.el (message-dont-reply-to-names): Update the custom type.
18752         * message.el (message-dont-reply-to-names): New defsubst: potentially
18753         convert a list of regexps into a single one.
18754         * message.el (message-get-reply-headers): Use it.
18755         * nnmail.el (nnmail-fancy-expiry-target): Ditto.
18756
18757 2006-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
18758
18759         * gnus-agent.el (directory-files-and-attributes): Move forward.
18760
18761 2006-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
18762
18763         * gnus-ml.el (gnus-mailing-list-subscribe)
18764         (gnus-mailing-list-unsubscribe, gnus-mailing-list-owner)
18765         (gnus-mailing-list-message): Fix doc strings.
18766
18767 2006-05-29  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18768
18769         * gnus-ml.el (gnus-mailing-list-message): Use gnus-url-mailto instead
18770         of doing it manually.
18771
18772 2006-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
18773
18774         * gnus-art.el (gnus-article-toggle-truncate-lines): Fix typo in
18775         comment.
18776
18777 2006-05-29  Kevin Greiner  <kevin.greiner@compsol.cc>
18778
18779         * gnus-agent.el: Add gnus-agent-flush* to purge agent info.
18780         (gnus-agent-read-agentview): Fix handling of end-of-file error.
18781         (gnus-agent-read-local): All symbols allocated in my-obarray.
18782         (gnus-agent-set-local): Skip invalid entries (min and/or max is nil).
18783         (gnus-agent-regenerate-group): Check numeric names to see if they are
18784         messages or groups.
18785         (gnus-agent-total-fetched-for): Ignore 'dummy.group' (there should be a
18786         better way of do this...)
18787
18788         * gnus-cache.el (gnus-agent-total-fetched-for):
18789         Ignore 'dummy.group' (there should be a better way of do this...)
18790
18791 2006-05-29  Katsumi Yamaoka  <yamaoka@jpl.org>
18792
18793         * gnus-art.el (gnus-save-all-headers): Mention it might be overridden.
18794         (gnus-saved-headers): Ditto.
18795         (gnus-default-article-saver): Mention functions may have properties.
18796         (gnus-article-save): Override gnus-save-all-headers and
18797         gnus-saved-headers by :headers property which saver function may have.
18798         (gnus-summary-save-in-file): Add :headers property.
18799         (gnus-summary-write-to-file): Ditto.
18800
18801         * gnus-sum.el (gnus-summary-save-article): Bind
18802         gnus-prompt-before-saving to t when saving many articles in a file;
18803         always show all headers.
18804
18805         * dgnushack.el: Autoload toggle-truncate-lines for XEmacs.
18806
18807 2006-05-26  Reiner Steib  <Reiner.Steib@gmx.de>
18808
18809         * deuglify.el (gnus-outlook-rearrange-article): Add missing citation
18810         marks.
18811
18812         * message.el (message-indent-citation): Add optional arguments to allow
18813         using it outside of message buffers.
18814
18815         * gnus-art.el (gnus-article-unfold-long-headers): New variable.
18816         (gnus-article-treat-unfold-headers): Use it.
18817         (gnus-article-truncate-lines): New variable.
18818         (gnus-article-mode): Use it.
18819         (gnus-article-toggle-truncate-lines): New function.
18820
18821         * gnus-sum.el (gnus-summary-wash-map, gnus-summary-make-menu-bar):
18822         Add gnus-article-toggle-truncate-lines.
18823
18824         * uudecode.el (uudecode-decode-region-external): nil isn't a valid
18825         coding system in XEmacs, use binary.
18826
18827 2006-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
18828
18829         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): Don't edit
18830         after-load-alist.
18831
18832         * gnus-art.el (gnus-summary-save-in-file): Use property to specify
18833         this function should save decoded articles.
18834         (gnus-summary-write-to-file): Use property to specify this function
18835         should save decoded articles and specify gnus-summary-save-in-file
18836         should be used to save articles other than the first one when saving
18837         many articles.
18838         (gnus-summary-save-body-in-file): Use property to specify this
18839         function should save decoded articles.
18840         (gnus-summary-write-body-to-file): Use property to specify this
18841         function should save decoded articles and specify
18842         gnus-summary-save-body-in-file should be used to save articles other
18843         than the first one when saving many articles.
18844
18845         * gnus-sum.el (gnus-summary-save-article): Simplify.
18846
18847 2006-05-25  Katsumi Yamaoka  <yamaoka@jpl.org>
18848
18849         * gnus-art.el (gnus-default-article-saver):
18850         Add gnus-summary-write-body-to-file.
18851         (gnus-article-save-coding-system): Don't use coding system object
18852         in XEmacs.
18853         (gnus-read-save-file-name): Add optional `dir-var' argument which
18854         specifies directory in which files are saved; work even if optional
18855         `variable' argument is not specified.
18856         (gnus-summary-write-to-file): Read file name.
18857         (gnus-summary-save-body-in-file): Add optional `overwrite' argument.
18858         (gnus-summary-write-body-to-file): New function.
18859
18860         * gnus-sum.el (gnus-newsgroup-last-directory): New variable.
18861         (gnus-summary-local-variables): Add it.
18862         (gnus-summary-save-map): Add gnus-summary-write-article-body-file.
18863         (gnus-summary-save-article): Remove optional `decode' argument;
18864         determine whether to decode articles by the value of
18865         gnus-default-article-saver; when saving many files using
18866         gnus-summary-write-to-file or gnus-summary-write-body-to-file, use
18867         it first and use gnus-summary-save-in-file or
18868         gnus-summary-save-body-in-file thereafter unless
18869         gnus-prompt-before-saving is always; move point to article which
18870         will be saved.
18871         (gnus-summary-save-article-file): Revert.
18872         (gnus-summary-write-article-file): Revert.
18873         (gnus-summary-save-article-body-file): Revert.
18874         (gnus-summary-write-article-body-file): New function.
18875
18876 2006-05-24  Katsumi Yamaoka  <yamaoka@jpl.org>
18877
18878         * gnus-art.el (gnus-default-article-saver): Doc fix.
18879         (gnus-article-save-coding-system): Move from gnus-sum.el, rename
18880         from gnus-summary-save-article-coding-system, and default to a
18881         certain coding system.
18882         (gnus-output-to-file): Add coding cookie and encode text according
18883         to gnus-article-save-coding-system; don't use mm-append-to-file.
18884
18885         * gnus-sum.el (gnus-summary-save-article-coding-system): Move to
18886         gnus-art.el and rename to gnus-article-save-coding-system.
18887         (gnus-summary-save-article): Require gnus-art; don't show all
18888         headers if it decodes articles; don't add coding cookie here;
18889         don't bind mm-text-coding-system-for-write.
18890         (gnus-summary-save-article-file): Save decoded articles.
18891         (gnus-summary-write-article-file): When saving many files, use
18892         gnus-summary-write-to-file first and gnus-summary-save-in-file
18893         thereafter unless gnus-prompt-before-saving is always.
18894         (gnus-summary-save-article-body-file): Save decoded articles.
18895
18896         * lpath.el: Fbind select-safe-coding-system for XEmacs.
18897
18898 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
18899
18900         * nnrss.el (nnrss-check-group): Bind hash-index.
18901
18902 2006-05-23  Michaël Cadilhac  <michael.cadilhac@lrde.org>
18903
18904         * nnrss.el (nnrss-check-group): Use the md5sum of the whole RSS item as
18905         its hash index.  Store this hash in `nnrss-group-data'.
18906         (nnrss-read-group-data): Update accordingly.
18907
18908 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
18909
18910         * gnus-art.el (gnus-button-alist): Improve gnus-button-handle-symbol
18911         entry.
18912
18913         * gnus-sum.el (gnus-summary-make-menu-bar):
18914         Add gnus-article-browse-html-article.
18915
18916 2006-05-23  Hynek Schlawack  <hynek@ularx.de>
18917
18918         * gnus-sum.el (gnus-summary-mime-map):
18919         Add gnus-article-browse-html-article.
18920
18921         * gnus-art.el (gnus-article-browse-html-article): Remove comment.
18922
18923 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
18924
18925         * gnus-sum.el (gnus-summary-save-article-coding-system): Offer some
18926         suitable coding systems in customize.
18927
18928 2006-05-22  Reiner Steib  <Reiner.Steib@gmx.de>
18929
18930         * mail-source.el (mail-sources): Fix custom type.
18931
18932 2006-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
18933
18934         * gnus-sum.el (gnus-summary-save-article-mail): Clarify doc string.
18935         (gnus-summary-expire-articles-now): Shorten prompt.
18936
18937         * gmm-utils.el (wid-edit): Require.
18938         (defun-gmm): Rename from `gmm-defun-compat'.
18939         (gmm-image-search-load-path): Use it.
18940         (gmm-image-load-path-for-library): Use it.  Sync with `mh-compat.el'.
18941
18942 2006-05-17  Katsumi Yamaoka  <yamaoka@jpl.org>
18943
18944         * gnus-sum.el (gnus-summary-save-article-coding-system):
18945         New variable.
18946         (gnus-summary-save-article): Add optional `decode' argument.
18947         If it is set and gnus-summary-save-article-coding-system is non-nil,
18948         save decoded article.
18949         (gnus-summary-write-article-file): Save decoded article if
18950         gnus-summary-save-article-coding-system is non-nil.
18951
18952         * ecomplete.el (ecomplete-database-file-coding-system): Fix custom
18953         type.
18954
18955 2006-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
18956
18957         * gnus-art.el (easy-menu-define): Use :active instead of :enable.
18958
18959 2006-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
18960
18961         * gnus-art.el (gnus-article-setup-buffer): Go to summary buffer
18962         first to test gnus-single-article-buffer which may be buffer-local.
18963
18964         * gnus-sum.el (gnus-summary-setup-buffer):
18965         Make gnus-single-article-buffer buffer-local and nil in ephemeral
18966         group; make gnus-article-buffer, gnus-article-current, and
18967         gnus-original-article-buffer always buffer-local.
18968         (gnus-summary-exit): Kill article buffer belonging to ephemeral
18969         group.
18970         (gnus-handle-ephemeral-exit): Don't move to next summary line.
18971
18972 2006-05-08  Reiner Steib  <Reiner.Steib@gmx.de>
18973
18974         * nnml.el (nnml-request-compact-group): Compressed files might not
18975         have .gz extension.
18976
18977 2006-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
18978
18979         * mm-decode.el (mm-dissect-buffer): Remove spurious double assignment.
18980         (mm-copy-to-buffer): Use with-current-buffer.
18981         (mm-display-part): Simplify.
18982         (mm-inlinable-p): Add optional arg `type'.
18983
18984 2006-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
18985
18986         * gnus-art.el (gnus-mime-view-part-as-type): Add optional PRED arg.
18987         (gnus-mime-view-part-externally, gnus-mime-view-part-internally):
18988         Try harder to show the attachment internally or externally using
18989         gnus-mime-view-part-as-type.
18990
18991 2006-05-02  Reiner Steib  <Reiner.Steib@gmx.de>
18992
18993         * message.el (message-from-style, message-signature-separator)
18994         (message-user-organization-file, message-send-mail-function)
18995         (message-citation-line-function, message-yank-prefix)
18996         (message-indent-citation-function, message-signature)
18997         (message-signature-file, message-signature-insert-empty-line):
18998         Remove autoloads.
18999
19000         * gnus-art.el (gnus-buttonized-mime-types):
19001         Remove "multipart/signed".  Revert 2006-04-26 change.
19002
19003 2006-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19004
19005         * gnus.el (gnus-version-number): Bump version.
19006
19007 2006-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
19008
19009         * gnus.el: No Gnus v0.5 is released.
19010
19011 2006-04-30  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
19012
19013         * nnweb.el (nnweb-request-article): Do proper xwfu encoding when
19014         fetching articles by message-id.
19015
19016 2006-04-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19017
19018         * message.el (hashcash): Require hashcash as normal.
19019
19020         * ecomplete.el (ecomplete-highlight-match-line):
19021         Use point-at-eol.
19022         (ecomplete-highlight-match-line): Use `highlight', because that
19023         face exists in both Emacs and XEmacs.
19024
19025         * message.el (message-display-abbrev): Use point-at-bol.
19026
19027         * mail-source.el: Don't require timer/timer-funcs.
19028
19029         * gnus-async.el: Ditto.
19030
19031         * password.el: Ditto.
19032
19033         * nnheaderxm.el (nnheader-cancel-timer): Ditto.
19034
19035         * mm-url.el: Ditto.
19036
19037         * gnus-xmas.el: Don't require timer-funcs.
19038
19039         * mm-util.el: Require timer/timer-funcs.
19040
19041 2006-04-23  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
19042
19043         * mm-url.el (mm-url-insert-file-contents): Don't set Connection:
19044         Close.
19045
19046 2006-04-28  Katsumi Yamaoka  <yamaoka@jpl.org>
19047
19048         * mm-uu.el (mm-uu-pgp-encrypted-extract-1): Assume buffer is made
19049         unibyte after clear-decrypt function runs.
19050
19051         * mml2015.el (mml2015-pgg-clear-decrypt): Treat data which pgg
19052         returns as a unibyte string.
19053
19054 2006-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
19055
19056         * lpath.el: Revert.
19057
19058         * pgg-gpg.el (pgg-string-to-multibyte): Remove.
19059         (pgg-gpg-process-sentinel): Revert.
19060
19061         * pgg-pgp.el (pgg-pgp-process-region): Revert.
19062         (pgg-pgp-lookup-key): Revert.
19063
19064         * pgg-pgp5.el (pgg-pgp5-process-region): Revert.
19065         (pgg-pgp5-lookup-key): Revert.
19066
19067         * pgg.el (pgg-fetch-key): Revert.
19068
19069 2006-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
19070
19071         * lpath.el: Fbind string-as-multibyte for XEmacs.
19072
19073         * mml1991.el (mml1991-pgg-sign): No need to load pgg.el, which is
19074         always loaded by way of gnus-art.el -> mm-uu.el -> mml2015.el.
19075         (mml1991-pgg-encrypt): Ditto.
19076
19077         * pgg-gpg.el (pgg-string-to-multibyte): New function.
19078         (pgg-gpg-process-sentinel): Make sure pgg-output-buffer is always
19079         a multibyte buffer.
19080
19081         * pgg-pgp.el (pgg-pgp-process-region): Ditto.
19082         (pgg-pgp-lookup-key): Ditto.
19083
19084         * pgg-pgp5.el (pgg-pgp5-process-region): Ditto.
19085         (pgg-pgp5-lookup-key): Ditto.
19086
19087         * pgg.el (pgg-fetch-key): Ditto.
19088
19089 2006-04-26  Reiner Steib  <Reiner.Steib@gmx.de>
19090
19091         * message.el (message-user-organization-file): Check several
19092         locations of the organization file.
19093
19094         * gnus-sum.el (gnus-summary-mime-map, gnus-summary-make-menu-bar):
19095         Add gnus-article-view-part-as-type.
19096
19097         * gnus-art.el (gnus-article-view-part-as-type): New function.
19098
19099         * message.el (message-valid-fqdn-regexp): Add TLDs .cat, jobs,
19100         .mobi and .travel.  Remove .nato, .bitnet and .uucp.
19101
19102         * mml.el: Simplify autoload.
19103         (mml-mode): defvar dnd-protocol-alist instead of using
19104         symbol-value.
19105         (mml-default-directory): New variable.
19106         (mml-minibuffer-read-file): Use it.
19107         (mml-dnd-protocol-alist, mml-dnd-attach-options): Adjust :version.
19108
19109         * message.el (message-citation-line-format): New variable.
19110         (message-insert-formated-citation-line): New function.
19111         (message-citation-line-function):
19112         Add `message-insert-formated-citation-line' to custom type.
19113
19114         * mm-decode.el (mm-verify-option): Add gnus-buttonized-mime-types
19115         to doc string.
19116
19117         * gnus-art.el (gnus-buttonized-mime-types): Add "multipart/signed"
19118         depending on mm-verify-option.
19119
19120 2006-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
19121
19122         * mml1991.el (mml1991-pgg-sign): Make sure to load pgg.el before
19123         binding pgg-* variables; reimplement the section which prevents
19124         MIME header from being signed.
19125         (mml1991-pgg-encrypt): Make sure to load pgg.el before binding
19126         pgg-text-mode; remove a blank line at the top of body.
19127
19128         * mm-uu.el (mm-uu-pgp-encrypted-extract-1): Don't remove blank
19129         lines at the top of body; use gnus-newsgroup-charset if there's no
19130         Charset header.
19131
19132 2006-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
19133
19134         * message.el (message-self-insert-commands): Doc fix.
19135
19136         * mm-uu.el (mm-uu-pgp-signed-test): Erase prompt.
19137         (mm-uu-pgp-encrypted-test): Ditto.
19138         (mm-uu-pgp-encrypted-extract-1): Make sure there's a blank line
19139         between header and body; return application/pgp-encrypted handle
19140         if decryption failed; decode decrypted body by charset.
19141
19142         * mm-decode.el (mm-automatic-display): Don't make application/pgp
19143         element match to application/pgp-*.
19144
19145 2006-04-23  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
19146
19147         * nnweb.el (nnweb-google-wash-article): Sync up to new Google
19148         HTML.
19149
19150 2006-04-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19151
19152         * mail-source.el (mail-source-call-script): Message the error
19153         string.
19154
19155 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19156
19157         * gnus-util.el (gnus-byte-compile): Use it.
19158
19159 2006-04-22  xyblor  <fake@invalid.email>  (tiny change)
19160
19161         * gnus-util.el (kill-empty-logs): New function.
19162
19163 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19164
19165         * message.el (message-mail-alias-type): Doc fix.
19166         (message-mail-alias-type-p): New function.
19167         (message-send): Use it.
19168         (message-mode): Ditto.
19169         (message-strip-forbidden-properties): Ditto.
19170
19171         * ecomplete.el (ecomplete-database-file-coding-system):
19172         New variable.
19173         (ecomplete-save): Use it.
19174         (ecomplete-setup): Use it.
19175
19176 2006-04-22  Katsumi Yamaoka  <yamaoka@jpl.org>
19177
19178         * message.el (message-self-insert-commands): New variable.
19179         (message-strip-forbidden-properties): Use it.
19180
19181 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19182
19183         * message.el (message-put-addresses-in-ecomplete): Use a regexp
19184         that doesn't make XEmacs choke.
19185
19186 2006-04-20  Reiner Steib  <Reiner.Steib@gmx.de>
19187
19188         * gnus-util.el (gnus-replace-in-string):
19189         Prefer replace-regexp-in-string over of replace-in-string.
19190
19191 2006-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
19192
19193         * gnus-util.el (gnus-select-frame-set-input-focus):
19194         Use select-frame-set-input-focus if it is available in XEmacs; use
19195         definition defined in Emacs 22 for old Emacsen.
19196
19197         * dgnushack.el: Autoload unmorse-region for XEmacs.
19198
19199         * lpath.el: Bind cursor-in-non-selected-windows and
19200         select-frame-set-input-focus for XEmacs.
19201
19202 2006-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
19203
19204         * mm-view.el (mm-inline-text): Use equal instead of equalp.
19205
19206 2006-04-18  Teodor Zlatanov  <tzz@lifelogs.com>
19207
19208         * gnus-registry.el (gnus-registry-cache-save): Remove text
19209         properties when saving via the temp buffer.
19210
19211 2006-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
19212
19213         * message.el (message-generate-hashcash): Honor custom type.
19214
19215 2006-04-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19216
19217         * message.el (message-generate-hashcash): Default to non-nil when
19218         hashcash is found.
19219
19220         * gnus-sum.el (gnus-summary-expire-articles-now): Clarify prompt.
19221         (gnus-refer-thread-limit): Increase default to 500.
19222
19223         * mm-view.el (mm-inline-text): Supply delsp to flow-fill.
19224
19225         * flow-fill.el (fill-flowed): Allow delete-space.
19226
19227 2006-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
19228
19229         * deuglify.el (gnus-outlook-deuglify-unwrap-min)
19230         (gnus-outlook-deuglify-unwrap-max, gnus-outlook-display-hook):
19231         Remove autoloads.
19232
19233 2006-04-18  Simon Josefsson  <jas@extundo.com>
19234
19235         * message.el (message-generate-hashcash): Default to.
19236
19237 2006-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
19238
19239         * rfc2231.el (rfc2231-parse-string): Decode encoded value after
19240         concatenating segments rather than before concatenating them.
19241
19242 2006-04-17  Reiner Steib  <Reiner.Steib@gmx.de>
19243
19244         * gnus-group.el: Move comment to gnus-group-update-tool-bar.
19245
19246 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19247
19248         * rfc2231.el (rfc2231-parse-string): Sort the parameters first.
19249
19250         * message.el (message-forward-make-body-plain):
19251         Allow message-forward-ignored-headers to be a list.
19252         (message-remove-ignored-headers): Factor out into function.
19253         (message-forward-make-body-mml): Use it.
19254
19255         * imap.el (imap-quote-specials): New function.
19256         (imap-login-auth): Quote specials.
19257
19258         * rfc2231.el (rfc2231-parse-string): Remove dead code.
19259         (rfc2231-parse-string): Allow concatanation of parameters that
19260         aren't contiguous.  The test case is
19261           (mail-header-parse-content-type "message/external-body;
19262             name*0*=us-ascii''~%2ffoo%2fbar%2fbaz%2fxyzzy%2f;
19263             access-type=LOCAL-FILE;
19264             name*1*=plugh%2fhello-sailor%2fbing.pdf")
19265
19266 2006-04-17  Stefan Monnier  <monnier@iro.umontreal.ca>
19267
19268         * nntp.el (nntp-accept-process-output): Return the value of
19269         `nnheader-accept-process-output'.
19270
19271 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19272
19273         * gnus-art.el (gnus-article-treat-types): Add text/x-patch.
19274         (gnus-button-alist): Recognize more diff formats.
19275         (gnus-button-patch): Strip directory.
19276
19277 2006-04-17  Reiner Steib  <Reiner.Steib@gmx.de>
19278
19279         * gnus-util.el (gnus-select-frame-set-input-focus): Check for
19280         Emacs 22 when setting focus.
19281
19282 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19283
19284         * gnus-art.el (gnus-article-treat-types): Do treatment of
19285         text/x-verbatim parts.
19286         (gnus-button-patch): New command.
19287
19288         * ietf-drums.el (ietf-drums-parse-address): Attempt parsing
19289         addresses that contain invalid characters.
19290
19291 2006-04-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19292
19293         * message.el (message-put-addresses-in-ecomplete):
19294         Use gnus-replace-in-string.
19295         (message-is-yours-p): Use the more correct
19296         mail-header-parse-address instead of
19297         mail-extract-address-components.
19298         (message-put-addresses-in-ecomplete): Fix typo.
19299
19300         * gnus-sum.el (gnus-summary-limit-to-bodies): New command and
19301         keystroke.
19302
19303         * gnus-art.el (gnus-treatment-function-alist): Change order of
19304         newsgroups/generic header folding to avoid double-folding.
19305
19306         * message.el (message-hidden-headers): Add X-Draft-From.
19307
19308         * gnus-sum.el (gnus-summary-repeat-search-article-forward):
19309         New command.
19310         (gnus-summary-repeat-search-article-backward): New command.
19311
19312         * gnus-topic.el (gnus-topic-display-missing-topic): Skip past
19313         groups in the parent topic.
19314
19315 2006-04-16  João Cachopo  <joao.cachopo@inesc-id.pt>  (tiny change)
19316
19317         * spam.el (spam-necessary-extra-headers): Add X-CRM114-Status.
19318         (spam-extra-header-to-number): Return the CRM114 number as a
19319         number instead of a string.
19320
19321 2006-04-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19322
19323         * gnus-art.el (gnus-face-properties-alist): Move here from
19324         gnus-fun.
19325
19326         * gnus-fun.el (gnus-face-properties-alist): Move to gnus-art.
19327
19328 2006-04-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19329
19330         * message.el (message-strip-forbidden-properties): Only display on
19331         self-insert-command.
19332
19333         * hashcash.el (hashcash-insert-payment-async): Remove dead code;
19334         reindent.
19335         (hashcash-insert-payment-async-2): Make sure the buffer is alive.
19336
19337 2006-04-15  NAKAJI Hiroyuki  <nakaji@takamatsu-nct.ac.jp>  (tiny change)
19338
19339         * smiley.el (smiley-style): Fix typo.
19340
19341 2006-03-23  Kenichi Handa  <handa@m17n.org>
19342
19343         * rfc2231.el (rfc2231-encode-string): Use mm-disable-multibyte
19344         instead of set-buffer-multibyte.
19345
19346 2006-03-23  Kenichi Handa  <handa@m17n.org>
19347
19348         * rfc2231.el (rfc2231-decode-encoded-string): Work on unibyte
19349         buffer and then decode the buffer text if necessary.
19350         (rfc2231-encode-string): Be sure to work on multibyte buffer at
19351         first, and after mm-encode-body, change the buffer to unibyte.
19352
19353 2006-04-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19354
19355         * hashcash.el (hashcash-insert-payment-async-2):
19356         Use message-goto-eoh instead of doing it manually.
19357         (mail-add-payment): Use message-narrow-to-header instead of trying
19358         to do the same itself.
19359
19360         * message.el (message-hidden-headers): Add Face.
19361
19362         * gnus-sum.el (gnus-summary-reparent-thread): Factor out
19363         reparenting code.
19364         (gnus-summary-reparent-children): Refactored out code.
19365         (gnus-summary-thread-map): New keystroke.
19366         (gnus-summary-reparent-children): Make into command.
19367
19368         * smiley.el (smiley-style): Default to `medium' if using a large
19369         font.
19370
19371         * gnus-sum.el (unmorse-region): Remove autoload, because morse.el
19372         does it itself.
19373
19374         * message.el (message-point-in-header-p): Simplify definition.
19375
19376 2006-04-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19377
19378         * nnagent.el (nnagent-request-set-mark): Silence log file
19379         writing.
19380         (nnagent-request-set-mark): Use write-region instead of
19381         append-to-file.
19382
19383         * gnus-sum.el (gnus-read-header): Fudge article number if using a
19384         strange select method.
19385
19386         * ecomplete.el (ecomplete-display-matches): Get highlightling
19387         right.
19388         (ecomplete-display-matches): Use literals.
19389         (ecomplete-display-matches): Disable message logging.
19390
19391         * message.el (message-display-abbrev): Small optimization.
19392
19393         * ecomplete.el (ecomplete-display-matches): Allow automatic
19394         display.
19395
19396         * message.el (message-strip-forbidden-properties):
19397         Display abbrevs.
19398         (message-display-abbrev): Get automatic display right.
19399
19400         * ecomplete.el (ecomplete-display-matches): Use M-n/M-p
19401         keystrokes.
19402
19403 2006-04-13  Romain Francoise  <romain@orebokech.com>
19404
19405         TODO: Backport to v5-10!
19406
19407         * gnus-util.el (gnus-alist-to-hashtable, gnus-hashtable-to-alist):
19408         Move here (and rename) from gnus-registry.el.
19409
19410         * gnus-registry.el: Require gnus-util.
19411         Use `gnus-alist-to-hashtable' and `gnus-hashtable-to-alist'.
19412
19413 2006-04-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19414
19415         * gnus-group.el (gnus-group-catchup-current):
19416         Change if-then-else-if-then-else into cond.
19417         (gnus-group-catchup): Indent.
19418         (group-name-at-point): New function.
19419         (gnus-fetch-group): Provide default from thing at point.
19420
19421 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19422
19423         * message.el (message-display-abbrev): Fix regexp.
19424
19425         * ecomplete.el (ecomplete-highlight-match-line):
19426         Reimplement choosing.
19427         (ecomplete-highlight-match-line): Fix up code rewrite, remove
19428         dead variables.
19429
19430         * message.el (message-newline-and-indent): Remove debugging.
19431         (message-display-abbrev): Use new implementation.
19432
19433 2006-04-12  Reiner Steib  <Reiner.Steib@gmx.de>
19434
19435         * gnus-art.el (gnus-article-mode):
19436         Set cursor-in-non-selected-windows to nil.
19437
19438         * smiley.el: Revert previous change.
19439         (smiley-data-directory): defvar it before using it in the
19440         defcustom of `smiley-style'.
19441
19442 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19443
19444         * message.el (message-newline-and-indent): New function.
19445
19446         * ecomplete.el: Implement more bits.
19447
19448         * message.el (message-put-addresses-in-ecomplete): Clean up the
19449         string.
19450
19451         * ecomplete.el (ecomplete-add-item): Chop off decimals.
19452
19453         * gnus-sum.el (gnus-summary-save-parts):
19454         Bind gnus-summary-save-parts-counter and use it to make unique file
19455         names.
19456
19457         * gnus-art.el (gnus-ignored-headers): Add some more headers.
19458
19459         * ietf-drums.el (ietf-drums-parse-addresses): Take a RAWP
19460         parameter to say whether to actually parse the individual
19461         addresses.
19462
19463         * message.el (message-put-addresses-in-ecomplete): New function.
19464         (ecomplete): Require.
19465         (message-mail-alias-type): Add ecomplete as an option.
19466
19467 2006-04-12  Ralf Angeli  <angeli@iwi.uni-sb.de>
19468
19469         * flow-fill.el (fill-flowed): Remove trailing space from blank
19470         quoted lines.
19471
19472 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19473
19474         * smiley.el (smiley-style): Move definition later to avoid a
19475         compilation warning.
19476
19477 2006-04-12  Kenichi Handa  <handa@m17n.org>
19478
19479         * rfc2231.el (rfc2231-decode-encoded-string): Work on unibyte
19480         buffer and then decode the buffer text if necessary.
19481         (rfc2231-encode-string): Be sure to work on multibyte buffer at
19482         first, and after mm-encode-body, change the buffer to unibyte.
19483         Use mm-disable-multibyte instead of set-buffer-multibyte.
19484
19485 2006-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
19486
19487         * gnus-art.el (gnus-mime-copy-part): Find name parameter in
19488         Content-Type header instead of Content-Disposition header.
19489         (gnus-mime-inline-part): Ditto.
19490         (gnus-mime-view-part-as-charset): Ignore charset that the part
19491         specifies.
19492
19493         * mm-decode.el (mm-display-part): Work with external parts and
19494         usual parts similarly.
19495
19496         * mm-extern.el (mm-inline-external-body): Use mm-display-part
19497         instead of gnus-display-mime.
19498
19499         * mm-util.el (mm-decompress-buffer): Use mm-with-unibyte-buffer
19500         instead of with-temp-buffer.
19501
19502         * gnus-uu.el (gnus-uu-save-article): Put mml tags instead of part
19503         tag to summarized topics part in order to encode non-ASCII text.
19504
19505 2006-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
19506
19507         * smiley.el (smiley-style): New variable.
19508         (smiley-directory): New function.
19509         (smiley-data-directory): Derive from `smiley-style' using
19510         `smiley-directory'.
19511         (smiley-regexp-alist): Add new entries.
19512
19513         * gnus-art.el (gnus-button-valid-localpart-regexp): Exclude `@'.
19514         (gnus-article-browse-delete-temp): Add :version.
19515
19516 2006-04-11  Arne Jørgensen  <arne@arnested.dk>
19517
19518         * gnus-sieve.el (gnus-sieve-generate): Delete from the start of
19519         the sieve region.
19520
19521 2006-04-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19522
19523         * gnus.el (gnus-version-number): Bump version.
19524
19525 2006-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
19526
19527         * gnus.el: No Gnus v0.4 is released.
19528
19529 2006-04-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19530
19531         * nnslashdot.el (nnslashdot-retrieve-headers-1): Fix up to new
19532         layout.
19533
19534         * rfc2047.el (rfc2047-decode-encoded-words): Don't message about
19535         unknown charset.
19536
19537         * message.el (message-header-synonyms): Add Original-To to the
19538         default.
19539
19540         * gnus-sum.el (gnus-get-newsgroup-headers-xover): group is an
19541         optional parameter.
19542
19543 2006-04-06  Reiner Steib  <Reiner.Steib@gmx.de>
19544
19545         * gnus-fun.el (gnus): Require it for gnus-directory.
19546
19547 2006-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
19548
19549         * gnus-fun.el (gnus-face-properties-alist): Add :version.
19550
19551 2006-04-05  Daiki Ueno  <ueno@unixuser.org>
19552
19553         * pgg-gpg.el (pgg-gpg-process-filter): Fix.
19554
19555 2006-04-05  Simon Josefsson  <jas@extundo.com>
19556
19557         * password.el (password-reset): New function.
19558
19559 2006-04-05  Daiki Ueno  <ueno@unixuser.org>
19560
19561         * pgg-gpg.el (pgg-gpg-encrypt-region, pgg-gpg-sign-region):
19562         Wait for BEGIN_SIGNING too, new in GnuPG 1.4.3.
19563
19564 2006-04-04  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
19565
19566         * nnweb.el (nnweb-google-create-mapping): Update regexp.
19567         Some whitespace was matched into the url, which broke browsing hits
19568         > 100 when mm-url-use-external was nil.
19569
19570 2006-04-04  Reiner Steib  <Reiner.Steib@gmx.de>
19571
19572         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups):
19573         Check gnus-extra-headers for 'Newsgroups.
19574
19575         * message.el (message-tool-bar-gnome): Check if `flyspell-mode' is
19576         bound.
19577
19578 2006-04-04  Daiki Ueno  <ueno@unixuser.org>
19579
19580         * pgg-gpg.el: Clean up process buffers every time gpg processes
19581         complete.
19582
19583 2006-04-03  Reiner Steib  <Reiner.Steib@gmx.de>
19584
19585         * gnus-fun.el (gnus-convert-image-to-face-command): Fix typo in
19586         doc string.
19587
19588 2006-04-03  Daiki Ueno  <ueno@unixuser.org>
19589
19590         * pgg-gpg.el (pgg-gpg-process-filter)
19591         (pgg-gpg-wait-for-completion): Check if buffer is alive.
19592
19593         * pgg-gpg.el (pgg-gpg-process-sentinel): Don't remove GNUPG:
19594         lines, temporary fix.
19595
19596 2006-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
19597
19598         * gnus-group.el (gnus-group-update-tool-bar): Add :initialize and :set.
19599
19600 2006-03-29  Daiki Ueno  <ueno@unixuser.org>
19601
19602         * pgg-gpg.el (pgg-gpg-start-process): Don't bind
19603         default-enable-multibyte-characters.  This reverts the change from
19604         revision 6.17 which is no longer necessary because the passphrase
19605         is sent separately now.  GnuPG messages are unreadable under
19606         multibyte locales with default-enable-multibyte-characters set to
19607         nil.
19608
19609 2006-03-28  Reiner Steib  <Reiner.Steib@gmx.de>
19610
19611         * message.el (message-tool-bar-gnome): Move "spell".
19612
19613 2006-03-27  Reiner Steib  <Reiner.Steib@gmx.de>
19614
19615         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Don't use
19616         XEmacs-only `replace-in-string'.  Use `gnus-group-real-name'
19617         instead.
19618
19619 2006-03-27  Karl Kleinpaste  <karl@charcoal.com>
19620
19621         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups):
19622         Improve newsgroups handling for NNTP overviews which don't include
19623         Newsgroups.
19624
19625 2006-03-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
19626
19627         * message.el (message-resend): Bind message-generate-hashcash to nil.
19628
19629 2006-03-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
19630
19631         * hashcash.el (hashcash-already-paid-p): Bind case-fold-search
19632         when searching for already-paid recipients.
19633
19634 2006-03-27  Daiki Ueno  <ueno@unixuser.org>
19635
19636         * pgg-gpg.el: Invoke gpg asynchronous, to avoid querying for
19637         passphrases when it is not needed.
19638         (pgg-gpg-use-agent): Add, to hard code that pgg shouldn't wait for
19639         passphrase stuff from gpg, should only be necessary when you use
19640         gpg with a smartcard.
19641
19642 2006-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
19643
19644         * mml.el (mml-insert-mime): Ignore cached contents of
19645         message/external-body part.
19646
19647         * mm-decode.el (mm-get-part): Add optional 'no-cache' argument.
19648         (mm-insert-part): Ditto.
19649
19650 2006-03-23  Simon Josefsson  <jas@extundo.com>
19651
19652         * pgg-gpg.el (pgg-gpg-update-agent): Add again, with fixes from
19653         Reiner.
19654         (pgg-gpg-use-agent-p): Use it again.
19655
19656 2006-03-23  Simon Josefsson  <jas@extundo.com>
19657
19658         * pgg-gpg.el (pgg-gpg-update-agent): Remove, doesn't work with
19659         older emacsen.
19660         (pgg-gpg-use-agent-p): Don't use it.
19661
19662 2006-03-23  Reiner Steib  <Reiner.Steib@gmx.de>
19663
19664         * pgg-gpg.el (pgg-gpg-update-agent): Only use make-network-process
19665         if we can.
19666
19667 2006-03-22  Sascha Wilde  <wilde@sha-bang.de>
19668
19669         * pgg-gpg.el (pgg-gpg-use-agent): Disable by default.
19670         (pgg-gpg-update-agent): New function.
19671         (pgg-gpg-use-agent-p): New function.
19672         (pgg-gpg-process-region, pgg-gpg-encrypt-region)
19673         (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
19674         (pgg-gpg-sign-region): Use it.
19675
19676 2006-03-22  Katsumi Yamaoka  <yamaoka@jpl.org>
19677
19678         * gnus-sum.el (gnus-map-articles): Don't funcall symbol macro.
19679         Reported by Ralf Wachinger <rwachinger@gmx.de>.
19680
19681 2006-03-21  Simon Josefsson  <jas@extundo.com>
19682
19683         * pgg-gpg.el: Ideas below based on patch from Sascha Wilde
19684         <wilde@sha-bang.de>.
19685         (pgg-gpg-use-agent): New variable.
19686         (pgg-gpg-process-region): Use it.
19687         (pgg-gpg-encrypt-region): Likewise.
19688         (pgg-gpg-encrypt-symmetric-region): Likewise.
19689         (pgg-gpg-decrypt-region): Likewise.
19690         (pgg-gpg-sign-region): Likewise.
19691         (pgg-gpg-possibly-cache-passphrase): Don't cache a nil password.
19692
19693 2006-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
19694
19695         * gnus-agent.el (gnus-agent-queue-mail): Fix custom tag for `t'.
19696
19697         * spam.el (spam-mark-new-messages-in-spam-group-as-spam):
19698         Add comment on version.
19699
19700 2006-03-20  Reiner Steib  <Reiner.Steib@gmx.de>
19701
19702         * smiley.el: Add missing test smiley.
19703
19704 2006-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
19705
19706         * mm-decode.el (mm-with-part): New macro.
19707         (mm-get-part): Use it; work with message/external-body as well.
19708         (mm-save-part): Treat name and filename equally.
19709
19710         * mm-extern.el (mm-extern-cache-contents): New function.
19711         (mm-inline-external-body): Use it; force the part to be displayed;
19712         move undisplayer added to the cached handle to the parent.
19713
19714         * gnus-art.el (gnus-mime-save-part-and-strip): Add name parameter.
19715         (gnus-mime-view-part-as-type): Work with message/external-body.
19716
19717         * gnus-util.el (gnus-tool-bar-update): Bind tool-bar-mode.
19718
19719 2006-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
19720
19721         * gmm-utils.el (gmm-image-load-path-for-library): Prefer user's
19722         images in image-load-path.  [Sync with image.el, revision 1.60, in
19723         Emacs.]
19724
19725 2006-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
19726
19727         * gmm-utils.el (gmm-image-load-path-for-library): Pass value of
19728         path rather than symbol.  Always return list of directories.
19729         Guarantee that image directory comes first.  [Sync with image.el,
19730         revision 1.59, in Emacs.]
19731
19732         * message.el (message-make-tool-bar): Adjust to new API of
19733         `gmm-image-load-path-for-library'.
19734
19735         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
19736
19737         * gnus-group.el (gnus-group-make-tool-bar): Ditto.
19738
19739 2006-03-15  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
19740
19741         * gnus-art.el (gnus-article-only-boring-p):
19742         Bind inhibit-point-motion-hooks to avoid infinite loop when entering
19743         intangible text.
19744         Reported by Ralf Wachinger <rwnewsmampfer@geekmail.de>.
19745
19746 2006-03-14  Reiner Steib  <Reiner.Steib@gmx.de>
19747
19748         * gmm-utils.el (gmm-image-load-path-for-library): Fix typo.
19749         Use `defun' instead of `gmm-defun-compat'.
19750
19751 2006-03-14  Simon Josefsson  <jas@extundo.com>
19752
19753         * message.el (message-unique-id): Don't use message-number-base36
19754         if (user-uid) is a float.
19755         Reported by Bjorn Solberg <bjorn_ding1@hekneby.org>.
19756
19757 2006-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>
19758
19759         * mm-uu.el (mm-uu-dissect): Dissect all parts correctly.
19760
19761         * gnus-art.el (gnus-mime-display-single): Make sure there is an
19762         empty line between a part and a message part.
19763
19764 2006-03-10  Reiner Steib  <Reiner.Steib@gmx.de>
19765
19766         * smiley.el: Add more test smileys.
19767         (smiley-data-directory, smiley-regexp-alist)
19768         (gnus-smiley-file-types): Fix doc strings.
19769         (smiley-update-cache): Clear smiley-cached-regexp-alist before
19770         adding new elements.
19771         (smiley-mouse-map): Unused code.  Make it a comment.
19772
19773 2006-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
19774
19775         * gnus-nocem.el (gnus-nocem-scan-groups): Add autoload cookie;
19776         scan latest NoCeM messages instead of old ones.
19777         (gnus-nocem-check-article): Fix regexps so as to match to PGP
19778         delimiters that are recently used.
19779         (gnus-nocem-load-cache): Add autoload cookie.
19780
19781         * gnus.el (gnus-use-nocem): Enable it to be set to also a number.
19782
19783         * gnus-start.el (gnus-setup-news): Scan NoCeM messages if a group
19784         level which is larger than gnus-use-nocem is specified.
19785
19786         * gnus-group.el (gnus-group-get-new-news): Ditto.
19787
19788 2006-03-08  Reiner Steib  <Reiner.Steib@gmx.de>
19789
19790         * gnus-util.el (gnus-tool-bar-update): New function.
19791
19792         * gnus-group.el (gnus-group-update-tool-bar): New variable.
19793         (gnus-group-insert-group-line): Add gnus-tool-bar-update.
19794
19795         * gnus-topic.el (gnus-topic-prepare-topic): Add gnus-tool-bar-update.
19796
19797         * gnus-group.el (gnus-group-redraw-when-idle)
19798         (gnus-group-redraw-check): Remove.
19799         (gnus-group-make-tool-bar): Remove gnus-group-redraw-check.
19800
19801 2006-03-08  Katsumi Yamaoka  <yamaoka@jpl.org>
19802
19803         * nnmail.el (nnmail-split-it): Invert match-partial-words behavior
19804         if optional last element is specified in splits (FIELD VALUE...).
19805
19806 2006-03-07  Reiner Steib  <Reiner.Steib@gmx.de>
19807
19808         * message.el (message-make-tool-bar): Rename gmm-image-load-path
19809         to gmm-image-load-path-for-library.  Call with no-error argument.
19810         (message-tool-bar-gnome): Rename "mail/attach" to "attach".
19811
19812         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
19813
19814         * gnus-group.el (gnus-group-make-tool-bar): Ditto.
19815
19816         * gmm-utils.el (gmm-image-load-path): Remove alias.
19817
19818 2006-03-06  Reiner Steib  <Reiner.Steib@gmx.de>
19819
19820         * gmm-utils.el (gmm-image-load-path): Add alias.
19821
19822         * nnml.el (nnml-generate-nov-databases-directory): Rename from
19823         nnml-generate-nov-databases-1.
19824         (nnml-generate-nov-databases): Use it.
19825         (nnml-generate-nov-databases-directory): Document no-active
19826         argument.
19827
19828         * gmm-utils.el (gmm-image-load-path-for-library): Return single
19829         directory if path is t.  Add no-error.
19830
19831         * gnus-group.el (gnus-group-make-tool-bar): Use add-hook.
19832         Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
19833
19834         * gnus-art.el (gnus-article-browse-delete-temp-files):
19835         Simplify resetting gnus-article-browse-html-temp-list.
19836
19837         * gmm-utils.el (gmm-image-load-path-for-library): Sync with
19838         mh-compat.el revision 1.9 in Emacs.  Rename `gmm-image-load-path'.
19839         Add example to docstring.  Rename local variables.  Move error
19840         checks to default case in cond and simplify.
19841
19842 2006-03-06  Katsumi Yamaoka  <yamaoka@jpl.org>
19843
19844         * mm-view.el (mm-w3m-cid-retrieve-1): Check carefully whether
19845         handle is multipart when calling it recursively.
19846         (mm-w3m-cid-retrieve): Display warning if retrieving fails.
19847
19848 2006-03-03  Daniel Pittman  <daniel@rimspace.net>
19849
19850         * nnimap.el (nnimap-request-update-info-internal): Optimize.
19851         Don't `gnus-uncompress-range' to avoid excessive memory usage.
19852
19853 2006-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
19854
19855         * gnus-group.el (gnus-group-tool-bar-gnome): Check if gnus-topic.el
19856         is loaded.
19857
19858         * gnus-sum.el (gnus-summary-tool-bar-gnome): Check if spam.el is
19859         loaded.
19860
19861 2006-03-03  Reiner Steib  <Reiner.Steib@gmx.de>
19862
19863         * mm-util.el (mm-with-unibyte-current-buffer): Change "Emacs 23"
19864         to "Emacs 23 (unicode)" in doc string.
19865
19866         * gnus-sum.el (gnus-summary-set-display-table): Change "Emacs 23" to
19867         "Emacs 23 (unicode)" in comment.
19868
19869 2006-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
19870
19871         * mm-decode.el (mm-get-part): Don't use mm-with-unibyte-current-buffer.
19872
19873         * gnus-sum.el (gnus-summary-set-display-table): Don't nix out
19874         characters 160 through 255 in Emacs 23.
19875
19876 2006-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
19877
19878         * gnus-art.el (gnus-article-browse-html-temp-list): Rename from
19879         gnus-article-browse-html-temp.
19880         (gnus-article-browse-delete-temp): Make it customizable.
19881         Add `file'.  Adjust doc string.
19882         (gnus-article-browse-delete-temp-files): Add argument.
19883         Allow query for each file.  Adjust doc string.
19884         (gnus-article-browse-html-parts):
19885         Add `gnus-article-browse-delete-temp-files' to
19886         `gnus-summary-prepare-exit-hook' and `gnus-exit-gnus-hook'.
19887
19888 2006-03-02  Hynek Schlawack  <hynek@ularx.de>
19889
19890         * gnus-art.el (gnus-article-browse-html-temp)
19891         (gnus-article-browse-delete-temp): New variables.
19892         (gnus-article-browse-delete-temp-files): New function.
19893         (gnus-article-browse-html-parts): Use it.
19894
19895 2006-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
19896
19897         * gnus-group.el (gnus-group-redraw-check): Remove redundant tests.
19898
19899         * gmm-utils.el (gmm-image-load-path): Mention ../etc search in doc
19900         string.
19901
19902         * gnus-sum.el (gnus-summary-tool-bar-gnome): Don't use
19903         gnus-summary-insert-new-articles when unplugged.
19904         Remove gnus-summary-search-article-forward.
19905
19906         * gmm-utils.el (gmm-tool-bar-style): Test tool-bar-mode and
19907         display-visual-class instead of display-color-cells.
19908
19909 2006-03-02  Katsumi Yamaoka  <yamaoka@jpl.org>
19910
19911         * dgnushack.el: Autoload customize-group for XEmacs.
19912
19913         * mml.el (mml-generate-mime-1): Encode parts other than text/* or
19914         message/* containing non-ASCII text properly.
19915
19916 2006-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
19917
19918         * message.el: Require gmm-utils, remove autoloads.
19919         (message-tool-bar): Set default based on
19920         gmm-tool-bar-style.
19921         (message-tool-bar-gnome): Add gmm-customize-mode.
19922
19923         * gnus-sum.el (gnus-summary-tool-bar): Set default based on
19924         gmm-tool-bar-style.
19925         (gnus-summary-tool-bar-gnome): Add gmm-customize-mode.
19926
19927         * gnus-group.el (gnus-group-tool-bar): Set default based on
19928         gmm-tool-bar-style.
19929         (gnus-group-tool-bar-gnome): Add gmm-customize-mode.
19930
19931         * gmm-utils.el (gmm-image-directory): Rename variable from
19932         gmm-image-load-path.
19933         (gmm-image-load-path): Use gmm-image-directory.
19934         (gmm-customize-mode): New function.
19935         (gmm-tool-bar-style): New variable.
19936
19937         * gnus-group.el (gnus-group-redraw-when-idle): Rename from
19938         gnus-group-redraw-line-number.
19939         (gnus-group-redraw-check): Simplify.
19940         (gnus-group-tool-bar-update): Remove redraw check.
19941         (gnus-group-make-tool-bar): Add redraw check.
19942
19943 2006-03-01  Michael Piotrowski  <mxp@dynalabs.de>  (tiny change)
19944
19945         * gnus-art.el (gnus-button): Add missing parentheses.
19946
19947 2006-03-01  Katsumi Yamaoka  <yamaoka@jpl.org>
19948
19949         * lpath.el: Fbind line-number-at-pos.
19950
19951 2006-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
19952
19953         * mm-util.el (mm-with-unibyte-current-buffer): Add note.
19954
19955 2006-02-28  Reiner Steib  <Reiner.Steib@gmx.de>
19956
19957         * gnus-art.el (gnus-button): New face.
19958         (gnus-article-button-face): Use it.
19959
19960         * gnus-sum.el (gnus-summary-tool-bar-gnome):
19961         Add gnus-summary-next-page.  Re-order.
19962
19963         * gnus-group.el (gnus-group-tool-bar-gnome): prev-node and
19964         next-node are now included.
19965         (gnus-group-redraw-line-number): New internal variable.
19966         (gnus-group-redraw-check): Helper function for updating the tool
19967         bar.
19968         (gnus-group-tool-bar-update): Add gnus-group-redraw-check.
19969
19970         * gmm-utils.el (gmm-tool-bar-item): Add TODO about modifiers.
19971
19972         * spam.el (spam-spamassassin-score-regexp): New internal variable.
19973         (spam-extra-header-to-number, spam-check-spamassassin-headers):
19974         Use it to match format of Spamassassin 3.0 and later.
19975         Reported by IRIE Tetsuya <irie@t.email.ne.jp>.
19976         (spam-check-bogofilter)
19977         (spam-bogofilter-register-with-bogofilter): Fix args of
19978         `gnus-error' calls.
19979
19980 2006-02-28  Reiner Steib  <Reiner.Steib@gmx.de>
19981
19982         * gnus-draft.el (gnus-draft-send): Bind message-signature to avoid
19983         unnecessary interaction when sending queued mails.
19984         Reported by TAKAHASHI Yoshio <tkh@jp.fujitsu.com>.
19985
19986 2006-02-27  Reiner Steib  <Reiner.Steib@gmx.de>
19987
19988         * gnus-sum.el (gnus-sequence-of-unread-articles): Return nil if
19989         first or last are nil.
19990
19991 2006-02-24  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
19992
19993         * nnweb.el (nnweb-gmane-create-mapping): Don't choke on ^M.
19994
19995 2006-02-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19996
19997         * gnus-int.el (gnus-open-server): Respect gnus-batch-mode.
19998
19999 2006-02-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20000
20001         * dns.el (query-dns): Protect more against buggy tcp output.
20002
20003 2006-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
20004
20005         * nnweb.el (nnweb-type-definition, nnweb-gmane-search): Use new
20006         nov.php.
20007
20008 2006-02-24  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
20009
20010         * nnweb.el (nnweb-type-definition, nnweb-gmane-create-mapping)
20011         (nnweb-gmane-wash-article, nnweb-gmane-search): Fix Gmane web
20012         groups.  Kudos to Olly Betts <olly@survex.com> for providing NOV
20013         output on the server side.
20014         (nnweb-google-create-mapping): Update regexps and add some
20015         progress indication.
20016
20017 2006-02-23  Reiner Steib  <Reiner.Steib@gmx.de>
20018
20019         * gnus-group.el (gnus-group-tool-bar-gnome):
20020         Fix gnus-agent-toggle-plugged.  Re-order icons.
20021         (gnus-group-tool-bar-gnome):
20022         Add gnus-group-{prev,next}-unread-group.
20023         (gnus-group-tool-bar-gnome): Re-order icons.
20024
20025         * gnus-sum.el (gnus-summary-tool-bar-gnome):
20026         Move gnus-summary-insert-new-articles.
20027
20028         * message.el (message-tool-bar-gnome, message-tool-bar-retro):
20029         Fix comments.
20030
20031         * utf7.el (utf7-utf-16-coding-system): Fix comment.  utf-16-be is
20032         also available in Emacs 21.3.
20033
20034         * message.el (message-fix-before-sending): Change "Emacs 22" to
20035         "Emacs 23 (unicode)" in comment.
20036
20037         * qp.el (quoted-printable-encode-region): Change "Emacs 22" to
20038         "Emacs 23 (unicode)" in comment.
20039
20040         * mm-util.el: Change "Emacs 22" to "Emacs 23 (unicode)" in
20041         comment.
20042         (mm-coding-system-p): Add comment about no-MULE XEmacs.
20043
20044         * mm-view.el (mm-fill-flowed): Add :version.
20045
20046 2006-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
20047
20048         * gmm-utils.el (gmm-image-load-path): Don't modify image-load-path
20049         and load-path.
20050
20051 2006-02-22  Reiner Steib  <Reiner.Steib@gmx.de>
20052
20053         * message.el: Autoload gmm-image-load-path.
20054         (message-tool-bar-retro): Prepend "gnus/" subdirectory to some
20055         icon file names.  Use old Emacs 21 "mail_send.xpm" icon for
20056         consitency.
20057
20058         * gmm-utils.el (gmm-image-load-path): Also search in
20059         "../etc/images".  Don't set gmm-image-load-path if we don't find
20060         the image.
20061
20062 2006-02-22  Katsumi Yamaoka  <yamaoka@jpl.org>
20063
20064         * gmm-utils.el (gmm-image-load-path): Don't make
20065         `gmm-image-load-path' include subdirectories which the second arg
20066         `image' might specify.
20067
20068         * gnus-group.el (gnus-group-tool-bar-retro): Prepend the "gnus/"
20069         subdirectory to icon file names.
20070
20071         * gnus-sum.el (gnus-summary-tool-bar-retro): Ditto.
20072
20073 2006-02-21  Reiner Steib  <Reiner.Steib@gmx.de>
20074
20075         * gnus-group.el (gnus-group-make-tool-bar): Add IMAGE argument to
20076         gmm-image-load-path calls.
20077
20078         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
20079
20080         * message.el (message-make-tool-bar): Ditto.
20081
20082         * mml.el (mml-preview): Add comment concerning tool bar icons.
20083
20084         * gnus-group.el (gnus-group-tool-bar-gnome): Use new icon names.
20085         (gnus-group-make-tool-bar): Use `gmm-image-load-path'.
20086
20087         * gnus-sum.el (gnus-summary-tool-bar-gnome): Use new icon names.
20088         (gnus-summary-make-tool-bar): Use `gmm-image-load-path'.
20089
20090         * message.el (message-tool-bar-gnome): Use new icon names.
20091         (message-make-tool-bar): Use `gmm-image-load-path'.
20092
20093         * gmm-utils.el (gmm-defun-compat, gmm-image-search-load-path):
20094         New functions from MH-E.
20095         (gmm-image-load-path): New variable from MH-E.
20096         (gmm-image-load-path): New function from MH-E.  Add arguments
20097         LIBRARY, IMAGE and PATH.  Don't modify paths.  Don't use
20098         *-image-load-path-called-flag.
20099
20100 2006-02-21  Milan Zamazal  <pdm@brailcom.org>
20101
20102         * mm-view.el (mm-view-pkcs7-verify): Implement using smime.el.
20103
20104 2006-02-21  Wolfram Fenske  <wolfram.fenske@student.uni-magdeburg.de>  (tiny change)
20105
20106         * nnimap.el (nnimap-request-move-article): Change folder back to
20107         source group before deleting.
20108
20109 2006-02-20  Reiner Steib  <Reiner.Steib@gmx.de>
20110
20111         * mm-util.el (mm-charset-override-alist): Fix type in doc string.
20112
20113         * gnus-art.el (mm-url-insert-file-contents-external):
20114         Autoload mm-url.
20115
20116         * mm-uu.el (mm-uu-type-alist): Improve `LaTeX'.
20117
20118 2006-02-20  Katsumi Yamaoka  <yamaoka@jpl.org>
20119
20120         * rfc2047.el (rfc2047-charset-to-coding-system): Don't check the
20121         coding system which mm-charset-to-coding-system returns for a
20122         given charset is valid.
20123
20124 2006-02-16  Juanma Barranquero  <lekktu@gmail.com>
20125
20126         * html2text.el (html2text-remove-tag-list):
20127         * spam-stat.el (spam-stat-buffer-words): Fix typo in docstring.
20128
20129 2006-02-14  Chong Yidong  <cyd@stupidchicken.com>
20130
20131         * gnus-cus.el: Revert 2005-10-17 change.
20132
20133 2006-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
20134
20135         * gnus-art.el (article-strip-banner):
20136         Call article-really-strip-banner only when the regexp match is made.
20137
20138 2006-02-16  Katsumi Yamaoka  <yamaoka@jpl.org>
20139
20140         * gnus-art.el (article-strip-banner):
20141         Use gnus-extract-address-components instead of
20142         mail-header-parse-addresses to make it work with non-ASCII text;
20143         remove mail-encode-encoded-word-string.
20144
20145         * rfc2231.el (rfc2231-parse-string): Attempt to parse parameter
20146         values which are surrounded with \"...\"; make it never cause a
20147         Lisp error; give up parsing of parameters if it failed in
20148         extracting type.
20149
20150 2006-02-14  Arne Jørgensen  <arne@arnested.dk>
20151
20152         * smime.el (smime-cert-by-ldap-1): Fix bug where
20153         `smime-ldap-search' returns results without userCertificates.
20154
20155 2006-02-15  Katsumi Yamaoka  <yamaoka@jpl.org>
20156
20157         * mm-util.el (mm-make-temp-file): Don't catch file-error in Emacs.
20158
20159 2006-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
20160
20161         * spam.el (spam-check-spamassassin-headers): Adapt format for
20162         Spamassassin 3.0 or later.  Reported by ARISAWA Akihiro
20163         <ari@mbf.ocn.ne.jp>.
20164         (spam-list-of-processors): Add spam-use-gmane.
20165
20166 2006-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
20167
20168         * mm-util.el (mm-make-temp-file): Import the Emacs 22 version of
20169         make-temp-file; make it work with XEmacs as well.
20170
20171         * gnus-art.el (gnus-article-browse-html-parts): Use the 3rd arg of
20172         mm-make-temp-file.
20173
20174         * mm-decode.el (mm-display-external): Use the 3rd arg of
20175         mm-make-temp-file.
20176         (mm-create-image-xemacs): Ditto.
20177
20178 2006-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
20179
20180         * gnus-draft.el (gnus-draft-send): Replace message-narrow-to-head
20181         with message-narrow-to-headers.
20182         (gnus-draft-setup): Narrow to header to run message-fetch-field.
20183         (gnus-draft-check-draft-articles): New function.
20184         (gnus-draft-edit-message, gnus-draft-send-message): Use it.
20185
20186 2006-02-13  Reiner Steib  <Reiner.Steib@gmx.de>
20187
20188         * gnus-art.el (gnus-article-browse-html-parts):
20189         `hs-show-html-list' should read `gnus-article-browse-html-parts'.
20190         Don't use suffix argument for mm-make-temp-file for Emacs 21
20191         compatibility.  Remove useless `format'.
20192
20193 2006-02-13  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
20194
20195         * nnweb.el (nnweb-google-wash-article): Update regexps.
20196         (nnweb-group-alist): Use defvoo instead of defvar.
20197
20198 2006-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
20199
20200         * nnoo.el (nnoo-declare): Don't generate duplicate entries when
20201         re-loading nn* modules.
20202
20203 2006-02-10  Reiner Steib  <Reiner.Steib@gmx.de>
20204
20205         * gnus-group.el (gnus-group-make-tool-bar): Remove duplicate check
20206         for `tool-bar-mode' and don't check it's default-value.
20207
20208         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
20209
20210         * message.el (message-make-tool-bar): Ditto.
20211
20212         * gnus-art.el (gnus-article-browse-html-parts): Remove useless
20213         `substring'.  Shorten tmp-file name.
20214
20215         * gnus.el: Remove bogus comment.
20216
20217 2006-02-10  Hynek Schlawack  <hynek@ularx.de>
20218
20219         * gnus-art.el (gnus-article-browse-html-parts): New function.
20220         (gnus-article-browse-html-article): New function for viewing html
20221         articles with a browser.
20222
20223 2006-02-09  Daiki Ueno  <ueno@unixuser.org>
20224
20225         * pgg-gpg.el (pgg-gpg-encrypt-region): Don't convert line-endings
20226         in elisp.
20227         (pgg-gpg-encrypt-symmetric-region): Ditto.
20228         (pgg-gpg-sign-region): Ditto.
20229
20230         * pgg-def.el (pgg-text-mode): New variable.
20231
20232         * mml2015.el (mml2015-pgg-sign): Enable pgg-text-mode.
20233         (mml2015-pgg-encrypt): Ditto.
20234
20235         * mml1991.el (mml1991-pgg-sign): Enable pgg-text-mode.
20236         (mml1991-pgg-encrypt): Ditto.
20237
20238 2006-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
20239
20240         * nnfolder.el (nnfolder-insert-newsgroup-line):
20241         Use message-make-date instead of current-time-string.
20242
20243         * mm-view.el (mm-inline-message): Don't set gnus-newsgroup-charset
20244         to gnus-decoded which mm-uu might set.
20245
20246 2006-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
20247
20248         * rfc2231.el (rfc2231-parse-string): Sort segmented parameters;
20249         don't decode quoted parameters; remove misimported Emacs code.
20250         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
20251         (rfc2231-decode-encoded-string): Don't use split-string which
20252         behaves differently according to Emacs version; use
20253         mm-decode-coding-region to convert charset to coding-system.
20254         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
20255         (rfc2231-encode-string): Remove misimported Emacs code.
20256
20257 2006-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
20258
20259         * gnus-art.el (article-decode-charset): Don't use ignore-errors
20260         when calling mail-header-parse-content-type.
20261         (article-de-quoted-unreadable): Ditto.
20262         (article-de-base64-unreadable): Ditto.
20263         (article-wash-html): Ditto.
20264
20265         * mm-decode.el (mm-dissect-buffer): Don't use ignore-errors when
20266         calling mail-header-parse-content-type and
20267         mail-header-parse-content-disposition.
20268         (mm-find-raw-part-by-type): Don't use ignore-errors when calling
20269         mail-header-parse-content-type.
20270
20271         * mml.el (mml-insert-mime-headers): Use mml-insert-parameter to
20272         insert charset and format parameters; encode description after
20273         inserting it to buffer.
20274         (mml-insert-parameter): Fold lines properly even if a parameter is
20275         segmented into two or more lines; change the max column to 76.
20276
20277         * rfc1843.el (rfc1843-decode-article-body): Don't use
20278         ignore-errors when calling mail-header-parse-content-type.
20279
20280         * rfc2231.el (rfc2231-parse-string): Return at least type if
20281         possible; don't cause an error even if it fails in parsing of
20282         parameters.  Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
20283         (rfc2231-encode-string): Don't break lines at the beginning, leave
20284         it to mml-insert-parameter.
20285
20286         * webmail.el (webmail-yahoo-article): Don't use ignore-errors when
20287         calling mail-header-parse-content-type.
20288
20289 2006-02-06  Reiner Steib  <Reiner.Steib@gmx.de>
20290
20291         * spam-report.el (spam-report-gmane-use-article-number):
20292         Improve doc string.
20293         (spam-report-gmane-internal): Check if a suitable header was found
20294         in the article.
20295
20296 2006-02-04  Katsumi Yamaoka  <yamaoka@jpl.org>
20297
20298         * rfc2231.el (rfc2231-parse-string): Revert 2006-02-03 change.
20299         (rfc2231-encode-string): Make param*=value always begin with LWSP.
20300
20301 2006-02-05  Romain Francoise  <romain@orebokech.com>
20302
20303         Update copyright notices of all files in the gnus directory.
20304
20305 2006-02-03  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
20306
20307         * nnweb.el (nnweb-request-group): Avoid growing overview files.
20308
20309 2006-02-03  Katsumi Yamaoka  <yamaoka@jpl.org>
20310
20311         * rfc2231.el (rfc2231-parse-string): Add missing semicolons to
20312         segmented lines of parameter value to cope with Thunderbird 1.5
20313         bug (cf. https://bugzilla.mozilla.org/show_bug.cgi?id=323318).
20314         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
20315         (rfc2231-encode-string): Don't make lines exceeding 76 column.
20316
20317 2006-02-01  Max Froumentin  <max@lapin-bleu.net>  (tiny change)
20318
20319         * mml.el (mml-generate-mime-1): Correct the order of inline signed
20320         parts.
20321
20322 2006-01-31  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
20323
20324         * nnweb.el (nnweb-group-alist): Use defvar instead of defvoo,
20325         there's only one active file for all servers.
20326         (nnweb-request-scan): Make sure nnweb-articles is initialized on
20327         solid groups.  Gnus might have used a FAST request to select the group.
20328         (nnweb-request-group, nnweb-google-parse-1): Don't keep nnweb-type
20329         and nnweb-search redundantly in the active file.
20330         (nnweb-request-list): Don't list bogus groups.  There can only be one.
20331         (nnweb-request-create-group): Don't use ARGS.
20332         (nnweb-possibly-change-server, nnweb-request-group): Remove some
20333         initializations.  Let nnoo do the work.
20334
20335 2006-01-31  Katsumi Yamaoka  <yamaoka@jpl.org>
20336
20337         * mm-uu.el (mm-uu-emacs-sources-extract, mm-uu-diff-extract):
20338         Say the part has been decoded.
20339
20340         * mm-view.el (mm-display-inline-fontify): Get decoded part rightly.
20341
20342 2006-01-31  Kevin Ryde  <user42@zip.com.au>
20343
20344         * mailcap.el (mailcap-viewer-passes-test): Don't put "(nil t)" into
20345         mailcap-viewer-test-cache when there's no 'test clause, since that
20346         will invert the meaning of a "nil" test previously determined by
20347         mailcap-mailcap-entry-passes-test.
20348
20349 2006-01-30  Katsumi Yamaoka  <yamaoka@jpl.org>
20350
20351         * gnus-group.el: Bind tool-bar-mode instead of tool-bar-map when
20352         compiling.
20353
20354         * gnus-sum.el: Ditto.
20355
20356         * message.el: Don't bind tool-bar-map when compiling.
20357
20358 2006-01-30  Reiner Steib  <Reiner.Steib@gmx.de>
20359
20360         * nnweb.el (nnweb-google-parse-1): Clarify some comments.
20361
20362 2006-01-30  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
20363
20364         * nnweb.el (nnweb-type-definition, nnweb-google-parse-1)
20365         (nnweb-google-create-mapping, nnweb-google-search): Adapt to
20366         current Google Groups.
20367
20368 2006-01-26  Reiner Steib  <Reiner.Steib@gmx.de>
20369
20370         * gnus-sum.el (gnus-summary-make-tool-bar): Add checks for XEmacs
20371         and tool-bar-mode.
20372
20373         * gnus-group.el (gnus-group-make-tool-bar): Add checks for XEmacs
20374         and tool-bar-mode.
20375
20376         * message.el (message-tool-bar-update): Simplify.
20377         (message-make-tool-bar): Add checks for XEmacs and tool-bar-mode.
20378
20379         * gnus-sum.el (gnus-summary-tool-bar-update): Check for
20380         gnus-summary-buffer.
20381         (gnus-summary-tool-bar-gnome): Use "reply-author" icon for
20382         gnus-summary-reply.
20383
20384         * gmm-utils.el (gmm): Add :version.
20385
20386 2006-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
20387
20388         * Makefile.in (clean): New rule.
20389         (distclean): Use it.
20390
20391 2006-01-26  Steve Youngs  <steve@sxemacs.org>
20392
20393         * gmm-utils.el (gmm-tool-bar-item, gmm-tool-bar-zap-list):
20394         Don't autoload.
20395
20396 2006-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
20397
20398         * gmm-utils.el (gmm-verbose): Add :group.
20399
20400 2006-01-25  Reiner Steib  <Reiner.Steib@gmx.de>
20401
20402         * message.el: Change some comments WRT tool-bars.
20403
20404         * gnus-sum.el (gnus-summary-tool-bar)
20405         (gnus-summary-tool-bar-gnome, gnus-summary-tool-bar-retro)
20406         (gnus-summary-tool-bar-zap-list): New variables.
20407         (gnus-summary-make-tool-bar): Complete rewrite using
20408         `gmm-tool-bar-from-list'.
20409
20410         * gnus-group.el (gnus-group-tool-bar, gnus-group-tool-bar-gnome)
20411         (gnus-group-tool-bar-retro, gnus-group-tool-bar-zap-list):
20412         New variables.
20413         (gnus-group-make-tool-bar): Complete rewrite using
20414         `gmm-tool-bar-from-list'.
20415         (gnus-group-tool-bar-update): New function.
20416
20417         * message.el (message-mode-field-menu): Add "Show hidden Headers".
20418
20419 2006-01-25  Katsumi Yamaoka  <yamaoka@jpl.org>
20420
20421         * mm-uu.el (mm-uu-dissect-text-parts): Ignore it if a given part
20422         is dissected into a single part of which the type is the same as
20423         the given one; decode charset.
20424
20425 2006-01-21  Kevin Ryde  <user42@zip.com.au>
20426
20427         * mailcap.el (mailcap-parse-mailcap-extras): "test" key must go
20428         into alists as symbol not string, since that's what
20429         mailcap-viewer-passes-test and mailcap-mailcap-entry-passes-test
20430         look for.
20431
20432 2006-01-24  Reiner Steib  <Reiner.Steib@gmx.de>
20433
20434         * gmm-utils.el (gmm-tool-bar-item): Add "Separator".
20435         (gmm-tool-bar-from-list): Suppress tooltip for `gmm-ignore'.
20436
20437         * message.el (message-tool-bar-gnome): Use gmm-ignore.
20438
20439 2006-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
20440
20441         * gnus-xmas.el (gnus-mime-security-button-menu): New alias.
20442         (gnus-xmas-mime-security-button-menu): New function.
20443
20444         * gnus-art.el (gnus-mime-security-button-commands): New variable.
20445         (gnus-mime-security-button-menu): New definition.
20446         (gnus-mime-security-button-map): Use them.
20447         (gnus-mime-security-button-menu): New function.
20448         (gnus-insert-mime-security-button): Addition to help echo.
20449         (gnus-mime-security-run-function, gnus-mime-security-save-part)
20450         (gnus-mime-security-pipe-part): New functions.
20451
20452         * mm-uu.el (mm-uu-buttonize-original-text-parts): Remove.
20453         (mm-uu-dissect-text-parts): Revert a part of 2006-01-23 change.
20454
20455         * mm-decode.el (mm-handle-set-disposition): Remove.
20456         (mm-handle-set-description): Remove.
20457
20458 2006-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
20459
20460         * mm-view.el (mm-w3m-standalone-supports-m17n-p): New variable.
20461         (mm-w3m-standalone-supports-m17n-p): New function.
20462         (mm-inline-text-html-render-with-w3m-standalone): Use it to alter
20463         w3m usage.
20464
20465         * gnus-art.el (gnus-article-wash-html-with-w3m-standalone):
20466         Use mm-w3m-standalone-supports-m17n-p to alter w3m usage.
20467
20468 2006-01-23  Reiner Steib  <Reiner.Steib@gmx.de>
20469
20470         * message.el (message-tool-bar-zap-list):
20471         Use gmm-tool-bar-zap-list as custom type.
20472         (message-tool-bar-update): New function.
20473         (message-tool-bar, message-tool-bar-gnome)
20474         (message-tool-bar-retro): Add message-tool-bar-update.
20475         (message-tool-bar-gnome): Add flyspell-buffer.
20476
20477         * gnus-util.el (gnus-error): Describe `args'.
20478
20479         * gmm-utils.el (gmm-error): Describe `args'.
20480         (gmm-tool-bar-zap-list): New widget.
20481         (gmm-tool-bar-from-list): Improve description of `zap-list'.
20482
20483 2006-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
20484
20485         * mm-uu.el (mm-uu-buttonize-original-text-parts): New variable.
20486         (mm-uu-dissect-text-parts): Buttonize original text parts; reduce
20487         the number of recursive calls.
20488
20489         * mm-decode.el (mm-handle-set-disposition): New macro.
20490         (mm-handle-set-description): New macro.
20491
20492 2006-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
20493
20494         * mm-uu.el (mm-uu-dissect-text-parts): Decode content transfer
20495         encoding.
20496
20497 2006-01-20  Reiner Steib  <Reiner.Steib@gmx.de>
20498
20499         * message.el (message-tool-bar-zap-list, message-tool-bar)
20500         (message-tool-bar-gnome, message-tool-bar-retro): New variables.
20501         (message-tool-bar-local-item-from-menu): Remove.
20502         (message-tool-bar-map): Replace by `message-make-tool-bar'.
20503         (message-make-tool-bar): New function.
20504         (message-mode): Use `message-make-tool-bar'.
20505
20506         * gmm-utils.el: New file.
20507         (gmm-verbose, gmm-message, gmm-error): From gnus-utils.el.
20508         (gmm-lazy): New widget copied from `nnmail.el'.
20509         (gmm-tool-bar-from-list): New function for creating customizable
20510         tool bars.
20511         (gmm-tool-bar-from-list): Fix typos in doc string.  Remove debug
20512         output.
20513         (gmm): Add :prefix to defgroup.
20514
20515 2006-01-20  Per Abrahamsen  <abraham@dina.kvl.dk>
20516
20517         * gmm-utils.el (gmm-widget-p): New function.
20518
20519 2006-01-20  Reiner Steib  <Reiner.Steib@gmx.de>
20520
20521         * mml.el (mml-attach-file): Describe `description' in doc string.
20522         (mml-menu): Add Emacs MIME manual and PGG manual.
20523
20524 2006-01-20  Richard M. Stallman  <rms@gnu.org>
20525
20526         * mm-url.el (mm-url-load-url): Require url-parse and url-vars.
20527
20528 2006-01-20  Kevin Greiner  <kevin.greiner@compsol.cc>
20529
20530         * nntp.el (nntp-end-of-line): Doc fix.
20531
20532 2006-01-20  Chong Yidong  <cyd@stupidchicken.com>
20533
20534         * imap.el (imap-open): Handle case where buffer is a buffer
20535         object.
20536
20537 2005-01-20  Stefan Monnier  <monnier@iro.umontreal.ca>
20538
20539         * gnus-delay.el (gnus-delay): Don't autoload.
20540         It's useless and could trigger a bug in cus-dep.el causing ldefs-boot
20541         to be re-loaded when customizing the `gnus-delay' group.
20542
20543 2005-01-20  Chong Yidong  <cyd@stupidchicken.com>
20544
20545         * message.el (message-insert-citation-line): Use newlines.
20546
20547 2006-01-19  Ken Manheimer  <ken.manheimer@gmail.com>
20548
20549         * pgg-pgp.el (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region)
20550         (pgg-pgp-sign-region): Add optional 'passphrase' argument to all
20551         these routines, so the passphrase can be managed externally and
20552         passed in to the system.
20553         (pgg-pgp-decrypt-region, pgg-pgp-sign-region): Use new name for
20554         pgg-add-passphrase-to-cache function.
20555
20556         * pgg-pgp5.el (pgg-pgp5-encrypt-region, pgg-pgp5-decrypt-region)
20557         (pgg-pgp5-sign-region): Add optional 'passphrase' argument to all
20558         these routines, so the passphrase can be managed externally and
20559         passed in to the system.
20560         (pgg-pgp5-sign-region): Use new name of
20561         pgg-add-passphrase-to-cache function.
20562
20563 2006-01-19  Ken Manheimer  <ken.manheimer@gmail.com>
20564
20565         * pgg-gpg.el (pgg-gpg-select-matching-key): Fix: look at the right
20566         part of the decoded armor to find the key-identifier.
20567         (pgg-gpg-lookup-key-owner): New function to return the
20568         human-readable identifier of a key owner.
20569         (pgg-gpg-key-id-from-key-owner): Make it easy to identify the key
20570         itself.
20571         (pgg-gpg-decrypt-region): Prompt with the key owner (rather than
20572         the key value) if we have a key and can match it against a secret
20573         key.  Also, added a note pointing out fact that the prompt only
20574         indicates the first matching key.
20575
20576         * pgg.el (pgg-decrypt): Passing along 'passphrase' in call to
20577         pgg-decrypt-region.
20578         (pgg-add-passphrase-to-cache): Rename from
20579         `pgg-add-passphrase-cache' to reduce confusion (all callers
20580         changed).
20581         (pgg-remove-passphrase-from-cache): Rename from
20582         `pgg-remove-passphrase-cache' to reduce confusion (all callers
20583         changed).
20584         (pgg-read-passphrase, pgg-add-passphrase-cache)
20585         (pgg-remove-passphrase-cache): Add informative docstrings.
20586         (pgg-decrypt): Convey provided passphrase in subordinate call to
20587         pgg-decrypt-region.
20588
20589 2006-01-19  Ken Manheimer  <ken.manheimer+emacs@gmail.com>
20590
20591         * pgg.el (pgg-encrypt-region, pgg-encrypt-symmetric-region)
20592         (pgg-encrypt-symmetric, pgg-encrypt, pgg-decrypt-region)
20593         (pgg-decrypt, pgg-sign-region, pgg-sign): Add optional
20594         'passphrase' argument, so the passphrase can be managed externally
20595         and then passed in to the system.
20596
20597         * pgg.el (pgg-read-passphrase, pgg-add-passphrase-cache)
20598         (pgg-remove-passphrase-cache): Add optional 'notruncate' argument,
20599         so the passphrase cache can be used reliably with identifiers
20600         besides a pgp packet's key id.
20601
20602         * pgg-gpg.el (pgg-gpg-encrypt-region)
20603         (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
20604         (pgg-gpg-sign-region): Add optional 'passphrase' argument to all
20605         these routines, so the passphrase can be managed externally and
20606         passed in to the system.
20607
20608         * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Add optional
20609         'notruncate' argument, so the passphrase cache can be used
20610         reliably with identifiers besides a pgp packet's key id.
20611
20612 2006-01-19  Sascha Wilde  <swilde@sha-bang.de>
20613
20614         * pgg-gpg.el (pgg-gpg-encrypt-symmetric-region): New function for
20615         symmetric encryption.
20616         (pgg-gpg-symmetric-key-p): New function to check for an symmetric
20617         encrypted session key.
20618         (pgg-gpg-decrypt-region): When decrypting a symmetric encrypted
20619         message ask for the passphrase in a proper way.
20620
20621         * pgg.el (pgg-encrypt-symmetric, pgg-encrypt-symmetric-region):
20622         New user commands for symmetric encryption.
20623
20624 2006-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
20625
20626         * mm-bodies.el (mm-decode-body): Don't decode decoded body.
20627
20628         * mm-uu.el (mm-uu-dissect-text-parts): Dissect dissected parts.
20629
20630 2006-01-19  Mark D. Baushke  <mdb@gnu.org>
20631
20632         * pgg-gpg.el (pgg-gpg-encrypt-region): Add --textmode to gpg args.
20633
20634 2006-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
20635
20636         * mm-decode.el (mm-inlined-types): Add application/pgp.
20637         (mm-automatic-display): Ditto.
20638
20639         * mm-uu.el (mm-uu-dissect-text-parts): Recognize application/pgp
20640         part as text.
20641
20642 2006-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
20643
20644         * nnrss.el: Update copyright.
20645         (nnrss-opml-import): Query whether to subscribe to each entry.
20646
20647         * gnus-art.el:
20648         * gnus-sum.el:
20649         * gnus-xmas.el:
20650         * messagexmas.el:
20651         * mm-uu.el:
20652         * mm-view.el: Update copyright.
20653
20654 2006-01-16  Reiner Steib  <Reiner.Steib@gmx.de>
20655
20656         * message.el (message-info): New function.
20657         (message-mode-menu): Add it.
20658         Update copyright.
20659
20660         * ChangeLog: Fix and update copyright.
20661
20662 2006-01-13  Romain Francoise  <romain@orebokech.com>
20663
20664         * message.el (message-forward-subject-name-subject): Prefer the
20665         address to 'nowhere' if the sender has no name.
20666         Fix typo.  Update copyright year.
20667
20668 2006-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
20669
20670         * gnus-art.el (article-wash-html):
20671         Use gnus-summary-show-article-charset-alist if a numeric arg is given.
20672         (gnus-article-wash-html-with-w3m-standalone): New function.
20673
20674         * mm-view.el (mm-text-html-renderer-alist): Map w3m-standalone to
20675         mm-inline-text-html-render-with-w3m-standalone.
20676         (mm-text-html-washer-alist): Map w3m-standalone to
20677         gnus-article-wash-html-with-w3m-standalone.
20678         (mm-inline-text-html-render-with-w3m-standalone): New function.
20679
20680 2006-01-12  Reiner Steib  <Reiner.Steib@gmx.de>
20681
20682         * mm-uu.el (mm-uu-type-alist): Fix previous message-marks commit.
20683         Improve LaTeX.
20684
20685 2006-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
20686
20687         * nnrss.el (nnrss-wash-html-in-text-plain-parts): New variable.
20688         (nnrss-request-article): Render text/plain parts as HTML.
20689
20690         * gnus-art.el (gnus-article-wash-html-with-w3m): No need to narrow
20691         the buffer.
20692
20693 2006-01-08  Reiner Steib  <Reiner.Steib@gmx.de>
20694
20695         * gnus-cus.el (gnus-group-parameters): Sync posting-style with
20696         custom definition of `gnus-posting-styles'.
20697
20698         * gnus-start.el (gnus-gnus-to-quick-newsrc-format):
20699         Bind print-circle.  Suggested by Kalle Olavi Niemitalo <kon@iki.fi>.
20700
20701 2006-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
20702
20703         * gnus-group.el (gnus-useful-groups): Use Gmane for ding.
20704         Use nntp for bug archive.
20705
20706 2006-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
20707
20708         * nnrss.el (nnrss-request-article): Fix the way to fill text/plain
20709         parts.
20710         (nnrss-normalize-date): New function converts ISO 8601 date into
20711         RFC822 style.  Suggested by Mark Plaksin <happy@mcplaksin.org>.
20712         (nnrss-check-group): Use it.
20713
20714 2006-01-01  Katsumi Yamaoka  <yamaoka@jpl.org>
20715
20716         * gnus-sum.el (gnus-summary-work-articles): Remove useless `min'.
20717
20718         * nnrss.el (nnrss-fetch): Make it fail gracefully when it can't
20719         fetch a feed.  Suggested by Mark Plaksin <happy@mcplaksin.org>.
20720         (nnrss-insert-w3): Ditto.
20721
20722 2005-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
20723
20724         * gnus-uu.el (gnus-uu-digest-mail-forward): Reverse the order of
20725         the articles to be forwarded including the case where neither a
20726         number of articles nor a region is specified.
20727
20728 2005-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
20729
20730         * nnrss.el (nnrss-request-article): Fix last change; fill
20731         text/plain parts.
20732
20733 2005-12-20  Katsumi Yamaoka  <yamaoka@jpl.org>
20734
20735         * nnrss.el (nnrss-request-article): Replace <br />s with newlines
20736         in text/plain part.
20737         (nnrss-check-group): Don't add excessive newline to dc:subject.
20738
20739 2005-12-19  Mark Plaksin  <happy@mcplaksin.org>  (tiny change)
20740
20741         * nnrss.el (nnrss-check-group): Put the RSS dc:subject in the
20742         article.
20743
20744 2005-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
20745
20746         * nnml.el: Don't require gnus-bcklg.  Autoload it.
20747         (nnml-use-compressed-files, nnml-save-mail): Support other
20748         comression programs such as bzip2.
20749
20750 2005-12-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20751
20752         * dns.el (query-dns): Make sure we check the buffer size before
20753         removing tcp headers.
20754
20755 2005-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
20756
20757         * gnus-art.el (gnus-article-delete-text-of-type): Enable it to
20758         remove MIME buttons associated with multipart/alternative parts.
20759         (gnus-mime-display-alternative): Tag buttons using `article-type'
20760         text property.
20761
20762         * gnus-msg.el (gnus-copy-article-buffer): Remove MIME buttons
20763         associated with multipart/alternative parts.
20764
20765         * gnus-art.el (gnus-signature-separator): Fix custom type.
20766
20767         * mm-decode.el (mm-inlined-types): Fix custom type.
20768         (mm-keep-viewer-alive-types): Ditto.
20769         (mm-automatic-display): Ditto.
20770         (mm-attachment-override-types): Ditto.
20771         (mm-inline-override-types): Ditto.
20772         (mm-automatic-external-display): Ditto.
20773
20774 2005-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
20775
20776         * spam-report.el (spam-report-user-mail-address)
20777         (spam-report-user-agent): New variables.
20778         (spam-report-url-ping-plain): Use spam-report-user-agent.
20779
20780 2005-12-14  Ralf Angeli  <angeli@iwi.uni-sb.de>
20781
20782         * gnus-art.el (gnus-button-handle-custom): Do not just use
20783         `customize-apropos' for any "M-x customize-*" button but the
20784         function called for.  Accept both the function name and its
20785         argument in order to achieve this.
20786         (gnus-button-alist): Remove support for "custom:" URL's.
20787         Pass function name to `gnus-button-handle-custom' in case of "M-x
20788         customize-*" buttons.
20789
20790 2005-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
20791
20792         * gnus-art.el (gnus-buttonized-mime-types): Mention addition of
20793         multipart/alternative and add xref to mm-discouraged-alternatives
20794         in doc string.
20795
20796         * mm-decode.el (mm-discouraged-alternatives): Add xref to
20797         gnus-buttonized-mime-types in doc string.
20798
20799 2005-12-08  Reiner Steib  <Reiner.Steib@gmx.de>
20800
20801         * mm-decode.el (mm-discouraged-alternatives): Fix custom type.
20802         Suggest image/.* in the doc string.
20803
20804 2005-12-12  Reiner Steib  <Reiner.Steib@gmx.de>
20805
20806         * mm-uu.el (mm-uu-type-alist): Don't depend on message.el for
20807         message-marks (Debian bug#342521).
20808
20809 2005-12-12  Simon Josefsson  <jas@extundo.com>
20810
20811         * password.el (password-read-from-cache): Add.
20812         (password-read): Use it.
20813
20814 2005-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
20815
20816         * rfc2047.el (rfc2047-charset-to-coding-system):
20817         Recognize us-ascii as a MIME charset.
20818
20819         * mm-bodies.el (mm-decode-content-transfer-encoding):
20820         Protect against the case where the 2nd arg TYPE is nil.
20821
20822 2005-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
20823
20824         * pop3.el (pop3-stream-type): Fix custom version.
20825
20826         * mm-uu.el (mm-uu-type-alist): Simplify uu regexp.
20827
20828 2005-12-09  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
20829
20830         * mm-decode.el (mm-display-external): Add missing cdr.
20831
20832 2005-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
20833
20834         * mm-decode.el (mm-display-external): Use nametemplate (defined in
20835         RFC1524) if it is in mailcap or add a suffix according to
20836         mailcap-mime-extensions when generating a temp filename; postpone
20837         deleting a temp file for 2 seconds for some wrappers, shell
20838         scripts, and so on, which might exit right after having started a
20839         viewer command as a background job.
20840
20841 2005-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
20842
20843         * nntp.el (nntp-marks-directory): Fix custom group.
20844
20845         * gnus-fun.el (gnus-face-from-file): Decrease quant in smaller
20846         steps when < 10.
20847
20848         * gnus-start.el (gnus-no-server-1):
20849         Mention `gnus-level-default-subscribed' in doc string.
20850
20851 2005-12-02  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
20852
20853         * mm-view.el (mm-inline-text-html-render-with-w3m): Fix misplaced
20854         parens.
20855
20856 2005-12-01  Katsumi Yamaoka  <yamaoka@jpl.org>
20857
20858         * gnus-xmas.el (gnus-use-toolbar): Revert.
20859         (gnus-xmas-setup-toolbar): Use global default-toolbar if
20860         gnus-use-toolbar is default.
20861
20862         * messagexmas.el (message-use-toolbar): Revert.
20863         (message-setup-toolbar): Use global default-toolbar if
20864         message-use-toolbar is default.
20865
20866 2005-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
20867
20868         * gnus-xmas.el (gnus-use-toolbar): Determine the default value
20869         according to default-toolbar-visible-p.
20870
20871         * messagexmas.el (message-use-toolbar): Ditto.
20872
20873 2005-11-26  Dave Love  <fx@gnu.org>
20874
20875         * tls.el (open-tls-stream): Rename arg SERVICE to PORT.
20876         (tls-program, tls-success): Provide openssl alternative.
20877
20878         * starttls.el: Doc fixes.
20879         (starttls-open-stream-gnutls, starttls-open-stream): Rename arg
20880         SERVICE to PORT.
20881
20882         * pop3.el (pop3-open-server) <ssl>: Clarify a loop.  Deal with
20883         port null or service name.
20884         (starttls-negotiate): Autoload.
20885
20886 2005-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
20887
20888         * message.el (message-kill-to-signature): Fix interactive spec.
20889
20890 2005-11-24  Katsumi Yamaoka  <yamaoka@jpl.org>
20891
20892         * pop3.el (pop3-open-server): Recognize a string as a service name.
20893
20894 2005-11-24  Pascal Rigaux  <pixel@mandriva.com>  (tiny change)
20895
20896         * rfc2231.el (rfc2231-parse-string): Support non-ascii chars.
20897
20898 2005-11-23  Dave Love  <fx@gnu.org>
20899
20900         Add pop3s, pop3/starttls.
20901
20902         * pop3.el (pop3-authentication-scheme): Clarify doc.
20903         (open-tls-stream, starttls-open-stream): Autoload.
20904         (pop3-stream-type): New.
20905         (pop3-open-server): Use it.
20906
20907         * mail-source.el (mail-sources): Fix some :types.  Add stream type
20908         for POP.
20909         (mail-source-keyword-map): Add :stream for POP.
20910         (mail-source-fetch-pop): Use pop3-stream-type.
20911
20912 2005-11-22  Katsumi Yamaoka  <yamaoka@jpl.org>
20913
20914         * nnmail.el (nnmail-fancy-expiry-target): Use current-time instead
20915         of current-time-string.
20916
20917 2005-11-20  Stefan Schimanski  <schimmi@debian.org>  (tiny change)
20918
20919         * nnmail.el (nnmail-fancy-expiry-target): Protect against invalid
20920         date header.
20921
20922 2005-11-19  Kevin Greiner  <kevin.greiner@compsol.cc>
20923
20924         * gnus-sum.el (gnus-fetch-old-headers): Updated docs to warn that
20925         it can seriously impact performance as it bypasses the agent's
20926         local caches.
20927
20928 2005-11-19  Kevin Greiner  <kevin.greiner@compsol.cc>
20929
20930         * gnus-agent.el (gnus-agent-possibly-synchronize-flags): A server
20931         must be explicitly online rather than "not explicitly offline" for
20932         its flags to be synchronized.
20933
20934         * gnus-sum.el (gnus-summary-remove-process-mark): Always return t so
20935         that gnus-uu-unmark-thread will function correctly.
20936
20937         * gnus-group.el (gnus-total-fetched-for): Reduced cutoff so that
20938         1024K is instead displayed as 1M.
20939
20940 2005-11-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20941
20942         * flow-fill.el (fill-flowed): Bind adaptive-fill-mode to nil.
20943
20944 2005-11-16  Boris Samorodov  <bsam@ipt.ru>  (tiny change)
20945
20946         * imap.el (imap-kerberos4-open): Ignore SSL stuff.
20947
20948 2005-11-13  Kevin Greiner  <kevin.greiner@compsol.cc>
20949
20950         * gnus-agent.el (gnus-agent-read-local): Trivial fix to format of
20951         error message to display actual error condition.
20952         (gnus-agent-save-local): Avoid saving symbols that are bound to
20953         nil as they simply result in a warning message in
20954         gnus-agent-read-local.
20955
20956 2005-11-13  Katsumi Yamaoka  <yamaoka@jpl.org>
20957
20958         * gnus-start.el (gnus-dribble-read-file): Use make-local-variable
20959         rather than make-variable-buffer-local for file-precious-flag.
20960
20961 2005-11-12  Kevin Greiner  <kevin.greiner@compsol.cc>
20962
20963         * gnus-agent.el (gnus-agent-braid-nov): Now tests new nov entries
20964         for duplicates which are removed.  The invalid sort check then
20965         triggers a rescan after the sort as sorting may have moved
20966         duplicate entries such that they can be cheaply detected.
20967
20968 2005-11-13  Katsumi Yamaoka  <yamaoka@jpl.org>
20969
20970         * gnus-start.el (gnus-dribble-read-file): Quote file-precious-flag.
20971
20972 2005-11-12  Kevin Greiner  <kevin.greiner@compsol.cc>
20973
20974         * gnus-agent.el (gnus-agent-article-alist-save-format):
20975         Change internal variable to a custom variable.  Change default value
20976         from compressed(2) to uncompressed(1).
20977         (gnus-agent-read-agentview): Reversed revision 7.8 to restore
20978         support for uncompressed agentview files.  Taken together, reading
20979         the agentview file should now be 6-7 times faster.
20980
20981 2005-11-11  Jan Nieuwenhuizen  <janneke@gnu.org>
20982
20983         * gnus-start.el (gnus-dribble-read-file): Set file-precious-flag,
20984         as a buffer-local variable.  This avoids creating truncated
20985         dribble files as a result of a hang up, eg.
20986
20987 2006-01-03  Rodrigo Ventura  <yoda@isr.ist.utl.pt>  (tiny change)
20988
20989         * gnus-xmas.el (gnus-xmas-group-startup-message): Typo
20990         gnus-splash-face -> gnus-splash.  Fixes starting from a TTY in
20991         XEmacs.
20992
20993 2005-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
20994
20995         * gnus-start.el (gnus-start-draft-setup):
20996         Enforce `gnus-draft-mode' for nndraft:drafts at startup.
20997
20998         * gnus.el (gnus-splash): Change custom group.
20999         (gnus-group-get-parameter, gnus-group-parameter-value):
21000         Describe allow-list argument.
21001
21002         * gnus-agent.el (gnus-agent-article-alist-save-format): Format doc
21003         string.
21004
21005 2005-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
21006
21007         * gnus-art.el (gnus-default-article-saver): Add user-defined
21008         `function' to custom type.
21009
21010 2005-10-30  Chong Yidong  <cyd@stupidchicken.com>
21011
21012         * imap.el (imap-open): Handle case where buffer is a buffer
21013         object.
21014
21015 2005-11-29  Reiner Steib  <Reiner.Steib@gmx.de>
21016
21017         * gnus-cache.el (gnus-cache-rename-group): Wrap doc strings and
21018         long lines.
21019         (gnus-cache-delete-group): Wrap doc strings.
21020
21021         * gnus-agent.el (gnus-agent-rename-group)
21022         (gnus-agent-delete-group): Wrap doc strings.
21023
21024 2005-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
21025
21026         * messagexmas.el (message-use-toolbar): Change the valid values
21027         into default, top, bottom, left, and right.
21028         (message-toolbar-thickness): New variable.
21029         (message-xmas-setup-toolbar): Locate gnus-xmas-glyph-directory as
21030         well.
21031         (message-setup-toolbar): Make it work.
21032
21033         * gnus-xmas.el (gnus-xmas-update-toolbars): New function.
21034         (gnus-use-toolbar): Change the valid values into default, top,
21035         bottom, left, and right.
21036         (gnus-toolbar-thickness): New variable.
21037         (gnus-xmas-setup-toolbar): New function.
21038         (gnus-xmas-setup-group-toolbar): Use it.
21039         (gnus-xmas-setup-summary-toolbar): Use it.
21040
21041 2005-11-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21042
21043         * gnus-start.el (gnus-1): Add "native" to
21044         gnus-predefined-server-alist.
21045
21046         * gnus.el (gnus-method-to-server): Don't add "native" to the
21047         lists here, because that leads to problems when
21048         gnus-select-method is bound.
21049
21050 2005-11-09  Simon Josefsson  <jas@extundo.com>
21051
21052         * gnus-sum.el (gnus-article-sort-by-date-reverse): Remove,
21053         use (not sort-by-date) instead.
21054
21055 2005-11-30  Stefan Monnier  <monnier@iro.umontreal.ca>
21056
21057         * gnus-delay.el (gnus-delay-group): Don't autoload.
21058         It's useless and could trigger a bug in cus-dep.el causing ldefs-boot
21059         to be re-loaded when customizing the `gnus-delay' group.
21060
21061 2005-11-19  Chong Yidong  <cyd@stupidchicken.com>
21062
21063         * message.el: Revert last changes.
21064         (message-insert-citation-line): Use newlines.
21065
21066 2005-11-17  Chong Yidong  <cyd@stupidchicken.com>
21067
21068         * message.el (message-courtesy-message)
21069         (message-mark-insert-begin, message-mark-insert-end)
21070         (message-elide-ellipsis, message-cancel-message)
21071         (message-add-header, message-change-subject)
21072         (message-cross-post-followup-to-header)
21073         (message-cross-post-insert-note, message-reduce-to-to-cc)
21074         (message-widen-reply, message-delete-not-region)
21075         (message-kill-to-signature, message-insert-signature)
21076         (message-insert-importance-high, message-insert-importance-low)
21077         (message-insert-or-toggle-importance)
21078         (message-insert-disposition-notification-to)
21079         (message-indent-citation, message-yank-original)
21080         (message-cite-original-without-signature, message-cite-original)
21081         (message-insert-citation-line, message-position-on-field)
21082         (message-fix-before-sending, message-send-mail-partially)
21083         (message-send-mail, message-send-mail-with-sendmail)
21084         (message-send-mail-with-qmail, message-send-news)
21085         (message-check-news-header-syntax, message-generate-headers)
21086         (message-insert-courtesy-copy, message-fill-address)
21087         (message-fill-header, message-shorten-references)
21088         (message-setup-1, message-cancel-news)
21089         (message-forward-make-body-plain, message-forward-make-body-mime)
21090         (message-forward-make-body-mml, message-encode-message-body)
21091         (message-forward-make-body-digest-plain)
21092         (message-forward-make-body-digest-mime)
21093         (message-use-alternative-email-as-from): Insert `hard-newline'
21094         instead of ordinary newlines.
21095
21096 2005-11-09  Katsumi Yamaoka  <yamaoka@jpl.org>
21097
21098         * message.el (message-generate-headers): Downcase the argument
21099         given to message-check-element.
21100
21101 2005-11-08  Kevin Greiner  <kevin.greiner@compsol.cc>
21102
21103         * nntp.el (nntp-authinfo-rejected): New error condition.
21104         (nntp-wait-for): Use new error condition to signal authentication
21105         error.
21106         (nntp-retrieve-data): Rethrow new error condition to break out of
21107         recursive call to nntp-send-authinfo.
21108
21109 2005-11-08  Romain Francoise  <romain@orebokech.com>
21110
21111         * gnus-sum.el (gnus-summary-catchup-and-goto-prev-group): New function.
21112         (gnus-summary-exit-map): Bind to `Z p'.
21113         (gnus-summary-make-menu-bar): Add menu item.
21114
21115 2005-11-02  Reiner Steib  <Reiner.Steib@gmx.de>
21116
21117         * gnus-art.el (gnus-article-treat-custom): Add `first'.
21118         (gnus-treat-*): Add `first' in all doc strings.
21119
21120         * gnus-group.el (gnus-group-compact-group): Fix typo.
21121
21122 2005-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
21123
21124         * gnus.el (gnus-parameters-case-fold-search): New variable.
21125         (gnus-parameters-get-parameter): Use it.
21126
21127         * gnus-score.el (gnus-home-score-file): Doc fix.
21128
21129 2005-11-01  Xavier Maillard  <zedek@gnu-rox.org>  (tiny change)
21130
21131         * gnus-score.el (gnus-update-score-entry-dates): Doc fix.
21132
21133 2005-10-31  Katsumi Yamaoka  <yamaoka@jpl.org>
21134
21135         * mm-util.el (mm-special-display-p): New function.
21136
21137         * mml.el (mml-preview): Use it; doc fix.
21138
21139 2005-10-30  Chong Yidong  <cyd@stupidchicken.com>
21140
21141         * imap.el (imap-open): Handle case where buffer is a buffer object.
21142
21143 2005-10-29  Romain Francoise  <romain@orebokech.com>
21144
21145         * message.el (message-fix-before-sending): Fix comment.
21146
21147 2005-10-29  Jari Aalto  <jari.aalto@cante.net>
21148
21149         * gnus-sum.el (gnus-article-sort-by-date-reverse): New function.
21150
21151 2005-10-29  Jari Aalto  <jari.aalto@cante.net>
21152
21153         * score-mode.el (gnus-score-edit-done-hook): Introduce variable.
21154         Used in gnus-score.el.
21155
21156 2005-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
21157
21158         * mm-util.el (mm-codepage-setup): Remove bogus alias test.
21159
21160 2005-10-27  Reiner Steib  <Reiner.Steib@gmx.de>
21161
21162         * flow-fill.el (fill-flowed-encode-tests): Restore trailing
21163         whitespace removed in revision 7.8.  Use concatenated string to
21164         protect trailing whitespace.
21165
21166 2005-10-27  Jouni K. Seppänen  <jks@iki.fi>
21167
21168         * nnimap.el (nnimap-search-uids-not-since-is-evil): Add variable.
21169         (nnimap-request-expire-articles): Use it to avoid sending 'UID
21170         SEARCH UID ... NOT SINCE' queries, for inefficient servers like
21171         Courier IMAP ("some version from 2004").  Mostly based on similar
21172         code in the same function.
21173
21174 2005-10-26  Didier Verna  <didier@xemacs.org>
21175
21176         * gnus-group.el (gnus-group-compact-group): Invalidate original
21177         article buffer.
21178         * gnus-srvr.el (gnus-server-compact-server): Ditto.
21179         * nnml.el (nnml-request-compact-group): Handle self Xref: field in
21180         NOV database and in article itself.
21181         Invalidate article backlog.
21182
21183 2005-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
21184
21185         * mm-uu.el (mm-uu-hide-markers): Fix XEmacs case.
21186
21187 2005-10-26  Simon Josefsson  <jas@extundo.com>
21188
21189         * flow-fill.el (fill-flowed): Flow-fill unquoted lines too, revert
21190         part of 2004-07-25 change.
21191
21192 2005-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
21193
21194         * message.el (message-display-completion-list): New function.
21195         (message-expand-group): Use it; make sure the Completions buffer
21196         is modifiable.
21197 2005-10-23  Chong Yidong  <cyd@stupidchicken.com>
21198
21199         * gnus-sum.el (gnus-ignored-from-addresses): Handle case where
21200         user-mail-name is an empty string.
21201
21202 2005-10-25  Reiner Steib  <Reiner.Steib@gmx.de>
21203
21204         * gnus-score.el (gnus-default-adaptive-score-alist): Set defaults
21205         depending on gnus-score-decay-constant.
21206
21207         * encrypt.el (encrypt-insert-file-contents)
21208         (encrypt-write-file-contents): Don't use `gnus-message'.
21209
21210         * mm-uu.el (mm-uu-verbatim-marks-extract): Add four start and end
21211         arguments.
21212         (mm-uu-type-alist): Add message-marks and insert-marks.
21213         Pass arguments to mm-uu-verbatim-marks-extract.
21214         (mm-uu-hide-markers): New variable.
21215         (mm-uu-extract): Use face similar to `gnus-cite-3'.
21216
21217         * gnus-fun.el (gnus-convert-image-to-x-face-command)
21218         (gnus-convert-image-to-face-command): Use "convert" by default to
21219         allow other input image formats.
21220         (gnus-x-face-from-file, gnus-face-from-file): Adjust doc strings
21221         accordingly.
21222
21223 2005-10-23  Simon Josefsson  <jas@extundo.com>
21224
21225         * imap.el (imap-gssapi-program): Align command line parameters
21226         with latest GNU SASL.
21227         (imap-gssapi-open): Ignore 'Trying ...' messages from GNU SASL.
21228
21229 2005-10-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21230
21231         * nnslashdot.el (nnslashdot-retrieve-headers-1): Update to new
21232         HTML.
21233         (nnslashdot-request-article): Ditto.
21234
21235         * lpath.el (featurep): Add nobreak-char-display.
21236
21237 2005-10-20  Hiroshi Fujishima  <hiroshi.fujishima@gmail.com>  (tiny change)
21238
21239         * mail-source.el (mail-source-fetch-pop): Require pop3.
21240         (mail-source-check-pop): Ditto.
21241
21242 2005-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
21243
21244         * rfc2047.el (rfc2047-decode-encoded-words): Fix the handling of
21245         errors.
21246
21247 2005-10-19  Reiner Steib  <Reiner.Steib@gmx.de>
21248
21249         * gnus-art.el (gnus-treat-strip-trailing-blank-lines)
21250         (gnus-treat-strip-leading-blank-lines): Improve doc string.
21251
21252         * message.el (message-tool-bar-local-item-from-menu): Fix comment.
21253
21254         * mm-bodies.el (mm-decode-string):
21255         Call `mm-charset-to-coding-system' with allow-override argument.
21256
21257 2005-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
21258
21259         * rfc2047.el (rfc2047-allow-incomplete-encoded-text): New variable.
21260         (rfc2047-charset-to-coding-system): New function.
21261         (rfc2047-decode-encoded-words): New function.
21262         (rfc2047-decode-region): Use them.
21263         (rfc2047-decode-cte): Remove.
21264         (rfc2047-parse-and-decode): Remove.
21265         (rfc2047-decode): Remove.
21266
21267 2005-10-15  Kenichi Handa  <handa@m17n.org>
21268
21269         * rfc2047.el (rfc2047-decode-cte): New function.
21270         (rfc2047-decode-region): Change the way to decode successive
21271         encoded-words: decode B- or Q-encoding in each encoded-word,
21272         concatenate them, and decode it as charset.
21273
21274 2005-10-14  Katsumi Yamaoka  <yamaoka@jpl.org>
21275
21276         * lpath.el: Fbind codepage-setup for XEmacs.
21277
21278 2005-10-17  Chong Yidong  <cyd@stupidchicken.com>
21279
21280         * gnus-cus.el (gnus-custom-map): New variable.  Bind mouse-1 to
21281         widget-move-and-invoke.
21282         (gnus-custom-mode): Use gnus-custom-map.
21283
21284 2005-10-15  Bill Wohler  <wohler@newt.com>
21285
21286         * message.el (message-tool-bar-map): Rename image file from
21287         mail_send to mail/send.
21288
21289 2005-10-16  Masatake YAMATO  <jet@gyve.org>
21290
21291         * message.el (message-expand-group): Pass the common
21292         prefix substring of completion to `display-completion-list'.
21293
21294 2005-10-13  Reiner Steib  <Reiner.Steib@gmx.de>
21295
21296         * mml-sec.el (mml-secure-method): New internal variable.
21297         (mml-secure-sign, mml-secure-encrypt, mml-secure-message-sign)
21298         (mml-secure-message-sign-encrypt, mml-secure-message-encrypt):
21299         New functions using mml-secure-method.
21300
21301         * mml.el (mml-mode-map): Add key bindings for those functions.
21302         (mml-menu): Simplify security menu entries.  Suggested by Jesper
21303         Harder <harder@myrealbox.com>.
21304         (mml-attach-file, mml-attach-buffer, mml-attach-external):
21305         Goto end of message if point is the headers of the message.
21306
21307         * message.el (message-in-body-p): New function.
21308
21309         * assistant.el: Autoload gnus-util and netrc.
21310
21311         * mm-util.el (mm-charset-to-coding-system): Add allow-override.
21312         Use `mm-charset-override-alist' only when decoding.
21313
21314         * mm-bodies.el (mm-decode-body):
21315         Call `mm-charset-to-coding-system' with allow-override argument.
21316
21317         * gnus-art.el (gnus-mime-view-part-as-type-internal): Try to fetch
21318         `filename' from Content-Disposition if Content-Type doesn't
21319         provide `name'.
21320         (gnus-mime-view-part-as-type): Set default instead of
21321         initial-input.
21322
21323 2005-10-09  Daniel Brockman  <daniel@brockman.se>
21324
21325         * format-spec.el (format-spec): Propagate text properties of % spec.
21326
21327 2005-10-12  Reiner Steib  <Reiner.Steib@gmx.de>
21328
21329         * gnus-art.el (gnus-treat-predicate): Add `first'.
21330
21331 2005-10-11  Reiner Steib  <Reiner.Steib@gmx.de>
21332
21333         * mm-util.el (mm-charset-synonym-alist): Improve doc string.
21334         (mm-charset-override-alist): New variable.
21335         (mm-charset-to-coding-system): Use it.
21336         (mm-codepage-setup): New helper function.
21337         (mm-charset-eval-alist): New variable.
21338         (mm-charset-to-coding-system): Use mm-charset-eval-alist.
21339         Warn about unknown charsets.
21340
21341         * dgnushack.el (with-syntax-table): Add some URLs WRT the XEmacs bug.
21342
21343 2005-10-04  David Hansen  <david.hansen@gmx.net>
21344
21345         * nnrss.el (nnrss-request-article): Add support for the comments tag.
21346         (nnrss-check-group): Ditto.
21347
21348 2005-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
21349
21350         * mm-uu.el (mm-uu-verbatim-marks-extract, mm-uu-latex-extract):
21351         Rename x-gnus-verbatim to x-verbatim.
21352         (mm-uu-type-alist): Fix regexp for verbatim-marks.
21353
21354         * mm-decode.el (mm-automatic-display): Rename x-gnus-verbatim to
21355         x-verbatim.
21356
21357         * mm-url.el (mm-url-predefined-programs): Add switches for curl.
21358
21359         * gnus-util.el (gnus-remove-duplicates): Remove.
21360
21361         * nnmail.el (nnmail-article-group): Use mm-delete-duplicates
21362         instead of gnus-remove-duplicates.
21363
21364         * message.el (message-remove-duplicates): Remove.
21365         (message-idna-to-ascii-rhs-1): Use mm-delete-duplicates instead of
21366         message-remove-duplicates.
21367
21368         * mm-util.el (mm-delete-duplicates): Use `delete-dups' if
21369         available, else use implementation from `delete-dups'.
21370
21371         * message.el (message-insert-expires): New function.
21372         (message-mode-map): Add key binding.
21373         (message-mode-field-menu): Add menu entry.
21374         (message-mode): Document it.
21375         (message-make-expires-date): Use `message-make-date'.
21376
21377 2005-10-04  Josh Huber  <huber@alum.wpi.edu>
21378
21379         * message.el (message-make-expires-date): New function.
21380
21381 2005-10-04  Katsumi Yamaoka  <yamaoka@jpl.org>
21382
21383         * Makefile.in (list-installed-shadows): New entry.
21384         (install): Use it.
21385         (remove-installed-shadows): New entry.
21386
21387         * dgnushack.el (dgnushack-default-load-path): New variable.
21388         (dgnushack-find-lisp-shadows): New function.
21389         (dgnushack-remove-lisp-shadows): New function.
21390
21391 2005-10-02  Katsumi Yamaoka  <yamaoka@jpl.org>
21392
21393         * Makefile.in (install-el-elc): New entry.
21394         (install): Use it so that .el files are necessarily installed.
21395
21396 2005-09-30  Katsumi Yamaoka  <yamaoka@jpl.org>
21397
21398         * time-date.el: Autoload parse-time-string, XEmacs needs it.
21399
21400 2005-09-30  Stefan Monnier  <monnier@iro.umontreal.ca>
21401
21402         * mm-decode.el (mm-inline-media-tests): Check presence of the diff-mode
21403         function rather than the diff-mode.el package.
21404         (mm-display-external): Use with-current-buffer.
21405         (mm-viewer-completion-map, mm-viewer-completion-map):
21406         Move initialization inside declaration.
21407
21408 2005-09-29  Simon Josefsson  <jas@extundo.com>
21409
21410         * spam.el: Load hashcash when compiling, to avoid warnings.
21411         Don't autoload mail-check-payment.
21412         (spam-check-hashcash): Define unconditionally, since hashcash.el
21413         is part of Gnus now.  Ignore errors from payment checking.
21414
21415 2005-09-28  Reiner Steib  <Reiner.Steib@gmx.de>
21416
21417         * message.el (message-bold-region, message-unbold-region):
21418         Rename from `bold-region' and `unbold-region'.
21419
21420         * message.el: Remove useless autoloads.
21421
21422 2005-09-28  Simon Josefsson  <jas@extundo.com>
21423
21424         * message.el (message-use-idna): Default to t.
21425         (message-use-idna): Test whether encoding works too.  Doc fix.
21426
21427 2005-09-28  Katsumi Yamaoka  <yamaoka@jpl.org>
21428
21429         * nntp.el (nntp-warn-about-losing-connection): Remove.
21430
21431 2005-09-27  Reiner Steib  <Reiner.Steib@gmx.de>
21432
21433         * mm-uu.el (mm-uu-emacs-sources-regexp): Make variable
21434         customizable.  Change default value.
21435         (mm-uu-diff-groups-regexp): Change default value.
21436         (mm-uu-type-alist): Add doc string.
21437         (mm-uu-configure): Add doc string.  Make it interactive.
21438         (mm-uu-tex-groups-regexp): New variable.
21439         (mm-uu-latex-extract, mm-uu-latex-test): New functions.
21440         (mm-uu-type-alist): Add LaTeX documents.
21441         (mm-uu-verbatim-marks-extract): Use "text/x-gnus-verbatim" instead
21442         of "text/verbatim".
21443         (mm-uu-diff-groups-regexp): Fix missing quotes from previous commit.
21444
21445         * mm-decode.el (mm-automatic-display): Use "text/x-gnus-verbatim"
21446         instead of "text/verbatim".
21447
21448         * message.el (message-mark-inserted-region)
21449         (message-mark-insert-file): Use slrn style marks when called with
21450         prefix argument.
21451
21452 2005-09-27  Simon Josefsson  <jas@extundo.com>
21453
21454         * message.el (message-idna-to-ascii-rhs-1): Reformat.
21455
21456 2005-09-27  Arne Jørgensen  <arne@arnested.dk>
21457
21458         * message.el (message-remove-duplicates): New function.
21459         Implementation borrowed from `gnus-remove-duplicates'.
21460         (message-idna-to-ascii-rhs): Also encode idna addresses in
21461         Reply-To:, Mail-Reply-To: and Mail-Followup-To:.
21462         (message-idna-to-ascii-rhs-1): When `message-use-idna' is 'ask
21463         only ask about the same idna domain once per header and also tell
21464         in what header to replace the idna domain.
21465
21466         * gnus-art.el (article-decode-idna-rhs): Also decode idna
21467         addresses in Reply-To:, Mail-Reply-To: and Mail-Followup-To:.
21468         (article-decode-idna-rhs): Fix regexp so that all idna-address in
21469         a header is decoded and not just the last one.
21470
21471 2005-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
21472
21473         * gnus-art.el (gnus-mime-display-single): Don't modify text if it
21474         has been decoded.
21475
21476         * mm-decode.el (mm-automatic-display): Add text/verbatim.
21477         (mm-insert-part): Don't modify text if it has been decoded.
21478
21479         * mm-uu.el (mm-uu-verbatim-marks-extract): Say text has been
21480         decoded.
21481
21482         * mm-view.el (mm-inline-text): Don't strip text props unless
21483         decoding enriched or richtext parts.
21484
21485 2005-09-25  Romain Francoise  <romain@orebokech.com>
21486
21487         * gnus-agent.el (gnus-agent-expire-group, gnus-agent-expire):
21488         * gnus-start.el (gnus-subscribe-interactively):
21489         * gnus-uu.el (gnus-uu-grab-articles):
21490         End `yes-or-no-p' and `y-or-n-p' prompts with question mark and
21491         space.
21492
21493 2005-09-24  Emilio C. Lopes  <eclig@gmx.net>
21494
21495         * smime.el (smime-sign-buffer, smime-decrypt-buffer):
21496         * mm-view.el (mm-view-pkcs7-decrypt):
21497         * gnus-sum.el (gnus-summary-limit-to-extra)
21498         (gnus-summary-respool-article, gnus-read-move-group-name):
21499         * gnus-score.el (gnus-summary-increase-score):
21500         * gnus-util.el (gnus-completing-read-with-default):
21501         * gnus-art.el (gnus-read-save-file-name)
21502         (gnus-summary-save-in-rmail, gnus-summary-save-in-mail)
21503         (gnus-summary-save-in-file, gnus-summary-save-body-in-file):
21504         * message.el (message-check-news-header-syntax):
21505         Follow convention for reading with the minibuffer.
21506
21507 2005-09-22  Reiner Steib  <Reiner.Steib@gmx.de>
21508
21509         * spam-report.el (spam-report-url-ping-plain):
21510         Use gnus-extended-version as User-Agent.
21511
21512         * gnus-agent.el (gnus-agent-synchronize-flags): Explain why the
21513         default value is nil.
21514
21515         * mm-uu.el (mm-uu-type-alist): Add slrn style verbatim-marks.
21516         (mm-uu-verbatim-marks-extract): New function.
21517         (mm-uu-extract): New face.
21518         (mm-uu-copy-to-buffer): Use it.
21519
21520         * spam-report.el (spam-report-gmane-ham): Rename from
21521         `spam-report-gmane-unspam'.
21522         (spam-report-gmane-internal): Rename from `spam-report-gmane'.
21523         Simplify use of UNSPAM argument.  Fetch "X-Report-Unspam" header.
21524
21525         * spam.el (spam-report-gmane-spam, spam-report-gmane-ham):
21526         Autoload.
21527         (spam-report-gmane-unregister-routine):
21528         Rename `spam-report-gmane-unspam' to `spam-report-gmane-ham'.
21529
21530 2005-09-21  Teodor Zlatanov  <tzz@lifelogs.com>
21531
21532         * spam.el (spam-use-gmane, spam-report-gmane-register-routine)
21533         (spam-report-gmane-unregister-routine): Add support for gmane
21534         unregistration.
21535
21536         * spam-report.el (spam-report-gmane-unspam)
21537         (spam-report-gmane-spam): Add new wrappers around spam-report-gmane.
21538         (spam-report-gmane): Change to take a single article and do unspam
21539         registration.
21540
21541 2005-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
21542
21543         * mm-url.el (mm-url-decode-entities): Fix regexp.
21544
21545 2005-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21546
21547         * gnus-agent.el (gnus-agent-synchronize-flags): Switch the
21548         default to nil, to be able to use Gnus at all.  If the default
21549         switches to something else, then the function should be fixed not
21550         be exceedingly slow.
21551
21552 2005-09-20  Teodor Zlatanov  <tzz@lifelogs.com>
21553
21554         * gnus-start.el (gnus-activate-group): If the server is nil, don't
21555         fail hard.
21556
21557         * spam-report.el: Add better Keywords line.
21558
21559         * spam.el: Add Maintainer and better Keywords line.
21560
21561 2005-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
21562
21563         * gnus-art.el (gnus-article-replace-part)
21564         (gnus-mime-replace-part): New functions.
21565         (gnus-mime-action-alist, gnus-mime-button-commands)
21566         (gnus-mime-save-part-and-strip): Add file argument.
21567         (gnus-article-part-wrapper): Add interactive argument.
21568
21569         * gnus-sum.el (gnus-summary-mime-map):
21570         Add `gnus-article-replace-part'.
21571
21572 2005-09-19  Didier Verna  <didier@xemacs.org>
21573
21574         The nnml compaction feature:
21575         * nnml.el (nnml-request-compact-group): New function.
21576         * nnml.el (nnml-request-compact): New function.
21577         * gnus-int.el (gnus-request-compact-group): New function.
21578         * gnus-int.el (gnus-request-compact): New function.
21579         * gnus-group.el (gnus-group-compact-group): New function.
21580         * gnus-group.el (gnus-group-group-map): Bind it to 'G z'.
21581         * gnus-group.el (gnus-group-make-menu-bar): Add an entry for it.
21582         * gnus-srvr.el (gnus-server-compact-server): New function.
21583         * gnus-srvr.el (gnus-server-mode-map): Bind it to 'z'.
21584         * gnus-srvr.el (gnus-server-make-menu-bar): Add an entry for it.
21585
21586 2005-09-18  Deepak Goel  <deego@gnufans.org>
21587
21588         * sieve.el (sieve-help): Fix `message' call: first arg should be a
21589         format spec.
21590
21591 2005-09-16  Katsumi Yamaoka  <yamaoka@jpl.org>
21592
21593         * gnus.el (gnus-group-startup-message): Bind image-load-path.
21594
21595 2005-09-15  Romain Francoise  <romain@orebokech.com>
21596
21597         * message.el (message-fill-paragraph): Clarify docstring.
21598
21599 2005-09-14  Katsumi Yamaoka  <yamaoka@jpl.org>
21600
21601         * gnus-art.el (gnus-mime-display-part): Protect against broken
21602         MIME messages.
21603
21604 2005-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
21605
21606         * gnus-sum.el (gnus-summary-edit-article-done): Remove text props
21607         before parsing header.
21608
21609 2005-09-11  Jari Aalto  <jari.aalto@cante.net>
21610
21611         * html2text.el (html2text-replace-list): Add new entities.
21612
21613 2005-09-11  Romain Francoise  <romain@orebokech.com>
21614
21615         * message.el (message-alternative-emails): Improve docstring.
21616         (message-setup-1): Call `message-use-alternative-email-as-from'
21617         after `message-setup-hook' to give it precedence over posting
21618         styles, etc.
21619         (message-use-alternative-email-as-from): Add docstring.
21620         Remove the original From header if present.
21621
21622         * nnml.el (nnml-compressed-files-size-threshold): New variable.
21623         (nnml-save-mail): Use it.
21624
21625         * gnus-uu.el (gnus-uu-mark-series): Return number of marked
21626         articles.  Add new argument `silent'.
21627         (gnus-uu-mark-all): Report the total number of marked articles.
21628
21629 2005-09-10  Romain Francoise  <romain@orebokech.com>
21630
21631         * gnus-uu.el (gnus-message-process-mark): Use gnus-message.
21632         (gnus-uu-mark-series): Likewise.
21633
21634 2005-09-10  Reiner Steib  <Reiner.Steib@gmx.de>
21635
21636         * spam-report.el (spam-report-gmane): Fix generation of spam
21637         report URL.
21638
21639 2005-09-10  Simon Josefsson  <jas@extundo.com>
21640
21641         * gnus-agent.el (gnus-agent-synchronize-flags): Make the default
21642         t, based on discussion on the ding list with Robert Epprecht
21643         <epprecht@solnet.ch>.
21644
21645 2005-09-07  Reiner Steib  <Reiner.Steib@gmx.de>
21646
21647         * spam-report.el (spam-report-gmane): Make it work without
21648         X-Report-Spam header.  Gmane now only provides Archived-At.
21649         This is only used if `spam-report-gmane-use-article-number' is nil.
21650         (spam-report-gmane-spam-header): Remove.  Not used anymore.
21651
21652         * gnus-sum.el (gnus-thread-sort-by-recipient): New function to
21653         make `gnus-summary-sort-by-recipient' work with threading.
21654
21655         * nnweb.el (nnweb-google-wash-article): Print a message if article
21656         is not available.
21657
21658 2005-09-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
21659
21660         * gnus-art.el (gnus-mime-display-single): Revert 2004-10-07
21661         change.  Decode text/* parts content before displaying.
21662
21663 2005-09-06  Reiner Steib  <Reiner.Steib@gmx.de>
21664
21665         * mml-smime.el: Remove defvar of gnus-extract-address-components.
21666
21667 2005-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
21668
21669         * mm-view.el (mm-display-inline-fontify): Disable support modes.
21670
21671         * lpath.el: Don't bind mc-pgp-always-sign, url-current-object,
21672         url-package-name, url-package-version,
21673         w3m-cid-retrieve-function-alist, w3m-current-buffer,
21674         w3m-display-inline-images, and w3m-minor-mode-map.
21675
21676 2005-09-05  Reiner Steib  <Reiner.Steib@gmx.de>
21677
21678         * message.el (message-tab-body-function): Fix mismatched custom type.
21679
21680         * gnus.el (gnus-group-change-level-function): Ditto.
21681
21682         * gnus-msg.el (gnus-outgoing-message-group): Ditto.
21683
21684         * gnus-art.el (gnus-signature-limit)
21685         (gnus-article-mime-part-function): Ditto.
21686
21687 2005-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
21688
21689         * mml.el (mml-mode): Silence the byte compiler.
21690
21691         * gnus-art.el (gnus-article-jump-to-part): Redisplay the article
21692         using `(sit-for 0)' before moving the point to the specified part;
21693         skip unbuttonized parts.
21694         (gnus-article-part-wrapper): Don't use save-window-excursion; don't
21695         return to the summary window if gnus-auto-select-part is non-nil.
21696
21697 2005-09-04  Reiner Steib  <Reiner.Steib@gmx.de>
21698
21699         * mml.el (mml-dnd-protocol-alist, mml-dnd-attach-options):
21700         New variables.
21701         (mml-dnd-attach-file, mml-mode): Use them.
21702
21703         * nnweb.el (nnweb-type-definition, nnweb-google-wash-article):
21704         Make fetching article by MID work again for Google Groups.
21705         Add FIXME concerning gnus-group-make-web-group.
21706
21707         * mml-smime.el (mml-smime-sign-query, mml-smime-get-dns-cert):
21708         Don't depend on Gnus by using mail-extract-address-components if
21709         gnus-extract-address-components is not bound.
21710
21711 2005-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21712
21713         * gnus-art.el (gnus-mime-display-security): Don't display the
21714         signature, but only the signed part.
21715
21716 2005-09-02  Katsumi Yamaoka  <yamaoka@jpl.org>
21717
21718         * gnus-sum.el (gnus-thread-hide-subtree): Doc fix.
21719
21720         * gnus-msg.el (gnus-inews-insert-gcc): Fix the mistake of using
21721         list, not listp.
21722
21723 2005-09-02  Hrvoje Niksic  <hniksic@xemacs.org>
21724
21725         * mm-encode.el (mm-encode-content-transfer-encoding):
21726         Likewise when encoding.
21727
21728         * mm-bodies.el (mm-decode-content-transfer-encoding):
21729         De-canonicalize CRLF for all text content types, not just
21730         text/plain.
21731
21732 2005-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
21733
21734         * gnus-art.el (gnus-article-part-wrapper): Error if there's no
21735         valid article; point arrow and cursor at the MIME button.
21736
21737 2005-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
21738
21739         * gnus-art.el (gnus-mime-save-part-and-strip): Clarify prompt.
21740         Suggested by Dan Christensen <jdc@uwo.ca>.
21741
21742         * mm-decode.el (mm-save-part): Enable change of prompt.
21743
21744 2005-08-29  Jari Aalto  <jari.aalto@cante.net>
21745
21746         * gnus-msg.el (gnus-inews-add-send-actions):
21747         Make `message-post-method' lambda parameter ARG `&optional'.
21748
21749 2005-08-29  Reiner Steib  <Reiner.Steib@gmx.de>
21750
21751         * gnus-sum.el (gnus-summary-mime-map):
21752         Add gnus-article-save-part-and-strip, gnus-article-delete-part and
21753         gnus-article-jump-to-part.
21754
21755         * gnus-art.el (gnus-article-edit-article): Add quiet argument.
21756         (gnus-article-edit-part): Use it.
21757         (gnus-article-part-wrapper): Add no-handle argument.
21758         (gnus-article-save-part-and-strip, gnus-article-delete-part):
21759         New functions.
21760
21761 2005-08-29  Romain Francoise  <romain@orebokech.com>
21762
21763         * gnus-fun.el (gnus-convert-image-to-face-command): Fix typo in
21764         docstring.
21765         (gnus-face-from-file): Likewise.
21766
21767 2005-08-29  Reiner Steib  <Reiner.Steib@gmx.de>
21768
21769         * gnus-art.el (gnus-mime-save-part-and-strip): Don't prompt.
21770         (gnus-mime-delete-part): Don't prompt if `gnus-expert-user' is
21771         non-nil.
21772         (gnus-auto-select-part): New variable.
21773         (gnus-article-jump-to-part): New function.
21774         (gnus-article-edit-part, gnus-mime-save-part-and-strip)
21775         (gnus-mime-delete-part): Allow selecting specified part after
21776         deleting or stripping parts.
21777         (gnus-article-jump-to-part): Don't use `read-number'.  Use last
21778         part if argument is bogus.
21779
21780 2005-08-31  Juanma Barranquero  <lekktu@gmail.com>
21781
21782         * gnus-art.el (w3m-minor-mode-map):
21783         * gnus-spec.el (gnus-newsrc-file-version):
21784         * gnus-util.el (nnmail-active-file-coding-system)
21785         (gnus-original-article-buffer, gnus-user-agent):
21786         * gnus.el (gnus-ham-process-destinations)
21787         (gnus-parameter-ham-marks-alist)
21788         (gnus-parameter-spam-marks-alist, gnus-spam-autodetect)
21789         (gnus-spam-autodetect-methods, gnus-spam-newsgroup-contents)
21790         (gnus-spam-process-destinations, gnus-spam-process-newsgroups):
21791         * mm-decode.el (gnus-current-window-configuration):
21792         * mm-extern.el (gnus-article-mime-handles):
21793         * mm-url.el (url-current-object, url-package-name)
21794         (url-package-version):
21795         * mm-view.el (gnus-article-mime-handles, gnus-newsgroup-charset)
21796         (smime-keys, w3m-cid-retrieve-function-alist)
21797         (w3m-current-buffer, w3m-display-inline-images)
21798         (w3m-minor-mode-map):
21799         * mml-smime.el (gnus-extract-address-components):
21800         * mml.el (gnus-article-mime-handles, gnus-mouse-2)
21801         (gnus-newsrc-hashtb, message-default-charset)
21802         (message-deletable-headers, message-options)
21803         (message-posting-charset, message-required-mail-headers)
21804         (message-required-news-headers):
21805         * mml1991.el (mc-pgp-always-sign):
21806         * mml2015.el (mc-pgp-always-sign):
21807         * nnheader.el (nnmail-extra-headers):
21808         * rfc1843.el (gnus-decode-encoded-word-function)
21809         (gnus-decode-header-function, gnus-newsgroup-name):
21810         * spam-stat.el (gnus-original-article-buffer): Add defvars.
21811
21812 2005-08-22  Karl Chen  <quarl@cs.berkeley.edu>
21813
21814         * gnus-art.el (gnus-treatment-function-alist): Move date-lapsed to
21815         the end of the date treatments.
21816
21817 2005-08-15  Simon Josefsson  <jas@extundo.com>
21818
21819         * pgg.el (url-insert-file-contents): Don't autoload it, Emacs has
21820         it in url-handlers.el and XEmacs in url.el.  Reported by Luca
21821         Capello and Romain Francoise.
21822         (pgg-fetch-key-function): Remove, not used?
21823         (pgg-insert-url-with-w3): Require url, to get
21824         url-insert-file-contents regardless of where it is defined.
21825
21826 2005-08-13  Romain Francoise  <romain@orebokech.com>
21827
21828         * message.el (message-cite-original-1): New function.
21829         (message-cite-original): Use it.
21830         (message-cite-original-without-signature): Ditto.
21831
21832 2005-08-08  Romain Francoise  <romain@orebokech.com>
21833
21834         * message.el (message-yank-empty-prefix): New variable.
21835         (message-indent-citation): Use it.
21836         (message-cite-original-without-signature): Respect X-No-Archive.
21837
21838 2005-08-08  Simon Josefsson  <jas@extundo.com>
21839
21840         * pgg.el: Autoload url-insert-file-contents instead of loading
21841         w3/url.
21842         (pgg-insert-url-with-w3): Don't load url here.
21843
21844 2005-08-07  Jesper Harder  <harder@phys.au.dk>
21845
21846         * message.el (message-kill-to-signature): Don't insert newline at
21847         bol.
21848         (message-newline-and-reformat): Bind fill-paragraph-function to nil.
21849
21850 2005-08-06  Romain Francoise  <romain@orebokech.com>
21851
21852         * message.el (message-user-fqdn): Fix typo in docstring.
21853
21854 2005-08-05  Daiki Ueno  <ueno@unixuser.org>
21855
21856         * mml2015.el (mml2015-pgg-sign): Make sure micalg is correct.
21857
21858         * pgg-parse.el (pgg-parse-hash-algorithm-alist): Add SHA-2.
21859
21860 2005-08-05  Katsumi Yamaoka  <yamaoka@jpl.org>
21861
21862         * mm-bodies.el (mm-encode-body): Use coding system rather than
21863         charset to encode text.
21864
21865         * mm-util.el (mm-find-mime-charset-region): Attempt to reduce the
21866         number of charsets if utf-8 is available (XEmacs).
21867
21868 2005-08-04  Reiner Steib  <Reiner.Steib@gmx.de>
21869
21870         * gnus-art.el (gnus-button-valid-localpart-regexp): New variable
21871         taken from `gnus-button-mid-or-mail-regexp'.
21872         (gnus-button-mid-or-mail-regexp, gnus-button-alist): Use it.
21873         (gnus-button-alist): Improve regexp for domain part of the MIDs
21874         for news:localpart@domain buttons.
21875         (gnus-button-ctan-directory-regexp): Update.
21876
21877 2005-08-02  Katsumi Yamaoka  <yamaoka@jpl.org>
21878
21879         * sieve-manage.el (sieve-manage-interactive-login):
21880         Use make-local-variable rather than make-variable-buffer-local.
21881         (sieve-manage-open): Ditto.
21882         (sieve-manage-authenticate): Ditto.
21883
21884         * mml.el (mml-generate-mime-1): Make the content type default to
21885         text/plain if the filename is not specified.
21886
21887 2005-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
21888
21889         * gnus-uu.el (gnus-uu-save-article): Use insert-buffer-substring
21890         instead of insert-buffer.
21891
21892         * message.el (message-yank-original): Ditto; set the mark at the
21893         end of the yanked message.
21894
21895 2005-07-29  Katsumi Yamaoka  <yamaoka@jpl.org>
21896
21897         * gnus-art.el (gnus-article-next-page-1): Reduce the number of
21898         lines to scroll rather than to stop it.
21899
21900         * mml.el (mml-generate-default-type): Add doc string.
21901         (mml-generate-mime-1): Use mm-default-file-encoding or make it
21902         default to application/octet-stream when determining the content
21903         type if it is not specified for the part or the mml contents; add
21904         a comment about mml-generate-default-type.
21905
21906 2005-07-29  Reiner Steib  <Reiner.Steib@gmx.de>
21907
21908         * mml.el (mml-generate-mime-1): Use mm-default-file-encoding or
21909         make it default to application/octet-stream when determining the
21910         content type if it is not specified for the external contents.
21911
21912 2005-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
21913
21914         * rfc2231.el (rfc2231-parse-string): Take care that not only a
21915         segmented parameter but also other parameters might be there.
21916
21917 2005-07-27  Katsumi Yamaoka  <yamaoka@jpl.org>
21918
21919         * mm-decode.el (mm-display-external): Delete temp file, directory
21920         and buffer immediately if the external process is exited.
21921
21922 2005-07-26  Katsumi Yamaoka  <yamaoka@jpl.org>
21923
21924         * gnus-art.el (gnus-article-next-page-1): Don't scroll if there're
21925         fewer lines than that of scroll-margin.
21926         (gnus-article-prev-page): Narrow the range to bind scroll-in-place.
21927
21928 2005-07-25  Katsumi Yamaoka  <yamaoka@jpl.org>
21929
21930         * gnus-art.el (gnus-article-next-page): Revert.
21931         (gnus-article-beginning-of-window): New macro.
21932         (gnus-article-next-page-1): Use it.
21933         (gnus-article-prev-page): Ditto.
21934         (gnus-article-edit-part): Use insert-buffer-substring instead of
21935         insert-buffer.
21936         (gnus-article-edit-exit): Ditto.
21937
21938         * gnus-util.el (gnus-beginning-of-window): Remove.
21939         (gnus-end-of-window): Remove.
21940
21941         * lpath.el: Don't bind header-line-format and scroll-margin.
21942
21943 2005-07-25  Simon Josefsson  <jas@extundo.com>
21944
21945         * pgg.el (pgg-insert-url-with-w3): Don't load w3, it is possible
21946         to have the url package without w3.  Reported by Daiki Ueno
21947         <ueno@unixuser.org> and Luigi Panzeri <matley@muppetslab.org>.
21948
21949 2005-07-20  Didier Verna  <didier@xemacs.org>
21950
21951         * gnus-diary.el: Remove the description comment (nndiary is now
21952         properly documented in the Gnus manual).
21953         Fix the spelling of "Back End".
21954         * nndiary.el: Ditto.
21955         Fix the copyright notice.
21956
21957 2005-07-18  Romain Francoise  <romain@orebokech.com>
21958
21959         * gnus-sum.el (gnus-summary-to-prefix)
21960         (gnus-summary-newsgroup-prefix): New variables.
21961         (gnus-summary-from-or-to-or-newsgroups): Use them.
21962
21963 2005-07-17  Romain Francoise  <romain@orebokech.com>
21964
21965         * mml2015.el (mml2015-clean-buffer): Prefix buffer name with a
21966         space as it's generally not especially interesting to the user.
21967
21968 2005-07-16  Romain Francoise  <romain@orebokech.com>
21969
21970         * nnfolder.el (nnfolder-save-buffer): Bind `copyright-update' to
21971         nil to avoid prompting and file modification if one of the
21972         messages at the top of the nnfolder file contains a copyright
21973         notice.
21974         Update copyright notice.
21975
21976         * gnus-uu.el (gnus-uu-save-article): Use `message-make-date'
21977         instead of `current-time-string' as the latter creates a time
21978         string that is not RFC 2822 compliant (it lacks the zone).
21979         Update copyright notice.
21980
21981 2005-07-21  Stefan Monnier  <monnier@iro.umontreal.ca>
21982
21983         * mml.el (mml-minibuffer-read-disposition): Don't use inline by default
21984         for text/rtf.  Display default in prompt.  Pass default for M-n.
21985
21986         * mm-uu.el (mm-uu-copy-to-buffer): Use with-current-buffer.
21987
21988 2005-07-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21989
21990         * gnus-msg.el (gnus-button-mailto):
21991         Remove save-selected-window-window hackery because it relies on
21992         save-selected-window internals.
21993
21994 2005-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
21995
21996         * gnus-art.el (gnus-article-next-page): Use gnus-end-of-window.
21997         (gnus-article-next-page-1): Use gnus-beginning-of-window.
21998         (gnus-article-prev-page): Ditto.
21999
22000         * gnus-util.el (gnus-beginning-of-window): New function.
22001         (gnus-end-of-window): New function.
22002
22003         * lpath.el: Bind header-line-format and scroll-margin for XEmacs.
22004
22005 2005-07-14  Hiroshi Fujishima  <hiroshi.fujishima@gmail.com>  (tiny change)
22006
22007         * gnus-score.el (gnus-score-edit-all-score):
22008         Set gnus-score-edit-exit-function to gnus-score-edit-done and call
22009         gnus-message.
22010
22011 2005-07-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
22012
22013         * gnus-msg.el (gnus-button-mailto):
22014         Remove save-selected-window-window hackery because it relies on
22015         save-selected-window internals.
22016
22017 2005-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
22018
22019         * gnus-salt.el (gnus-pick-mode): Remove the 5th arg of
22020         add-minor-mode.
22021         (gnus-binary-mode): Ditto.
22022
22023         * gnus-topic.el (gnus-topic-mode): Ditto.
22024
22025 2005-07-08  Ralf Angeli  <angeli@iwi.uni-sb.de>
22026
22027         * gnus-art.el (gnus-article-next-page, gnus-article-next-page-1)
22028         (gnus-article-prev-page): Take scroll-margin into consideration.
22029
22030 2005-07-04  Lute Kamstra  <lute@gnu.org>
22031
22032         Update FSF's address in GPL notices.
22033
22034 2005-07-04  Juanma Barranquero  <lekktu@gmail.com>
22035
22036         * gnus.el (gnus-exit):
22037         * gnus-group.el (gnus-group-icons):
22038         * nnmail.el (nnmail-prepare): Fix typos in docstrings.
22039
22040         * gnus-nocem.el (gnus-nocem):
22041         * message.el (message-various, message-buffers, message-sending)
22042         (message-interface, message-forwarding, message-insertion)
22043         (message-headers, message-news, message-mail):
22044         * pgg-gpg.el (pgg-gpg):
22045         * pgg-parse.el (pgg-parse):
22046         * pgg-pgp.el (pgg-pgp):
22047         * pgg-pgp5.el (pgg-pgp5):
22048         * pop3.el (pop3): Finish `defgroup' description with period.
22049
22050 2005-07-01  Katsumi Yamaoka  <yamaoka@jpl.org>
22051
22052         * gnus-art.el (article-display-face): Improve the efficiency.
22053         (article-display-x-face): Ditto; remove gray x-face stuff.
22054
22055 2005-06-30  Katsumi Yamaoka  <yamaoka@jpl.org>
22056
22057         * gnus-art.el (article-display-face): Correct the position in
22058         which Faces are inserted.
22059
22060 2005-06-29  Didier Verna  <didier@xemacs.org>
22061
22062         * gnus-art.el (article-display-face): Display faces in correct
22063         order.
22064
22065 2005-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
22066
22067         * gnus-nocem.el (gnus-nocem-verifyer): Default to pgg-verify.
22068         (gnus-fill-real-hashtb): Use hash table instead of obarray.
22069         (gnus-nocem-check-article): Fetch the Type header.
22070         (gnus-nocem-message-wanted-p): Fix the way to examine types.
22071         (gnus-nocem-verify-issuer): Use functionp instead of fboundp.
22072         (gnus-nocem-enter-article): Use hash tables rather than obarrays;
22073         make sure gnus-nocem-hashtb is initialized.
22074         (gnus-nocem-alist-to-hashtb): Use hash table instead of obarray.
22075         (gnus-nocem-unwanted-article-p): Ditto.
22076
22077         * pgg.el (pgg-verify): Return the verification result.
22078
22079 2005-06-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
22080
22081         * gnus-art.el (gnus-mime-copy-part): Check whether coding-system
22082         is ascii.
22083
22084 2005-06-24  Juanma Barranquero  <lekktu@gmail.com>
22085
22086         * gnus-art.el (gnus-article-mode): Set `nobreak-char-display', not
22087         `show-nonbreak-escape'.
22088
22089 2005-06-23  Lute Kamstra  <lute@gnu.org>
22090
22091         * gnus-art.el (gnus-article-mode): Use kill-all-local-variables.
22092
22093         * dig.el (dig-mode):
22094         * smime.el (smime-mode): Use gnus-run-mode-hooks.
22095
22096 2005-06-21  Juanma Barranquero  <lekktu@gmail.com>
22097
22098         * nnimap.el (nnimap-split-download-body): Fix spellings.
22099
22100 2005-06-16  Juanma Barranquero  <lekktu@gmail.com>
22101
22102         * gnus-art.el (gnus-article-encrypt-body):
22103         * gnus-cus.el (gnus-score-customize):
22104         * mm-extern.el (mm-extern-local-file, mm-inline-external-body):
22105         * pop3.el (pop3-user): Don't use `format' on `error' arguments.
22106
22107 2005-06-16  Arne Jørgensen  <arne@arnested.dk>
22108
22109         * smime.el (smime-cert-by-ldap-1): Detect PEM format without
22110         header by looking for magic "MII" at the beginning.
22111
22112 2005-06-16  Miles Bader  <miles@gnu.org>
22113
22114         * gnus-xmas.el (gnus-xmas-group-startup-message):
22115         Use renamed gnus-splash face.
22116
22117         * assistant.el (assistant-field): Remove "-face" suffix from face name.
22118         (assistant-field-face): New backward-compatibility alias for renamed
22119         face.
22120         (assistant-render-text): Use renamed assistant-field face.
22121
22122         * spam.el (spam): Remove "-face" suffix from face name.
22123         (spam-face): New backward-compatibility alias for renamed face.
22124         (spam-face, spam-initialize): Use renamed spam face.
22125
22126         * message.el (message-header-to, message-header-cc)
22127         (message-header-subject, message-header-newsgroups)
22128         (message-header-other, message-header-name)
22129         (message-header-xheader, message-separator, message-cited-text)
22130         (message-mml): Remove "-face" suffix from face names.
22131         (message-header-to-face, message-header-cc-face)
22132         (message-header-subject-face, message-header-newsgroups-face)
22133         (message-header-other-face, message-header-name-face)
22134         (message-header-xheader-face, message-separator-face)
22135         (message-cited-text-face, message-mml-face):
22136         New backward-compatibility aliases for renamed faces.
22137         (message-font-lock-keywords): Use renamed message faces.
22138
22139         * sieve-mode.el (sieve-control-commands, sieve-action-commands)
22140         (sieve-test-commands, sieve-tagged-arguments):
22141         Remove "-face" suffix from face names.
22142         (sieve-control-commands-face, sieve-action-commands-face)
22143         (sieve-test-commands-face, sieve-tagged-arguments-face):
22144         New backward-compatibility aliases for renamed faces.
22145         (sieve-control-commands-face, sieve-action-commands-face)
22146         (sieve-test-commands-face, sieve-tagged-arguments-face):
22147         Use renamed sieve faces.
22148
22149         * gnus.el (gnus-group-news-1, gnus-group-news-1-empty)
22150         (gnus-group-news-2, gnus-group-news-2-empty, gnus-group-news-3)
22151         (gnus-group-news-3-empty, gnus-group-news-4)
22152         (gnus-group-news-4-empty, gnus-group-news-5)
22153         (gnus-group-news-5-empty, gnus-group-news-6)
22154         (gnus-group-news-6-empty, gnus-group-news-low)
22155         (gnus-group-news-low-empty, gnus-group-mail-1)
22156         (gnus-group-mail-1-empty, gnus-group-mail-2)
22157         (gnus-group-mail-2-empty, gnus-group-mail-3)
22158         (gnus-group-mail-3-empty, gnus-group-mail-low)
22159         (gnus-group-mail-low-empty, gnus-summary-selected)
22160         (gnus-summary-cancelled, gnus-summary-high-ticked)
22161         (gnus-summary-low-ticked, gnus-summary-normal-ticked)
22162         (gnus-summary-high-ancient, gnus-summary-low-ancient)
22163         (gnus-summary-normal-ancient, gnus-summary-high-undownloaded)
22164         (gnus-summary-low-undownloaded)
22165         (gnus-summary-normal-undownloaded, gnus-summary-high-unread)
22166         (gnus-summary-low-unread, gnus-summary-normal-unread)
22167         (gnus-summary-high-read, gnus-summary-low-read)
22168         (gnus-summary-normal-read, gnus-splash):
22169         Remove "-face" suffix from face names.
22170         (gnus-group-news-1-face, gnus-group-news-1-empty-face)
22171         (gnus-group-news-2-face, gnus-group-news-2-empty-face)
22172         (gnus-group-news-3-face, gnus-group-news-3-empty-face)
22173         (gnus-group-news-4-face, gnus-group-news-4-empty-face)
22174         (gnus-group-news-5-face, gnus-group-news-5-empty-face)
22175         (gnus-group-news-6-face, gnus-group-news-6-empty-face)
22176         (gnus-group-news-low-face, gnus-group-news-low-empty-face)
22177         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face)
22178         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face)
22179         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face)
22180         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face)
22181         (gnus-summary-selected-face, gnus-summary-cancelled-face)
22182         (gnus-summary-high-ticked-face, gnus-summary-low-ticked-face)
22183         (gnus-summary-normal-ticked-face)
22184         (gnus-summary-high-ancient-face, gnus-summary-low-ancient-face)
22185         (gnus-summary-normal-ancient-face)
22186         (gnus-summary-high-undownloaded-face)
22187         (gnus-summary-low-undownloaded-face)
22188         (gnus-summary-normal-undownloaded-face)
22189         (gnus-summary-high-unread-face, gnus-summary-low-unread-face)
22190         (gnus-summary-normal-unread-face, gnus-summary-high-read-face)
22191         (gnus-summary-low-read-face, gnus-summary-normal-read-face)
22192         (gnus-splash-face):
22193         New backward-compatibility aliases for renamed faces.
22194         (gnus-group-startup-message): Use renamed gnus faces.
22195
22196         * gnus-srvr.el (gnus-server-agent, gnus-server-opened)
22197         (gnus-server-closed, gnus-server-denied, gnus-server-offline)
22198         (gnus-server-agent): Remove "-face" suffix from face names.
22199         (gnus-server-agent-face, gnus-server-opened-face)
22200         (gnus-server-closed-face, gnus-server-denied-face)
22201         (gnus-server-offline-face):
22202         New backward-compatibility aliases for renamed faces.
22203         (gnus-server-agent-face, gnus-server-opened-face)
22204         (gnus-server-closed-face, gnus-server-denied-face)
22205         (gnus-server-offline-face): Use renamed gnus faces.
22206
22207         * gnus-picon.el (gnus-picon-xbm, gnus-picon):
22208         Remove "-face" suffix from face names.
22209         (gnus-picon-xbm-face, gnus-picon-face):
22210         New backward-compatibility aliases for renamed faces.
22211
22212         * gnus-cite.el (gnus-cite-attribution, gnus-cite-1, gnus-cite-2)
22213         (gnus-cite-3, gnus-cite-4, gnus-cite-5, gnus-cite-6)
22214         (gnus-cite-7, gnus-cite-8, gnus-cite-9, gnus-cite-10)
22215         (gnus-cite-11): Remove "-face" suffix from face names.
22216         (gnus-cite-attribution-face, gnus-cite-face-1, gnus-cite-face-2)
22217         (gnus-cite-face-3, gnus-cite-face-4, gnus-cite-face-5)
22218         (gnus-cite-face-6, gnus-cite-face-7, gnus-cite-face-8)
22219         (gnus-cite-face-9, gnus-cite-face-10, gnus-cite-face-11):
22220         New backward-compatibility aliases for renamed faces.
22221         (gnus-cite-attribution-face, gnus-cite-face-list)
22222         (gnus-article-boring-faces): Use renamed gnus faces.
22223
22224         * gnus-art.el (gnus-signature, gnus-header-from)
22225         (gnus-header-subject, gnus-header-newsgroups, gnus-header-name)
22226         (gnus-header-content): Remove "-face" suffix from face names.
22227         (gnus-signature-face, gnus-header-from-face)
22228         (gnus-header-subject-face, gnus-header-newsgroups-face)
22229         (gnus-header-name-face, gnus-header-content-face):
22230         New backward-compatibility aliases for renamed faces.
22231         (gnus-signature-face, gnus-header-face-alist): Use renamed gnus faces.
22232
22233         * gnus-sum.el (gnus-summary-selected-face)
22234         (gnus-summary-highlight): Use renamed gnus faces.
22235         * gnus-group.el (gnus-group-highlight): Likewise.
22236
22237 2005-06-14  Juanma Barranquero  <lekktu@gmail.com>
22238
22239         * gnus-sieve.el (gnus-sieve-article-add-rule):
22240         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days):
22241         * spam-stat.el (spam-stat-buffer-change-to-spam)
22242         (spam-stat-buffer-change-to-non-spam): Follow error conventions.
22243
22244         * message.el (message-is-yours-p):
22245         * gnus-sum.el (gnus-auto-select-subject): Fix quoting in docstring.
22246
22247 2005-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
22248
22249         * mm-view.el (mm-inline-text): Withdraw the last change.
22250
22251 2005-06-09  Katsumi Yamaoka  <yamaoka@jpl.org>
22252
22253         * mm-view.el (mm-inline-text): Turn off adaptive-fill-mode while
22254         executing enriched-decode.
22255
22256 2005-06-07  Katsumi Yamaoka  <yamaoka@jpl.org>
22257
22258         * mm-util.el (mm-find-buffer-file-coding-system): Don't examine
22259         charset of tar files.
22260
22261 2005-06-04  Luc Teirlinck  <teirllm@auburn.edu>
22262
22263         * gnus-art.el (article-update-date-lapsed): Use `save-match-data'.
22264
22265 2005-06-04  Lute Kamstra  <lute@gnu.org>
22266
22267         * nnfolder.el (nnfolder-read-folder): Make sure that undo
22268         information is never recorded.
22269
22270 2005-06-03  Stefan Monnier  <monnier@iro.umontreal.ca>
22271
22272         * gnus-art.el (gnus-emphasis-alist): Disable the strikethru thingy.
22273
22274 2005-06-02  Katsumi Yamaoka  <yamaoka@jpl.org>
22275
22276         * pop3.el (pop3-apop): Run md5 in the binary mode.
22277
22278         * starttls.el (starttls-set-process-query-on-exit-flag):
22279         Use eval-and-compile.
22280
22281 2005-05-31  Simon Josefsson  <jas@extundo.com>
22282
22283         * smime.el (smime-replace-in-string): Define.
22284         (smime-cert-by-ldap-1): Use it.
22285
22286 2005-05-31  Katsumi Yamaoka  <yamaoka@jpl.org>
22287
22288         * gnus-art.el (article-display-x-face): Replace
22289         process-kill-without-query by gnus-set-process-query-on-exit-flag.
22290
22291         * gnus-util.el (gnus-set-process-query-on-exit-flag): Alias to
22292         set-process-query-on-exit-flag or process-kill-without-query.
22293
22294         * html2text.el (html2text-fix-paragraphs): Use `while - re-search'
22295         loop instead of replace-regexp.
22296
22297         * imap.el (imap-ssl-open): Use set-process-query-on-exit-flag
22298         instead of process-kill-without-query if it is available.
22299
22300         * lpath.el: Fbind ldap-search-entries.
22301
22302         * mm-util.el (mm-insert-file-contents): Bind find-file-hook
22303         instead of find-file-hooks if it is available.
22304
22305         * mml1991.el: Bind pgg-default-user-id when compiling.
22306
22307         * mml2015.el: Bind pgg-default-user-id when compiling.
22308
22309         * nndraft.el (nndraft-request-associate-buffer):
22310         Use write-contents-functions instead of write-contents-hooks if it is
22311         available.
22312
22313         * nnheader.el (nnheader-find-file-noselect): Bind find-file-hook
22314         instead of find-file-hooks if it is available.
22315
22316         * nntp.el (nntp-open-connection): Replace
22317         process-kill-without-query by gnus-set-process-query-on-exit-flag.
22318         (nntp-open-ssl-stream): Ditto.
22319         (nntp-open-tls-stream): Ditto.
22320
22321         * starttls.el (starttls-set-process-query-on-exit-flag): Alias to
22322         set-process-query-on-exit-flag or process-kill-without-query.
22323         (starttls-open-stream-gnutls): Use it instead of
22324         process-kill-without-query.
22325         (starttls-open-stream): Ditto.
22326
22327 2005-05-31  Ulf Stegemann  <ulf@zeitform.de>  (tiny change)
22328
22329         * smime.el (smime-cert-by-ldap-1): Don't use
22330         replace-regexp-in-string.
22331
22332 2005-05-31  Arne Jørgensen  <arne@arnested.dk>
22333
22334         * smime-ldap.el (smime-ldap-search): Add compatibility for XEmacs.
22335
22336         * smime.el (smime-cert-by-ldap-1): Handle certificates distributed
22337         in PEM format.  Adjust to the XEmacs compatibility.
22338
22339 2005-05-30  Reiner Steib  <Reiner.Steib@gmx.de>
22340
22341         * encrypt.el (encrypt-xor-process-buffer): Replace `string-to-int'
22342         by `string-to-number'.
22343         * gnus-agent.el (gnus-agent-regenerate-group)
22344         (gnus-agent-fetch-articles): Ditto.
22345         * gnus-art.el (gnus-button-fetch-group): Ditto.
22346         * gnus-cache.el (gnus-cache-generate-active)
22347         (gnus-cache-articles-in-group): Ditto.
22348         * gnus-group.el (gnus-group-set-current-level)
22349         (gnus-group-insert-group-line): Ditto.
22350         * gnus-score.el (gnus-score-set-expunge-below)
22351         (gnus-score-set-mark-below, gnus-summary-score-effect)
22352         (gnus-summary-score-entry): Ditto.
22353         * gnus-soup.el (gnus-soup-send-packet, gnus-soup-parse-areas)
22354         (gnus-soup-pack): Ditto.
22355         * gnus-spec.el (gnus-xmas-format): Ditto.
22356         * gnus-start.el (gnus-newsrc-to-gnus-format): Ditto.
22357         * gnus-sum.el (gnus-create-xref-hashtb): Ditto.
22358         * gnus-uu.el (gnus-uu-expand-numbers): Ditto.
22359         * nnbabyl.el (nnbabyl-article-group-number): Ditto.
22360         * nndb.el (nndb-get-remote-expire-response): Ditto.
22361         * nndiary.el (nndiary-parse-schedule-value)
22362         (nndiary-string-to-number, nndiary-request-replace-article)
22363         (nndiary-request-article): Ditto.
22364         * nndoc.el (nndoc-rnews-body-end, nndoc-mbox-body-end): Ditto.
22365         * nndraft.el (nndraft-articles, nndraft-request-group): Ditto.
22366         * nneething.el (nneething-make-head): Ditto.
22367         * nnfolder.el (nnfolder-request-article)
22368         (nnfolder-retrieve-headers): Ditto.
22369         * nnheader.el (nnheader-file-to-number): Ditto.
22370         * nnkiboze.el (nnkiboze-request-article): Ditto.
22371         * nnmail.el (nnmail-process-unix-mail-format)
22372         (nnmail-process-babyl-mail-format): Ditto.
22373         * nnmbox.el (nnmbox-read-mbox, nnmbox-article-group-number): Ditto.
22374         * nnmh.el (nnmh-update-gnus-unreads, nnmh-active-number)
22375         (nnmh-request-create-group, nnmh-request-list-1)
22376         (nnmh-request-group, nnmh-request-article): Ditto.
22377         * nnml.el (nnml-request-replace-article, nnml-request-article): Ditto.
22378         * nnrss.el (nnrss-find-rss-via-syndic8): Ditto.
22379         * nnsoup.el (nnsoup-make-active): Ditto.
22380         * nnspool.el (nnspool-find-id, nnspool-request-group): Ditto.
22381         * nntp.el (nntp-find-group-and-number)
22382         (nntp-retrieve-headers-with-xover): Ditto.
22383         * pgg-gpg.el (pgg-gpg-snarf-keys-region): Ditto.
22384         * pgg-parse.el (pgg-read-body, pgg-read-bytes)
22385         (pgg-format-key-identifier): Ditto.
22386         * pop3.el (pop3-last, pop3-stat): Ditto.
22387         * qp.el (quoted-printable-decode-region): Ditto.
22388
22389         * spam-report.el (spam-report-url-ping-mm-url): Use format instead
22390         of concat.
22391
22392 2005-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
22393
22394         * gnus-agent.el (gnus-category-mode): Use gnus-run-mode-hooks.
22395
22396         * gnus-art.el (gnus-article-mode): Use gnus-run-mode-hooks.
22397
22398         * gnus-cus.el (gnus-custom-mode): Use gnus-run-mode-hooks.
22399
22400         * gnus-eform.el (gnus-edit-form-mode): Use gnus-run-mode-hooks.
22401
22402         * gnus-group.el (gnus-group-mode): Use gnus-run-mode-hooks.
22403
22404         * gnus-kill.el (gnus-kill-file-mode): Use gnus-run-mode-hooks.
22405
22406         * gnus-salt.el (gnus-tree-mode): Use gnus-run-mode-hooks.
22407         (gnus-carpal-mode): Ditto.
22408
22409         * gnus-srvr.el (gnus-server-mode): Use gnus-run-mode-hooks.
22410         (gnus-browse-mode): Ditto.
22411
22412         * gnus-sum.el (gnus-summary-mode): Use gnus-run-mode-hooks.
22413
22414         * gnus-util.el (gnus-run-mode-hooks): Save current buffer.
22415
22416 2005-05-29  Richard M. Stallman  <rms@gnu.org>
22417
22418         * gnus-cite.el (gnus-cite-add-face): Set overlay's evaporate property.
22419
22420 2005-05-27  Katsumi Yamaoka  <yamaoka@jpl.org>
22421
22422         * gnus-util.el (gnus-run-mode-hooks): New function.
22423
22424         * score-mode.el (gnus-score-mode): Use gnus-run-mode-hooks.
22425
22426         * dgnushack.el: Advise byte-optimize-form-code-walker to avoid the
22427         ``...called for effect'' warnings for Emacs 21.4 as well as 21.3.
22428
22429 2005-05-27  Lute Kamstra  <lute@gnu.org>
22430
22431         * dns-mode.el (dns-mode): Specify customization group.
22432
22433 2005-05-26  Luc Teirlinck  <teirllm@auburn.edu>
22434
22435         * gnus-agent.el (gnus-agent-make-mode-line-string):
22436         Use mode-line-highlight as mouse-face.
22437
22438 2005-05-17  Katsumi Yamaoka  <yamaoka@jpl.org>
22439
22440         * canlock.el (canlock): Change the parent group to news.
22441
22442         * deuglify.el (gnus-outlook-deuglify): Add :group.
22443
22444         * dig.el (dig): Add :group.
22445
22446         * dns-mode.el (dns-mode): Add :group.
22447
22448         * encrypt.el (encrypt): Add :group.
22449
22450         * gnus-cite.el (gnus-cite-attribution-face): Add :group.
22451         (gnus-cite-face-1, gnus-cite-face-2, gnus-cite-face-3): Ditto.
22452         (gnus-cite-face-4, gnus-cite-face-5, gnus-cite-face-6): Ditto.
22453         (gnus-cite-face-7, gnus-cite-face-8, gnus-cite-face-9): Ditto.
22454         (gnus-cite-face-10, gnus-cite-face-11): Ditto.
22455
22456         * gnus-diary.el (gnus-diary): Add :group.
22457
22458         * gnus.el (gnus-group-news-1-face): Add :group.
22459         (gnus-group-news-1-empty-face): Ditto.
22460         (gnus-group-news-2-face, gnus-group-news-2-empty-face): Ditto.
22461         (gnus-group-news-3-face, gnus-group-news-3-empty-face): Ditto.
22462         (gnus-group-news-4-face, gnus-group-news-4-empty-face): Ditto.
22463         (gnus-group-news-5-face, gnus-group-news-5-empty-face): Ditto.
22464         (gnus-group-news-6-face, gnus-group-news-6-empty-face): Ditto.
22465         (gnus-group-news-low-face, gnus-group-news-low-empty-face): Ditto.
22466         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face): Ditto.
22467         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face): Ditto.
22468         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face): Ditto.
22469         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face): Ditto.
22470         (gnus-summary-selected-face, gnus-summary-cancelled-face): Ditto.
22471         (gnus-summary-high-ticked-face): Ditto.
22472         (gnus-summary-low-ticked-face): Ditto.
22473         (gnus-summary-normal-ticked-face): Ditto.
22474         (gnus-summary-high-ancient-face): Ditto.
22475         (gnus-summary-low-ancient-face): Ditto.
22476         (gnus-summary-normal-ancient-face): Ditto.
22477         (gnus-summary-high-undownloaded-face): Ditto.
22478         (gnus-summary-low-undownloaded-face): Ditto.
22479         (gnus-summary-normal-undownloaded-face): Ditto.
22480         (gnus-summary-high-unread-face): Ditto.
22481         (gnus-summary-low-unread-face): Ditto.
22482         (gnus-summary-normal-unread-face): Ditto.
22483         (gnus-summary-high-read-face, gnus-summary-low-read-face): Ditto.
22484         (gnus-summary-normal-read-face, gnus-splash-face): Ditto.
22485
22486         * hashcash.el (hashcash): New custom group.
22487         (hashcash-default-payment): Add :group.
22488         (hashcash-payment-alist): Ditto.
22489         (hashcash-default-accept-payment): Ditto.
22490         (hashcash-accept-resources): Ditto.
22491         (hashcash-path): Ditto.
22492         (hashcash-extra-generate-parameters): Ditto.
22493         (hashcash-double-spend-database): Ditto.
22494         (hashcash-in-news): Ditto.
22495
22496         * message.el (message-minibuffer-local-map): Add :group.
22497
22498         * netrc.el (netrc): Add :group.
22499
22500         * sieve-manage.el (sieve-manage-log): Add :group.
22501         (sieve-manage-default-user): Diito.
22502         (sieve-manage-server-eol, sieve-manage-client-eol): Ditto.
22503         (sieve-manage-streams, sieve-manage-stream-alist): Ditto.
22504         (sieve-manage-authenticators): Ditto.
22505         (sieve-manage-authenticator-alist): Ditto.
22506         (sieve-manage-default-port): Ditto.
22507
22508         * sieve-mode.el (sieve-control-commands-face): Add :group.
22509         (sieve-action-commands-face): Ditto.
22510         (sieve-test-commands-face): Ditto.
22511         (sieve-tagged-arguments-face): Ditto.
22512
22513         * smime.el (smime): Add :group.
22514
22515         * spam-report.el (spam-report): Add :group.
22516
22517         * spam.el (spam, spam-face): Add :group.
22518
22519 2005-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
22520
22521         * nntp.el (nntp-next-result-arrived-p): Some news servers may
22522         return \n.\n.\n at the end of articles.  Protect against that.
22523         (nntp-with-open-group): Allow debugging.
22524
22525         * nnheader.el (mail-header-set-extra): Make into a function
22526         because I just could't understand how to quote the list properly.
22527
22528         * dns.el (query-dns-cached): New function.
22529
22530 2005-05-26  Lute Kamstra  <lute@gnu.org>
22531
22532         * score-mode.el (gnus-score-mode): Use run-mode-hooks.
22533
22534 2005-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
22535
22536         * dgnushack.el: Autoload mail-extract-address-components for XEmacs.
22537
22538         * gnus-art.el: Don't autoload mail-extract-address-components.
22539
22540         * gnus.el: Remove duplicated autoload for message-y-or-n-p; use
22541         eval-and-compile to evaluate it.
22542
22543         * hashcash.el: Don't autoload executable-find.
22544
22545         * nndb.el: Don't declare the nndb back end two or more times; don't
22546         autoload news-reply-mode, news-setup, cancel-timer and telnet.
22547
22548         * nntp.el: Autoload format-spec instead of format; use
22549         eval-and-compile to evaluate autoload forms.
22550
22551 2005-05-09  Georg C. F. Greve  <greve@gnu.org>  (tiny change)
22552
22553         * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Fix PIN caching.
22554
22555 2005-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
22556
22557         * gnus.el (gnus-version-number): Bump version.
22558
22559 2005-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
22560
22561         * gnus.el: No Gnus v0.3 is released.
22562
22563 2005-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
22564
22565         * lpath.el (featurep): Bind show-nonbreak-escape.
22566
22567 2005-04-28  Katsumi Yamaoka  <yamaoka@jpl.org>
22568
22569         * gnus-art.el (gnus-article-edit-part): Disable undo.
22570
22571 2005-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
22572
22573         * gnus-art.el (article-date-ut): Don't delete X-Sent header when
22574         gnus-article-date-lapsed-new-header is t if date timer is active;
22575         skip headers in which the original date value is empty.
22576         (gnus-article-save-original-date): Redefine it as a macro.
22577         (gnus-display-mime): Use it.
22578
22579 2005-04-22  Katsumi Yamaoka  <yamaoka@jpl.org>
22580
22581         * gnus-art.el (article-date-ut): Support converting date in
22582         forwarded parts as well.
22583         (gnus-article-save-original-date): New function.
22584         (gnus-display-mime): Use it.
22585
22586 2005-04-22  David Hansen  <david.hansen@physik.fu-berlin.de>
22587
22588         * nnrss.el (nnrss-check-group, nnrss-request-article): Support the
22589         enclosure element of <item>.
22590
22591 2005-04-21  Reiner Steib  <Reiner.Steib@gmx.de>
22592
22593         * message.el (message-kill-buffer-query): Rename from
22594         `message-kill-buffer-query-if-modified'.  Add :version.
22595
22596 2005-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
22597
22598         * mml.el (mml-preview): Bind gnus-message-buffer while setting the
22599         window layout.
22600
22601 2005-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
22602
22603         * mml.el: Autoload dnd when compiling.
22604
22605 2005-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
22606
22607         * mml.el (mml-mode, mml-dnd-attach-file): Use dnd-* instead of
22608         x-dnd-*.
22609
22610 2005-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
22611
22612         * qp.el (quoted-printable-encode-region): Save excursion.
22613
22614 2005-04-14  Teodor Zlatanov  <tzz@lifelogs.com>
22615
22616         * message.el (message-kill-buffer-query-if-modified): Add new variable
22617         so the user can kill a modified message buffer quickly.
22618         (message-kill-buffer): Use it.
22619
22620 2005-04-13  Katsumi Yamaoka  <yamaoka@jpl.org>
22621
22622         * lpath.el: Fbind display-time-event-handler; don't fbind
22623         string-to-multibyte.
22624
22625         * qp.el (quoted-printable-encode-region): Use mm-string-to-multibyte.
22626
22627 2005-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
22628
22629         * nnrss.el (nnrss-node-text): Replace CRLFs (which might be
22630         contained in text because xml.el decodes entities) with LFs.
22631
22632 2005-04-11  Lute Kamstra  <lute@gnu.org>
22633
22634         * nnimap.el (nnimap-date-days-ago): Handle byte-compiler warnings
22635         differently.
22636
22637 2005-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
22638
22639         * mm-util.el (mm-detect-coding-region): Typo.
22640
22641 2005-04-11  Katsumi Yamaoka  <yamaoka@jpl.org>
22642
22643         * gnus-art.el (gnus-article-read-summary-keys): Fix misplaced parens.
22644
22645 2005-04-06  Deepak Goel  <deego@gnufans.org>
22646
22647         * spam-stat.el (spam-stat-score-buffer): Add a call to a
22648         user-function allow user modifications of the scores.
22649         (spam-stat-score-buffer-user): New function, to allow
22650         user-computed modifications to the score.
22651         (spam-stat-score-buffer-user-functions): List of additional
22652         scoring functions.
22653         (spam-stat-error-holder): Global temporary error holder.
22654         (spam-stat-split-fancy): Use the new `spam-stat-error-holder'
22655         variable.
22656
22657 2005-04-06  Teodor Zlatanov  <tzz@lifelogs.com>
22658
22659         * gnus-registry.el (gnus-registry-clean-empty-function)
22660         (gnus-registry-trim, gnus-registry-fetch-groups)
22661         (gnus-registry-delete-group): Groups that match
22662         `gnus-registry-ignored-groups' are removed from the registry
22663         entries, not just ignored for splitting.  This helps clean up the
22664         registry.  Also, `gnus-registry-fetch-groups' is a convenient way
22665         to get all the groups a message ID is in.
22666
22667         * spam-stat.el (spam-stat-split-fancy-spam-threshold)
22668         (spam-stat-split-fancy): Change "threshhold" to "threshold".
22669         (spam-stat-score-buffer-user-functions): Add :number custom type.
22670
22671 2005-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
22672
22673         * mm-util.el (mm-coding-system-p): Don't return binary for the nil
22674         argument in XEmacs.
22675
22676         * nnrss.el (nnrss-compatible-encoding-alist): New variable.
22677         (nnrss-request-group): Decode group name first.
22678         (nnrss-request-article): Make a text/plain article if mml-to-mime
22679         failed.
22680         (nnrss-get-encoding): Return a compatible encoding according to
22681         nnrss-compatible-encoding-alist.
22682         (nnrss-find-el): Use consp instead of listp.
22683         (nnrss-opml-export, nnrss-order-hrefs, nnrss-find-el): Use dolist.
22684
22685 2005-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
22686
22687         * time-date.el (time-to-seconds): Don't use the #xhhhh syntax
22688         which Emacs 20 doesn't support.
22689         (seconds-to-time, days-to-time, time-subtract, time-add): Ditto.
22690
22691 2005-04-04  Reiner Steib  <Reiner.Steib@gmx.de>
22692
22693         * nnimap.el (nnimap-date-days-ago): Add defvars in order to
22694         silence the byte compiler inside the defun.
22695
22696         * gnus-demon.el (parse-time-string): Add autoload.
22697
22698         * gnus-delay.el (parse-time-string): Add autoload.
22699
22700         * gnus-art.el (parse-time-string): Add autoload.
22701
22702         * nnultimate.el (parse-time): Require for `parse-time-string'.
22703
22704 2005-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
22705
22706         * gnus-art.el (gnus-copy-article-ignored-headers): Update :version.
22707
22708         * gnus-score.el (gnus-adaptive-pretty-print): Ditto.
22709
22710         * smime.el (smime-ldap-host-list): Add :version.
22711
22712 2005-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
22713
22714         * gnus-srvr.el (gnus-browse-select-group): Add NUMBER argument and
22715         pass it to `gnus-browse-read-group'.
22716         (gnus-browse-read-group): Add NUMBER argument and pass it to
22717         `gnus-group-read-ephemeral-group'.
22718
22719         * gnus-group.el (gnus-group-read-ephemeral-group): Add NUMBER
22720         argument and pass it to `gnus-group-read-group'.
22721
22722 2005-03-19  Aidan Kehoe  <kehoea@parhasard.net>
22723
22724         * mm-util.el (mm-xemacs-find-mime-charset): Only call
22725         mm-xemacs-find-mime-charset-1 if we have the mule feature
22726         available at runtime.
22727
22728 2005-03-25  Werner Lemberg  <wl@gnu.org>
22729
22730         * nnmaildir.el: Replace `illegal' with `invalid'.
22731
22732 2005-03-23  Lute Kamstra  <lute@gnu.org>
22733
22734         * time-date.el: Add comment on time value formats.
22735         Don't require parse-time.
22736         (with-decoded-time-value): New macro.
22737         (encode-time-value): New function.
22738         (time-to-seconds, time-less-p, time-subtract, time-add): Use them.
22739         (days-to-time): Return a valid time value when arg is huge.
22740         (time-since): Use time-subtract.
22741         (time-to-number-of-days): Use time-to-seconds.
22742
22743 2005-03-22  Stefan Monnier  <monnier@iro.umontreal.ca>
22744
22745         * gnus-start.el (gnus-display-time-event-handler):
22746         Check display-time-timer at runtime rather than only at load time
22747         in case display-time-mode is turned off in the mean time.
22748
22749 2005-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
22750
22751         * nnimap.el (nnimap-open-connection): Print which authinfo file is
22752         used.
22753
22754         * nneething.el (nneething-map-file-directory): Derive from
22755         `gnus-directory'.
22756
22757         * gnus-art.el (gnus-header-button-alist): Use `gnus-msg-mail' for
22758         the To/Cc button.
22759
22760 2005-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
22761
22762         * nnmaildir.el (nnmaildir-request-accept-article):
22763         Use `nnheader-cancel-timer' for compatibility with current XEmacs.
22764
22765 2005-03-13  Andrey Slusar  <anrays@gmail.com>  (tiny change)
22766
22767         * gnus-async.el: Require timer-funcs at compile time when in
22768         XEmacs for `run-with-idle-timer'.
22769
22770 2005-03-13  Andrey Slusar  <anrays@gmail.com>  (tiny change)
22771
22772         * gnus.el: Don't try and mark `gnus-agent-save-groups' as an
22773         autoloaded function.
22774
22775 2005-03-10  Stefan Monnier  <monnier@iro.umontreal.ca>
22776
22777         * nnimap.el (nnimap-retrieve-headers-from-server): Fix last change.
22778
22779 2005-03-10  Arne Jørgensen  <arne@arnested.dk>  (tiny change)
22780
22781         * nnimap.el (nnimap-retrieve-headers-from-server): Fix off-by-one flaw.
22782
22783 2005-03-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
22784
22785         * gnus-msg.el (gnus-confirm-mail-reply-to-news):
22786         Add gnus-expert-user to default.
22787
22788 2005-03-08  Juergen Kreileder  <jk@blackdown.de>  (tiny change)
22789
22790         * nnimap.el (nnimap-open-server): Ditto.
22791
22792         * imap.el (imap-authenticate): Fix typo.
22793
22794 2005-03-08  Bjorn Solberg  <bjorn_ding@hekneby.org>  (tiny change)
22795
22796         * nnimap.el (nnimap-retrieve-headers-from-server): Sort NOV
22797         buffer (since IMAP server might return FETCH response out of
22798         order, and the nntp buffer must be sorted).
22799
22800 2005-03-06  Kevin Greiner  <kevin.greiner@compsol.cc>
22801
22802         * gnus-start.el (gnus-convert-old-newsrc): Fix numeric
22803         comparison on string.
22804
22805         * gnus-agent.el (gnus-agent-long-article, gnus-agent-short-article)
22806         (gnus-agent-score): Rename category keywords to match gnus-cus.
22807         (gnus-agent-summary-fetch-series): Modify to protect against
22808         gnus-agent-summary-fetch-group clearing processable flags.
22809         (gnus-agent-synchronize-group-flags): Update live group buffer as
22810         synchronization may occur due to the user toggle the plugged
22811         status.
22812         (gnus-agent-fetch-group-1): Clear downloadable flag when article
22813         successfully downloaded.
22814         (gnus-agent-expire-group-1): Avoid using markers when the overview
22815         is in ascending order; greatly improves performance.
22816         (gnus-agent-regenerate-group):
22817         Use gnus-agent-synchronize-group-flags to reset read status in both
22818         gnus and server.
22819         (gnus-agent-update-files-total-fetched-for): Fix initial size.
22820
22821 2005-03-04  Reiner Steib  <Reiner.Steib@gmx.de>
22822
22823         * message.el: Don't autoload former message-utils variables.
22824         (message-strip-subject-trailing-was): Change doc string.
22825
22826         * nnweb.el: Fixes for `gnus-group-make-web-group'.
22827         (nnweb-type-definition): Don't add "hl=en" in `address'.  Add `base'.
22828         (nnweb-google-search): Add "hl=en" here.
22829         (nnweb-google-parse-1, nnweb-google-create-mapping):
22830         Don't hardcode URL.
22831
22832 2005-03-03  Reiner Steib  <Reiner.Steib@gmx.de>
22833
22834         * message.el (message-get-reply-headers, message-followup):
22835         Mention related variables `message-use-followup-to' and
22836         `message-use-mail-followup-to', in the information buffer.
22837
22838         * nnweb.el (nnweb-type-definition): Use groups.google.de instead
22839         of broken groups(-beta).google.com.
22840
22841 2005-03-03  Teodor Zlatanov  <tzz@lifelogs.com>
22842
22843         * gnus-sum.el (gnus-summary-move-article): Pass move-is-internal
22844         parameter to invoked gnus-request-move-article; remove the
22845         redundant gnus-sum-hint-move-is-internal variable; apply the marks
22846         all at once instead of once per article.
22847         (gnus-summary-remove-process-mark): Accept a list of articles as
22848         well as a single article for processing.
22849
22850         * gnus-int.el (gnus-request-move-article): Add move-is-internal
22851         parameter.
22852
22853         * nnml.el (nnml-request-move-article): Add move-is-internal parameter.
22854
22855         * nnmh.el (nnmh-request-move-article): Add move-is-internal parameter.
22856
22857         * nnmbox.el (nnmbox-request-move-article): Add move-is-internal
22858         parameter.
22859
22860         * nnmaildir.el (nnmaildir-request-move-article): Add move-is-internal
22861         parameter.
22862
22863         * nnimap.el (nnimap-request-move-article): Add move-is-internal
22864         parameter and remove the gnus-sum-hint-move-is-internal variable.
22865
22866         * nnfolder.el (nnfolder-request-move-article): Add move-is-internal
22867         parameter.
22868
22869         * nndraft.el (nndraft-request-move-article): Add move-is-internal
22870         parameter.
22871
22872         * nndiary.el (nndiary-request-move-article): Add move-is-internal
22873         parameter.
22874
22875         * nndb.el (nndb-request-move-article): Add move-is-internal parameter.
22876
22877         * nnbabyl.el (nnbabyl-request-move-article): Add move-is-internal
22878         parameter.
22879
22880         * nnagent.el (nnagent-request-move-article): Add move-is-internal
22881         parameter.
22882
22883 2005-03-01  Stefan Monnier  <monnier@iro.umontreal.ca>
22884
22885         * gnus-sum.el (gnus-summary-exit): Undo last change and fix it in
22886         a more conservative way.
22887
22888 2005-02-26  Stefan Monnier  <monnier@iro.umontreal.ca>
22889
22890         * gnus-sum.el (gnus-summary-exit): Move point after displaying the
22891         buffer, so it moves the window's cursor.
22892
22893 2005-02-26  Arne Jørgensen  <arne@arnested.dk>
22894
22895         * mm-decode.el (mm-dissect-buffer): Pass the from field on to
22896         `mm-dissect-multipart' and receive the from field as an (optional)
22897         argument from `mm-dissect-multipart'.
22898         (mm-dissect-multipart): Receive the from field as an argument and
22899         pass it on when we call `mm-dissect-buffer' on MIME parts.
22900         Fixes verification/decryption of signed/encrypted MIME parts.
22901
22902 2005-02-25  Teodor Zlatanov  <tzz@lifelogs.com>
22903
22904         * gnus-sum.el (gnus-summary-move-article):
22905         Set gnus-sum-hint-move-is-internal for gnus-request-move-article and
22906         whatever it calls (right now, only nnimap-request-move article
22907         respects it).
22908
22909         * nnimap.el (nnimap-request-move-article):
22910         When gnus-sum-hint-move-is-internal is set, don't do the extra
22911         nnimap-request-article.
22912
22913 2005-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
22914
22915         * nnheader.el (nnheader-find-file-noselect): Add doc string.
22916
22917         * nnfolder.el (nnfolder-read-folder): Use RAWFILE for
22918         `nnheader-find-file-noselect' to avoid `large-file-warning-threshold'.
22919
22920         * gnus-sum.el (gnus-summary-caesar-message):
22921         Apply `gnus-treat-article' after rotation.
22922
22923         * gnus-group.el (gnus-group-clear-data): Mention process/prefix in
22924         doc string.
22925
22926 2005-02-22  Simon Josefsson  <jas@extundo.com>
22927
22928         * encrypt.el (encrypt-password-cache-expiry): Remove (use
22929         `password-cache-expiry' instead).  Reported by Arne Jørgensen
22930         <arne@arnested.dk>.
22931         (encrypt): Add password-cache and password-cache-expiry as group
22932         members.
22933
22934 2005-02-22  Arne Jørgensen  <arne@arnested.dk>
22935
22936         * smime.el (smime-ldap-host-list): Doc fix.
22937         (smime-ask-passphrase): Use `password-read-and-add' to read (and
22938         cache) password.
22939         (smime-sign-region): Use it.
22940         (smime-decrypt-region): Use it.
22941         (smime-sign-buffer): Signal an error if `smime-sign-region' fails.
22942         (smime-encrypt-buffer): Signal an error if `smime-encrypt-region'
22943         fails.
22944         (smime-cert-by-ldap-1): Use `base64-encode-string' to convert
22945         certificate from DER to PEM format rather than calling openssl.
22946
22947         * mml-smime.el (mml-smime-encrypt-query): Remove obsolete comment.
22948
22949         * mml-sec.el (mml-secure-message): Insert keyfile/certfile tags
22950         for signing/encryption.
22951
22952         * mml.el (mml-parse-1): Use them.
22953
22954 2005-02-21  Arne Jørgensen  <arne@arnested.dk>
22955
22956         * nnrss.el (nnrss-verbose): Remove.
22957         (nnrss-request-group): Use `nnheader-message' instead.
22958
22959 2005-02-19  Mark Plaksin  <happy@usg.edu>  (tiny change)
22960
22961         * nnrss.el (nnrss-verbose): New variable.
22962         (nnrss-request-group): Make it say nnrss is requesting a group.
22963
22964 2005-02-21  Reiner Steib  <Reiner.Steib@gmx.de>
22965
22966         * gnus-art.el (gnus-parse-news-url, gnus-button-handle-news):
22967         Handle news URL with given port correctly.
22968
22969 2005-02-19  Katsumi Yamaoka  <yamaoka@jpl.org>
22970
22971         * gnus-msg.el (gnus-copy-article-buffer): Quote decoded words
22972         containing special characters.
22973
22974         * gnus-sum.el (gnus-summary-edit-article): Ditto.
22975
22976         * mml.el (mime-to-mml): Ditto.
22977
22978         * rfc2047.el (rfc2047-encode-parameter): Use ietf-drums-tspecials.
22979         (rfc2047-quote-decoded-words-containing-tspecials): New variable.
22980         (rfc2047-decode-region): Quote decoded words containing special
22981         characters when rfc2047-quote-decoded-words-containing-tspecials
22982         is non-nil.
22983
22984 2005-02-16  Teodor Zlatanov  <tzz@lifelogs.com>
22985
22986         * gnus-registry.el (gnus-registry-delete-group): Add minor bug fix.
22987
22988         * gnus.el (gnus-install-group-spam-parameters): Add minor doc fix.
22989
22990 2005-02-15  Simon Josefsson  <jas@extundo.com>
22991
22992         * nnimap.el (nnimap-debug): Doc fix.
22993
22994         * imap.el (imap-debug): Doc fix.
22995
22996 2005-02-15  Katsumi Yamaoka  <yamaoka@jpl.org>
22997
22998         * gnus-art.el: Avoid "Recursive load suspected" error in Emacs 21.1.
22999
23000 2005-02-14  Teodor Zlatanov  <tzz@lifelogs.com>
23001
23002         * gnus.el (spam-contents): Improve docs for spam-contents
23003         parameter in its variable incarnation.
23004
23005 2005-02-14  Simon Josefsson  <jas@extundo.com>
23006
23007         * smime-ldap.el: Use require instead of load-library for ldap.
23008         (smime-ldap-search): Indent.
23009         (smime-ldap-search-internal): Shorten line.
23010
23011         * smime.el (smime-cert-by-dns): Add doc-string.
23012         (smime-cert-by-ldap-1): Indent.
23013
23014         * mml-smime.el (mml-smime-get-ldap-cert): Rename from
23015         mml-smime-get-dns-ldap.
23016         (mml-smime-encrypt-query): Use new function.  Default to ldap.
23017
23018 2005-02-14  Arne Jørgensen  <arne@arnested.dk>
23019
23020         * smime.el: Require smime-ldap.
23021         (smime-ldap-host-list): New variable.
23022         (smime-cert-by-ldap, smime-cert-by-ldap-1): New functions.
23023
23024         * mml-smime.el (mml-smime-encrypt-query): New function.
23025         (mml-smime-encrypt-query): Use it.
23026
23027         * smime-ldap.el: New file.
23028
23029 2005-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
23030
23031         * gnus-agent.el: Remove garbage made while merging the Emacs trunk.
23032
23033 2005-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
23034
23035         * gnus-group.el (gnus-group-make-doc-group): Mention prefix
23036         argument in doc string.  Make query for type more clear.
23037
23038 2005-02-13  Reiner Steib  <Reiner.Steib@gmx.de>
23039
23040         * gnus.el (gnus-group-startup-message): Search for gnus images in
23041         etc/images/gnus.
23042         * mm-util.el (mm-image-load-path): Likewise.
23043         * smiley.el (smiley-data-directory): Search for smilies in
23044         etc/images/smilies.
23045
23046 2005-02-09  Kim F. Storm  <storm@cua.dk>
23047
23048         Change Emacs release version from 21.4 to 22.1 throughout.
23049         Change Emacs development version from 21.3.50 to 22.0.50.
23050
23051 2005-02-12  Katsumi Yamaoka  <yamaoka@jpl.org>
23052
23053         * gnus-art.el (gnus-mime-copy-part): Don't decode compressed parts.
23054
23055         * mm-util.el (mm-coding-system-to-mime-charset): Make it work with
23056         non-Mule XEmacs as well.
23057         (mm-decompress-buffer): Signal an error intentionally if it does
23058         not decompress compressed data because auto-compression-mode is
23059         disabled.
23060
23061 2005-02-11  Teodor Zlatanov  <tzz@lifelogs.com>
23062
23063         * gnus-registry.el (gnus-registry-delete-group): Fix bug: leaves
23064         an ID in the registry even if it has no groups.
23065
23066 2005-02-10  Katsumi Yamaoka  <yamaoka@jpl.org>
23067
23068         * gnus-art.el (gnus-mime-jka-compr-maybe-uncompress): Remove;
23069         merge it into mm-decompress-buffer.
23070         (gnus-mime-copy-part): Use the MIME part charset, the value which
23071         a user specified or gnus-newsgroup-charset for decoding, like
23072         gnus-mime-inline-part does; set buffer-file-coding-system to tell
23073         save-buffer what was used.  Suggested by Kevin Ryde
23074         <user42@zip.com.au>.
23075         (gnus-mime-inline-part): Allow the name parameter as well as the
23076         filename parameter; force decompressing of compressed data; always
23077         display contents being not decoded as unibyte.
23078
23079         * mm-view.el (mm-display-inline-fontify): Allow the name parameter
23080         as well as the filename parameter.
23081
23082         * mm-util.el (mm-decompress-buffer):
23083         Merge gnus-mime-jka-compr-maybe-uncompress.
23084         (mm-find-buffer-file-coding-system): Doc fix; force decompressing
23085         of compressed data.
23086
23087 2005-02-08  Simon Josefsson  <jas@extundo.com>
23088
23089         * imap.el (imap-log): Doc fix.
23090
23091 2005-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
23092
23093         * gnus-art.el (gnus-mime-inline-part): Decode parts according to
23094         the coding cookies; decompress compressed parts.
23095
23096         * mml.el (mml-generate-mime-1): Add the charset parameter according
23097         to the value which a user specified manually or the coding cookie.
23098
23099         * mm-util.el (mm-string-to-multibyte): New function.
23100         (mm-detect-mime-charset-region): Work with Emacs 22 as well.
23101         (mm-coding-system-to-mime-charset): New function.
23102         (mm-decompress-buffer): New function.
23103         (mm-find-buffer-file-coding-system): New function.
23104
23105         * mm-view.el (mm-insert-inline): Make sure a part ends with a newline.
23106         (mm-display-inline-fontify): Rewrite for decoding and decompressing
23107         parts.
23108
23109 2005-02-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
23110
23111         * mm-view.el (mm-display-inline-fontify): Decode a part according
23112         to the charset parameter.
23113
23114 2005-02-03  Katsumi Yamaoka  <yamaoka@jpl.org>
23115
23116         * gnus-art.el (gnus-mime-inline-part): Show the raw contents if a
23117         prefix arg is neither nil nor a number, as info specifies.
23118
23119 2005-02-02  Katsumi Yamaoka  <yamaoka@jpl.org>
23120
23121         * nntp.el (nntp-marks-changed-p): Use time-less-p to compare the
23122         timestamps.
23123
23124 2005-02-02  Jari Aalto  <jari.aalto@cante.net>
23125
23126         * gnus-sum.el (gnus-list-of-unread-articles): Improve active
23127         groups error checking and notify user.
23128
23129 2005-02-02  Jari Aalto  <jari.aalto@poboxes.com>
23130
23131         * message.el (message-send-mail-function): Check existence of
23132         sendmail-program first before using default value
23133         `message-send-mail-with-sendmail'.  Otherwise use more generic
23134         `smtpmail-send-it'.
23135
23136 2005-02-01  Katsumi Yamaoka  <yamaoka@jpl.org>
23137
23138         * nntp.el (nntp-request-update-info): Always return nil.
23139
23140 2005-01-30  Stefan Monnier  <monnier@iro.umontreal.ca>
23141
23142         * gnus-art.el (gnus-article-mode): Turn off the "\ " non-break space.
23143
23144 2005-01-28  Stefan Monnier  <monnier@iro.umontreal.ca>
23145
23146         * message.el (message-beginning-of-line): Change the behavior when
23147         invoked between BOL and : so that it first moves backward.
23148
23149 2005-01-28  Katsumi Yamaoka  <yamaoka@jpl.org>
23150
23151         * gnus-art.el (gnus-article-setup-buffer): Kill and re-create the
23152         article buffer when editing of the article is discarded.
23153         (gnus-article-prepare): Revert.
23154
23155 2005-01-28  Katsumi Yamaoka  <yamaoka@jpl.org>
23156
23157         * gnus-art.el (gnus-article-prepare):
23158         Remove message-strip-forbidden-properties from the local hook.
23159
23160 2005-01-27  Simon Josefsson  <jas@extundo.com>
23161
23162         * password.el (password-cache-add): Only start one timer per key.
23163         Reported by Derek Atkins <warlord@MIT.EDU>.
23164
23165 2005-01-26  Steve Youngs  <steve@sxemacs.org>
23166
23167         * run-at-time.el: Remove.  It is no longer needed as
23168         timer-funcs.el in the xemacs-base package has a working version of
23169         `run-at-time'.
23170
23171         * gnus-xmas.el: Require timer-funcs instead of run-at-time.
23172
23173         * password.el: Require timer-funcs instead of run-at-time in
23174         XEmacs.
23175         Remove `password-run-at-time' macro.
23176         (password-cache-add): Use `run-at-time' instead of
23177         `password-run-at-time'.
23178
23179         * nnheaderxm.el: Require timer-funcs instead of run-at-time.
23180         Remove `nnheader-cancel-function-timers' alias,
23181         `cancel-function-timers' exists in XEmacs in timer-funcs.
23182
23183         * mail-source.el: Require timer-funcs instead of itimer in XEmacs
23184         for `run-with-idle-timer'.
23185
23186         * gnus-demon.el: Require timer-funcs instead of itimer in XEmacs
23187         for `run-at-time'.
23188
23189         * mm-url.el: Require timer-funcs at compile time when in XEmacs
23190         for `with-timeout'.
23191
23192         * dgnushack.el: Autoload the correct `setenv' for SXEmacs which is
23193         the same as for XEmacs 21.4.
23194         No need to ignore `run-with-idle-timer', this function exists in
23195         XEmacs now in timer-funcs.el in the xemacs-base package.
23196         (dgnushack-compile): No need to delete
23197         run-at-time.el from the list of files to compile because it
23198         doesn't exist anymore.
23199
23200 2005-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
23201
23202         * mml.el (mml-generate-mime-1): Convert string into unibyte when
23203         inserting " *mml*" buffer's contents into a unibyte temp buffer.
23204
23205 2005-01-24  Harald Meland  <harald.meland@usit.uio.no>  (tiny change)
23206
23207         * mail-source.el (mail-source-fetch-imap): Search for ^From case
23208         sensitively.
23209
23210 2005-01-21  Derek Atkins  <warlord@MIT.EDU>  (tiny change)
23211
23212         * pgg-pgp.el (pgg-pgp-decrypt-region): Use passphrase cache.
23213
23214 2005-01-20  Katsumi Yamaoka  <yamaoka@jpl.org>
23215
23216         * mm-decode.el (mm-insert-part): Switch the multibyteness of data
23217         which will be inserted according to the multibyteness of a buffer
23218         rather than the type of contents.  Suggested by ARISAWA Akihiro
23219         <ari@mbf.ocn.ne.jp>.
23220
23221         * nnrss.el (nnrss-find-el): Check carefully whether there's a list
23222         of string which old xml.el may return rather than a string.
23223
23224 2005-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
23225
23226         * gnus-sum.el (gnus-summary-idna-message): Silence byte compiler.
23227
23228 2005-01-16  Simon Josefsson  <jas@extundo.com>
23229
23230         * gnus-sum.el (gnus-summary-idna-message): Fail gracefully if
23231         idn/idna.el isn't available.
23232         (gnus-summary-idna-message): Doc fix.  Suggested by Michael Cook
23233         <michael@waxrat.com>.
23234
23235         * hashcash.el: Remove non-FSF copyright header.
23236
23237         * hashcash.el (hashcash-extra-generate-parameters): New variable.
23238         (hashcash-generate-payment): Use it.
23239         (hashcash-generate-payment-async): Use it.
23240
23241 2005-01-15  Simon Josefsson  <jas@extundo.com>
23242
23243         * message.el (message-idna-to-ascii-rhs): Decode Reply-To too.
23244         Suggested by Raymond Scholz <ray-2005@zonix.de>.
23245
23246         * gnus-sum.el (gnus-summary-wash-map): Bind "W i" to
23247         gnus-summary-idna-message.
23248         (gnus-summary-make-menu-bar): Add De-IDNA menu entry.
23249         (gnus-summary-idna-message): New function.
23250
23251 2005-01-13  Reiner Steib  <Reiner.Steib@gmx.de>
23252
23253         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Change default to
23254         gnus-novice-user.
23255
23256 2005-01-12  Katsumi Yamaoka  <yamaoka@jpl.org>
23257
23258         * nnrss.el (nnrss-request-delete-group): Delete entries in
23259         nnrss-group-alist as well.
23260         (nnrss-save-server-data): Insert newline.
23261
23262 2005-01-10  Reiner Steib  <Reiner.Steib@gmx.de>
23263
23264         * gnus.el (gnus-user-agent): Use list of symbols instead of
23265         symbols.  Display full version number for (S)XEmacs.
23266         Optionally display (S)XEmacs codename.
23267
23268         * gnus-util.el (gnus-emacs-version): Update for new
23269         `gnus-user-agent'.
23270
23271         * gnus-msg.el (gnus-extended-version): Make it possible to omit
23272         Gnus version.
23273
23274 2005-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
23275
23276         * spam.el (spam-face): New face.  Don't use `gnus-splash-face'
23277         which is unreadable in some setups.
23278
23279 2005-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
23280
23281         * gnus-spec.el (gnus-update-format-specifications): Flush the
23282         group format spec cache if it doesn't support decoded group names.
23283
23284 2005-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
23285
23286         * gnus-score.el (gnus-decay-scores, gnus-score-load-file):
23287         Allow to apply decay on score files matching a regexp.
23288
23289 2004-12-30  Katsumi Yamaoka  <yamaoka@jpl.org>
23290
23291         * gnus-group.el (gnus-group-line-format-alist): Keep the forward
23292         compatibility in %g and %c.
23293
23294 2004-12-29  Katsumi Yamaoka  <yamaoka@jpl.org>
23295
23296         * gnus-group.el (gnus-group-line-format-alist): Use decoded group
23297         name for only %g and %c.
23298         (gnus-group-insert-group-line): Bind gnus-tmp-decoded-group instead
23299         of gnus-tmp-group to decoded group name.
23300         (gnus-group-make-rss-group): Exclude `/'s from group names.
23301
23302 2004-12-28  Katsumi Yamaoka  <yamaoka@jpl.org>
23303
23304         * nnrss.el (nnrss-get-encoding): Fix regexp.
23305
23306 2004-12-27  Simon Josefsson  <jas@extundo.com>
23307
23308         * mm-bodies.el (mm-body-encoding): Don't permit 7-bit to be used when
23309         mm-use-ultra-safe-encoding is enabled (e.g., for PGP/MIME) and we have
23310         trailing white space.  Reported by Werner Koch <wk@gnupg.org>.
23311
23312 2004-12-17  Kim F. Storm  <storm@cua.dk>
23313
23314         * gnus-group.el (gnus-group-mode-map): Map follow-link to mouse-face.
23315
23316         * gnus-sum.el (gnus-summary-mode-map): Likewise.
23317
23318 2004-12-26  Tsuyoshi AKIHO  <akiho@kawachi.zaq.ne.jp>
23319
23320         * gnus-sum.el (gnus-summary-walk-group-buffer): Decode group name.
23321
23322 2004-12-26  Katsumi Yamaoka  <yamaoka@jpl.org>
23323
23324         * nnrss.el: Require rfc2047 and mml.
23325         (nnrss-file-coding-system): New variable.
23326         (nnrss-format-string): Redefine it as an inline function.
23327         (nnrss-decode-group-name): New function.
23328         (nnrss-string-as-multibyte): Remove.
23329         (nnrss-retrieve-headers): Decode group name; don't use
23330         nnrss-format-string.
23331         (nnrss-request-group): Decode group name.
23332         (nnrss-request-article): Decode group name; allow a Message-ID as
23333         well as an article number; don't use nnrss-format-string; encode a
23334         Message-ID string which may contain non-ASCII characters; use
23335         mml-to-mime to compose a MIME article.
23336         (nnrss-request-expire-articles): Decode group name.
23337         (nnrss-request-delete-group): Decode group name.
23338         (nnrss-fetch): Clarify error message.
23339         (nnrss-read-server-data): Use insert-file-contents instead of load;
23340         bind file-name-coding-system; use multibyte buffer.
23341         (nnrss-save-server-data): Bind coding-system-for-write to the
23342         value of nnrss-file-coding-system; bind file-name-coding-system;
23343         add coding cookie.
23344         (nnrss-read-group-data): Use insert-file-contents instead of load;
23345         bind file-name-coding-system; use multibyte buffer.
23346         (nnrss-save-group-data): Bind coding-system-for-write to the
23347         value of nnrss-file-coding-system; bind file-name-coding-system.
23348         (nnrss-decode-entities-string): Rename from n-d-e-unibyte-string;
23349         make it work with non-ASCII text.
23350         (nnrss-find-el): Make it work with old xml.el as well.
23351
23352 2004-12-26  Tsuyoshi AKIHO  <akiho@kawachi.zaq.ne.jp>
23353
23354         * nnrss.el (nnrss-get-encoding): New function.
23355         (nnrss-fetch): Use unibyte buffer initially; bind
23356         coding-system-for-read while performing mm-url-insert; remove ^Ms;
23357         decode contents according to the encoding attribute.
23358         (nnrss-save-group-data): Add coding cookie.
23359         (nnrss-mime-encode-string): New function.
23360         (nnrss-check-group): Use it to encode subject and author.
23361
23362 2004-12-23  Teodor Zlatanov  <tzz@lifelogs.com>
23363
23364         * spam.el (spam-check-BBDB): Don't get the symbol-value of an
23365         imaginary variable.
23366
23367 2004-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
23368
23369         * gnus-spec.el (gnus-spec-tab): Make a Lisp form which works
23370         correctly even if there are wide characters.
23371
23372 2004-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
23373
23374         * spam.el (spam-check-BBDB): Fix the BBDB caching code to use
23375         downcased symbol names; make a new cache instead of reusing
23376         bbdb-hashtable.
23377
23378 2004-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
23379
23380         * rfc2231.el (rfc2231-parse-string): Decode encoded value after
23381         concatenating segments rather than before concatenating them.
23382         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
23383
23384         * message.el (message-get-reply-headers): Bind `extra'.
23385
23386 2004-12-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23387
23388         * message.el (message-extra-wide-headers): New variable.
23389         (message-get-reply-headers): Use it.
23390
23391 2004-12-20  Katsumi Yamaoka  <yamaoka@jpl.org>
23392
23393         * gnus-agent.el (gnus-agent-group-path): Decode group name.
23394         (gnus-agent-group-pathname): Ditto.
23395
23396         * gnus-cache.el (gnus-cache-file-name): Decode group name.
23397
23398         * gnus-group.el (gnus-group-make-group): Decode group name.
23399         (gnus-group-make-rss-group): Register the group data after opening
23400         the nnrss group.
23401
23402 2004-12-17  Paul Jarc  <prj@po.cwru.edu>
23403
23404         * nnmaildir.el (nnmaildir-request-expire-articles): Articles moved
23405         by expiry now get marked as read.
23406
23407 2004-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
23408
23409         * mm-util.el (mm-xemacs-find-mime-charset): New macro.
23410
23411 2004-12-17  Aidan Kehoe  <kehoea@parhasard.net>
23412
23413         * mm-util.el (mm-xemacs-find-mime-charset-1): New function used to
23414         unify Latin characters in XEmacs.
23415         (mm-find-mime-charset-region): Use it.
23416
23417 2004-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
23418
23419         * gnus-util.el (gnus-delete-directory): New function.
23420
23421         * gnus-agent.el (gnus-agent-delete-group): Use it.
23422
23423         * gnus-cache.el (gnus-cache-delete-group): Use it.
23424
23425 2004-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
23426
23427         * gnus-group.el (gnus-group-make-rss-group): Unify non-ASCII group
23428         names.
23429
23430 2004-12-16  Simon Josefsson  <jas@extundo.com>
23431
23432         * hashcash.el (hashcash-payment-alist): Fix custom :type.
23433
23434 2004-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
23435
23436         * mm-url.el (mm-url-predefined-programs): Add --silent arg to curl.
23437
23438         * gnus-group.el (gnus-group-expire-articles-1): Decode group name.
23439         (gnus-group-set-current-level): Decode group name.
23440
23441 2004-12-15  Maciek Pasternacki  <maciekp@japhy.fnord.org>  (tiny change)
23442
23443         * nnrss.el (nnrss-fetch): Signal an error if w3-parse-buffer also
23444         failed.
23445
23446 2004-12-14  Katsumi Yamaoka  <yamaoka@jpl.org>
23447
23448         * gnus-group.el (gnus-group-delete-group): Decode group name.
23449         (gnus-group-make-rss-group): Encode group name.
23450         (gnus-group-catchup-current): Decode group name.
23451         (gnus-group-kill-group): Decode group name.
23452
23453 2004-12-08  Stefan Monnier  <monnier@iro.umontreal.ca>
23454
23455         * gnus-art.el (gnus-narrow-to-page): Don't hardcode point-min.
23456
23457 2004-12-13  Katsumi Yamaoka  <yamaoka@jpl.org>
23458
23459         * gnus-group.el (gnus-group-make-rss-group):
23460         Use gnus-group-make-group instead of gnus-group-unsubscribe-group.
23461
23462         * gnus-start.el (gnus-setup-news): Honor user's setting to
23463         gnus-message-archive-method.  Suggested by Lute Kamstra
23464         <lute@gnu.org>.
23465
23466 2004-12-10  Arnaud Giersch  <arnaud.giersch@free.fr>  (tiny change)
23467
23468         * gnus-sum.el (gnus-summary-exit-no-update): Don't clear the
23469         global counterparts of the buffer-local variables.
23470
23471 2004-11-16  Romain Francoise  <romain@orebokech.com>
23472
23473         * gnus-sum.el (gnus-summary-exit): Don't clear the global
23474         counterparts of the buffer-local variables.
23475
23476 2004-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
23477
23478         * message.el (message-forbidden-properties): Fix typo in doc
23479         string.
23480
23481 2004-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
23482
23483         * gnus-util.el (gnus-replace-in-string): Add doc string.
23484
23485         * nnmail.el (nnmail-split-header-length-limit): Increase to 2048
23486         to avoid problems when splitting mails with many recipients.
23487
23488 2004-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
23489
23490         * gnus-sum.el (gnus-summary-exit): Remove redundant and harmful
23491         pop-to-buffer, covered by the subsequent gnus-configure-windows.
23492
23493 2004-12-05  Nelson Ferreira  <nelson.ferreira@ieee.org>
23494
23495         * spam-stat.el (spam-stat-save): Load the hashtable from disk only
23496         if there is no hashtable in memory or file modification time is
23497         newer than cached timestamp.
23498
23499 2004-12-03  Reiner Steib  <Reiner.Steib@gmx.de>
23500
23501         * gnus-sum.el (gnus-summary-limit-to-recipient):
23502         Implement not-matching option.
23503
23504 2004-12-02  Reiner Steib  <Reiner.Steib@gmx.de>
23505
23506         * gnus-sum.el (gnus-summary-limit-to-recipient): New function.
23507         Suggested David Mazieres in analogy to rmail-summary-by-recipients.
23508         (gnus-summary-limit-map, gnus-summary-make-menu-bar): Add it.
23509         (gnus-article-sort-by-recipient, gnus-summary-sort-by-recipient):
23510         New functions.  Suggested by Uwe Brauer <oub@mat.ucm.es>.
23511         (gnus-summary-mode-map, gnus-summary-make-menu-bar): Add it.
23512
23513 2004-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
23514
23515         * message.el (message-forward-make-body-mml): Remove headers
23516         according to message-forward-ignored-headers if a message is decoded.
23517
23518 2004-12-02  Romain Francoise  <romain@orebokech.com>
23519
23520         * message.el (message-forward-make-body-plain): Always remove
23521         headers according to message-forward-ignored-headers.
23522
23523 2004-12-01  Teodor Zlatanov  <tzz@lifelogs.com>
23524
23525         * spam.el (spam-summary-prepare-exit): Remove the
23526         gnus-summary-limit pop for now, it has problems with ham marks for
23527         me.
23528
23529 2004-11-29  Teodor Zlatanov  <tzz@lifelogs.com>
23530
23531         * spam.el (spam-summary-prepare-exit): Use gnus-summary-limit
23532         correctly.
23533
23534 2004-11-28  Carl Henrik Lunde  <chlunde+bugs+@ping.uio.no>  (tiny change)
23535
23536         * format-spec.el (format-spec): Message the char.
23537
23538 2004-11-26  Teodor Zlatanov  <tzz@lifelogs.com>
23539
23540         * gnus-art.el (gnus-split-methods): Reformat comments.
23541
23542         * spam.el (spam-summary-prepare-exit): Remove article limits
23543         before exiting the summary buffer.
23544
23545 2004-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
23546
23547         * lpath.el: Remove bbdb-create-internal, bbdb-records,
23548         spam-BBDB-register-routine and spam-enter-ham-BBDB.
23549
23550         * nnrss.el (nnrss-string-as-multibyte): Redefine it as a macro in
23551         order to silence the byte compiler.
23552
23553         * spam.el: Fix the way to silence the byte compiler, which
23554         complained about bbdb-buffer, bbdb-create-internal, bbdb-records,
23555         bbdb-search-simple, spam-BBDB-register-routine,
23556         spam-enter-ham-BBDB, spam-stat-buffer-change-to-non-spam,
23557         spam-stat-buffer-change-to-spam, spam-stat-buffer-is-non-spam,
23558         spam-stat-buffer-is-spam, spam-stat-load,
23559         spam-stat-register-ham-routine, spam-stat-register-spam-routine,
23560         spam-stat-save and spam-stat-split-fancy.
23561
23562 2004-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
23563
23564         * canlock.el (canlock-password): Remove `:size 0' or `:size 1'
23565         which may confuse users.
23566         (canlock-password-for-verify): Ditto.
23567
23568         * deuglify.el (gnus-outlook-deuglify-unwrap-stop-chars): Ditto.
23569
23570         * gnus-art.el (gnus-emphasis-alist): Ditto.
23571
23572         * gnus-registry.el (gnus-registry-max-entries): Ditto.
23573
23574         * gnus-score.el (gnus-adaptive-word-length-limit): Ditto.
23575
23576         * gnus-start.el (gnus-save-killed-list): Ditto.
23577
23578         * gnus-sum.el (gnus-thread-hide-subtree): Ditto.
23579         (gnus-sum-thread-tree-root): Ditto.
23580         (gnus-sum-thread-tree-false-root): Ditto.
23581         (gnus-sum-thread-tree-single-indent): Ditto.
23582
23583         * message.el (message-courtesy-message): Ditto.
23584         (message-archive-note): Ditto.
23585         (message-subscribed-address-file): Ditto.
23586         (message-user-fqdn): Ditto.
23587
23588         * spam-report.el (spam-report-gmane-regex): Ditto.
23589
23590         * spam.el (spam-blackhole-good-server-regex): Ditto.
23591
23592 2004-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
23593
23594         * mml.el (mml-preview): Widen the message buffer before copying
23595         the contents to the preview buffer; sort headers before previewing.
23596
23597         * message.el (message-hidden-headers): Fix the way to avoid a bug
23598         in the `repeat' widget in Emacs 21.3 or earlier.
23599
23600 2004-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
23601
23602         * message.el (message-hidden-headers): Default to "^References:".
23603         Improve customization type.  Suggested by Reiner Steib
23604         <Reiner.Steib@gmx.de>.
23605
23606 2004-11-25  Romain Francoise  <romain@orebokech.com>
23607
23608         * message.el (message-strip-forbidden-properties): Remove check for
23609         obsolete `message-hidden' text property, hidden headers are not
23610         accessible in the buffer anymore.
23611
23612 2004-11-22  Romain Francoise  <romain@orebokech.com>
23613
23614         * message.el (message-header-format-alist): Add `From' in list
23615         so that it can be sorted.
23616         (message-fix-before-sending): Widen and sort headers before
23617         sending.
23618         (message-hide-headers): Use narrowing to hide headers by moving
23619         them to the top of the buffer and narrowing to the region
23620         underneath.
23621
23622 2004-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23623
23624         * message.el (message-strip-forbidden-properties):
23625         Bind buffer-read-only (etc) to nil.
23626
23627 2004-11-23  Katsumi Yamaoka  <yamaoka@jpl.org>
23628
23629         * rfc2047.el (rfc2047-header-encoding-alist): Add In-Reply-To to
23630         address-mime.  Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
23631
23632 2004-11-22  Marek Martin  <marek.martin@mum.pri.ee>  (tiny change)
23633
23634         * nnfolder.el (nnfolder-request-create-group): Save current buffer.
23635
23636 2004-11-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23637
23638         * dns.el (query-dns): Use sit-for to time instead of
23639         accept-process-output, since that doesn't seem to work on udp
23640         sockets.
23641
23642 2004-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
23643
23644         * rfc2047.el (rfc2047-encode-region): Encode bogus delimiters.
23645
23646 2004-11-15  Jesper Harder  <harder@ifa.au.dk>
23647
23648         * pop3.el (pop3-leave-mail-on-server): Don't quote nil in
23649         doc string.  Improve doc string.
23650
23651 2004-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
23652
23653         * nntp.el (nntp-request-update-info): Return nil if
23654         nntp-marks-is-evil is true so that gnus-get-unread-articles-in-group
23655         may not call gnus-activate-group which uselessly issues the GROUP
23656         commands for all nntp groups and wastes time.  Reported by Romain
23657         Francoise <romain@orebokech.com>.
23658
23659         * gnus-start.el (gnus-get-unread-articles): Remove redundant test.
23660
23661 2004-11-15  Simon Josefsson  <jas@extundo.com>
23662
23663         * gnus-art.el (gnus-header-button-alist): Handle URLs in OpenPGP:
23664         headers separately.
23665         (gnus-button-openpgp): New function, inspired by Jochen Küpper
23666         <jochen-+It19tn3Rl9sbm7dSapR3bNAH6kLmebB@public.gmane.org>.
23667
23668 2004-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
23669
23670         * gnus-start.el (gnus-convert-old-newsrc):
23671         Assign legacy-gnus-agent to 5.10.7.
23672
23673 2004-11-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23674
23675         * gnus-art.el (article-unsplit-urls): Don't anchor urls to the
23676         start of the lines.
23677
23678 2004-11-14  Magnus Henoch  <mange@freemail.hu>
23679
23680         * hashcash.el (hashcash-default-payment): Change default to 20.
23681         (hashcash-default-accept-payment): Change default to 20.
23682         (hashcash-process-alist): New variable.
23683         (hashcash-generate-payment-async): Add.
23684         (hashcash-already-paid-p): Add.
23685         (hashcash-insert-payment): Don't generate payments twice.
23686         (hashcash-insert-payment-async): Add.
23687         (hashcash-insert-payment-async-2): Add.
23688         (hashcash-cancel-async): Add.
23689         (hashcash-wait-async): Add.
23690         (hashcash-processes-running-p): Add.
23691         (hashcash-wait-or-cancel): Add.
23692         (mail-add-payment): New optional argument.  Conditionally start
23693         asynchronous calculation.
23694         (mail-add-payment-async): Add.
23695
23696         * message.el (message-send-mail): Wait for asynchronous hashcash
23697         results.  Don't clobber existing X-Hashcash headers.
23698         (message-setup-1): Call mail-add-payment-async when
23699         message-generate-hashcash is non-nil.
23700
23701 2004-11-11  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
23702
23703         * message.el (message-use-alternative-email-as-from): Examine the
23704         From header as well; use message-make-from in order to include a
23705         user's full name.
23706
23707 2004-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
23708
23709         * gnus-art.el (gnus-emphasis-alist): Don't hide asterisks by
23710         default; improve customization type.
23711         (gnus-emphasis-custom-with-format): New macro.
23712         (gnus-emphasis-custom-value-to-external): New function.
23713         (gnus-emphasis-custom-value-to-internal): New function.
23714
23715 2004-11-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23716
23717         * dns.el (query-dns): Resolve reverse addresses.
23718
23719 2004-10-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23720
23721         * gnus-group.el (gnus-group-get-new-news): Use it.
23722
23723         * gnus-start.el (gnus-check-reasonable-setup): New function.
23724
23725 2004-11-07  Katsumi Yamaoka  <yamaoka@jpl.org>
23726
23727         * gnus-msg.el (gnus-configure-posting-styles): Don't cause the
23728         "Args out of range" error.  Reported by Arnaud Giersch
23729         <arnaud.giersch@free.fr>.
23730
23731 2004-11-07  Stefan Wiens  <s.wi@gmx.net>  (tiny change)
23732
23733         * gnus-sum.el (gnus-summary-clear-local-variables): Use symbolp.
23734
23735 2004-11-04  Richard M. Stallman  <rms@gnu.org>
23736
23737         * spam.el (spam group): Add :version.
23738
23739         * pgg-def.el (pgg group): Add :version.
23740
23741 2004-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
23742
23743         * gnus-art.el (gnus-article-edit-article): Don't associate the
23744         article buffer with a draft file.  This is a temporary measure
23745         against the 2004-08-22 change to gnus-article-edit-mode.
23746
23747 2004-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
23748
23749         * html2text.el (html2text-get-attr): Remove unused argument `tag'.
23750         (html2text-format-tags): Remove unused variable `attr'.
23751
23752 2004-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
23753
23754         * gnus-msg.el (gnus-summary-resend-default-address): Add :version.
23755
23756         * tls.el (tls-process-connection-type, tls-success)
23757         (tls-certtool-program): Add :version.
23758
23759         * starttls.el (starttls-gnutls-program, starttls-use-gnutls)
23760         (starttls-extra-arguments, starttls-process-connection-type)
23761         (starttls-connect, starttls-failure, starttls-success): Add :version.
23762
23763         * spam-stat.el (spam-stat): Add :version.
23764
23765         * sieve.el (sieve): Add :version.
23766
23767         * sha1.el (sha1): Add :version.
23768         (sha1-use-external): Remove redundant version.
23769
23770         * nnmail.el (nnmail-split-fancy-with-parent-ignore-groups)
23771         (nnmail-cache-ignore-groups, nnmail-spool-hook)
23772         (nnmail-split-fancy-match-partial-words)
23773         (nnmail-split-lowercase-expanded): Add :version.
23774
23775         * nndiary.el (nndiary): Add :version.
23776
23777         * mml2015.el (mml2015-unabbrev-trust-alist): Add :version.
23778
23779         * mml-sec.el (mml-default-sign-method)
23780         (mml-default-encrypt-method, mml-signencrypt-style-alist):
23781         Add :version.
23782
23783         * mm-uu.el (mm-uu-diff-groups-regexp): Add :version.
23784
23785         * mm-url.el (mm-url-use-external, mm-url-program)
23786         (mm-url-arguments): Add :version.
23787
23788         * mm-decode.el (mm-inline-text-html-with-w3m-keymap)
23789         (mm-attachment-file-modes, mm-decrypt-option)
23790         (mm-w3m-safe-url-regexp): Add :version.
23791
23792         * message.el (message-cite-prefix-regexp)
23793         (message-sendmail-envelope-from, message-minibuffer-local-map)
23794         (message-user-fqdn, message-completion-alist): Add :version.
23795
23796         * gnus-win.el (gnus-configure-windows-hook)
23797         (gnus-use-frames-on-any-display): Add :version.
23798
23799         * gnus-art.el (gnus-article-address-banner-alist)
23800         (gnus-treat-unsplit-urls, gnus-treat-unfold-headers)
23801         (gnus-treat-from-picon, gnus-treat-mail-picon)
23802         (gnus-treat-x-pgp-sig): Add :version.
23803
23804         * gnus-sum.el (gnus-spam-mark, gnus-recent-mark)
23805         (gnus-undownloaded-mark, gnus-summary-article-move-hook)
23806         (gnus-summary-article-delete-hook)
23807         (gnus-summary-display-while-building): Add :version.
23808
23809         * gnus-start.el (gnus-subscribe-newsgroup-hooks)
23810         (gnus-get-top-new-news-hook): Add :version.
23811
23812         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
23813         (gnus-server-closed-face, gnus-server-denied-face): Add :version.
23814
23815         * gnus-registry.el (gnus-registry): Add :version.
23816
23817         * gnus-spec.el (gnus-use-correct-string-widths)
23818         (gnus-make-format-preserve-properties): Add :version.
23819
23820         * gnus.el (gnus-group-charter-alist)
23821         (gnus-group-fetch-control-use-browse-url)
23822         (gnus-install-group-spam-parameters): Add :version.
23823
23824         * gnus-diary.el (gnus-diary): Add :version.
23825
23826         * gnus-delay.el (gnus-delay): Add :version.
23827
23828         * gnus-cite.el (gnus-cite-unsightly-citation-regexp)
23829         (gnus-cite-ignore-quoted-from, gnus-cite-attribution-face)
23830         (gnus-cite-blank-line-after-header, gnus-article-boring-faces):
23831         Add :version.
23832
23833         * gnus-agent.el (gnus-agent-max-fetch-size)
23834         (gnus-agent-enable-expiration, gnus-agent-queue-mail)
23835         (gnus-agent-prompt-send-queue): Add :version.
23836
23837         * deuglify.el (gnus-outlook-deuglify): Add :version.
23838
23839         * html2text.el: Beautify code.  Improve doc strings.
23840         Some checkdoc cleanup.
23841         (html2text-get-attr, html2text-fix-paragraph): Simplify code.
23842
23843 2004-11-01  Alfred M. Szmidt  <ams@kemisten.nu>  (tiny change)
23844
23845         * html2text.el (html2text-format-tag-list): Add "strong" and "em".
23846
23847 2004-10-29  Teodor Zlatanov  <tzz@lifelogs.com>
23848
23849         * gnus-registry.el (gnus-registry-hashtb): Create the registry
23850         when package is loaded.
23851
23852         * spam.el (spam-summary-score-preferred-header): Add global preference
23853         for people who want to override the default SpamAssassin over
23854         Bogofilter preference (when both are set).
23855         (spam-necessary-extra-headers): Add spam-use-bogofilter as an option.
23856         (spam-user-format-function-S):
23857         Check spam-summary-score-preferred-header.
23858         (spam-extra-header-to-number): Add X-Bogosity header parsing.
23859         (spam-user-format-function-S): Format the score correctly.
23860
23861 2004-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
23862
23863         * gnus-msg.el (gnus-configure-posting-styles): Work with empty
23864         signature file.  Suggested by Manoj Srivastava
23865         <srivasta@golden-gryphon.com>.
23866
23867         * mm-util.el (mm-coding-system-priorities): Prefer iso-8859-1 than
23868         iso-2022-jp even in the Japanese language environment.
23869         Suggested by Jason Rumney <jasonr@gnu.org>.
23870
23871 2004-10-28  Katsumi Yamaoka  <yamaoka@jpl.org>
23872
23873         * gnus-sum.el (gnus-update-summary-mark-positions): Allow users to
23874         use the same characters as the dummy marks; make it free from
23875         getting affected by the language environment.
23876         (gnus-summary-read-group-1): Update mark positions only when the
23877         format spec is updated.
23878
23879         * gnus-spec.el (gnus-update-format-specifications): Return a list
23880         of updated types.
23881
23882 2004-10-27  Katsumi Yamaoka  <yamaoka@jpl.org>
23883
23884         * gnus-start.el (gnus-check-reasonable-setup): Use fboundp instead
23885         of boundp to check if display-warning is available.
23886
23887 2004-10-26  Teodor Zlatanov  <tzz@lifelogs.com>
23888
23889         * nnimap.el (nnimap-open-connection): Fix prog1/prog2 bug.
23890
23891 2004-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
23892
23893         * nnspool.el (nnspool-spool-directory): Use news-path if the
23894         news-directory variable is not bound.
23895
23896         * gnus-start.el (gnus-check-reasonable-setup): Use an alternative
23897         function instead of display-warning if it is not available.
23898
23899 2004-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
23900
23901         * gnus-agent.el (gnus-agent-expire-group-1): Fix last merge from
23902         v5-10: Use `point-at-bol'.
23903
23904 2004-10-26  Simon Josefsson  <jas@extundo.com>
23905
23906         * hashcash.el: Fix URL in comment, reported by Cheng Gao
23907         <chenggao@gmail.com>.
23908
23909 2004-10-25  Reiner Steib  <Reiner.Steib@gmx.de>
23910
23911         * html2text.el (html2text-buffer-head): Remove.  Use `goto-char'
23912         instead.
23913
23914 2004-10-25  Teodor Zlatanov  <tzz@lifelogs.com>
23915
23916         * nnimap.el (nnimap-remove-server-from-buffer-alist): Add function
23917         to remove a server from the nnimap-server-buffer-alist.
23918         (nnimap-open-connection, nnimap-close-server): Use it.
23919
23920         * gnus-encrypt.el: Remove file in favor of encrypt.el.
23921
23922 2004-10-21  Katsumi Yamaoka  <yamaoka@jpl.org>
23923
23924         * mm-view.el (mm-display-inline-fontify): Inhibit font-lock when
23925         running the major-mode function.
23926
23927 2004-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
23928
23929         * gnus-sum.el (gnus-update-summary-mark-positions): Search for
23930         dummy marks in the right way.
23931
23932 2004-10-18  David Edmondson  <dme@dme.org>
23933
23934         * mm-view.el (mm-w3m-cid-retrieve-1): Don't use recursive call
23935         excessively.
23936
23937 2004-10-18  Teodor Zlatanov  <tzz@lifelogs.com>
23938
23939         * gnus-util.el (gnus-split-references): Accept a nil references
23940         string and go on blissfully.
23941
23942         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Catch
23943         cases where the references string is non-nil but has no references.
23944
23945         * encrypt.el: Add autoload tags.
23946
23947         * spam.el (spam-resolve-registrations-routine): Remove article
23948         from unregistration list too.  Reported by David Hanak
23949         <dhanak@isis.vanderbilt.edu>
23950
23951 2004-10-18  Reiner Steib  <Reiner.Steib@gmx.de>
23952
23953         * gnus-art.el (gnus-copy-article-ignored-headers): Default to
23954         nil.  Change custom type.
23955
23956 2004-10-17  Reiner Steib  <Reiner.Steib@gmx.de>
23957
23958         * gnus-art.el (gnus-copy-article-ignored-headers): New variable.
23959
23960         * gnus-sum.el (gnus-summary-move-article): Use it.
23961
23962 2004-10-15  Teodor Zlatanov  <tzz@lifelogs.com>
23963
23964         * encrypt.el: Add autoload cookies.
23965
23966         * spam.el (spam-backend-article-list-property)
23967         (spam-backend-get-article-todo-list)
23968         (spam-backend-put-article-todo-list)
23969         (spam-summary-prepare-exit, spam-resolve-registrations-routine):
23970         Resolve registrations separately.
23971         (spam-register-routine): Format comments.
23972         (spam-unregister-routine, spam-register-routine): Always call with
23973         specific-articles, no default list.
23974         (spam-summary-prepare-exit): Use the spam-classifications function.
23975
23976         * netrc.el (autoload, netrc-parse): Use encrypt.el instead of
23977         gnus-encrypt.el.
23978
23979         * encrypt.el: Copied from gnus-encrypt.el.
23980
23981         * gnus-encrypt.el: Commented that it's obsolete.
23982
23983 2004-10-15  Reiner Steib  <Reiner.Steib@gmx.de>
23984
23985         * gnus-score.el (gnus-adaptive-pretty-print): New variable.
23986         (gnus-score-save): Use it.
23987
23988         * message.el (message-bury): Use `window-dedicated-p'.
23989
23990 2004-10-15  Simon Josefsson  <jas@extundo.com>
23991
23992         * pop3.el (top-level): Don't require nnheader.
23993         (pop3-read-timeout): Add.
23994         (pop3-accept-process-output): Add.
23995         (pop3-read-response, pop3-retr): Use it.
23996
23997 2004-10-14  Teodor Zlatanov  <tzz@lifelogs.com>
23998
23999         * spam.el (spam-register-routine): Move comment.
24000         (spam-verify-bogofilter): Use 'unknown for the initial
24001         spam-bogofilter-valid state, not 'never.
24002
24003         * netrc.el (netrc-machine-user-or-password): Add convenience wrapper
24004         for netrc-machine.
24005
24006         * nnimap.el (nnimap-open-connection):
24007         Use netrc-machine-user-or-password.
24008
24009 2004-10-17  Richard M. Stallman  <rms@gnu.org>
24010
24011         * gnus-registry.el (gnus-registry-unload-hook):
24012         Set as a variable with add-hook.
24013
24014         * nnspool.el (nnspool-spool-directory): Use news-directory instead
24015         of news-path.
24016
24017         * spam-stat.el (spam-stat-unload-hook): Set as a variable w/ add-hook.
24018
24019         * spam.el: Delete duplicate `provide'.
24020         (spam-unload-hook): Set as a variable with add-hook.
24021
24022 2004-10-15  Reiner Steib  <Reiner.Steib@gmx.de>
24023
24024         * pop3.el (pop3-leave-mail-on-server): Describe possible problems
24025         in the doc string.
24026
24027         * message.el (message-ignored-news-headers)
24028         (message-ignored-supersedes-headers)
24029         (message-ignored-resent-headers)
24030         (message-forward-ignored-headers): Improve custom type.
24031
24032 2004-10-13  Katsumi Yamaoka  <yamaoka@jpl.org>
24033
24034         * message.el (message-tokenize-header): Fix 2004-09-06 change
24035         which used point-min in the wrong place.
24036
24037 2004-10-12  Simon Josefsson  <jas@extundo.com>
24038
24039         * tls.el (tls-certtool-program): New variable.
24040         (tls-certificate-information): New function, based on
24041         ssl-certificate-information.
24042
24043 2004-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
24044
24045         * compface.el: Move the version of ELisp-based uncompface program
24046         to the contrib directory because of the copyright problem.
24047
24048 2004-10-12  Reiner Steib  <Reiner.Steib@gmx.de>
24049
24050         * message.el (message-kill-buffer): Raise the current frame.
24051
24052 2004-10-10  Reiner Steib  <Reiner.Steib@gmx.de>
24053
24054         * gnus-sum.el: Mention that multibyte characters don't work as marks.
24055
24056         * gnus.el (message-y-or-n-p): Autoload.
24057
24058         * pop3.el (pop3-maildrop, pop3-mailhost, pop3-port)
24059         (pop3-password-required, pop3-authentication-scheme)
24060         (pop3-leave-mail-on-server): Make customizable.
24061         (pop3): New custom group.
24062         (pop3-retr): Remove `sleep-for' statements.
24063         Suggested by Dave Love <fx@gnu.org>.
24064
24065         * nnheader.el (nnheader-read-timeout): Explain 1.0 timeout for
24066         Windows/DOS.
24067
24068         * imap.el (imap-parse-flag-list, imap-parse-body-extension)
24069         (imap-parse-body): Fix incorrect use of `assert'.
24070         Suggested by Dave Love <fx@gnu.org>.
24071
24072         * mml.el (mml-minibuffer-read-disposition): Require match.
24073         Suggested by Dave Love <fx@gnu.org>.
24074
24075 2004-10-11  Reiner Steib  <Reiner.Steib@gmx.de>
24076
24077         * gnus-group.el (gnus-group-delete-group): Change "\t." to "  " in
24078         doc string.
24079
24080 2004-10-08  Katsumi Yamaoka  <yamaoka@jpl.org>
24081
24082         * mm-uu.el (mm-uu-dissect-text-parts): Support all text/* types.
24083
24084 2004-10-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
24085
24086         * gnus-art.el (gnus-mime-display-single): Call `mm-display-inline'
24087         instead of calling `mm-insert-inline', to decode text/* parts
24088         before displaying them.
24089
24090 2004-10-07  Katsumi Yamaoka  <yamaoka@jpl.org>
24091
24092         * mm-uu.el (mm-uu-text-plain-type): New variable.
24093         (mm-uu-pgp-signed-extract-1): Use it.
24094         (mm-uu-pgp-encrypted-extract-1): Use it.
24095         (mm-uu-dissect): Allow MIME type and parameters as an optional arg;
24096         bind mm-uu-text-plain-type with that value.
24097         (mm-uu-dissect-text-parts): Pass MIME type and parameters to
24098         mm-uu-dissect.
24099
24100 2004-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
24101
24102         * gnus-group.el (gnus-update-group-mark-positions):
24103         * gnus-sum.el (gnus-update-summary-mark-positions):
24104         * message.el (message-check-news-body-syntax):
24105         * gnus-msg.el (gnus-debug): Use mm-string-as-multibyte instead
24106         of string-as-multibyte.
24107
24108 2004-10-05  Juri Linkov  <juri@jurta.org>
24109
24110         * gnus-group.el (gnus-update-group-mark-positions):
24111         * gnus-sum.el (gnus-update-summary-mark-positions):
24112         * message.el (message-check-news-body-syntax):
24113         * gnus-msg.el (gnus-debug): Use `string-as-multibyte' to convert
24114         8-bit unibyte values to a multibyte string for search functions.
24115
24116 2004-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
24117
24118         * mm-uu.el (mm-uu-dissect): Allow optional arg.
24119         (mm-uu-dissect-text-parts): New function.
24120
24121         * gnus-art.el (gnus-display-mime): Use mm-uu-dissect-text-parts to
24122         dissect text parts.
24123
24124         * gnus-sum.el (gnus-summary-insert-subject): Remove redundant setq.
24125         (gnus-summary-force-verify-and-decrypt): Revert 2004-08-18 change.
24126
24127         * mm-decode.el (mm-dissect-singlepart): Revert 2004-08-18 change.
24128
24129         * gnus-topic.el (gnus-topic-hierarchical-parameters):
24130         Use gnus-current-topics instead of gnus-current-topic.
24131
24132 2004-10-06  Jesper Harder  <harder@ifa.au.dk>
24133
24134         * gnus-sum.el (gnus-summary-show-article): Use with-current-buffer.
24135
24136 2004-10-05  Jesper Harder  <harder@ifa.au.dk>
24137
24138         * nnsoup.el (nnsoup-read-active-file): Use dolist, mapc or last
24139         where appropriate.
24140
24141         * nnml.el (nnml-generate-active-info): do.
24142
24143         * nndiary.el (nndiary-generate-active-info): do.
24144
24145         * gnus-topic.el (gnus-topic-hierarchical-parameters): do.
24146         (gnus-topic-move): do.
24147
24148         * gnus-sum.el (gnus-data-enter-list, gnus-summary-process-mark-set)
24149         (gnus-summary-set-local-parameters, gnus-summary-read-document): do.
24150
24151         * gnus-srvr.el (gnus-server-prepare)
24152         (gnus-server-open-all-servers): do.
24153
24154         * gnus-msg.el (gnus-summary-cancel-article)
24155         (gnus-summary-resend-message)
24156         (gnus-summary-mail-crosspost-complaint): do.
24157
24158         * gnus-move.el (gnus-change-server): do.
24159
24160         * gnus-group.el (gnus-group-unmark-all-groups)
24161         (gnus-group-set-current-level): do.
24162
24163 2004-10-04  Simon Josefsson  <jas@extundo.com>
24164
24165         * message.el (message-generate-hashcash): Doc fix.
24166
24167 2004-10-02  Kevin Greiner  <kgreiner@compsol.cc>
24168
24169         * nnagent.el (nnagent-request-type): Bind gnus-agent to nil to
24170         avoid infinite recursion via gnus-get-function.
24171
24172 2004-10-02  Jesper Harder  <harder@ifa.au.dk>
24173
24174         * mm-partial.el (mm-partial-find-parts): Use with-current-buffer.
24175
24176         * nnfolder.el (nnfolder-generate-active-file): Use dolist.
24177
24178         * nnmail.el (nnmail-split-history): do.
24179
24180         * nnml.el (nnml-generate-nov-databases-1, nnml-request-rename-group)
24181         (nnml-request-delete-group): do.
24182
24183         * nnslashdot.el (nnslashdot-read-groups): do.
24184
24185         * nnsoup.el (nnsoup-delete-unreferenced-message-files): do.
24186         (nnsoup-unpack-packets, nnsoup-make-active): Simplify.
24187
24188         * nnspool.el (nnspool-find-id): Use with-temp-buffer.
24189         (nnspool-sift-nov-with-sed): Use last.
24190         (nnspool-retrieve-headers-with-nov): Use mapc.
24191         (nnspool-request-newgroups): Use dolist.
24192         (nnspool-request-group): Use last.
24193
24194         * nntp.el (nntp-read-server-type): Use dolist.
24195
24196         * nnvirtual.el (nnvirtual-create-mapping)
24197         (nnvirtual-update-read-and-marked): Use dolist.
24198         (nnvirtual-convert-headers): Simplify.
24199
24200 2004-10-01  Kevin Greiner  <kgreiner@compsol.cc>
24201
24202         * gnus-agent.el (gnus-agent-synchronize-group-flags):
24203         Add support for sync'ing tick marks.
24204
24205 2004-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
24206
24207         * gnus-sum.el (gnus-summary-toggle-header): Make it work even if
24208         there's no visible header.
24209
24210 2004-10-01  Kevin Greiner  <kgreiner@compsol.cc>
24211
24212         * gnus-agent.el (gnus-agent-synchronize-group-flags):
24213         When necessary, pass full group name to gnus-request-set-marks.
24214
24215 2004-10-01  Simon Josefsson  <jas@extundo.com>
24216
24217         * mailcap.el (mailcap-mime-data): Add pdf.  Remove non-free
24218         acroread.
24219
24220 2004-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24221
24222         * spam-report.el (spam-report-gmane): Fix interactive.
24223
24224         * gnus-art.el (gnus-treat-body-boundary): Only do stuff under X.
24225
24226         * gnus-agent.el (gnus-agent-synchronize-flags-server): Be silent
24227         when writing file.
24228         (gnus-agent-synchronize-flags): Don't default to being
24229         interactive.
24230
24231 2004-09-30  Simon Josefsson  <jas@extundo.com>
24232
24233         * message.el (message-generate-hashcash): Add.
24234         (message-send-mail): Use it, call mail-add-payment.
24235
24236 2004-09-29  Teodor Zlatanov  <tzz@lifelogs.com>
24237
24238         * spam.el (spam-verify-bogofilter): Use -V, not -sV option.
24239
24240 2004-09-28  Kevin Greiner  <kgreiner@compsol.cc>
24241
24242         * gnus-agent.el (gnus-agent-synchronize-group-flags): Replace
24243         gnus-requst-update-info with explicit code to sync the in-memory
24244         info read flags with the marks being sync'd to the backend.
24245
24246         * gnus-util.el (gnus-pp): Add optional stream to match pp API.
24247
24248 2004-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
24249
24250         * spam.el (spam-verify-bogofilter): Add new function.
24251         (spam-check-bogofilter)
24252         (spam-bogofilter-register-with-bogofilter): Use it.
24253         (spam-verify-bogofilter): Add small fixes.
24254
24255 2004-09-28  Simon Josefsson  <jas@extundo.com>
24256
24257         * hashcash.el (hashcash-generate-payment): Revert.
24258
24259 2004-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
24260
24261         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
24262         Use gnus-extract-references instead of gnus-split-references.
24263
24264         * gnus-util.el (gnus-extract-references): Add new function, analogous
24265         to gnus-split-references but extracts only the message-ID without
24266         anything extra.
24267
24268         * hashcash.el (hashcash-generate-payment)
24269         (hashcash-check-payment): Do the right thing if hashcash-path is
24270         nil (because the hashcash program could not be found).
24271
24272         * spam.el (spam-use-hashcash): Remove comment.
24273
24274 2004-09-27  Jesper Harder  <harder@ifa.au.dk>
24275
24276         * gnus-cache.el (gnus-cache-possibly-remove-articles-1)
24277         (gnus-cache-enter-article, gnus-cache-remove-article)
24278         (gnus-cache-braid-heads, gnus-cache-generate-active): Use dolist.
24279
24280         * gnus-async.el (gnus-async-prefetch-remove-group): do.
24281
24282         * gnus-art.el (article-hide-boring-headers)
24283         (article-translate-strings, article-display-face)
24284         (gnus-article-mime-match-handle-first)
24285         (gnus-article-highlight-headers)
24286         (gnus-article-add-buttons-to-head): do.
24287
24288 2004-09-27  Simon Josefsson  <jas@extundo.com>
24289
24290         * hashcash.el: New version, from
24291         http://users.actrix.co.nz/mycroft/hashcash.el.  Previously in
24292         ../contrib/.
24293
24294 2004-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
24295
24296         * mm-decode.el (mm-copy-to-buffer): Don't use set-buffer-multibyte.
24297
24298 2004-09-26  Jesper Harder  <harder@ifa.au.dk>
24299
24300         * gnus-dup.el (gnus-dup-open): Use mapc.
24301         (gnus-dup-enter-articles, gnus-dup-suppress-articles): Use dolist.
24302
24303         (gnus-dup-enter-articles): Remove excess ID's from gnus-dup-hashtb.
24304         Reported by Stefan Wiens <s.wi@gmx.net>.
24305
24306         * gnus.el (gnus-shutdown): Use dolist.
24307
24308         * gnus-undo.el (gnus-undo): Use mapc.
24309
24310         * nnrss.el (nnrss-generate-active): do.
24311
24312         * message.el (message-cite-original-without-signature)
24313         (message-cite-original): Use mapc.
24314         (message-do-actions, message-make-forward-subject): Use dolist.
24315
24316 2004-09-25  Kevin Greiner  <kgreiner@compsol.cc>
24317
24318         * gnus-agent.el (gnus-agent-check-overview-buffer): Fix range of
24319         deletion to remove entire duplicate line.  Fixes merged article
24320         number bug.
24321
24322 2004-09-25  Kevin Greiner  <kgreiner@compsol.cc>
24323
24324         * gnus-agent.el (gnus-agent-possibly-synchronize-flags): Ignore
24325         servers that are offline.  Avoids having gnus-agent-toggle-plugged
24326         first ask if you want to open a server and then, even when you
24327         responded with no, asking if you want to synchronize the server's
24328         flags.
24329         (gnus-agent-synchronize-flags-server): Rewrote read loop to handle
24330         multi-line expressions.
24331         (gnus-agent-synchronize-group-flags): New internal function.
24332         Updates marks in memory (in the info structure) AND in the
24333         backend.
24334
24335         * gnus-util.el (gnus-remassoc): Fix typo in documentation.
24336
24337         * nnagent.el (nnagent-request-set-mark):
24338         Use gnus-agent-synchronize-group-flags, not backend's request-set-mark
24339         method, to ensure that synchronization updates marks in the
24340         backend and in the info (in memory) structure.
24341
24342 2004-09-24  Katsumi Yamaoka  <yamaoka@jpl.org>
24343
24344         * gnus-uu.el (gnus-uu-digest-mail-forward): Obey the process/prefix
24345         convention fully; don't miss the root article of a thread; make
24346         the X-Draft-From header with correct article numbers.
24347
24348 2004-09-23  Kevin Greiner  <kgreiner@compsol.cc>
24349
24350         * gnus-agent.el (gnus-agent-synchronize-flags-server): Do nothing
24351         unless plugged.  Disable the agent so that an open failure causes
24352         an error.
24353
24354         * gnus-int.el (gnus-request-set-mark, gnus-request-update-mark):
24355         Revert 2004-09-21 change.  The backend must be opened while
24356         synchronizing flags even when the backend stores the flags
24357         locally.
24358
24359 2004-09-23  Reiner Steib  <Reiner.Steib@gmx.de>
24360
24361         * gnus-msg.el (gnus-configure-posting-styles): Narrow to headers
24362         in `header' match.  Reported by Svend Tollak Munkejord.
24363
24364         * message.el (message-cite-original): Fix use of
24365         `message-cite-articles-with-x-no-archive'.
24366
24367 2004-09-22  Katsumi Yamaoka  <yamaoka@jpl.org>
24368
24369         * gnus-win.el (gnus-buffer-configuration): Add mml-preview.
24370         (gnus-window-to-buffer): Ditto.
24371
24372         * mml.el (mml-preview-buffer): New variable.
24373         (mml-preview): Manage window layout with gnus-buffer-configuration.
24374
24375         * gnus-msg.el (gnus-setup-message): Put article numbers into the
24376         X-Draft-From header even if those articles aren't quoted.
24377
24378 2004-09-21  Kevin Greiner  <kgreiner@compsol.cc>
24379
24380         * gnus-int.el (gnus-servers-that-use-local-marks): New variable.
24381         (gnus-request-set-mark, gnus-request-update-mark): Use new
24382         g-s-t-u-l-m to decide to use backend even when unplugged.
24383
24384 2004-09-21  Katsumi Yamaoka  <yamaoka@jpl.org>
24385
24386         * gnus-msg.el (gnus-inews-make-draft-meta-information): Don't add
24387         a trailing whitespace.  Suggested by Cheng Gao <chenggao@gmail.com>.
24388
24389 2004-09-20  Simon Josefsson  <jas@extundo.com>
24390
24391         * mm-util.el (mm-charset-synonym-alist): Map "unicode" to
24392         "utf-16-le".
24393
24394 2004-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
24395
24396         * mm-decode.el (mm-copy-to-buffer): Preserve the data's unibyteness.
24397
24398 2004-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
24399
24400         * uudecode.el (uudecode-use-external): Add :version.
24401
24402         * smime.el (smime-CA-file, smime-encrypt-cipher)
24403         (smime-dns-server): Add :version.
24404
24405         * smiley.el (gnus-smiley-file-types): Add :version.
24406
24407         * sha1.el (sha1-use-external): Add :version.
24408
24409         * pgg-def.el (pgg-query-keyserver): Add :version.
24410
24411         * nnmail.el (nnmail-fancy-expiry-targets)
24412         (nnmail-mail-splitting-charset, nnmail-mail-splitting-decodes):
24413         Add :version.
24414
24415         * nnimap.el (nnimap-split-download-body, nnimap-dont-close)
24416         (nnimap-retrieve-groups-asynchronous): Add :version.
24417         (nnimap-close-asynchronous): Add :version.  Fix typo in doc string.
24418
24419         * mml.el (mml-content-disposition-parameters)
24420         (mml-insert-mime-headers-always): Add :version.
24421
24422         * mm-util.el (mm-coding-system-priorities): Add :version.
24423
24424         * mm-decode.el (mm-inline-text-html-with-images)
24425         (mm-keep-viewer-alive-types, mm-external-terminal-program)
24426         (mm-verify-option): Add :version.
24427         (mm-text-html-renderer): Change :version.
24428
24429         * message.el (message-fcc-externalize-attachments)
24430         (message-required-headers, message-draft-headers)
24431         (message-subject-trailing-was-query)
24432         (message-subject-trailing-was-ask-regexp)
24433         (message-subject-trailing-was-regexp, message-mark-insert-begin)
24434         (message-mark-insert-end, message-archive-header)
24435         (message-archive-note, message-cross-post-default)
24436         (message-cross-post-note, message-followup-to-note)
24437         (message-cross-post-note-function, message-use-mail-followup-to)
24438         (message-subscribed-address-functions)
24439         (message-subscribed-address-file, message-subscribed-addresses)
24440         (message-subscribed-regexps, message-allow-no-recipients)
24441         (message-yank-cited-prefix, message-signature-insert-empty-line)
24442         (message-hidden-headers, message-hierarchical-addresses)
24443         (message-mail-user-agent, message-use-idna)
24444         (message-valid-fqdn-regexp)
24445         (message-strip-special-text-properties, message-header-synonyms)
24446         (message-beginning-of-line, message-tab-body-function): Add :version.
24447         (message-insert-canlock, message-wide-reply-confirm-recipients):
24448         Change :version.
24449
24450         * mail-source.el (mail-source-ignore-errors): Add :group, :type
24451         and :version.
24452         (mail-source-delete-old-incoming-confirm)
24453         (mail-source-movemail-program): Add :version.
24454
24455         * gnus.el (gnus-parameters, gnus-user-agent): Add :version.
24456         (gnus-agent-cache, gnus-agent): Change :version.
24457
24458         * gnus-util.el (gnus-use-byte-compile): Change :version.
24459
24460         * gnus-sum.el (gnus-summary-make-false-root-always)
24461         (gnus-summary-default-high-score)
24462         (gnus-summary-default-low-score, gnus-auto-goto-ignores)
24463         (gnus-forwarded-mark, gnus-unseen-mark, gnus-no-mark)
24464         (gnus-read-all-available-headers, gnus-article-emulate-mime)
24465         (gnus-sum-thread-tree-root, gnus-sum-thread-tree-false-root)
24466         (gnus-sum-thread-tree-single-indent)
24467         (gnus-sum-thread-tree-vertical, gnus-sum-thread-tree-indent)
24468         (gnus-sum-thread-tree-leaf-with-other)
24469         (gnus-sum-thread-tree-single-leaf): Add :version.
24470         (gnus-summary-display-arrow, gnus-summary-muttprint-program)
24471         (gnus-article-loose-mime): Change :version.
24472
24473         * gnus-start.el (gnus-backup-startup-file)
24474         (gnus-save-startup-file-via-temp-buffer): Add :version.
24475
24476         * gnus-srvr.el (gnus-server-browse-in-group-buffer)
24477         (gnus-server-offline-face): Add :version.
24478
24479         * gnus-score.el (gnus-adaptive-word-length-limit): Add :version.
24480
24481         * gnus-msg.el (gnus-gcc-externalize-attachments)
24482         (gnus-debug-files, gnus-debug-exclude-variables)
24483         (gnus-discouraged-post-methods): Change :version.
24484         (gnus-confirm-mail-reply-to-news)
24485         (gnus-confirm-treat-mail-like-news): Add :version.
24486
24487         * gnus-int.el (gnus-server-unopen-status): Add :version.
24488
24489         * gnus-group.el (gnus-group-jump-to-group-prompt)
24490         (gnus-large-ephemeral-newsgroup)
24491         (gnus-fetch-old-ephemeral-headers): Add :version.
24492
24493         * gnus-fun.el (gnus-x-face-directory)
24494         (gnus-convert-pbm-to-x-face-command)
24495         (gnus-convert-image-to-x-face-command)
24496         (gnus-convert-image-to-face-command): Add :version.
24497
24498         * gnus-delay.el (gnus-delay-default-hour): Add :version.
24499
24500         * gnus-cite.el (gnus-cite-blank-line-after-header)
24501         (gnus-article-boring-faces): Add :version.
24502
24503         * gnus-art.el (gnus-buttonized-mime-types)
24504         (gnus-inhibit-mime-unbuttonizing)
24505         (gnus-treat-display-face)
24506         (gnus-treat-body-boundary): Change :version.
24507         (gnus-body-boundary-delimiter, gnus-picon-databases)
24508         (gnus-treat-strip-cr, gnus-treat-leading-whitespace)
24509         (gnus-treat-date-english, gnus-treat-fold-headers)
24510         (gnus-article-skip-boring, gnus-treat-fold-newsgroups)
24511         (gnus-treat-mail-picon, gnus-treat-wash-html)
24512         (gnus-article-encrypt-protocol)
24513         (gnus-use-idna, gnus-article-over-scroll)
24514         (gnus-mime-display-multipart-alternative-as-mixed)
24515         (gnus-mime-display-multipart-related-as-mixed)
24516         (gnus-button-valid-fqdn-regexp, gnus-button-man-handler)
24517         (gnus-ctan-url, gnus-button-ctan-handler)
24518         (gnus-button-handle-ctan-bogus-regexp)
24519         (gnus-button-ctan-directory-regexp)
24520         (gnus-button-mid-or-mail-regexp, gnus-button-prefer-mid-or-mail)
24521         (gnus-button-mid-or-mail-heuristic-alist, gnus-button-tex-level)
24522         (gnus-button-man-level, gnus-button-emacs-level)
24523         (gnus-button-message-level, gnus-button-browse-level): Add :version.
24524
24525         * gnus-agent.el (gnus-agent-fetched-hook): Add :version.
24526         (gnus-agent-go-online): Change :version.
24527         (gnus-agent-expire-unagentized-dirs)
24528         (gnus-agent-auto-agentize-methods): Add :version.
24529
24530         * flow-fill.el (fill-flowed-display-column)
24531         (fill-flowed-encode-column): Add :version.
24532
24533         * deuglify.el (gnus-outlook-deuglify-unwrap-min)
24534         (gnus-outlook-deuglify-unwrap-max)
24535         (gnus-outlook-deuglify-cite-marks)
24536         (gnus-outlook-deuglify-unwrap-stop-chars)
24537         (gnus-outlook-deuglify-no-wrap-chars)
24538         (gnus-outlook-deuglify-attrib-cut-regexp)
24539         (gnus-outlook-deuglify-attrib-verb-regexp)
24540         (gnus-outlook-deuglify-attrib-end-regexp)
24541         (gnus-outlook-display-hook): Add :version.
24542
24543         * binhex.el (binhex-use-external): Add :version.
24544
24545 2004-09-16  Reiner Steib  <Reiner.Steib@gmx.de>
24546
24547         * gnus-sum.el (gnus-fetch-old-headers): Add custom choices `t'
24548         and `invisible'.
24549
24550 2004-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
24551
24552         * gnus-registry.el (gnus-registry-trim): Watch out for negatives
24553         in gnus-registry-trim.
24554
24555 2004-09-13  Simon Josefsson  <jas@extundo.com>
24556
24557         * dns-mode.el: Add XEmacs auto-mode-alist autoload cookie.
24558
24559         * nnimap.el (nnimap-demule): Revert 2004-08-30 change.
24560
24561         * dns-mode.el (dns-mode): Fix menu for XEmacs, reported by Steve
24562         Youngs <steve@youngs.au.com> and suggested by Katsumi Yamaoka
24563         <yamaoka@jpl.org>.
24564         (dns-mode-font-lock-keywords): Fix faces, reported by Steve Youngs
24565         <steve@youngs.au.com> and suggested by Katsumi Yamaoka
24566         <yamaoka@jpl.org>.
24567
24568         * sieve.el (sieve-manage-mode): Ditto.
24569
24570 2004-09-13  Reiner Steib  <Reiner.Steib@gmx.de>
24571
24572         * gnus-sum.el (gnus-summary-copy-article): Fix doc string.
24573
24574 2004-09-11  Simon Josefsson  <jas@extundo.com>
24575
24576         * dns-mode.el: Add.
24577
24578         * mm-view.el (mm-display-dns-inline): Add.
24579
24580         * mm-decode.el (mm-inline-media-tests): Add text/dns.
24581         (mm-automatic-display): Ditto.
24582
24583         * mailcap.el (mailcap-mime-data): Add text/dns.
24584         (mailcap-mime-extensions): Map .soa to text/dns.
24585
24586 2004-09-10  Miles Bader  <miles@gnu.ai.mit.edu>
24587
24588         * gnus-art.el (article-decode-mime-words, article-babel)
24589         (gnus-article-highlight-signature, gnus-article-add-buttons)
24590         (gnus-signature-toggle): Remove unnecessary bindings of
24591         `inhibit-read-only' inherited from v5.10 merge.
24592
24593 2004-09-08  Reiner Steib  <Reiner.Steib@gmx.de>
24594
24595         * nntp.el (nntp): New customization group.
24596         (nntp-authinfo-file): Add customization group.
24597
24598         * mml2015.el (mml2015-unabbrev-trust-alist): Add customization group.
24599
24600         * mml-sec.el (mml-signencrypt-style-alist): Ditto.
24601
24602         * gnus.el (to-address, to-list, subscribed)
24603         (large-newsgroup-initial): Ditto.
24604
24605         * flow-fill.el (fill-flowed-display-column)
24606         (fill-flowed-encode-column): Ditto.
24607
24608 2004-09-06  Stefan Monnier  <monnier@iro.umontreal.ca>
24609
24610         * message.el (message-tokenize-header, message-send-mail-with-qmail):
24611         Use point-min rather than 1.
24612         (message-send-mail): Use buffer-size rather than point-max.
24613
24614         * gnus-sum.el (gnus-summary-search-article-forward):
24615         Signal a specific `search-failed' rather than a generic `error'.
24616
24617         * gnus-salt.el (gnus-pick-mouse-pick-region): Switch 1 => point-min.
24618         (gnus-generate-vertical-tree): Usue `bobp' rather than compare to 1.
24619         (gnus-highlight-selected-tree): Use point-min rather than 1 and 2.
24620
24621 2004-09-10  Simon Josefsson  <jas@extundo.com>
24622
24623         * nndb.el (require): Remove tcp and duplicate cl.
24624
24625 2004-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
24626
24627         * gnus-agent.el (directory-files-and-attributes): Move forward.
24628
24629 2004-09-09  Kevin Greiner  <kgreiner@compsol.cc>
24630
24631         * gnus-agent.el (directory-files-and-attributes):
24632         Optionally defined to support XEmacs.
24633
24634 2004-09-09  Kevin Greiner  <kgreiner@compsol.cc>
24635
24636         * gnus-agent.el (gnus-agent-cat-groups): Rewrote avoiding defsetf
24637         to avoid run-time CL dependencies.
24638         (gnus-agent-unfetch-articles): New function.
24639         (gnus-agent-fetch-headers): Use gnus-agent-braid-nov to validate
24640         article numbers even when local .overview file is missing.
24641         (gnus-agent-read-article-number): New function.  Only accepts
24642         27-bit article numbers.
24643         (gnus-agent-copy-nov-line, gnus-agent-uncached-articles):
24644         Use gnus-agent-read-article-number.
24645         (gnus-agent-braid-nov): Rewrote to validate article numbers coming
24646         from backend while recognizing that article numbers in .overview
24647         must be valid.
24648         (gnus-agent-update-files-total-fetched-for):
24649         Use directory-files-and-attributes to improve performance.
24650         * gnus-int.el (gnus-request-move-article):
24651         Use gnus-agent-unfetch-articles in place of gnus-agent-expire to
24652         improve performance.
24653
24654         * gnus-start.el (gnus-convert-old-newsrc): Change message text as
24655         some users confused by references to .newsrc when they only have a
24656         .newsrc.eld file.
24657         (gnus-convert-mark-converter-prompt)
24658         (gnus-convert-converter-needs-prompt): Fix use of property list.
24659         * legacy-gnus-agent.el (gnus-agent-convert-to-compressed-agentview-prompt):
24660         New function.  Used internally to only display 'gnus converting
24661         files' message when actually necessary.
24662
24663         * gnus-sum.el (): Remove (require 'gnus-agent) as required
24664         methods now autoloaded.
24665
24666 2004-09-03  Katsumi Yamaoka  <yamaoka@jpl.org>
24667
24668         * gnus-sum.el (gnus-summary-insert-subject): Remove list
24669         identifiers.
24670
24671 2004-09-02  Reiner Steib  <Reiner.Steib@gmx.de>
24672
24673         * gnus-picon.el: Fix indentation and closing parenthesis.
24674
24675 2004-09-01  Simon Josefsson  <jas@extundo.com>
24676
24677         * message.el (message-canlock-generate): Require sha1, not
24678         sha1-el.  (Can we get rid of this require altogether?  It is ugly
24679         to require within a function.  Sadly, if sha1.el isn't loaded, the
24680         let binding in m-c-g will hide the defcustom definition, which is
24681         bad.)
24682
24683         * canlock.el: Require sha1, not sha1-el.
24684
24685         * message.el: Don't autoload sha1 (there is a autoload cookie in
24686         sha1.el).
24687
24688         * sha1-el.el: Rename to sha1.el.
24689
24690 2004-08-30  Juanma Barranquero  <lektu@terra.es>
24691
24692         * ietf-drums.el (ietf-drums-remove-whitespace): Fix character constant.
24693
24694 2004-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
24695
24696         * nnimap.el (nnimap-demule): Avoid string-as-multibyte.
24697
24698 2004-08-30  Kim F. Storm  <storm@cua.dk>
24699
24700         * nntp.el (nntp-authinfo-file): Add :group 'nntp.
24701
24702         * nnimap.el (nnimap-authinfo-file, nnimap-prune-cache):
24703         Add :group 'nnimap.
24704
24705 2004-08-30  Andreas Schwab  <schwab@suse.de>
24706
24707         * rfc2231.el (rfc2231-parse-string): Restore whitespace syntax for
24708         ?* and ?\;.
24709
24710         * ietf-drums.el (ietf-drums-syntax-table): Set syntax of ?* ?\;
24711         and ?\' to symbol instead of whitespace.
24712
24713 2004-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
24714
24715         * gnus-agent.el (gnus-agent-restore-gcc): Use ^ and regexp-quote.
24716
24717         * gnus-sum.el (gnus-summary-morse-message): Use search-forward
24718         instead of re-search-forward.
24719
24720         * gnus-uu.el (gnus-uu-save-article): Ditto.
24721         (gnus-uu-post-encode-uuencode): Ditto.
24722
24723         * html2text.el (html2text-clean-list-items): Ditto.
24724         (html2text-clean-dtdd): Ditto.
24725         (html2text-format-tags): Ditto.
24726
24727         * message.el (message-send-mail-with-sendmail): Fix regexp.
24728         (message-fill-field-general): Use search-forward instead of
24729         re-search-forward.
24730         (unbold-region): Ditto.
24731
24732         * nnrss.el (nnrss-request-article): Ditto.
24733
24734         * nnslashdot.el (nnslashdot-request-article): Ditto.
24735
24736         * nnweb.el (nnweb-gmane-wash-article): Ditto.
24737
24738         * gnus-sum.el (gnus-summary-make-menu-bar): Avoid the
24739         "Unrecognized menu descriptor" error in XEmacs.
24740
24741 2004-08-26  Stefan Wiens  <s.wi@gmx.net>  (tiny change)
24742
24743         * gnus-sum.el (gnus-read-header): Don't remove a header for the
24744         parent article of a sparse article in the thread hashtb.
24745
24746 2004-08-26  David Hedbor  <dhedbor@real.com>  (tiny change)
24747
24748         * nnmail.el (nnmail-split-lowercase-expanded): New user option.
24749         (nnmail-expand-newtext): Lowercase expanded entries if
24750         nnmail-split-lowercase-expanded is non-nil.
24751
24752 2004-08-26  Katsumi Yamaoka  <yamaoka@jpl.org>
24753
24754         * nndoc.el (nndoc-type-alist): Fix regexp in the rfc822-forward entry.
24755
24756         * gnus-group.el (gnus-group-line-format-alist): Convert the value
24757         of gnus-tmp-news-method into string under XEmacs.  It will be
24758         passed to gnus-correct-length which takes only a string argument.
24759
24760 2004-08-24  Katsumi Yamaoka  <yamaoka@jpl.org>
24761
24762         * gnus-util.el (gnus-bind-print-variables): New macro.
24763         (gnus-prin1): Use it.
24764         (gnus-prin1-to-string): Use it.
24765         (gnus-pp): New function.
24766         (gnus-pp-to-string): New function.
24767
24768         * gnus-cus.el (gnus-agent-cat-prepare-category-field):
24769         Replace pp-to-string with gnus-pp-to-string.
24770         * gnus-eform.el (gnus-edit-form): Replace pp with gnus-pp.
24771         * gnus-group.el (gnus-group-make-kiboze-group): Ditto.
24772         * gnus-msg.el (gnus-debug): Ditto.
24773         * gnus-score.el (gnus-score-save): Ditto.
24774         * gnus-spec.el (gnus-update-format): Replace pp-to-string with
24775         gnus-pp-to-string.
24776         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days): Replace pp
24777         with gnus-pp.
24778         * score-mode.el (gnus-score-pretty-print): Ditto.
24779         * webmail.el (webmail-debug): Ditto.
24780
24781 2004-08-23  Katsumi Yamaoka  <yamaoka@jpl.org>
24782
24783         * gnus-art.el (article-display-face, article-display-x-face):
24784         Use buffer-read-only.
24785
24786 2004-08-22  Katsumi Yamaoka  <yamaoka@jpl.org>
24787
24788         * gnus-art.el (article-hide-list-identifiers):
24789         Bind inhibit-read-only as t.
24790
24791 2004-08-22  Reiner Steib  <Reiner.Steib@gmx.de>
24792
24793         * gnus-mlspl.el (gnus-group-split-update): Fix docstring.
24794
24795 2004-08-22  Stefan Monnier  <monnier@iro.umontreal.ca>
24796
24797         * gnus-art.el: Use inhibit-read-only instead of buffer-read-only.
24798         (gnus-narrow-to-page): Don't assume point-min == 1.
24799         (gnus-article-edit-mode): Derive from message-mode.
24800
24801         * gnus-score.el (gnus-score-find-bnews): Simplify and don't assume
24802         point-min == 1.
24803
24804         * imap.el (imap-parse-address-list, imap-parse-body-ext):
24805         Disable incorrect use of `assert'.
24806
24807         * message.el (message-mode): Set comment-start-skip.
24808
24809
24810 2004-08-22  Sam Steingold  <sds@gnu.org>
24811
24812         * pop3.el (pop3-leave-mail-on-server): New user variable.
24813         (pop3-movemail): Delete mail only when it is nil.
24814
24815 2004-08-21  Reiner Steib  <Reiner.Steib@gmx.de>
24816
24817         * nntp.el (nntp-marks-is-evil): Fix typo in docstring.
24818
24819         * mml.el (mml-preview): Use `pop-to-buffer'.
24820
24821         * message.el (message-goto-mail-followup-to): Insert after "To".
24822         (message-carefully-insert-headers): Add comment.
24823
24824         * gnus.el: Remove unused variable `gnus-article-check-size'.
24825
24826         * gnus-sum.el (gnus-summary-make-menu-bar): Add help texts.
24827
24828         * gnus-art.el (gnus-button-alist):
24829         Improve `gnus-button-handle-library' entry.
24830
24831 2004-08-19  Sebastian Freundt  <hroptatyr@gna.org>  (tiny change)
24832
24833         * nnmaildir.el (nnmaildir--emlink-p, nnmaildir--enoent-p):
24834         Use downcase, since XEmacs capitalizes error messages differently.
24835
24836 2004-08-18  Jesper Harder  <harder@ifa.au.dk>
24837
24838         * nntp.el: Add (require 'gnus) due to reference to
24839         `gnus-directory'.  Reported by Matt Swift <swift@alum.mit.edu>.
24840
24841 2004-08-18  Florian Weimer  <fw@deneb.enyo.de>
24842
24843         * gnus-sum.el (gnus-summary-force-verify-and-decrypt):
24844         Bind `mm-fill-flowed'.
24845
24846         * mm-decode.el (mm-dissect-singlepart): Check it.
24847
24848 2004-08-17  Teodor Zlatanov  <tzz@lifelogs.com>
24849
24850         * nnimap.el (nnimap-open-connection): Add 'imaps' synonym to
24851         'imap' for netrc parsing.
24852
24853 2004-08-16  Reiner Steib  <Reiner.Steib@gmx.de>
24854
24855         * mailcap.el (mailcap-mime-data): Mark as risky.
24856
24857 2004-08-15  Katsumi Yamaoka  <yamaoka@jpl.org>
24858
24859         * rfc2047.el (rfc2047-encode-region): Assume the close parenthesis
24860         may be included in the encoded word.
24861         (rfc2047-encode): Don't append a space if the encoded word
24862         includes close parenthesis.
24863
24864 2004-08-12  Katsumi Yamaoka  <yamaoka@jpl.org>
24865
24866         * rfc2047.el (rfc2047-encode-1, rfc2047-encode): Improve encoding
24867         of text within parentheses.
24868
24869 2004-08-06  Teodor Zlatanov  <tzz@lifelogs.com>
24870
24871         * gnus-encrypt.el (gnus-encrypt-insert-file-contents)
24872         (gnus-encrypt-write-file-contents): Make the password key the file
24873         name PLUS the cipher, not just the cipher.  Also remove failed
24874         passwords from the cache.
24875
24876 2004-08-06  Simon Josefsson  <jas@extundo.com>
24877
24878         * gnus-sum.el (gnus-article-loose-mime): Change default to t.
24879         Doc fix.
24880
24881 2004-08-05  Katsumi Yamaoka  <yamaoka@jpl.org>
24882
24883         * rfc2047.el (rfc2047-fold-region): Use trailing whitespace as
24884         LWSP.
24885
24886 2004-08-04  Teodor Zlatanov  <tzz@lifelogs.com>
24887
24888         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
24889         Try to append in-reply-to: data to the references: header.
24890
24891         * netrc.el: Remove old encryption support, autoload gnus-encrypt.el.
24892         (netrc-parse): Use gnus-encrypt.el functions.
24893
24894         * gnus-encrypt.el: Add new file for encryption support; currently
24895         does only a few GPG ciphers and an internal XOR cipher.
24896
24897         * password.el: Add comments on using password-read-and-add.
24898         (password-read-and-add): Add function to read and add the
24899         password to the cache at once.
24900
24901 2004-07-28  Simon Josefsson  <jas@extundo.com>
24902
24903         * pgg-pgp5.el (pgg-pgp5-encrypt-region): Accept sign
24904         parameter (but don't use it, for now).
24905
24906         * imap.el (imap-ssl-open): Use imap-process-connection-type,
24907         instead of hard coding to nil.
24908
24909 2004-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
24910
24911         * mm-view.el (mm-inline-image-emacs): Open lines under an image
24912         as mm-inline-image-xemacs does.
24913
24914 2004-07-26  Simon Josefsson  <jas@extundo.com>
24915
24916         * gnus-group.el (gnus-group-group-map, gnus-group-make-menu-bar):
24917         Revert part of 2004-07-17 change below.
24918
24919 2004-07-25  Katsumi Yamaoka  <yamaoka@jpl.org>
24920
24921         * rfc2047.el (rfc2047-encode-region): Don't infloop.
24922         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
24923
24924 2004-07-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24925
24926         * flow-fill.el (fill-flowed): Remove space stuffing, and only do
24927         quotes that actually start with ">" at the beginning of the
24928         lines.
24929
24930 2004-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
24931
24932         * rfc2047.el (rfc2047-encode-region): Fix last change.
24933         (rfc2047-encode-parameter): Remove useless concat.
24934
24935 2004-07-22  Katsumi Yamaoka  <yamaoka@jpl.org>
24936
24937         * rfc2047.el (rfc2047-encode-region): Check carefully whether to
24938         encode special characters; fix some kind of misconfigured headers;
24939         signal a real error if debug-on-quit or debug-on-error is non-nil.
24940         (rfc2047-encode-max-chars): New variable.
24941         (rfc2047-encode-1): Use it.
24942         (rfc2047-encode-parameter): New function.
24943
24944         * mml.el (mml-insert-parameter): Remove an excessive space.
24945
24946 2004-07-17  Simon Josefsson  <jas@extundo.com>
24947
24948         * gnus-group.el (gnus-group-make-group-simple): Add, suggested by
24949         Kai Grossjohann <kai@emptydomain.de>.
24950         (gnus-group-group-map): Use it, instead of gnus-group-make-group.
24951         (gnus-group-make-menu-bar): Ditto.
24952
24953         * gnus-util.el (gnus-group-server): Add.
24954
24955 2004-07-16  Jesper Harder  <harder@ifa.au.dk>
24956
24957         * message.el (message-clone-locals): Clone sendmail and smtp
24958         variables.
24959
24960 2004-07-12  Katsumi Yamaoka  <yamaoka@jpl.org>
24961
24962         * rfc2047.el (rfc2047-encode-region): Fix last change.
24963
24964 2004-07-12  Katsumi Yamaoka  <yamaoka@jpl.org>
24965
24966         * rfc2047.el (rfc2047-encode-region): Treat backslash-quoted
24967         characters as non-special.
24968
24969 2004-07-09  Simon Josefsson  <jas@extundo.com>
24970
24971         * gnus-agent.el (gnus-agent-synchronize-flags): Revert to ask.
24972         Users will lose all flag changes made while unplugged with
24973         e.g. nntp unless flag synchronization happens, thus `nil' is not a
24974         good default.  See numerous reports on ding mailing list.
24975
24976 2004-07-09  Katsumi Yamaoka  <yamaoka@jpl.org>
24977
24978         * nndoc.el (nndoc-type-alist): Improve regexp for article-begin,
24979         add generate-head-function and generate-article-function to the
24980         rfc822-forward entry.
24981         (nndoc-rfc822-forward-generate-article): New function.
24982         (nndoc-rfc822-forward-generate-head): New function.
24983
24984         * mm-decode.el (mm-dissect-buffer): Simplify cleaning of CTE.
24985
24986 2004-07-06  Dan Christensen  <jdc@uwo.ca>
24987
24988         * gnus-sum.el (gnus-summary-read-group-1): When summary is unthreaded,
24989         respect display group parameter and gnus-summary-expunge-below.
24990         (gnus-articles-to-read): Remove unused reference to display group
24991         parameter.
24992
24993 2004-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24994
24995         * nnheader.el (nnheader-uniquify-message-id): New experimental
24996         variable.
24997         (nnheader-nov-read-message-id): Use it.
24998
24999         * spam-report.el (spam-report-gmane): Add interactive.
25000
25001 2004-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
25002
25003         * mm-encode.el (mm-content-transfer-encoding-defaults):
25004         Use qp-or-base64 for the application/* types.
25005
25006 2004-07-02  Joakim Verona  <joakim@verona.se>  (tiny change)
25007
25008         * nnrss.el (nnrss-read-group-data): Fix off-by-one error.
25009
25010 2004-06-30  Teodor Zlatanov  <tzz@lifelogs.com>
25011
25012         * gnus-registry.el (gnus-registry-trim): Don't allow a negative
25013         trim value.
25014
25015 2004-01-25  Paul Jarc  <prj@po.cwru.edu>
25016
25017         * nnmaildir.el (nnmaildir--condcase, nnmaildir--enoent-p):
25018         New macro and function.
25019         (nnmaildir--new-number, nnmaildir-request-set-mark): Use them.
25020
25021 2004-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
25022
25023         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): Fix cleaning of
25024         after-load-alist.
25025
25026 2004-06-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
25027
25028         * gnus-group.el (gnus-group-get-new-news-this-group):
25029         Don't update info that isn't there.
25030
25031 2004-06-29  Ilya N. Golubev  <gin@mo.msk.ru>
25032
25033         * mm-util.el (mm-mime-mule-charset-alist): Add the windows-1251
25034         entry.
25035
25036 2004-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
25037
25038         * mm-view.el (mm-inline-render-with-function): Use multibyte
25039         buffer; decode html source by charset.
25040
25041         * mm-encode.el (mm-content-transfer-encoding-defaults): Doc fix.
25042
25043         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): New function run when
25044         Mule-UCS is loaded under XEmacs.
25045         (mm-mime-mule-charset-alist): Avoid duplicated entries.
25046
25047 2004-06-28  Jesper Harder  <harder@ifa.au.dk>
25048
25049         * nnheader.el (nnheader-max-head-length): Increase to 8192.
25050
25051 2004-06-28  Katsumi Yamaoka  <yamaoka@jpl.org>
25052
25053         * mm-util.el (mm-coding-system-p): Return a coding-system.
25054         (mm-mime-mule-charset-alist): Use shift_jis instead of
25055         iso-2022-jp-2 for the katakana-jisx0201 mule charset; add new
25056         entries for the mime charsets iso-2022-jp-3 and shift_jis.
25057         (mm-coding-system-priorities): Use shift_jis and iso-8859-1
25058         instead of japanese-shift-jis and iso-latin-1 respectively in
25059         order to share the default value with both Emacs and XEmacs-mule.
25060         (mm-mule-charset-to-mime-charset):
25061         Make mm-coding-system-priorities effective.
25062         (mm-sort-coding-systems-predicate): Canonicalize coding-systems
25063         while predicating of candidates upon the priorities.
25064
25065 2004-06-27  Jesper Harder  <harder@ifa.au.dk>
25066
25067         * gnus-sum.el (gnus-summary-make-menu-bar):
25068         Add gnus-uu-invert-processable.
25069
25070         * gnus.el: Autoload gnus-uu-invert-processable.
25071
25072 2004-06-24  Katsumi Yamaoka  <yamaoka@jpl.org>
25073
25074         * mm-util.el (mm-with-multibyte-buffer): New macro.
25075
25076         * rfc2047.el (rfc2047-encode-string): Use it.
25077         (rfc2047-encode-region): Move point to the end of the region after
25078         encoding.  Suggested by IRIE Tetsuya <irie@t.email.ne.jp>.
25079
25080 2004-06-23  Katsumi Yamaoka  <yamaoka@jpl.org>
25081
25082         * gnus-cite.el (gnus-cite-parse): Don't ignore case when finding
25083         ">From ".  Thanks to Reiner Steib <Reiner.Steib@gmx.de>.
25084
25085 2004-06-23  Katsumi Yamaoka  <yamaoka@jpl.org>
25086
25087         * gnus-cite.el (gnus-cite-ignore-quoted-from): New user option.
25088         (gnus-cite-parse): Ignore quoted envelope From_.
25089         Suggested by Karl Chen <quarl@nospam.quarl.org>.
25090
25091 2004-06-23  Jesper Harder  <harder@ifa.au.dk>
25092
25093         * message.el (message-idna-to-ascii-rhs-1): Don't choke on
25094         invalid addresses.
25095
25096 2004-06-21  Teodor Zlatanov  <tzz@lifelogs.com>
25097
25098         * spam.el: Change section markers, revise TODO list.
25099         (spam-backends): Make new master list of all installed backends.
25100         (spam-summary-exit-behavior): Add new variable to determine how
25101         messages moves are done at summary exit.
25102         (spam-move-spam-nonspam-groups-only)
25103         (spam-process-ham-in-nonham-groups)
25104         (spam-process-ham-in-spam-groups): Remove variables, the
25105         spam-summary-exit-behavior variable should be used to manage this
25106         behavior.
25107         (spam-old-ham-articles, spam-old-spam-articles): Remove.
25108         (spam-old-articles): Add variable, replacing spam-old-ham-articles
25109         and spam-old-spam-articles.
25110         (spam-use-copy, spam-use-move, spam-use-gmane, spam-use-resend):
25111         Add empty variables, placeholders for the backends they represent.
25112         (spam-set-difference): Move, unchanged.
25113         (spam-list-of-processors): Declare OBSOLETE, not used anymore
25114         unless the user has a processor variable.
25115         (spam-classifications, spam-classification-valid-p)
25116         (spam-backend-properties, spam-backend-property-valid-p)
25117         (spam-backend-function-type-valid-p)
25118         (spam-process-type-valid-p, spam-list-articles): Add helper functions.
25119         (spam-report-articles-gmane, spam-report-articles-resend):
25120         Remove functions, they are not needed.
25121         (spam-install-backend-super, spam-backend-list)
25122         (spam-backend-check, spam-backend-valid-p, spam-backend-info)
25123         (spam-backend-function, spam-backend-ham-registration-function)
25124         (spam-backend-spam-registration-function)
25125         (spam-backend-ham-unregistration-function)
25126         (spam-backend-spam-unregistration-function)
25127         (spam-backend-statistical-p, spam-backend-mover-p)
25128         (spam-install-backend-alias, spam-install-checkonly-backend)
25129         (spam-install-mover-backend, spam-install-nocheck-backend)
25130         (spam-install-backend, spam-install-statistical-backend)
25131         (spam-install-statistical-checkonly-backend): Add backend installation
25132         support.
25133         (spam-summary-prepare-exit): Rewrite to use the new backend code.
25134         (spam-group-processor-p): Use the new backend code and respect the
25135         summary exit behavior.
25136         (spam-mark-spam-as-expired-and-move-routine): Remove.
25137         (spam-summary-prepare): Change to use the new spam-old-articles
25138         variable.
25139         (spam-copy-or-move-routine, spam-copy-spam-routine)
25140         (spam-move-spam-routine, spam-copy-ham-routine)
25141         (spam-move-ham-routine): Add code to copy/move ham or spam.
25142         (spam-fetch-field-fast): Improve doc and code, plus allow the
25143         'number request.
25144         (spam-list-of-checks, spam-list-of-statistical-checks):
25145         Remove variables.
25146         (spam-split, spam-find-spam): Use the new backend code.
25147         (spam-registration-functions): Remove variable.
25148         (spam-unregister-routine): Add convenience wrapper.
25149         (spam-log-undo-registration, spam-register-routine)
25150         (spam-log-processing-to-registry)
25151         (spam-log-unregistration-needed-p): Rename "check" to "backend"
25152         where possible.
25153         (spam-check-gmane-xref, spam-check-regex-headers)
25154         (spam-check-blackholes, spam-check-stat, spam-check-ifile)
25155         (spam-check-BBDB, spam-check-whitelist, spam-check-blacklist)
25156         (spam-check-bogofilter-headers, spam-check-spamoracle)
25157         (spam-check-spamassassin-headers, spam-check-bsfilter-headers)
25158         (spam-check-crm114-headers): Use the spam-split-group that
25159         spam-split prepares, no need to determine it every time.
25160
25161         * nnimap.el (nnimap-retrieve-headers-progress): Add the message number
25162         to the nnheader-parse-naked-head call.
25163
25164         * nnheader.el (nnheader-generate-fake-message-id): Fix indentation.
25165
25166         * gnus-sum.el (gnus-nov-parse-line): Add the message number to
25167         the nnheader-nov-read-message-id call.
25168
25169 2004-06-21  Katsumi Yamaoka  <yamaoka@jpl.org>
25170
25171         * gnus-group.el (gnus-group-get-new-news-this-group): Don't call
25172         gnus-activate-group twice.  Suggested by Markus Peter
25173         <warp@spin.de>.
25174
25175 2004-06-18  Katsumi Yamaoka  <yamaoka@jpl.org>
25176
25177         * gnus-art.el (gnus-article-time-format): Exchange the order of
25178         day and month in the default value; fix customization type.
25179         (article-date-ut): Use add-text-properties.
25180         (article-make-date-line): Use message-make-date instead of
25181         current-time-string.
25182
25183         * message.el (message-fetch-field): Don't use set-text-properties.
25184         (message-make-date): Simplify.
25185
25186         * messagexmas.el (message-xmas-make-date): New function.
25187         (message-xmas-redefine): Defalias message-make-date to it.
25188
25189 2004-06-17  Katsumi Yamaoka  <yamaoka@jpl.org>
25190
25191         * rfc2047.el (rfc2047-syntax-table): Treat `(' and `)' as is.
25192         (rfc2047-encode-region): Treat text within parentheses as special;
25193         show the original text when error has occurred.
25194
25195         * gnus-group.el (gnus-group-get-new-news-this-group): Pass the
25196         already-computed method to gnus-activate-group.
25197
25198         * gnus-start.el (gnus-make-hashtable-from-newsrc-alist): Make the
25199         same select-methods identical Lisp objects.
25200
25201         * gnus-srvr.el (gnus-server-set-info): Don't make a new Lisp
25202         object when modifying the info.
25203
25204 2004-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
25205
25206         * gnus-srvr.el (gnus-server-set-info): Remove the server from
25207         gnus-opened-servers since it has never been opened with the new
25208         configuration yet.
25209
25210 2004-06-15  Katsumi Yamaoka  <yamaoka@jpl.org>
25211
25212         * nnheader.el (nnheader-nov-read-message-id): Pass the optional
25213         arg to nnheader-generate-fake-message-id.
25214
25215 2004-06-14  Teodor Zlatanov  <tzz@lifelogs.com>
25216
25217         * nnheader.el (nnheader-generate-fake-message-id): Accept a
25218         number and build a fake message ID localized to a group and
25219         article number (so it's repeatable from that point on).
25220         (nnheader-fake-message-id-p): Change regex to accomodate new fake
25221         ID format.
25222
25223         * gnus-sum.el (gnus-get-newsgroup-headers):
25224         Call nnheader-generate-fake-message-id with the article number.
25225
25226 2004-06-12  YAGI Tatsuya  <ynyaaa@ybb.ne.jp>  (tiny change)
25227
25228         * gnus-art.el (gnus-article-next-page): Fix the way to find a real
25229         end-of-buffer.
25230
25231 2004-06-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
25232
25233         * message.el (message-ignored-supersedes-headers): Add Approved.
25234
25235 2004-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
25236
25237         * rfc2047.el (rfc2047-encode-message-header): Remove useless
25238         goto-char.
25239         (rfc2047-encode): Fold the line before encoding.
25240
25241 2004-06-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
25242
25243         * rfc2047.el (rfc2047-encode-message-header): Disabled header
25244         folding -- not all headers can be folded, and this should be done
25245         by the message composition mode.  Probably.  I think.
25246
25247 2004-06-10  Katsumi Yamaoka  <yamaoka@jpl.org>
25248
25249         * gnus-util.el (gnus-remove-text-with-property): Make it slightly
25250         fast.
25251
25252         * gnus-ems.el (gnus-remove-image): Don't use
25253         message-text-with-property; remove only the image found first.
25254
25255         * gnus-xmas.el (gnus-xmas-remove-image): Remove only the image
25256         found first.
25257
25258 2004-06-09  Jesper Harder  <harder@ifa.au.dk>
25259
25260         * message.el (message-send-mail-with-sendmail): Use with-current-buffer.
25261
25262 2004-06-09  Katsumi Yamaoka  <yamaoka@jpl.org>
25263
25264         * message.el (message-text-with-property): Make it fast and accept
25265         optional arguments.
25266         (message-strip-forbidden-properties): Use it.
25267         (message-fix-before-sending): Follow the m-t-w-p change.
25268
25269         * gnus-ems.el (gnus-remove-image): Follow the m-t-w-p change.
25270
25271 2004-06-08  Katsumi Yamaoka  <yamaoka@jpl.org>
25272
25273         * gnus-art.el (article-hide-headers): Don't change the buffer
25274         mistakenly when performing mml-preview even if
25275         gnus-single-article-buffer is nil.
25276
25277 2004-06-08  Kai Grossjohann  <kgrossjo@eu.uu.net>
25278
25279         * message.el (message-expand-name-databases): New user option.
25280         (message-expand-name): Use it.
25281
25282 2004-06-07  Teodor Zlatanov  <tzz@lifelogs.com>
25283
25284         * spam.el (spam-report-articles-resend)
25285         (spam-report-resend-register-routine): Allow ham reporting.
25286         (spam-report-resend-register-ham-routine): Add wrapper.
25287         (spam-registration-functions): Add ham resending functions.
25288         (spam-list-of-processors): Add ham resend processor.
25289
25290         * gnus.el (ham-resend-to): Add new group parameter.
25291         (spam-process): Add ham resend option.
25292
25293         * spam-report.el (spam-report-resend): Allow reporting ham.
25294         (spam-report-resend-ham): Add wrapper.
25295
25296 2004-06-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
25297
25298         * message.el (message-cite-articles-with-x-no-archive):
25299         New variable.
25300         (message-cite-original): Use it.
25301
25302 2004-06-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
25303
25304         * message.el (message-cite-original): Respect X-No-Archive.
25305
25306 2004-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
25307
25308         * gnus-art.el (article-hide-headers): Refer to the values for
25309         gnus-ignored-headers and gnus-visible-headers in the summary
25310         buffer since a user may have set them as group parameters.
25311
25312 2004-06-03  Teodor Zlatanov  <tzz@lifelogs.com>
25313
25314         * assistant.el (assistant-node-name): Add convenience function.
25315         (assistant-render-text, assistant-render-node): Add error handling,
25316         plus handle multiple next nodes.
25317         (assistant-find-next-node): Comment out for now.
25318         (assistant-find-next-nodes): Add function, returns list of next
25319         nodes.
25320
25321 2004-06-02  Reiner Steib  <Reiner.Steib@gmx.de>
25322
25323         * mail-source.el (mail-source-directory): Fix doc-string.
25324
25325 2004-05-29  Teodor Zlatanov  <tzz@lifelogs.com>
25326
25327         * assistant.el (assistant-render-text, assistant-eval): Add :set
25328         widget type, which is different because it takes and returns a
25329         list.  Much hilarity ensues.
25330
25331 2004-05-28  Reiner Steib  <Reiner.Steib@gmx.de>
25332
25333         * gnus-art.el (gnus-button-alist): Fix regexp for manual links.
25334
25335         * gnus-group.el (gnus-group-get-new-news-this-group):
25336         Add doc-string.
25337
25338         * gnus-start.el (gnus-activate-group): Add doc-string.
25339
25340 2004-05-28  Katsumi Yamaoka  <yamaoka@jpl.org>
25341
25342         * mm-encode.el (mm-safer-encoding): Consider 7bit is safe.
25343
25344 2004-05-27  Teodor Zlatanov  <tzz@lifelogs.com>
25345
25346         * assistant.el (assistant-render-text): Try to add a :set
25347         widget, more to come.
25348
25349         * spam.el (spam-group-spam-contents-p): Handle empty groupname
25350         strings.
25351         (spam-report-articles-resend)
25352         (spam-register-routine): Do registration iff any articles warrant
25353         it.
25354         (spam-summary-prepare-exit): Change log message for nil group
25355         destinations.
25356
25357 2004-05-27  Daniel Pittman  <daniel@rimspace.net>
25358
25359         * spam.el (spam-report-resend-register-routine):
25360         Allow spam-report-resend-to to be a group parameter or a global value.
25361
25362 2004-05-26  Simon Josefsson  <jas@extundo.com>
25363
25364         * starttls.el: Merge with my GNUTLS based starttls.el.
25365         (starttls-gnutls-program, starttls-use-gnutls)
25366         (starttls-extra-arguments, starttls-process-connection-type)
25367         (starttls-connect, starttls-failure, starttls-success):
25368         New variables.
25369         (starttls-program, starttls-extra-args): Doc fix.
25370         (starttls-negotiate-gnutls, starttls-open-stream-gnutls):
25371         New functions.
25372         (starttls-negotiate, starttls-open-stream):
25373         Check `starttls-use-gnutls' and pass on to corresponding *-gnutls
25374         function if it is set.
25375
25376 2004-05-27  Katsumi Yamaoka  <yamaoka@jpl.org>
25377
25378         * rfc2047.el (rfc2047-encode-region): Encode encoded words in
25379         structured fields.
25380
25381 2004-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
25382
25383         * message.el (message-resend): Bind rfc2047-encode-encoded-words.
25384
25385 2004-05-26  Teodor Zlatanov  <tzz@lifelogs.com>
25386
25387         * spam.el (spam-mark-new-messages-in-spam-group-as-spam):
25388         Add variable.
25389         (spam-mark-junk-as-spam-routine): Use it.  Allow to disable
25390         assigning the spam-mark to new messages.
25391
25392 2004-05-26  Adam Sjøgren  <asjo@koldfront.dk>  (tiny change)
25393
25394         * spam.el (spam-ham-copy-or-move-routine): Don't declare `todo' twice.
25395
25396 2004-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
25397
25398         * dgnushack.el: Autoload customize-set-variable for XEmacs.
25399
25400         * rfc2047.el (rfc2047-encodable-p): Don't move point.
25401         (rfc2047-decode): Treat the ascii coding-system as raw-text by
25402         default.
25403
25404 2004-05-25  Anand Mitra  <mitramc@yahoo.com>  (tiny change)
25405
25406         * gnus-sum.el (gnus-summary-delete-article): Invoke hook with
25407         correct data.
25408
25409 2004-05-24  Teodor Zlatanov  <tzz@lifelogs.com>
25410
25411         * spam.el (spam-list-of-processors): Use nil for nonexistent processors.
25412         (spam-group-processor-p): Fix function.
25413         (spam-group-processor-multiple-p)
25414         (spam-group-spam-processor-report-gmane-p)
25415         (spam-group-spam-processor-report-resend-p)
25416         (spam-group-spam-processor-bogofilter-p)
25417         (spam-group-spam-processor-blacklist-p)
25418         (spam-group-spam-processor-ifile-p)
25419         (spam-group-ham-processor-ifile-p)
25420         (spam-group-spam-processor-spamoracle-p)
25421         (spam-group-spam-processor-crm114-p)
25422         (spam-group-ham-processor-bogofilter-p)
25423         (spam-group-spam-processor-stat-p)
25424         (spam-group-ham-processor-stat-p)
25425         (spam-group-ham-processor-whitelist-p)
25426         (spam-group-ham-processor-BBDB-p)
25427         (spam-group-ham-processor-spamoracle-p)
25428         (spam-group-ham-processor-copy-p): Remove functions with some
25429         prejudice against unneeded code.
25430         (spam-report-articles-resend)
25431         (spam-report-resend-register-routine): Allow the group/topic
25432         spam-resend-to value to override spam-report-resend-to.
25433         (spam-summary-prepare-exit): Invoke spam-group-processor-p
25434         properly now.
25435
25436         * gnus.el (spam-resend-to): Add group/topic parameter.
25437         (spam-process): Move the OBSOLETE processors to the end of the
25438         choices.
25439
25440 2004-05-24  Daniel Pittman  <daniel@rimspace.net>
25441
25442         * spam-report.el (spam-report-resend-to, spam-report-resend):
25443         Start with resend-to set to nil, and then ask the user if necessary.
25444         (spam-report-resend): spam-report-resend takes a list of articles, not
25445         separate article numbers.
25446
25447 2004-05-23  Katsumi Yamaoka  <yamaoka@jpl.org>
25448
25449         * mm-decode.el (mm-text-html-renderer): Make sure w3m exists in
25450         addition to emacs-w3m.
25451
25452 2004-05-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
25453
25454         * assistant.el (assistant-authinfo-data): New function.
25455         (assistant-eval): Eval for entire assistant.
25456
25457         * netrc.el (netrc-services-file): New variable.
25458         (netrc-parse-services): New function.
25459         (netrc-find-service-name): New function.
25460         (netrc-find-service-number): New function.
25461         (netrc-port-equal): New function.
25462         (netrc-machine): Use it.
25463
25464         * nnimap.el (nnimap-open-connection): Use netrc.
25465
25466         * gnus-util.el (gnus-netrc-get): Remove aliases.
25467
25468         * gnus-sum.el (gnus-auto-center-summary): Change default to 2.
25469
25470         * assistant.el (wid-edit): Fix compilation.
25471
25472         * gnus-util.el (gnus-set-file-modes): Just ignore errors.
25473
25474 2004-05-23  Paul Stodghill  <stodghil@cs.cornell.edu>
25475
25476         * gnus-util.el (gnus-set-file-modes): New function.  (small
25477         patch).
25478
25479 2004-05-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
25480
25481         * gnus-topic.el (gnus-topic-jump-to-topic): Goto missing topic.
25482
25483         * assistant.el (assistant-render-node): Fix up rendering and
25484         read-only text.
25485         (assistant-render-node): Reset.
25486         (assistant-make-read-only): Not sticky.
25487
25488 2004-05-20  Danny Siu  <dsiu@adobe.com>
25489
25490         * gnus-sum.el (gnus-summary-recenter): Summary buffer was not auto
25491         centered even when gnus-auto-center-summary is t.
25492
25493 2004-05-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
25494
25495         * dns.el (dns-get-txt-answer): New function.
25496         (dns-read-txt): Ditto.
25497         (query-dns): Use it.
25498
25499 2004-05-21  Katsumi Yamaoka  <yamaoka@jpl.org>
25500
25501         * gnus-start.el (gnus-get-unread-articles): Don't invalidate
25502         active for foreign groups even if the group level is higher than
25503         the specified value.
25504
25505 2004-05-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
25506
25507         * gnus-group.el (gnus-group-jump-to-group): Don't prompt for
25508         non-active groups.
25509
25510         * gnus-art.el (gnus-picon-databases): Add /usr/share/picons.
25511
25512 2004-05-20  Magnus Henoch  <mange@freemail.hu>
25513
25514         * dns.el (dns-read-type): Add support for SVR.  (small patch)
25515
25516 2004-05-20  Adam Sjøgren  <asjo@koldfront.dk>
25517
25518         * spam.el (spam-use-crm114, spam-crm114, spam-crm114-program)
25519         (spam-crm114-header, spam-crm114-spam-switch)
25520         (spam-crm114-spam-strong-switch, spam-crm114-ham-strong-switch)
25521         (spam-crm114-positive-spam-header)
25522         (spam-crm114-database-directory, spam-list-of-processors)
25523         (spam-group-spam-processor-crm114-p)
25524         (spam-group-ham-processor-crm114-p, spam-extra-header-to-number)
25525         (spam-generic-score, spam-list-of-checks)
25526         (spam-list-of-statistical-checks, spam-registration-functions)
25527         (spam-check-crm114-headers, spam-crm114-score)
25528         (spam-check-crm114, spam-crm114-register-with-crm114)
25529         (spam-crm114-register-spam-routine)
25530         (spam-crm114-unregister-spam-routine)
25531         (spam-crm114-register-ham-routine)
25532         (spam-crm114-unregister-ham-routine): Add CRM114 support.
25533
25534 2004-05-20  Teodor Zlatanov  <tzz@lifelogs.com>
25535
25536         * gnus.el: Add spam-use-crm114.
25537
25538         * spam.el (spam-list-of-processors, spam-registration-functions):
25539         Add spam-use-resend.
25540         (spam-group-spam-processor-report-resend-p): Add utility wrapper.
25541         (spam-report-articles-gmane): Add doc fix.
25542         (spam-report-articles-resend, spam-report-resend-register-routine):
25543         Add wrappers around spam-report-resend-to.
25544
25545         * spam-report.el (spam-report-resend-to, spam-report-resend):
25546         Add support for resending spam.
25547         (spam-report-gmane): Fix line length >80.
25548
25549         * gnus.el (spam-process): Add spam-use-resend.
25550
25551 2004-05-20  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
25552
25553         * spam.el (spam-mark-spam-as-expired-and-move-routine): Return the
25554         number of processed spam messages.
25555         (spam-ham-copy-or-move-routine): Return the number of processed
25556         ham messages.
25557         (spam-summary-prepare-exit): Use the above values to decide
25558         whether status messages shouled be displayed.
25559
25560 2004-05-20  Katsumi Yamaoka  <yamaoka@jpl.org>
25561
25562         * rfc2047.el (rfc2047-encode-function-alist): Rename from
25563         `rfc2047-encoding-function-alist' in order to avoid conflicting
25564         with the old version.
25565         (rfc2047-encode-region): Concatenate words containing non-ASCII
25566         characters in structured fields; don't encode space-delimited
25567         ASCII words even in unstructured fields; don't break words at
25568         char-category boundaries.
25569         (rfc2047-encode-1): New function.
25570         (rfc2047-encode): Use it; encode text so that it occupies the
25571         maximum width within 76-column; work correctly on Q encoding for
25572         iso-2022-* charsets.
25573         (rfc2047-fold-region): Use existing whitespace for LWSP; make it
25574         sure not to break a line just after the header name.
25575         (rfc2047-b-encode-region): Remove.
25576         (rfc2047-b-encode-string): New function.
25577         (rfc2047-q-encode-region): Remove.
25578         (rfc2047-q-encode-string): New function.
25579
25580         * mm-util.el (mm-replace-in-string): New function.
25581
25582 2004-05-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
25583
25584         * gnus-msg.el (gnus-inews-make-draft-meta-information):
25585         Really get it right.
25586         (gnus-inews-make-draft): Really.
25587
25588 2004-05-19  Ben Menasha  <bmenasha@benmenasha.net>
25589
25590         * nnmh.el (nnmh-request-list-1): Don't check the link count
25591         before descending.  (small patch)
25592
25593 2004-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
25594
25595         * gnus-msg.el (gnus-inews-make-draft-meta-information): Fix quote
25596         stuff.
25597
25598         * gnus-start.el (gnus-subscribe-hierarchical-interactive):
25599         Match on real group name.
25600
25601         * gnus-art.el (gnus-signature-limit): Doc fix.
25602
25603         * gnus-msg.el (gnus-inews-make-draft): Quote list.
25604
25605         * pgg-pgp.el (pgg-pgp-verify-region): Clean up.
25606
25607 2004-05-19  Michael Schierl  <schierlm-usenet@gmx.de>  (tiny change)
25608
25609         * pgg-pgp.el (pgg-pgp-verify-region): Default when signature
25610         isn't a string.
25611
25612 2004-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
25613
25614         * gnus-draft.el (gnus-draft-send):
25615         Bind rfc2047-encode-encoded-words.
25616
25617         * rfc2047.el (rfc2047-encode-region): Encode =? strings.
25618         (rfc2047-encodable-p): Say that =? needs encoding.
25619         (rfc2047-encode-encoded-words): New variable.
25620
25621         * gnus-group.el (gnus-group-select-group): Doc fix.
25622
25623         * gnus-draft.el (gnus-draft-setup): Mark all replied as replied.
25624
25625         * gnus-group.el (gnus-group-mode): Set show-trailing-whitespace
25626         to nil.
25627
25628         * gnus-cache.el (gnus-cache-possibly-enter-article): Use it.
25629
25630         * nnheader.el (nnheader-get-lines-and-char): New function.
25631
25632 2004-05-19  Reiner Steib  <Reiner.Steib@gmx.de>
25633
25634         * gnus-msg.el (gnus-summary-followup-with-original):
25635         Document yanking of region when active.
25636
25637 2004-05-19  Katsumi Yamaoka  <yamaoka@jpl.org>
25638
25639         * gnus-start.el (gnus-get-unread-articles): Do nothing for foreign
25640         groups if the group level is higher than the specified value.
25641
25642 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
25643
25644         * gnus-group.el (gnus-group-jump-to-group-prompt): Allow an alist.
25645         (gnus-group-jump-to-group): Add prefix argument using
25646         `gnus-group-jump-to-group-prompt'.  Query before jumping to
25647         non-active group.
25648
25649         * compface.el (uncompface): Be verbose when changing
25650         `uncompface-use-external'.
25651
25652         * gnus-art.el (gnus-button-handle-man, gnus-button-alist): Try to
25653         handle manual section.
25654
25655 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
25656
25657         * gnus-art.el (gnus-button-alist): Revert previous change.
25658
25659 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
25660
25661         * message.el (message-idna-to-ascii-rhs-1): Fix typo.
25662
25663 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
25664
25665         * gnus-msg.el (gnus-inews-do-gcc): Don't use read-only-p to see
25666         whether backend can accept message.
25667
25668         * message.el (message-idna-to-ascii-rhs-1): Don't use equalp.
25669
25670 2004-05-18  Kai Grossjohann  <kgrossjo@eu.uu.net>
25671
25672         * nntp.el (nntp-request-set-mark, nntp-request-update-info):
25673         Avoid creating directory when nntp-marks-is-evil is true.
25674         Reported by Reiner Steib.
25675
25676 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
25677
25678         * gnus-picon.el (gnus-picon-insert-glyph):
25679         Add optional `nostring' argument.
25680
25681 2004-05-18  Jesper Harder  <harder@ifa.au.dk>
25682
25683         * gnus-picon.el (gnus-picon-style): New variable.
25684         (gnus-picon-transform-address): Support `gnus-picon-style'.
25685
25686 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
25687
25688         * message.el (message-fill-field): Return point.
25689         (message-generate-headers): Go to end of field.
25690
25691         * gnus-start.el (gnus-get-unread-articles-in-group): Don't do
25692         stuff for non-living groups.
25693
25694 2004-05-18  Jesper Harder  <harder@ifa.au.dk>
25695
25696         * gnus-art.el (gnus-article-followup-with-original)
25697         (gnus-article-reply-with-original): gnus-mark-active-p ->
25698         gnus-region-active-p.
25699
25700 2004-05-17  Teodor Zlatanov  <tzz@lifelogs.com>
25701
25702         * spam.el (spam-summary-prepare-exit): Fix messages, so they show
25703         only when there is spam or ham to be processed.
25704
25705 2004-05-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
25706
25707         * mail-source.el (mail-source-delete-crash-box): Refactor.
25708         (mail-source-fetch): Use it.
25709         (mail-source-fetch-file): Ditto.
25710         (mail-source-fetch-directory): Run postscript in loop.
25711         (mail-source-fetch-pop): Delete.
25712         (mail-source-fetch-maildir): Ditto.
25713         (mail-source-fetch-imap): Ditto.
25714
25715         * imap.el (imap-authenticators): Comment out sasl.
25716
25717         * message.el (message-skip-to-next-address): New function.
25718         (message-fill-header-address): Refactor.
25719         (message-fill-address): Use it.
25720         (message-delete-address): Use it.
25721         (message-fill-header-general): Refactor.
25722         (message-fill-field-address): Rename.
25723         (message-narrow-to-field): Find the start of the header.
25724         (message-header-format-alist): Don't pre-fill.
25725         (message-fill-header): Remove.
25726         (message-insert-header): New function.
25727         (message-shorten-references): Use it.
25728
25729         * rfc2047.el (rfc2047-field-value): Strip props.
25730
25731         * mail-parse.el (mail-header-make-address): New alias.
25732
25733         * ietf-drums.el (ietf-drums-make-address): New function.
25734
25735         * imap.el: Add compiler directives.
25736
25737         * gnus-score.el (gnus-score-edit-done): run-hook->run-hooks.
25738
25739         * gnus-art.el (article-decode-idna-rhs): Don't use
25740         message-idna-inside-rhs-p.
25741
25742 2004-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
25743
25744         * message.el (message-idna-inside-rhs-p): Remove.
25745         (message-idna-to-ascii-rhs-1): Use proper address parsing.
25746
25747         * gnus-art.el (gnus-emphasis-alist): Remove strikethru; too many
25748         false positives.
25749
25750 2004-05-16  Kim-Minh Kaplan  <kmkaplan-AwwS6Bc0PDVoiYX5Tdu9fQ@public.gmane.org>
25751
25752         * imap.el (imap-sasl-make-mechanisms): Use sasl.
25753
25754 2004-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
25755
25756         * nneething.el (nneething-file-name): Don't create spurious
25757         files.
25758
25759         * gnus-msg.el (gnus-inews-do-gcc): Ignore read-only groups.
25760         (gnus-inews-do-gcc): Remove sleep.
25761
25762         * gnus-art.el (gnus-mime-delete-part): Error message when no MIME
25763         part under point.
25764
25765         * gnus-agent.el (gnus-agent-synchronize-flags): Default to nil.
25766         (gnus-agent-regenerate-group): Using nil messages aren't valid.
25767
25768 2004-05-15  Teodor Zlatanov  <tzz@lifelogs.com>
25769
25770         * spam.el (spam-summary-prepare-exit): Fix (length).
25771
25772 2004-05-14  Teodor Zlatanov  <tzz@lifelogs.com>
25773
25774         * spam.el (spam-summary-prepare-exit): Fix to produce "marking spam
25775         as expired without moving it" message when there are spam
25776         messages left.
25777
25778 2004-05-14  Nelson Ferreira  <nelson.ferreira@verizon.net>  (tiny change)
25779
25780         * gnus-dup.el (gnus-dup-unsuppress-article): Don't assume the mail
25781         header is not nil.
25782
25783 2004-05-14  Kai Grossjohann  <kgrossjo@eu.uu.net>
25784
25785         * nntp.el (nntp-request-set-mark, nntp-request-update-info):
25786         Call nntp-possibly-create-directory, not nntp-possibly-change-group.
25787         (nntp-marks-changed-p): New arg SERVER.
25788         (nntp-request-update-info): Adjust caller.
25789
25790 2004-05-14  Kai Grossjohann  <kai@emptydomain.de>
25791
25792         * nntp.el (nntp-save-marks): Pass missing arg.
25793
25794 2004-05-13  Kai Grossjohann  <kai.grossjohann@gmx.net>
25795
25796         * nntp.el: Support marks.
25797         (nntp-marks-is-evil, nntp-marks-file-name, nntp-marks)
25798         (nntp-marks-modtime, nntp-marks-directory): New variables.
25799         (nntp-request-set-mark, nntp-request-update-info)
25800         (nntp-possibly-create-directory, nntp-marks-changed-p)
25801         (nntp-save-marks, nntp-open-marks, nntp-marks-directory):
25802         New functions.
25803
25804 2004-05-12  Jesper Harder  <harder@ifa.au.dk>
25805
25806         * gnus-xmas.el (gnus-xmas-select-lowest-window)
25807         (gnus-xmas-redefine): Rename.
25808
25809         * gnus-score.el (gnus-score-insert-help):
25810         Use gnus-select-lowest-window.
25811
25812         * gnus-ems.el (gnus-select-lowest-window): Copy definition of
25813         appt-select-lowest-window and rename to gnus-select-lowest-window.
25814
25815         * gnus.el: do.
25816
25817 2004-05-12  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
25818
25819         * rfc2047.el (rfc2047-encode): Use uppercase letters to specify
25820         encodings of MIME-encoded words, in order to improve
25821         interoperability with several broken MUAs.
25822
25823 2004-05-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
25824
25825         * mm-view.el (mm-inline-text-html-render-with-w3): Check META
25826         tags, only when charsets are not specified in headers.
25827         (mm-inline-text-html-render-with-w3m): Ditto.
25828
25829         * lpath.el: Remove `w3m-meta-content-type-charset-regexp' and
25830         `w3m-charset-to-coding-system'.  Add `w3m-detect-meta-charset'.
25831
25832 2004-05-06  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
25833
25834         * gnus-art.el (article-strip-banner): Use MIME-encoded from fields
25835         instead of MIME-decoded from fields when checking
25836         `gnus-article-address-banner-alist'.
25837
25838 2004-05-03  Jesper Harder  <harder@ifa.au.dk>
25839
25840         * nnrss.el (nnrss-check-group, nnrss-read-group-data): Hash on
25841         description rather than subject.
25842
25843 2004-05-02  Steve Youngs  <steve@youngs.au.com>
25844
25845         * dgnushack.el: Autoload `mail-fetch-field' for XEmacs.
25846
25847 2004-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
25848
25849         * gnus.el (gnus-version-number): Bump.
25850
25851 2004-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
25852
25853         * gnus.el: No Gnus v0.2 is released.
25854
25855 2004-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
25856
25857         * gnus-agent.el (gnus-agent-read-agentview):
25858         Inline gnus-uncompress-range.
25859
25860 2004-05-01  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
25861
25862         * spam.el (spam-bsfilter-path): Use `executable-find' instead of
25863         `exec-installed-p'.
25864
25865 2004-04-30  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
25866
25867         * gnus.el (spam-process, spam-autodetect-methods):
25868         Add bsfilter and bsfilter-headers.
25869
25870         * spam.el (spam-bsfilter): New customize group.
25871         (spam-use-bsfilter, spam-use-bsfilter-headers, spam-bsfilter-path)
25872         (spam-bsfilter-header, spam-bsfilter-probability-header)
25873         (spam-bsfilter-spam-switch, spam-bsfilter-ham-switch)
25874         (spam-bsfilter-spam-strong-switch, spam-bsfilter-ham-strong-switch)
25875         (spam-bsfilter-database-directory): New options.
25876         (spam-install-hooks, spam-list-of-processors, spam-list-of-checks)
25877         (spam-list-of-statistical-checks, spam-registration-functions):
25878         Add `spam-use-bsfilter' and `spam-use-bsfilter-headers'.
25879         (spam-bsfilter-score): New command.
25880         (spam-check-bsfilter-headers, spam-check-bsfilter)
25881         (spam-bsfilter-register-with-bsfilter)
25882         (spam-bsfilter-register-spam-routine)
25883         (spam-bsfilter-unregister-spam-routine)
25884         (spam-bsfilter-register-ham-routine)
25885         (spam-bsfilter-unregister-ham-routine): New functions.
25886         (spam-generic-score): Support bsfilter; Accept an optional argument
25887         to recalcurate spam score even if scoring header has already been
25888         added.
25889         (spam-bogofilter-score, spam-spamassassin-score): Accept an
25890         optional argument to recalcurate spam score even if scoring header
25891         has already been added.
25892
25893 2004-04-29  Jesper Harder  <harder@ifa.au.dk>
25894
25895         * nnrss.el (nnrss-get-namespace-prefix): Use string= to compare
25896         strings!  Reported by David D. Smith <davidsmith@acm.org>.
25897         (nnrss-check-group, nnrss-read-group-data): Hash on Subject if
25898         link is missing.
25899
25900 2004-04-28  Jesper Harder  <harder@ifa.au.dk>
25901
25902         * html2text.el (html2text-replace-list): Add &amp; and &apos;.
25903         (html2text-get-attr): Rewrite.
25904
25905         * message.el (message-setup-1): Remove redundant put-text-property
25906         on mail-header-separator.
25907
25908 2004-04-27  Teodor Zlatanov  <tzz@lifelogs.com>
25909
25910         * gnus-registry.el (gnus-registry-cache-whitespace)
25911         (gnus-registry-action, gnus-registry-spool-action)
25912         (gnus-registry-split-fancy-with-parent): Change message levels
25913         from 5 to 3 or 7, as needed.
25914
25915         * spam.el (spam-summary-prepare-exit)
25916         (spam-mark-junk-as-spam-routine, spam-fetch-field-fast)
25917         (spam-split, spam-find-spam, spam-log-undo-registration)
25918         (spam-check-blackholes, spam-enter-ham-BBDB): Change message
25919         level from 5 to 6.
25920
25921 2004-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
25922
25923         * gnus-ems.el: Autoload appt-select-lowest-window (revert
25924         2004-03-04 change).
25925
25926 2004-04-25  Jesper Harder  <harder@ifa.au.dk>
25927
25928         * sieve-manage.el (sieve-manage-open):
25929         * nnweb.el (nnweb-insert-html):
25930         * nnvirtual.el (nnvirtual-catchup-group, nnvirtual-partition-sequence)
25931         (nnvirtual-partition-sequence, nnvirtual-create-mapping):
25932         * nnspool.el (nnspool-request-group):
25933         * nnrss.el (nnrss-opml-export, nnrss-find-el, nnrss-order-hrefs):
25934         * nnml.el (nnml-request-update-info):
25935         * nnmh.el (nnmh-request-group, nnmh-request-list-1, nnmh-active-number)
25936         (nnmh-request-create-group, nnmh-update-gnus-unreads):
25937         * nnimap.el (nnimap-request-close, nnimap-acl-edit)
25938         (nnimap-request-set-mark):
25939         * nnfolder.el (nnfolder-request-update-info):
25940         * mm-view.el (mm-pkcs7-signed-magic, mm-pkcs7-enveloped-magic):
25941         * mml.el (mml-destroy-buffers, mml-compute-boundary-1):
25942         * gnus-uu.el (gnus-uu-find-articles-matching):
25943         * gnus-topic.el (gnus-topic-check-topology, gnus-topic-remove-group):
25944         * gnus-sum.el (gnus-summary-fetch-faq, gnus-read-move-group-name):
25945         * gnus-score.el (gnus-score-load-file, gnus-sort-score-files):
25946         * gnus-nocem.el (gnus-nocem-scan-groups):
25947         * gnus-int.el (gnus-start-news-server):
25948         * gnus-group.el (gnus-group-make-kiboze-group)
25949         (gnus-group-browse-foreign-server):
25950         * spam-stat.el (spam-stat-score-buffer): Simplify mapcar usage.
25951         Use mapc when appropriate.
25952
25953 2004-04-22  Dan Christensen  <jdc@uwo.ca>
25954             Adam Sjøgren  <asjo@koldfront.dk>
25955             Wes Hardaker  <wes@hardakers.net>
25956             Michael Shields  <shields@msrl.com>
25957
25958         * spam.el (spam-necessary-extra-headers): Get the extra headers we
25959         may need for spam sorting and scoring.
25960         (spam-user-format-function-S): Add user format function suitable for
25961         general use.
25962         (spam-article-sort-by-spam-status): Add sorting function for summary
25963         sorting.
25964         (spam-extra-header-to-number): Add function to get a score from a
25965         header.
25966         (spam-summary-score): Add function to get a numeric score from the
25967         headers.
25968         (spam-generic-score): Fix function doc, was in wrong place.
25969         (spam-initialize): Take symbols when it's run, and install the
25970         extra headers that spam-necessary-extra-headers thinks we need.
25971
25972 2004-04-21  Teodor Zlatanov  <tzz@lifelogs.com>
25973
25974         * spam.el (spam-summary-prepare-exit): Add logic and message fix.
25975         Reported by bojohan+news@dd.chalmers.se (Johan Bockgård).
25976
25977 2004-04-17  Jesper Harder  <harder@ifa.au.dk>
25978
25979         * gnus-sum.el (gnus-set-global-variables)
25980         (gnus-build-all-threads, gnus-get-newsgroup-headers)
25981         (gnus-article-get-xrefs, gnus-summary-best-group)
25982         (gnus-summary-next-article, gnus-summary-enter-digest-group)
25983         (gnus-summary-set-bookmark, gnus-offer-save-summaries)
25984         (gnus-summary-update-info, gnus-kill-or-deaden-summary):
25985         Use with-current-buffer.
25986
25987 2004-04-16  Teodor Zlatanov  <tzz@lifelogs.com>
25988
25989         * spam.el (spam-summary-prepare-exit): Simplify logic.
25990         (spam-fetch-article-header): Read the article header if it's not
25991         available.
25992         (spam-list-articles): Simplify logic.
25993         (spam-filelist-register-routine): Fix bug with unregister-list.
25994
25995         * gnus-registry.el: Fix comments at beginning.
25996
25997 2004-04-16  Jesper Harder  <harder@ifa.au.dk>
25998
25999         * message.el (message-cater-to-broken-inn): Remove.
26000         (message-shorten-references): Make sure the total folded length of
26001         References is shorter than 998 characters to cater to a bug in INN
26002         2.3.  Also, don't pretend that references aren't folded -- this
26003         hasn't worked for a while.
26004
26005 2004-04-15  Kevin Greiner  <kgreiner@xpediantsolutions.com>
26006
26007         * gnus-agent.el (gnus-agentize):
26008         gnus-agent-send-mail-real-function no longer set to current value
26009         of message-send-mail-function but rather a lambda that calls
26010         message-send-mail-function.  The change makes the agent real-time
26011         responsive to user changes to message-send-mail-function.
26012
26013 2004-04-15  Kevin Greiner  <kgreiner@xpediantsolutions.com>
26014
26015         * legacy-gnus-agent.el
26016         (gnus-agent-convert-to-compressed-agentview): Fix typos with
26017         help from Florian Weimer <fw@deneb.enyo.de>
26018
26019 2004-04-15  Katsumi Yamaoka  <yamaoka@jpl.org>
26020
26021         * nnmail.el (nnmail-cache-insert): Revert last change.
26022
26023 2004-04-14  Katsumi Yamaoka  <yamaoka@jpl.org>
26024
26025         * nnmail.el (nnmail-cache-insert): Always check whether
26026         nnmail-cache-ignore-groups matches a group name.
26027
26028 2004-04-13  Teodor Zlatanov  <tzz@lifelogs.com>
26029
26030         * spam.el (spam-fetch-field-fast, spam-generate-fake-headers)
26031         (spam-find-spam, spam-log-processing-to-registry)
26032         (spam-log-registered-p, spam-log-unregistration-needed-p)
26033         (spam-log-undo-registration): Use gnus-message instead of
26034         gnus-error, none of these errors are fatal.
26035
26036         * gnus-registry.el (gnus-registry-clean-empty-function)
26037         (gnus-registry-clean-empty): Remove only empty entries without
26038         extra data.
26039
26040 2004-04-12  Teodor Zlatanov  <tzz@lifelogs.com>
26041
26042         * spam-stat.el (spam-stat-buffer-change-to-spam)
26043         (spam-stat-buffer-change-to-non-spam): Change (error) to
26044         (gnus-message 8) invocation.
26045
26046 2004-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
26047
26048         * nntp.el (nntp-via-netcat-command): New variable.
26049         (nntp-via-netcat-switches): New variable.
26050         (nntp-open-via-rlogin-and-netcat): New function.
26051         (nntp-open-connection-function): Doc fix.
26052         (nntp-telnet-command): Doc fix.
26053         (nntp-end-of-line): Doc fix.
26054         (nntp-via-rlogin-command): Doc fix.
26055         (nntp-via-user-name): Doc fix.
26056         (nntp-via-address): Doc fix.
26057
26058 2004-04-09  Katsumi Yamaoka  <yamaoka@jpl.org>
26059
26060         * mml2015.el (mml2015-use): Avoid the "Recursive load suspected"
26061         error in Emacs 21.1.
26062
26063 2004-04-08  Reiner Steib  <Reiner.Steib@gmx.de>
26064
26065         * gnus-start.el (gnus-get-unread-articles): Fix last commit.
26066
26067 2004-04-07  Kevin Greiner  <kgreiner@xpediantsolutions.com>
26068
26069         * gnus-agent.el (gnus-agent-total-fetched-hashtb): New variable.
26070         (gnus-agent-with-refreshed-group): New macro.
26071         (gnus-agent-rename-group): New function.
26072         (gnus-agent-delete-group): New function.
26073         (gnus-agent-save-group-info): Use gnus-command-method when
26074         `method' parameter is nil.  Don't write nil entries into the
26075         active file.
26076         (gnus-agent-get-group-info): New function.
26077         (gnus-agent-fetch-articles):
26078         Use gnus-agent-update-files-total-fetched-for to increment disk space
26079         used.
26080         (gnus-agent-fetch-headers, gnus-agent-save-alist):
26081         Use gnus-agent-update-view-total-fetched-for to increment disk space
26082         used.
26083         (gnus-agent-get-local): Add optional parameters to avoid calling
26084         gnus-group-real-name and gnus-find-method-for-group.
26085         (gnus-agent-set-local): Delete stored entry if either min, or max,
26086         are nil.
26087         (gnus-agent-fetch-session): Reworded error/quit messages.
26088         On quit, use gnus-agent-regenerate-group to record existance of any
26089         articles fetched to disk before the quit occurred.
26090         (gnus-agent-expire-group-1): Use gnus-agent-with-refreshed-group,
26091         gnus-agent-update-view-total-fetched-for, and
26092         gnus-agent-update-files-total-fetched-for to decrement disk space
26093         used.
26094         (gnus-agent-retrieve-headers):
26095         Use gnus-agent-update-view-total-fetched-for to increment disk space
26096         used.
26097         (gnus-agent-regenerate-group): Replace gnus-group-update-group
26098         with gnus-agent-update-files-total-fetched-for to decrement disk
26099         space and fresh group buffer.
26100         (gnus-agent-inhibit-update-total-fetched-for): New variable.
26101         (gnus-agent-need-update-total-fetched-for): New variable.
26102         (gnus-agent-update-files-total-fetched-for): New function.
26103         (gnus-agent-update-view-total-fetched-for): New function.
26104         (gnus-agent-total-fetched-for): New function.
26105
26106         * gnus-cache.el (gnus-cache-save-buffers):
26107         Use gnus-cache-update-overview-total-fetched-for to change disk space
26108         used by this group.
26109         (gnus-cache-possibly-enter-article):
26110         Use gnus-cache-update-file-total-fetched-for to increment disk space
26111         used by this group.
26112         (gnus-cache-possibly-remove-article):
26113         Use gnus-cache-update-file-total-fetched-for to decrement disk space
26114         used by this group.
26115         (gnus-cache-generate-nov-databases): Purge total fetched cache.
26116         (gnus-cache-rename-group): New function.
26117         (gnus-cache-delete-group): New function.
26118         (gnus-cache-inhibit-update-total-fetched-for): New variable.
26119         (gnus-cache-need-update-total-fetched-for): New variable.
26120         (gnus-cache-with-refreshed-group): New macro.
26121         (gnus-cache-update-file-total-fetched-for): New function.
26122         (gnus-cache-update-overview-total-fetched-for): New function.
26123         (gnus-cache-rename-group-total-fetched-for): New function.
26124         (gnus-cache-delete-group-total-fetched-for): New function.
26125         (gnus-cache-total-fetched-for): New function.
26126
26127         * gnus-group.el: Require gnus-sum and autoload functions to
26128         resolve warnings when gnus-group.el compiled alone.
26129         (gnus-group-line-format): Document new %F.
26130         (size of Fetched data) group line format; identifies disk space
26131         used by agent and cache.
26132         (gnus-group-line-format-alist): Define new F format.
26133         (gnus-total-fetched-for): New function.
26134         (gnus-group-delete-group): No longer update
26135         gnus-cache-active-altered as gnus-request-delete-group now keeps
26136         the cache in sync.
26137         (gnus-group-list-active): Let the agent store a server's active
26138         list if currently plugged.
26139
26140         * gnus-int.el (gnus-request-delete-group):
26141         Use gnus-cache-delete-group and gnus-agent-delete-group to keep the
26142         local disk in sync with the server.
26143         (gnus-request-rename-group):
26144         Use gnus-cache-rename-group and gnus-agent-rename-group to keep the
26145         local disk in sync with the server.
26146
26147         * gnus-start.el (gnus-get-unread-articles):
26148         Cosmetic simplification to logic.
26149
26150         * gnus-util.el (gnus-rename-file): New function.
26151
26152 2004-04-07  Christian Neukirchen  <chneukirchen@yahoo.de>  (tiny change)
26153
26154         * mm-util.el (mm-image-load-path): Handle nil in load-path.
26155
26156 2004-04-07  Jesper Harder  <harder@ifa.au.dk>
26157
26158         * rfc2047.el (rfc2047-encoded-word-regexp): Remove unnecessary
26159         '+'.  Reported by Stefan Wiens <s.wi@gmx.net>.
26160
26161 2004-04-06  Jesper Harder  <harder@ifa.au.dk>
26162
26163         * gnus-cache.el (gnus-cache-save-buffers): Check if buffer is
26164         alive.  Reported by Laurent Martelli <laurent@aopsys.com>.
26165
26166 2004-04-03  Jesper Harder  <harder@ifa.au.dk>
26167
26168         * gnus.el (gnus-getenv-nntpserver): Strip whitespace.
26169
26170 2004-04-02  Teodor Zlatanov  <tzz@lifelogs.com>
26171
26172         * spam.el (spam-set-difference): Add function to replace
26173         gnus-set-difference in spam.el.
26174         (spam-summary-prepare-exit): Use spam-set-difference.
26175
26176 2004-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
26177
26178         * gnus-registry.el (gnus-registry-cache-file): Update to use
26179         gnus-dribble-directory OR gnus-home-directory OR ~.
26180         (gnus-registry-split-fancy-with-parent): Fix doc.
26181
26182 2004-03-27  Katsumi Yamaoka  <yamaoka@jpl.org>
26183
26184         * message.el (message-exchange-point-and-mark):
26185         Use message-mark-active-p.  Suggested by Jesper Harder
26186         <harder@ifa.au.dk>.
26187
26188 2004-03-26  Katsumi Yamaoka  <yamaoka@jpl.org>
26189
26190         * message.el (message-exchange-point-and-mark): Don't activate
26191         region if it was inactive.  Suggested by Hiroshi Fujishima
26192         <pooh@nature.tsukuba.ac.jp>.
26193
26194 2004-03-25  Katsumi Yamaoka  <yamaoka@jpl.org>
26195
26196         * gnus-art.el (article-display-face): Display Faces in the same
26197         order as X-Faces.
26198
26199 2004-03-24  Katsumi Yamaoka  <yamaoka@jpl.org>
26200
26201         * nndoc.el (nndoc-forward-type-p): Recognize envelope From_.
26202
26203 2004-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
26204
26205         * gnus-art.el (gnus-mime-recompute-hierarchical-structure): Remove.
26206         (gnus-mime-multipart-functions): Revert 2004-03-19 change.
26207         (gnus-article-mime-hierarchy): Remove.
26208         (gnus-article-mime-hierarchy-next): Remove.
26209         (gnus-article-mode): Revert 2004-03-19 change.
26210         (gnus-article-setup-buffer): Revert 2004-03-19 change.
26211         (gnus-insert-mime-button): Revert 2004-03-19 change.
26212         (gnus-mime-accumulate-hierarchy): Remove.
26213         (gnus-mime-enter-multipart): Remove.
26214         (gnus-mime-leave-multipart): Remove.
26215         (gnus-mime-display-part): Revert 2004-03-19 change.
26216         (gnus-mime-display-alternative): Revert 2004-03-19 change.
26217
26218         * mml.el (mml-preview): Revert 2004-03-19 change.
26219
26220 2004-03-18  Helmut Waitzmann  <Helmut.Waitzmann@web.de>  (tiny change)
26221
26222         * gnus-sum.el (gnus-newsgroup-variables): Doc fix.
26223
26224 2004-03-22  Katsumi Yamaoka  <yamaoka@jpl.org>
26225
26226         * mm-decode.el (mm-save-part): Bind enable-multibyte-characters to
26227         t while entering a file name using the mm-with-multibyte macro.
26228         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
26229
26230         * mm-util.el (mm-with-multibyte): New macro.
26231
26232 2004-03-19  Katsumi Yamaoka  <yamaoka@jpl.org>
26233
26234         * gnus-art.el (gnus-mime-recompute-hierarchical-structure):
26235         New user option.
26236         (gnus-mime-multipart-functions): Doc and customization fix.
26237         (gnus-article-mime-hierarchy): New variable.
26238         (gnus-article-mime-hierarchy-next): New variable.
26239         (gnus-article-mode): Make gnus-article-mime-hierarchy buffer-local.
26240         (gnus-article-setup-buffer): Set gnus-article-mime-hierarchy and
26241         gnus-article-mime-hierarchy-next to nil.
26242         (gnus-insert-mime-button): Show hierarchy numbers.
26243         (gnus-mime-accumulate-hierarchy): New function.
26244         (gnus-mime-enter-multipart): New function.
26245         (gnus-mime-leave-multipart): New function.
26246         (gnus-mime-display-part): Recompute hierarchical MIME structure.
26247         (gnus-mime-display-alternative): Show hierarchy numbers.
26248
26249         * mml.el (mml-preview): Set gnus-article-mime-hierarchy and
26250         gnus-article-mime-hierarchy-next to nil.
26251
26252 2004-03-19  Steve Youngs  <sryoungs@bigpond.net.au>
26253
26254         * dns.el: Don't require gnus-xmas.
26255
26256 2004-03-17  Jesper Harder  <harder@ifa.au.dk>
26257
26258         * mml.el (mml-generate-mime-1): Don't use format=flowed with
26259         inline PGP.
26260         (mml-menu): Disable mml-quote-region if mark is inactive.
26261
26262 2004-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
26263
26264         * gnus-agent.el (gnus-agent-regenerate-group): Activate the group
26265         when the group's active is not available.
26266
26267 2004-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
26268
26269         * gnus-agent.el (gnus-agent-read-agentview): Add a missing arg to
26270         error.
26271
26272 2004-03-12  Reiner Steib  <Reiner.Steib@gmx.de>
26273
26274         * imap.el (imap-store-password): New variable.
26275         (imap-interactive-login): Use it.
26276         Suggested by Mark Plaksin <happy@mcplaksin.org>.
26277
26278 2004-03-12  Katsumi Yamaoka  <yamaoka@jpl.org>
26279
26280         * gnus-art.el (gnus-article-read-summary-keys): Restore new
26281         window-start and hscroll to summary window.
26282
26283 2004-03-12  Kevin Greiner  <kgreiner@xpediantsolutions.com>
26284
26285         * gnus-start.el (gnus-convert-old-newsrc): Only write the
26286         conversion message to newsrc-dribble when an actual conversion is
26287         performed.
26288
26289 2004-03-10  Malcolm Purvis  <malcolmpurvis@optushome.com.au>  (tiny change)
26290
26291         * spam-stat.el (spam-stat-coding-system): Use mm-coding-system-p.
26292
26293 2004-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
26294
26295         * mm-decode.el (mm-complicated-handles): New function reviving
26296         former definition of mm-multiple-handles.
26297
26298         * gnus-art.el (gnus-mime-save-part-and-strip): Use it.
26299         (gnus-mime-delete-part): Use it.
26300
26301 2004-03-09  Kevin Greiner  <kgreiner@xpediantsolutions.com>
26302
26303         * gnus-agent.el (gnus-agent-read-local):
26304         Bind nnheader-file-coding-system to gnus-agent-file-coding-system to
26305         avoid the implicit assumption that they will always be equal.
26306         (gnus-agent-save-local): Bind buffer-file-coding-system, not
26307         coding-system-for-write, as the with-temp-file macro first prints
26308         to a buffer then saves the buffer.
26309
26310 2004-03-09  Katsumi Yamaoka  <yamaoka@jpl.org>
26311
26312         * gnus-art.el (gnus-article-edit-part): New function.
26313         (gnus-mime-save-part-and-strip): Use it; do query instead of
26314         signaling an error; don't use mm-multiple-handles.
26315         (gnus-mime-delete-part): Ditto.
26316
26317 2004-03-08  Kevin Greiner  <kgreiner@xpediantsolutions.com>
26318
26319         * gnus-agent.el (gnus-agent-read-agentview): Remove support for
26320         old file versions.
26321         (gnus-group-prepare-hook): Remove function that converted list
26322         form of gnus-agent-expire-days to group properties.
26323
26324         * gnus-int.el: Autoload gnus-agent-regenerate-group.
26325         (gnus-request-accept-article): Re-indented.
26326
26327         * gnus-start.el (gnus-convert-old-newsrc): Registered new
26328         converters to handle old agent file formats.  Add logic for a
26329         "backup before upgrading warning".
26330         (gnus-convert-mark-converter-prompt): Developers can mark
26331         functions as needing (default), or not needing,
26332         gnus-convert-old-newsrc's "backup before upgrading warning".
26333         (gnus-convert-converter-needs-prompt): Tests whether the user
26334         should be protected from potentially irreversable changes by the
26335         function.
26336
26337         * legacy-gnus-agent.el: New.  Provides converters that are only
26338         loaded when gnus-convert-old-newsrc needs to call them.
26339
26340 2004-03-08  Katsumi Yamaoka  <yamaoka@jpl.org>
26341
26342         * mail-source.el (mail-source-touch-pop): Doc fix.
26343
26344         * message.el (message-smtpmail-send-it): Doc fix.
26345
26346 2004-03-05  Jesper Harder  <harder@ifa.au.dk>
26347
26348         * sha1-el.el (sha1-maximum-internal-length): Doc fix.
26349
26350         * nnmail.el (nnmail-split-fancy): do.
26351
26352         * gnus-kill.el (gnus-kill, gnus-execute): do.
26353
26354 2004-03-05  Per Abrahamsen  <abraham@dina.kvl.dk>
26355
26356         * gnus-sum.el (gnus-widget-reversible-match)
26357         (gnus-widget-reversible-to-internal)
26358         (gnus-widget-reversible-to-external): New functions.
26359         (gnus-widget-reversible): New widget.
26360         (gnus-article-sort-functions, gnus-thread-sort-functions): Use it.
26361
26362 2004-03-05  Kai Grossjohann  <kgrossjo@eu.uu.net>
26363
26364         * gnus-sum.el (gnus-thread-sort-functions)
26365         (gnus-article-sort-functions): Document `(not F)' items.
26366
26367 2004-03-04  Teodor Zlatanov  <tzz@lifelogs.com>
26368
26369         * spam.el (spam-use-gmane-xref): Add new backend.
26370         (spam-gmane-xref-spam-group): Add variable to control the name of the
26371         Gmane spam group.
26372         (spam-blackhole-servers, spam-blackhole-good-server-regex)
26373         (spam-regex-headers-spam, spam-regex-headers-ham)
26374         (spam-regex-body-spam, spam-regex-body-ham): Clarify docs.
26375         (spam-list-of-checks): Add spam-use-gmane-xref to list of
26376         backends and checks.
26377         (spam-check-gmane-xref): Add function for spam-use-gmane-xref.
26378
26379         * gnus.el (spam-autodetect-methods): Add spam-use-gmane-xref as
26380         an autodetect method.
26381
26382 2004-03-04  Kevin Greiner  <kgreiner@xpediantsolutions.com>
26383
26384         * gnus-int.el (gnus-request-accept-article): Inform the agent that
26385         articles are being added to a group.
26386         (gnus-request-replace-article): Inform the agent that articles
26387         need to be uncached as the cached contents are no longer valid.
26388
26389 2004-03-04  Katsumi Yamaoka  <yamaoka@jpl.org>
26390
26391         * binhex.el: Don't autoload executable-find.
26392
26393         * canlock.el: Don't autoload mail-fetch-field.
26394
26395         * dgnushack.el: Autoload c-mode for XEmacs.
26396
26397         * gnus-ems.el: Don't autoload appt-select-lowest-window.
26398
26399         * gnus-msg.el: Don't autoload news-reply-mode, news-setup,
26400         rmail-dont-reply-to and rmail-output.
26401
26402         * gnus-score.el: Don't autoload ffap-string-at-point.
26403
26404         * gnus-setup.el: Don't autoload sc-cite-original.
26405
26406         * imap.el: Don't autoload base64-decode-string,
26407         base64-encode-string and md5.
26408
26409         * message.el: Autoload rmail-dont-reply-to, rmail-msg-is-pruned
26410         and rmail-msg-restore-non-pruned-header.
26411
26412         * mm-decode.el: Don't autoload executable-find.
26413
26414         * mm-url.el: Don't autoload executable-find.
26415
26416         * mm-view.el: Don't autoload diff-mode.
26417
26418         * nndb.el: Don't autoload news-reply-mode, news-setup,
26419         cancel-timer and telnet.
26420
26421         * password.el: Don't autoload run-at-time for Emacs.
26422
26423         * sha1-el.el: Don't autoload executable-find.
26424
26425         * sieve-mode.el: Don't autoload c-mode.
26426
26427         * uudecode.el: Don't autoload executable-find.
26428
26429 2004-03-04  Kevin Greiner  <kgreiner@xpediantsolutions.com>
26430
26431         * gnus-agent.el (gnus-agent-file-header-cache): Remove.
26432         (gnus-agent-possibly-alter-active): Avoid null in numeric
26433         comparison.
26434         (gnus-agent-set-local): Refuse to save null in local object table.
26435         (gnus-agent-regenerate-group): The REREAD parameter can now be a
26436         list of articles that will be marked as unread.
26437
26438 2004-03-04  Katsumi Yamaoka  <yamaoka@jpl.org>
26439
26440         * rfc2047.el (rfc2047-encoded-word-regexp): Mismatched paren.
26441
26442 2004-03-04  Jesper Harder  <harder@ifa.au.dk>
26443
26444         * rfc2047.el (rfc2047-encoded-word-regexp): Support RFC 2231
26445         language tags.
26446
26447 2004-03-03  Per Abrahamsen  <abraham@dina.kvl.dk>
26448
26449         * gnus-agent.el (gnus-agent-read-local, gnus-agent-save-local):
26450         Don't bind "obarray".
26451
26452         * gnus-sum.el (gnus-thread-sort-functions):
26453         Add `gnus-thread-sort-by-most-recent-number' and
26454         `gnus-thread-sort-by-most-recent-date'.
26455         Reported by Kai Grossjohann <kai@emptydomain.de>.
26456
26457 2004-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
26458
26459         * gnus-cus.el (gnus-agent-customize-category): Mismatched paren.
26460
26461 2004-03-02  Kevin Greiner  <kgreiner@xpediantsolutions.com>
26462
26463         * gnus-cus.el (gnus-agent-customize-category):
26464         Remove ignore-errors macro reference that required cl to be loaded at
26465         run-time.
26466
26467         * gnus-range.el (gnus-sorted-range-intersection): Now accepts
26468         single-interval range of the form (min . max).  Previously the
26469         range had to look like ((min . max)).  Likewise, return
26470         (min . max) rather than ((min . max)).
26471         (gnus-range-map): Use gnus-range-normalize to accept
26472         single-interval range.
26473
26474         * gnus-sum.el (gnus-summary-highlight-line): Articles stored in
26475         the cache, but not the agent, now appear with their usual face.
26476
26477         * dgnushack.el (loaddir): New variable that is bound to the
26478         directory containing the dgnushack.el file.  Use loaddir, rather
26479         than srcdir, to update load-path.  Change lets dgnushack compile
26480         code in directories other than GNUS/lisp.
26481
26482 2004-03-01  Katsumi Yamaoka  <yamaoka@jpl.org>
26483
26484         * lpath.el: Don't bind w3m-safe-url-regexp.
26485
26486         * gnus-art.el (gnus-article-wash-html-with-w3m): Don't make the
26487         w3m-safe-url-regexp variable buffer-local.
26488
26489         * mm-view.el (mm-inline-text-html-render-with-w3m): Ditto.
26490
26491 2004-02-27  Simon Josefsson  <jas@extundo.com>
26492
26493         * gnus-sum.el (gnus-move-group-prefix-function): Add, default to
26494         gnus-group-real-prefix.
26495         (gnus-summary-move-article): Use it, instead of
26496         gnus-group-real-prefix.
26497
26498 2004-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
26499
26500         * lpath.el: Bind w3m-safe-url-regexp.
26501
26502         * gnus-art.el (gnus-article-wash-html-with-w3m): Make the
26503         w3m-safe-url-regexp variable buffer-local and set it as the value
26504         of mm-w3m-safe-url-regexp.
26505
26506         * mm-view.el (mm-inline-text-html-render-with-w3m): Ditto.
26507
26508         * gnus-msg.el (gnus-setup-message): Ignore an article copy while
26509         parsing gnus-posting-styles when the message is not for replying.
26510
26511         * dgnushack.el: Autoload sgml-mode for XEmacs.
26512
26513         * nnrss.el (nnrss-opml-export):
26514         Use mm-set-buffer-file-coding-system instead of
26515         set-buffer-file-coding-system.
26516
26517 2004-02-27  Jesper Harder  <harder@ifa.au.dk>
26518
26519         * spam-stat.el: Pedantic docstring and whitespace fixes (courtesy
26520         of checkdoc.el).
26521         * nnrss.el: do.
26522         * gnus-mlspl.el: do.
26523         * gnus-ml.el: do.
26524         * gnus-srvr.el: do.
26525
26526         * nnrss.el (nnrss-opml-export): Turn on sgml-mode.
26527
26528 2004-02-27  Kevin Ryde  <user42@zip.com.au>  (tiny change)
26529
26530         * gnus.el (gnus-group, gnus-summary, gnus-summary-sort):
26531         Corrections to custom-manual links.
26532
26533         * gnus-art.el (gnus-article): Ditto.
26534
26535         * mm-decode.el (mime-display, mime-security): Ditto.
26536
26537 2004-02-26  Jesper Harder  <harder@ifa.au.dk>
26538
26539         * flow-fill.el: Typo.
26540
26541 2004-02-26  Andrew Cohen  <cohen@andy.bu.edu>
26542
26543         * spam-wash.el: New file.
26544
26545 2004-02-26  Mark A. Hershberger  <mah@everybody.org>
26546
26547         * nnrss.el (nnrss-opml-import, nnrss-opml-export): New functions.
26548
26549 2004-02-26  Teodor Zlatanov  <tzz@lifelogs.com>
26550
26551         * spam.el (spam-summary-prepare-exit): Fix gnus-set-difference: needs
26552         to be run with new-articles as LIST1, not LIST2.
26553         (spam-registration-functions): Add spam-use-ham-copy as a nil
26554         registration backend.
26555
26556 2004-02-26  Jesper Harder  <harder@ifa.au.dk>
26557
26558         * spam-stat.el (spam-stat-washing-hook): New option.
26559         (spam-stat-buffer-words): Use it.
26560         (spam-stat-process-directory, spam-stat-test-directory):
26561         Use insert-file-contents-literally.
26562         (spam-stat-coding-system): New variable.
26563         (spam-stat-load, spam-stat-save): Use it.
26564
26565 2004-02-25  Katsumi Yamaoka  <yamaoka@jpl.org>
26566
26567         * spam-report.el (spam-report-plug-agent):
26568         Quote spam-report-url-to-file and spam-report-url-ping-plain.
26569
26570 2004-02-25  Reiner Steib  <Reiner.Steib@gmx.de>
26571
26572         * gnus-art.el (gnus-button-alist, gnus-header-button-alist):
26573         Allow / in mailto URLs.
26574
26575 2004-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
26576
26577         * spam-report.el (spam-report-process-queue): Fix interactive use.
26578         (spam-report-url-ping-temp-agent-function, spam-report-plug-agent)
26579         (spam-report-unplug-agent): Doc fixes.
26580         (spam-report-url-ping-mm-url, spam-report-url-to-file)
26581         (spam-report-agentize, spam-report-deagentize): Autoload.
26582
26583 2004-02-24  Katsumi Yamaoka  <yamaoka@jpl.org>
26584
26585         * dgnushack.el (with-syntax-table): Redefine it for XEmacs 21.5.
26586
26587         * message.el (message-setup-fill-variables): Add mml tags to
26588         paragraph-start and paragraph-separate.  Suggested by Andrew Korty
26589         <ajk@iu.edu>.
26590         (message-mode): Don't modify paragraph-separate there.
26591
26592 2004-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
26593
26594         * compface.el (uncompface-use-external): Default to undecided.
26595         (uncompface-use-external-threshold): New variable.
26596         (uncompface-float-time): New macro.
26597         (uncompface): Determine whether to use the external decoder if
26598         uncompface-use-external is undecided.
26599
26600 2004-02-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26601
26602         * mm-view.el (mm-inline-image-emacs): Don't insert blank lines
26603         after images.
26604
26605         * gnus-art.el (gnus-mime-display-single): Remove dead code.
26606
26607 2004-02-14  Jesper Harder  <harder@ifa.au.dk>
26608
26609         * nnrss.el (nnrss-request-article, nnrss-find-el): Cleanup.
26610
26611         * html2text.el (html2text-get-attr, html2text-fix-paragraph): do.
26612
26613         * gnus-sum.el (gnus-summary-limit-to-age)
26614         (gnus-summary-limit-children): do.
26615
26616         * gnus-int.el (gnus-request-scan): do.
26617
26618         * gnus-group.el (gnus-group-suspend): do.
26619
26620         * gnus-cus.el (gnus-agent-cat-prepare-category-field): do.
26621
26622         * gnus-cite.el (gnus-cite-parse-attributions): do.
26623
26624         * gnus-agent.el (gnus-summary-set-agent-mark)
26625         (gnus-agent-regenerate-group): do.
26626
26627         * deuglify.el (gnus-article-outlook-unwrap-lines): do.
26628
26629         * binhex.el (binhex-decode-region-internal): do.
26630
26631 2004-02-12  Katsumi Yamaoka  <yamaoka@jpl.org>
26632
26633         * gnus-fun.el (gnus-face-properties-alist): New user option.
26634         (gnus-display-x-face-in-from): Use it.
26635
26636         * gnus-art.el (article-display-face): Ditto.
26637
26638         * compface.el (uncompface-use-external): Default to nil.
26639
26640 2004-02-12  Jesper Harder  <harder@ifa.au.dk>
26641
26642         * nntp.el (nntp-erase-buffer): New function.
26643         (nntp-retrieve-data, nntp-send-command)
26644         (nntp-send-buffer, nntp-retrieve-groups, nntp-handle-authinfo)
26645         (nntp-possibly-change-group): Use it.
26646
26647         * nnnil.el (nnnil-retrieve-headers, nnnil-request-list):
26648         Use with-current-buffer.
26649
26650 2004-02-12  TAKAI Kousuke  <tak@kmc.gr.jp>
26651
26652         * compface.el: Merge the ELisp-based uncompface program.
26653         (compface): New customization group.
26654         (uncompface-use-external): New user option.
26655         (uncompface): Call uncompface-internal if uncompface-use-external
26656         is nil.
26657         (uncompface-internal): New function.  Note that there are also
26658         some other functions and variables added for this function.
26659
26660 2004-02-10  Jesper Harder  <harder@ifa.au.dk>
26661
26662         * nnrss.el (nnrss-read-group-data): Initialize nnrss-group-hashtb
26663         if necessary.
26664
26665 2004-02-09  Teodor Zlatanov  <tzz@lifelogs.com>
26666
26667         * spam-report.el (spam-report-unplug-agent)
26668         (spam-report-plug-agent, spam-report-deagentize)
26669         (spam-report-agentize, spam-report-url-ping-temp-agent-function):
26670         Add support for the Agent in spam-report: when unplugged, report to a
26671         file; when plugged, submit all the requests.
26672
26673         * spam.el (spam-register-routine): Fix message about
26674         registration.
26675
26676 2004-02-09  Jesper Harder  <harder@ifa.au.dk>
26677
26678         * rfc2047.el (rfc2047-qp-or-base64): New function to reduce
26679         dependencies.
26680         (rfc2047-encode): Use it.
26681
26682         * gnus-art.el (gnus-button-marker-list): Move before first
26683         reference.
26684
26685         * imap.el (imap-parse-flag-list, imap-parse-body-extension)
26686         (imap-parse-body): Fix format string mismatch.
26687
26688         * gnus-score.el (gnus-summary-increase-score): do.
26689
26690         * nnrss.el (nnrss-close): New function.
26691
26692 2004-02-08  Jesper Harder  <harder@ifa.au.dk>
26693
26694         * nnrss.el (nnrss-make-filename): New function.
26695         (nnrss-request-delete-group, nnrss-read-server-data)
26696         (nnrss-save-server-data, nnrss-read-group-data)
26697         (nnrss-save-group-data): Use it.
26698         (nnrss-save-server-data, nnrss-save-group-data): Use gnus-prin1.
26699         (nnrss-read-server-data, nnrss-read-group-data): Use load.
26700         (nnrss-group-hashtb): Make it a hash table rather than an obarray.
26701
26702 2004-02-07  Jesper Harder  <harder@ifa.au.dk>
26703
26704         * mml.el (mml-compute-boundary-1): Don't uncompress files.
26705
26706 2004-02-06  Jesper Harder  <harder@ifa.au.dk>
26707
26708         * mml.el (mml-mode, mml-x-dnd-attach-file): Attach drop and drag
26709         files.
26710
26711         * message.el (message-generate-headers-first): Don't quote nil
26712         and t in docstrings.
26713
26714         * imap.el (imap-id): do.
26715
26716         * gnus-agent.el (gnus-agent-consider-all-articles)
26717         (gnus-agent-queue-mail): do.
26718
26719 2004-02-05  Reiner Steib  <Reiner.Steib@gmx.de>
26720
26721         * spam-report.el (spam-report-process-queue): New function.
26722         Process requests from `spam-report-requests-file'.
26723         (spam-report-process-queue): Doc fix.
26724
26725 2004-02-05  Teodor Zlatanov  <tzz@lifelogs.com>
26726
26727         * spam.el (spam-register-routine)
26728         (spam-log-processing-to-registry, spam-log-registered-p)
26729         (spam-log-unregistration-needed-p, spam-log-undo-registration):
26730         Change "check" to "spam-check" for semi-clarity.
26731
26732 2004-02-05  Jesper Harder  <harder@ifa.au.dk>
26733
26734         * pop3.el: Require nnheader.
26735
26736         * mml-smime.el: Require cl.  Autoload message-fetch-field.
26737
26738         * mml-sec.el (mml-signencrypt-style): Don't depend on Gnus.
26739
26740         * gnus-picon.el: Require cl.
26741
26742         * gnus-fun.el: Require gnus-ems and gnus-util.
26743
26744         * gnus.el (gnus-method-to-server): Move defsubst before first use.
26745
26746         * gnus-diary.el (gnus-diary-header-schedule): caddr -> car (cddr.
26747
26748         * gnus-art.el (gnus-article-edit-mode): Define before first
26749         reference.
26750
26751 2004-02-04  Jesper Harder  <harder@ifa.au.dk>
26752
26753         * gnus-uu.el (gnus-uu-check-correct-stripped-uucode): Simplify.
26754         (gnus-uu-post-encoded): Use point-at-bol.
26755
26756         * gnus-topic.el (gnus-group-active-topic-p): do.
26757
26758         * gnus-start.el (gnus-newsrc-to-gnus-format): do.
26759
26760         * gnus-group.el (gnus-group-kill-region): do.
26761
26762         * gnus-art.el (article-date-ut): do.
26763
26764         * message.el (message-fetch-field): Remove redundant
26765         case-fold-search binding.
26766         (message-narrow-to-field): Simplify.
26767
26768 2004-02-03  Reiner Steib  <Reiner.Steib@gmx.de>
26769
26770         * spam.el (spam-directory): Derive from `gnus-directory'.
26771
26772         * spam-report.el (spam-report-url-to-file)
26773         (spam-report-requests-file): New function and variable for offline
26774         reporting.
26775         (spam-report-url-ping-function): Add `spam-report-url-to-file'
26776         and user defined function.
26777         (spam-report-url-ping-mm-url): Remove doubled slash.
26778
26779 2004-02-03  Teodor Zlatanov  <tzz@lifelogs.com>
26780
26781         * spam.el (spam-list-of-processors): Fix spamassassin variable names.
26782
26783 2004-02-03  Jesper Harder  <harder@ifa.au.dk>
26784
26785         * spam.el (spam-check-spamoracle, spam-spamoracle-learn):
26786         Fix format string mismatch.
26787
26788         * sieve.el (sieve-deactivate-all): do.
26789
26790         * nnfolder.el (nnfolder-request-set-mark, nnfolder-save-marks): do.
26791
26792         * nnlistserv.el (nnlistserv-kk-wash-article): do.
26793
26794         * nnml.el (nnml-request-set-mark, nnml-save-marks): do.
26795
26796         * mm-bodies.el (mm-7bit-chars): Don't include \r.
26797
26798 2004-02-02  Teodor Zlatanov  <tzz@lifelogs.com>
26799
26800         * spam.el (spam-list-of-checks): Add spam-use-BBDB-eclusive to
26801         the list of checks.
26802
26803 2004-01-31  Jesper Harder  <harder@ifa.au.dk>
26804
26805         * rfc2047.el (rfc2047-pad-base64): Deal with more cases of invalid
26806         padding.
26807
26808 2004-01-27  Ralf Angeli  <angeli@iwi.uni-sb.de>
26809
26810         * mm-view.el (mm-fill-flowed): New variable.
26811         (mm-inline-text): Use it.
26812
26813 2004-01-27  Teodor Zlatanov  <tzz@lifelogs.com>
26814
26815         * spam.el (spam-spamassassin-register-ham-routine)
26816         (spam-spamassassin-register-spam-routine): Fix function names.
26817
26818 2004-01-27  Katsumi Yamaoka  <yamaoka@jpl.org>
26819
26820         * gnus.el (gnus-tmp-grouplens): Remove.
26821         (gnus-summary-line-format): Remove grouplens.
26822
26823         * gnus-group.el (gnus-group-line-format): Ditto.
26824
26825         * gnus-spec.el (gnus-format-specs): Ditto.
26826         (gnus-update-format-specifications): Flush the group format spec
26827         cache if there's the grouplens stuff.
26828         (gnus-parse-simple-format): Replace %l with the empty string.
26829
26830 2004-01-27  Jerry James  <james@xemacs.org>  (tiny change)
26831
26832         * gnus-spec.el (gnus-parse-simple-format): Fix setq value
26833         omission.
26834
26835 2004-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
26836
26837         * gnus-msg.el (gnus-summary-resend-message-edit): Call mime-to-mml.
26838         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
26839
26840 2004-01-25  Paul Jarc  <prj@po.cwru.edu>
26841
26842         * nnmaildir.el (nnmaildir--num-file, nnmaildir--mkfile)
26843         (nnmaildir--emlink-p, nnmaildir--eexist-p, nnmaildir--new-number):
26844         New macros and functions.
26845         * nnmaildir.el (nnmaildir--group-maxnum, nnmaildir--update-nov):
26846         Handle > NLINK_MAX messages.
26847         * nnmaildir.el (nnmaildir-request-set-mark):
26848         Use nnmaildir--emlink-p and nnmaildir--eexist-p.
26849
26850 2004-01-25  Alex Schroeder  <alex@gnu.org>
26851
26852         * spam-stat.el (spam-stat-process-directory-age): New option.
26853         (spam-stat-process-directory): Use it.
26854
26855 2004-01-24  Hiroshi Fujishima  <pooh@nature.tsukuba.ac.jp>  (tiny change)
26856
26857         * spam-stat.el (spam-stat-reduce-size): Set spam-stat-dirty.
26858         (spam-stat-save): Accept prefix argument.
26859
26860 2004-01-23  Paul Jarc  <prj@po.cwru.edu>
26861
26862         * nnmaildir.el (nnmaildir-request-set-mark): Handle the "too many
26863         links" error.
26864
26865 2004-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
26866
26867         * dgnushack.el: Advise byte-optimize-form-code-walker to optimize
26868         the rest of the and/or forms.
26869
26870 2004-01-23  Jesper Harder  <harder@ifa.au.dk>
26871
26872         * gnus.el (gnus-tmp-grouplens): Define for the sake of backward
26873         compatibility with old .newsrc.eld files.
26874
26875         * gnus-xmas.el (gnus-xmas-grouplens-menu-add): Remove.
26876
26877         * gnus-sum.el (gnus-summary-line-format-alist): Remove grouplens.
26878
26879         * gnus-start.el (gnus-1): do.
26880
26881         * gnus-group.el (gnus-group-line-format-alist): do.
26882
26883         * gnus.el (gnus-use-grouplens, gnus-visual): do.
26884
26885         * gnus-gl.el: Remove.
26886
26887 2004-01-23  Kevin Greiner  <kgreiner@xpediantsolutions.com>
26888
26889         * gnus-sum.el (gnus-adjust-marks): Now correctly handles a list of
26890         marks consisting of a single range {for example, (3 . 5)} rather
26891         than a list of a single range { ((3 . 5)) }.
26892
26893 2004-01-23  Jesper Harder  <harder@ifa.au.dk>
26894
26895         * spam-stat.el (spam-stat-store-gnus-article-buffer):
26896         Use with-current-buffer.
26897         (spam-stat-store-current-buffer): Use insert-buffer-substring to
26898         avoid consing a string.
26899
26900         * mm-util.el (mm-charset-synonym-alist): Add ks_c_5601-1987.
26901         Remove obsolete entries for big5 and gb2312.
26902
26903 2004-01-22  Kevin Greiner  <kgreiner@xpediantsolutions.com>
26904
26905         * gnus-sum.el (gnus-adjust-marks): Avoid splicing null INTO the
26906         uncompressed list.
26907
26908 2004-01-22  Jesper Harder  <harder@ifa.au.dk>
26909
26910         * spam-stat.el (spam-stat-strip-xref): New function.
26911         (spam-stat-process-directory): Use it.
26912
26913         * gnus-util.el (gnus-fetch-field): Don't bind case-fold-search
26914         here -- it's done in message-fetch-field.
26915
26916 2004-01-21  Kevin Greiner  <kgreiner@xpediantsolutions.com>
26917
26918         * gnus-agent.el (gnus-agent-queue-mail)
26919         (gnus-agent-prompt-send-queue): New variables.
26920         (gnus-agent-send-mail): Use gnus-agent-queue-mail.
26921         * gnus-draft.el (gnus-group-send-queue): Pass the group name
26922         "nndraft:queue" along to gnus-draft-send.
26923         Use gnus-agent-prompt-send-queue.
26924         (gnus-draft-send): Rebind gnus-agent-queue-mail to nil when group
26925         is "nndraft:queue".  Suggested by Gaute Strokkenes
26926         <gs234@srcf.ucam.org>
26927
26928         * gnus-agent.el (agent-disable-undownloaded-faces): Remove.
26929         (agent-enable-undownloaded-faces): Add.
26930         (gnus-agent-cat-groups): Use eval-and-compile, not
26931         eval-when-compile, to define gnus-agent-set-cat-groups as the setf
26932         method of gnus-agent-cat-groups even when the buffer has been
26933         evaled.
26934         (gnus-agent-save-active, gnus-agent-save-active-1): Merge to
26935         delete gnus-agent-save-active-1.
26936         (gnus-agent-save-groups): Delete.  Identical to
26937         gnus-agent-save-active.
26938         (gnus-agent-write-active): No longer adjust agent's copy of active
26939         file as agent's adjustments are now stored in their own
26940         file.  Remove optional parameter.
26941         (gnus-agent-possibly-alter-active): Ignore groups of unagentized
26942         servers.  Add use of min/max range limits from server's local
26943         file.
26944         (gnus-agent-save-alist): Remove unused optional argument.
26945         (gnus-agent-load-local, gnus-agent-read-and-cache-local)
26946         (gnus-agent-read-local, gnus-agent-save-local, gnus-agent-get-local)
26947         (gnus-agent-set-local): A per-server file that keeps min/max range
26948         limits for articles known to the agent.  Provides a fast mechanism
26949         for altering many active ranges.
26950         (gnus-agent-expire-group, gnus-agent-expire): No longer save the
26951         active file (local makes it unnecessary).
26952         (gnus-agent-regenerate-group): Fix XEmacs compatibility.
26953
26954         * gnus-cus.el (agent-disable-undownloaded-faces): Remove.
26955         (agent-enable-undownloaded-faces): Add.
26956
26957         * gnus-draft.el (gnus-draft-send): Bind gnus-agent-queue-mail to
26958         disable it when sending to "nndraft:queue".
26959         (gnus-group-send-queue): Add safety check to avoid sending queue
26960         when unplugged.
26961
26962         * gnus-group.el (gnus-group-catchup): Use new
26963         gnus-sequence-of-unread-articles, not
26964         gnus-list-of-unread-articles, to avoid exhausting memory with huge
26965         numbers of articles.  Use gnus-range-map to avoid having to
26966         uncompress the unread list.
26967         (gnus-group-archive-directory, gnus-group-recent-archive-directory):
26968         Fix invalid ange-ftp reference.
26969
26970         * gnus-range.el (gnus-range-map): Iterate over list or sequence.
26971         (gnus-sorted-range-intersection): Intersection of two ranges
26972         without requiring that they first be uncompressed.
26973
26974         * gnus-start.el (gnus-activate-group): Unless blocked by the
26975         caller, possibly expand the active range to include both cached
26976         and agentized articles.
26977         (gnus-convert-old-newsrc): Rewrote in anticipation of having
26978         multiple version-dependent converters.
26979         (gnus-groups-to-gnus-format): Replace gnus-agent-save-groups with
26980         gnus-agent-save-active.
26981         (gnus-save-newsrc-file): Save dirty agent range limits.
26982
26983         * gnus-sum.el (gnus-select-newgroup): Replace inline code with
26984         gnus-agent-possibly-alter-active.
26985         (gnus-adjust-marked-articles): Faster handling of simple lists.
26986
26987 2004-01-21  Jesper Harder  <harder@ifa.au.dk>
26988
26989         * spam-stat.el (spam-stat-test-directory): New optional argument
26990         displays a list of files detected.  Suggested by Andrew Cohen
26991         <cohen@andy.bu.edu>.
26992         (spam-stat-buffer-words-with-scores): Don't narrow and change
26993         syntax table here.  Reported by Andrew Cohen <cohen@andy.bu.edu>.
26994
26995 2004-01-20  Hubert Chan  <hubert@uhoreg.ca>
26996
26997         * spam.el (spam-use-spamassassin, spam-use-spamassassin-headers)
26998         (spam-install-hooks, spam-spamassassin, spam-spamassassin-path)
26999         (spam-spamassassin-arguments)
27000         (spam-spamassassin-spam-flag-header)
27001         (spam-spamassassin-positive-spam-flag-header)
27002         (spam-spamassassin-spam-status-header, spam-sa-learn-path)
27003         (spam-sa-learn-rebuild, spam-sa-learn-spam-switch)
27004         (spam-sa-learn-ham-switch, spam-sa-learn-unregister-switch)
27005         (spam-list-of-processors, spam-list-of-checks)
27006         (spam-list-of-statistical-checks, spam-registration-functions)
27007         (spam-check-spamassassin-headers, spam-check-spamassassin)
27008         (spam-spamassassin-score)
27009         (spam-spamassassin-register-with-sa-learn)
27010         (spam-spamassassin-register-spam-routine)
27011         (spam-spamassassin-register-ham-routine)
27012         (spam-assassin-register-spam-routine)
27013         (spam-assassin-register-ham-routine): Add SpamAssassin support.
27014         (spam-bogofilter-score): Fix to show article before scoring.
27015
27016 2004-01-20  Teodor Zlatanov  <tzz@lifelogs.com>
27017
27018         * spam.el (gnus-summary-mode-map): Make spam-generic-score the
27019         default scoring function.
27020         (spam-generic-score): Call spam-spamassassin-score if
27021         spam-use-spamassassin or spam-use-spamassassin-headers is on;
27022         spam-bogofilter-score otherwise.
27023
27024         * gnus.el (spam-process, spam-autodetect-methods):
27025         Add spamassassin and spamassassin-headers.
27026
27027 2004-01-20  Nevin Kapur  <nkapur@cs.caltech.edu>
27028
27029         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
27030         Suppress unnecessary messages.
27031
27032 2004-01-20  Jesper Harder  <harder@ifa.au.dk>
27033
27034         * spam-stat.el (spam-stat-to-hash-table): Use :size keyword in
27035         make-hash-table.
27036
27037 2004-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
27038
27039         * canlock.el (base64-encode-string): Don't autoload it.
27040
27041 2004-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
27042
27043         * run-at-time.el: Remove useless (require 'itimer),
27044         eval-and-compile and (featurep 'xemacs).
27045
27046 2004-01-16  Jesper Harder  <harder@ifa.au.dk>
27047
27048         * gnus-msg.el (gnus-post-news): Use blank Newsgroups line if
27049         GROUP is a virtual group.
27050
27051 2004-01-16  Steve Youngs  <sryoungs@bigpond.net.au>
27052
27053         * gnus.el: Autoload `message-y-or-n-p'.
27054
27055 2004-01-15  Jesper Harder  <harder@ifa.au.dk>
27056
27057         * pgg-parse.el: Remove unnecessary (require 'custom).
27058
27059         * pgg-def.el: do.
27060
27061         * nnmail.el: do.
27062
27063         * gnus-undo.el: do.
27064
27065         * gnus-picon.el: do.
27066
27067         * gnus-util.el: do.
27068
27069 2004-01-15  Reiner Steib  <Reiner.Steib@gmx.de>
27070
27071         * gnus-sum.el (gnus-pick-line-number): Add autoload.
27072
27073 2004-01-15  Katsumi Yamaoka  <yamaoka@jpl.org>
27074
27075         * mm-decode.el (mm-multiple-handles): Recognize a string as a mime
27076         handle, as well as a list.
27077
27078         * mm-view.el (mm-w3m-cid-retrieve-1): Call itself recursively.
27079         Suggested by ARISAWA Akihiro <ari@mbf.sphere.ne.jp>.
27080         (mm-w3m-cid-retrieve): Simplify.
27081
27082 2004-01-14  Vasily Korytov  <deskpot@myrealbox.com>
27083
27084         * message.el (message-kill-to-signature): Allow prefix arg to
27085         specify number of lines to keep before signature.
27086
27087 2004-01-14  Kai Grossjohann  <kai@emptydomain.de>
27088
27089         * message.el (message-kill-to-signature): Change docstring.
27090
27091 2004-01-14  Katsumi Yamaoka  <yamaoka@jpl.org>
27092
27093         * canlock.el: Always require sha1-el.
27094         (canlock-sha1): Bind sha1-maximum-internal-length to nil.
27095
27096         * message.el: Autoload sha1 only when compiling.
27097
27098         * lpath.el: Bind eudc-protocol for both Emacs and XEmacs; fbind
27099         eudc-expand-inline for XEmacs.
27100
27101 2004-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
27102
27103         * message.el (message-canlock-generate): Require sha1-el.
27104
27105 2004-01-13  Jesper Harder  <harder@ifa.au.dk>
27106
27107         * message.el (message-expand-name): Silence the byte compiler.
27108
27109         * lpath.el: Add detect-coding-system.
27110
27111         * dgnushack.el (dgnushack-compile): Remove obsolete check for
27112         cus-edit.
27113
27114 2004-01-13  Simon Josefsson  <jas@extundo.com>
27115
27116         * gnus-score.el (gnus-score-edit-all-score): Fix prototype.
27117         Invoke gnus-score-mode.
27118         Reported by bojohan+news@dd.chalmers.se (Johan Bockgård).
27119
27120         * gnus-range.el (gnus-compress-sequence): Doc fix.
27121         Suggested by Jim Blandy <jimb@redhat.com> (tiny change).
27122
27123 2004-01-12  Jesper Harder  <harder@ifa.au.dk>
27124
27125         * gnus-srvr.el (gnus-browse-foreign-server): Reduce consing.
27126
27127 2004-01-12  Teodor Zlatanov  <tzz@lifelogs.com>
27128
27129         * spam.el (spam-get-article-as-string): Update to use
27130         gnus-request-article-this-buffer, much simpler.
27131         (spam-get-article-as-buffer): Remove.
27132
27133 2004-01-12  Kai Grossjohann  <kai.grossjohann@mci.com>
27134
27135         * message.el (message-expand-name): Use EUDC if the user uses that.
27136
27137 2004-01-12  Jesper Harder  <harder@ifa.au.dk>
27138
27139         * rfc2047.el (rfc2047-parse-and-decode, rfc2047-decode): Use a
27140         character for the encoding to avoid consing a string.
27141
27142         * rfc2047.el (rfc2047-decode-string): Don't cons a string
27143         unnecessarily.
27144
27145         * mm-util.el (mm-replace-chars-in-string): Remove.
27146
27147         * rfc2047.el (rfc2047-decode): Use mm-subst-char-in-string instead
27148         of mm-replace-chars-in-string.
27149
27150 2004-01-11  Jesper Harder  <harder@ifa.au.dk>
27151
27152         * gnus.sum.el (gnus-remove-odd-characters): Don't cons two new strings.
27153
27154         * mm-util.el (mm-subst-char-in-string): Support inplace.
27155
27156         * gnus-sum.el (gnus-summary-remove-list-identifiers): Don't cons
27157         a new string in every iteration.  Use shy groups.
27158
27159 2004-01-10  Jesper Harder  <harder@ifa.au.dk>
27160
27161         * gnus-srvr.el (gnus-browse-unsubscribe-group):
27162         * gnus-soup.el (gnus-soup-group-brew):
27163         * gnus-msg.el (gnus-put-message):
27164         * gnus-move.el (gnus-group-move-group-to-server):
27165         * gnus-kill.el (gnus-batch-score):
27166         * gnus-group.el (gnus-group-prepare-flat, gnus-group-delete-group)
27167         (gnus-group-update-group-line, gnus-group-insert-group-line-info)
27168         (gnus-group-update-group, gnus-group-read-group)
27169         (gnus-group-make-group, gnus-group-make-help-group)
27170         (gnus-group-make-archive-group, gnus-group-make-directory-group)
27171         (gnus-group-make-empty-virtual, gnus-group-sort-selected-flat)
27172         (gnus-group-sort-by-unread, gnus-group-catchup)
27173         (gnus-group-unsubscribe-group, gnus-group-kill-group)
27174         (gnus-group-yank-group, gnus-group-set-info)
27175         (gnus-group-list-groups):
27176         * gnus.el (gnus-generate-new-group-name):
27177         * gnus-delay.el (gnus-delay-send-queue):
27178         * nnvirtual.el (nnvirtual-catchup-group):
27179         * nnkiboze.el (nnkiboze-generate-group, nnkiboze-generate-group):
27180         * gnus-topic.el (gnus-topic-find-groups, gnus-topic-clean-alist)
27181         (gnus-group-prepare-topics, gnus-topic-check-topology):
27182         * gnus-sum.el (gnus-update-read-articles, gnus-select-newsgroup)
27183         (gnus-mark-xrefs-as-read, gnus-compute-read-articles)
27184         (gnus-summary-walk-group-buffer, gnus-summary-move-article)
27185         (gnus-group-make-articles-read):
27186         * gnus-start.el (gnus-subscribe-newsgroup, gnus-start-draft-setup)
27187         (gnus-group-change-level, gnus-kill-newsgroup)
27188         (gnus-check-bogus-newsgroups, gnus-get-unread-articles-in-group)
27189         (gnus-get-unread-articles, gnus-make-articles-unread)
27190         (gnus-make-ascending-articles-unread): Use accessor
27191         macros (gnus-group-entry, gnus-group-unread, gnus-info-marks etc.)
27192         to get group information for improved readability.
27193
27194
27195 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
27196
27197         * gnus-art.el (article-decode-mime-words, article-babel)
27198         (gnus-article-highlight-signature, gnus-article-add-buttons)
27199         (gnus-signature-toggle): Use gnus-with-article-buffer.
27200
27201         * gnus-art.el (gnus-article-highlight-headers)
27202         (gnus-article-add-buttons-to-head): Use gnus-with-article-headers.
27203
27204         * gnus-art.el (gnus-mm-display-part, gnus-article-wash-status)
27205         (gnus-article-set-globals, gnus-request-article-this-buffer)
27206         (gnus-button-message-id, gnus-article-maybe-hide-headers)
27207         (gnus-mime-view-part-externally, gnus-mime-view-part-internally)
27208         (gnus-mime-display-alternative): Use with-current-buffer.
27209
27210 2004-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
27211
27212         * spam.el (spam-generate-fake-headers): Rewrite to be simpler,
27213         also under 80 char limit, and call gnus-error if needed.
27214         (spam-fetch-article-header): Fix - it was a
27215         buffer-local variable (gnus-newsgroup-data).
27216         (spam-find-spam): Use spam-generate-fake-headers, forget about
27217         spam-insert-fake-headers.
27218         (spam-insert-fake-headers): Remove.
27219
27220 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
27221
27222         * deuglify.el (gnus-article-outlook-unwrap-lines)
27223         (gnus-outlook-rearrange-article)
27224         (gnus-outlook-repair-attribution-outlook)
27225         (gnus-outlook-repair-attribution-block)
27226         (gnus-outlook-repair-attribution-other): Remove redundant
27227         save-excursion.
27228
27229 2004-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
27230
27231         * spam.el (spam-fetch-field-fast, spam-fetch-field-from-fast)
27232         (spam-fetch-field-subject-fast)
27233         (spam-fetch-field-message-id-fast, spam-generate-fake-headers)
27234         (spam-fetch-article-header): Add functions to deal with Gnus
27235         internals for fast retrieval of article header data.
27236         (spam-initialize): Put spam-find-spam in the gnus-summary-prepared-hook.
27237
27238 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
27239
27240         * pop3.el (pop3-md5): Remove.
27241         (pop3-apop): Replace pop3-md5 with md5.
27242
27243         * mm-bodies.el: base64 is always built-in.
27244
27245         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups):
27246         Use with-current-buffer.
27247
27248 2004-01-08  Katsumi Yamaoka  <yamaoka@jpl.org>
27249
27250         * canlock.el (canlock-insert-header): Remove excessive grouping in
27251         regexp.
27252
27253         * gnus-sum.el (gnus-summary-read-document): Ditto.
27254
27255         * gnus-uu.el (gnus-uu-part-number): Ditto.
27256
27257         * html2text.el (html2text-remove-tags): Ditto.
27258         (html2text-format-tags): Ditto.
27259         (html2text-format-single-elements): Ditto.
27260
27261         * mml.el (mml-parse-1): Ditto.
27262
27263 2004-01-08  Jesper Harder  <harder@ifa.au.dk>
27264
27265         * gnus-sum.el (gnus-summary-update-mark): Revert previous change.
27266
27267         * gnus-group.el (gnus-group-mark-group): Fix for multibyte marks.
27268
27269         * gnus-sum.el (gnus-summary-update-mark): Fix for multibyte marks.
27270
27271         * gnus-util.el (gnus-replace-in-string): Remove Emacs 20 code.
27272
27273 2003-11-15  Simon Josefsson  <jas@extundo.com>
27274
27275         * pgg-gpg.el (pgg-gpg-lookup-all-secret-keys)
27276         (pgg-gpg-lookup-key): Use regexp match instead of
27277         split-string (split-string is different between emacs 21.2 and
27278         22.1).  Reported by ultrasoul@ultrasoul.com (David D. Smith).
27279
27280 2004-01-08  Jesper Harder  <harder@ifa.au.dk>
27281
27282         * gnus-art.el (gnus-mime-view-all-parts)
27283         (gnus-article-part-wrapper, gnus-article-view-part):
27284         Use with-current-buffer.
27285
27286 2004-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
27287
27288         * spam.el (spam-disable-spam-split-during-ham-respool)
27289         (spam-spamoracle-database, spam-cache-lookups)
27290         (spam-split-last-successful-check, spam-clear-cache, spam-xor)
27291         (spam-group-ham-mark-p, spam-group-spam-mark-p)
27292         (spam-group-ham-marks, spam-group-spam-marks)
27293         (spam-group-spam-contents-p, spam-group-ham-contents-p)
27294         (spam-list-of-processors, spam-list-of-statistical-checks): Fix doc,
27295         also add spam-use-blackholes to the statistical checks.
27296         (spam-fetch-field-fast): Add interface to fetching fields, may
27297         become a macro.
27298         (spam-fetch-field-from-fast, spam-fetch-field-subject-fast)
27299         (spam-fetch-field-message-id-fast): Use spam-fetch-field-fast.
27300         (spam-insert-fake-headers): Fake an article when needed.
27301         (spam-find-spam): Fake article when possible.
27302         (spam-check-blackholes, spam-check-BBDB, spam-from-listed-p)
27303         (spam-check-bogofilter-headers): Use message-fetch-field instead
27304         of nnmail-fetch-field.
27305
27306 2004-01-07  Reiner Steib  <Reiner.Steib@gmx.de>
27307
27308         * gnus-score.el (gnus-score-find-trace): Add `k' (kill-buffer).
27309
27310 2004-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
27311
27312         * spam.el (spam-split): Do not require spam-use-CHECK to be
27313         enabled if that check is passed to spam-split explicitly; also
27314         fix so 'spam doesn't get converted to spam-split-group when
27315         spam-split-symbolic-return is t.
27316         (spam-find-spam): Find registrations of the article and use those
27317         instead of re-running spam-split to find the spam/ham
27318         classification of the article.
27319         (spam-log-processing-to-registry, spam-log-registered-p)
27320         (spam-log-unregistration-needed-p, spam-log-undo-registration):
27321         Use gnus-error instead of gnus-message.
27322         (spam-log-registration-type): Add function to determine the
27323         classification of a message based on registry entries; will
27324         return nil if both 'spam and 'ham are found.
27325         (spam-check-BBDB): Expand all the BBDB macros here so we can have
27326         a reasonably fast local cache without the loading errors.
27327         (spam-cache-lookups): Set to t by default.
27328         (spam-find-spam): Don't try to guess spam-cache-lookups.
27329         (spam-enter-whitelist, spam-enter-blacklist): Clear the
27330         spam-caches entry.
27331         (spam-filelist-build-cache, spam-filelist-check-cache):
27332         Fix caching of whitelist/blacklist entries.
27333         (spam-check-whitelist, spam-check-blacklist):
27334         Invoke spam-from-listed-p with a type, not a cache variable.
27335         (spam-from-listed-p): Wrap around spam-filelist-check-cache.
27336
27337 2004-01-07  Jesper Harder  <harder@ifa.au.dk>
27338
27339         * message.el (message-cite-prefix-regexp): Use with-syntax-table.
27340
27341         * nnmail.el (nnmail-split-fancy): do.
27342
27343         * mml.el (mml-parse): do.
27344
27345         * gnus-score.el (gnus-enter-score-words-into-hashtb)
27346         (gnus-score-adaptive): do.
27347
27348 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
27349
27350         * gnus-art.el (gnus-treat-emphasize): Ignore Emacs version number.
27351         (gnus-mime-button-map): Don't set keymap parent.
27352         (gnus-button-ctan-directory-regexp): Use shy grouping.
27353         (gnus-prev-page-map): Don't set keymap parent.
27354         (gnus-prev-page-map): Remove duplicated one.
27355         (gnus-next-page-map): Don't set keymap parent.
27356         (gnus-mime-security-button-map): Ditto.
27357
27358         * nnheader.el (nnheader-directory-files-is-safe): Ignore Emacs
27359         version number.
27360
27361         * sha1-el.el (sha1-string-external): Use with-temp-buffer.
27362
27363 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
27364
27365         * canlock.el (canlock-sha1-function): Remove.
27366         (canlock-sha1-function-for-verify): Remove.
27367         (canlock-openssl-program): Remove.
27368         (canlock-openssl-args): Remove.
27369         (canlock-ignore-errors): Remove.
27370         (canlock-sha1-with-openssl): Remove.
27371         (canlock-sha1): Use sha1 instead of to call canlock-sha1-function.
27372         (canlock-verify): Don't use canlock-ignore-errors.
27373
27374         * sha1-el.el (sha1-string-external): Make it can return a string
27375         in binary form.
27376         (sha1-region-external): Ditto.
27377         (sha1-string-internal): Ditto.
27378         (sha1-region-internal): Ditto.
27379         (sha1-region): Ditto.
27380         (sha1-string): Ditto.
27381         (sha1): Ditto.
27382
27383 2004-01-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
27384
27385         * spam.el (spam-report-articles-gmane): New command.
27386
27387 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
27388
27389         * gnus.el: Don't make unnecessary *Group* buffer when loading.
27390
27391         * run-at-time.el (run-at-time-saved): Remove.
27392         (run-at-time): Doc fix.
27393
27394 2004-01-07  Jesper Harder  <harder@ifa.au.dk>
27395
27396         * gnus-sum.el (gnus-summary-limit-to-replied): New command.
27397         (gnus-summary-limit-map): Add it.
27398         (gnus-summary-make-menu-bar): do.
27399
27400 2004-01-06  Teodor Zlatanov  <tzz@lifelogs.com>
27401
27402         * spam.el (spam-cache-lookups, spam-caches, spam-clear-cache):
27403         Make attempt at some caching support (done for BBDB only now).
27404         (spam-find-spam): Set spam-cache-lookups if there are more than 2
27405         addresses to be checked.
27406         (spam-clear-cache-BBDB): Add function, to be invoked by
27407         bbdb-change-hook, and triggering spam-clear-cache of 'spam-use-BBDB.
27408         (spam-check-BBDB): Check and use the caches, if
27409         spam-cache-lookups is on, remove superfluous (provide).
27410
27411 2004-01-06  Reiner Steib  <Reiner.Steib@gmx.de>
27412
27413         * gnus-art.el (gnus-treat-ansi-sequences): Change default.
27414
27415 2004-01-07  Steve Youngs  <sryoungs@bigpond.net.au>
27416
27417         * run-at-time.el (run-at-time-saved): Move to after the definition
27418         of `run-at-time'.
27419
27420         * dgnushack.el: Autoload `font-lock-fontify-buffer' in XEmacs.
27421
27422 2004-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
27423
27424         * gnus-art.el (gnus-article-wash-html-with-w3m): Don't use
27425         mm-w3m-local-map-property.
27426
27427         * mm-view.el (mm-w3m-mode-map): Remove.
27428         (mm-w3m-local-map-property): Remove.
27429         (mm-inline-text-html-render-with-w3m): Don't use
27430         mm-w3m-local-map-property.
27431
27432 2004-01-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
27433
27434         * run-at-time.el: New file.
27435
27436         * dgnushack.el (dgnushack-compile): Don't compile run-at-time
27437         under Emacs.
27438
27439         * gnus.el ((fboundp 'gnus-set-text-properties)): Remove definition
27440         of gnus-set-text-properties.
27441
27442         * gnus-uu.el (gnus-uu-save-article): Ditto.
27443
27444         * gnus-salt.el (gnus-carpal-setup-buffer): Ditto.
27445
27446         * gnus-cite.el (gnus-cite-parse): Ditto.
27447
27448         * gnus-art.el (gnus-button-push): Use set-text-properties instead
27449         of gnus-.
27450
27451         * gnus-xmas.el (run-at-time): Require run-at-time.
27452
27453         * gnus.el: Change calls to nnheader-run-at-time and
27454         password-run-at-time throughout to use run-at-time directly.
27455
27456         * password.el: Remove definition of run-at-time.
27457
27458         * nnheaderxm.el: Remove definition of run-at-time.
27459
27460 2004-01-05  Karl Pflästerer  <sigurd@12move.de>  (tiny change)
27461
27462         * mml.el (mml-minibuffer-read-disposition): Show attachment type
27463         in prompt.
27464
27465 2004-01-06  Steve Youngs  <sryoungs@bigpond.net.au>
27466
27467         * messagexmas.el (message-xmas-redefine): Alias
27468         `message-make-caesar-translation-table' to
27469         ``message-xmas-make-caesar-translation-table' regardless of XEmacs
27470         version.
27471
27472         * gnus-xmas.el (gnus-xmas-set-text-properties): Removed.
27473         (gnus-xmas-define): Don't alias `gnus-set-text-properties' to
27474         `gnus-xmas-set-text-properties'.
27475         (gnus-xmas-redefine): Don't alias `gnus-completing-read' to
27476         `gnus-xmas-completing-read'.
27477         (gnus-xmas-completing-read): Removed.
27478         (gnus-xmas-open-network-stream): Removed.
27479
27480         * gnus-ems.el (gnus-mode-line-modified): Don't conditionalize on
27481         XEmacs version.
27482
27483         * dns.el (dns-make-network-process): Use `open-network-stream'
27484         instead of `gnus-xmas-open-network-stream'.
27485
27486         * dgnushack.el: Remove some XEmacs 21.1 specific stuff.
27487
27488         * .cvsignore: Add auto-autoloads.el, custom-load.el.
27489
27490 2004-01-06  Jesper Harder  <harder@ifa.au.dk>
27491
27492         * gnus-art.el (gnus-mime-display-alternative)
27493         (gnus-insert-mime-button, gnus-insert-mime-security-button)
27494         (gnus-insert-prev-page-button, gnus-insert-next-page-button):
27495         Don't use gnus-local-map-property.
27496
27497         * gnus-util.el (gnus-local-map-property): Remove.
27498
27499         * mm-view.el (mm-view-pkcs7-decrypt):
27500         Replace gnus-completing-read-maybe-default with completing-read.
27501
27502         * gnus-util.el (gnus-completing-read): do.
27503         (gnus-completing-read-maybe-default): Remove.
27504
27505 2004-01-06  Steve Youngs  <sryoungs@bigpond.net.au>
27506
27507         * password.el: Only autoload `run-at-time' if not XEmacs.
27508         Only autoload the itimer functions if XEmacs.
27509
27510 2004-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
27511
27512         * gnus-xmas.el (gnus-xmas-define): Defun char-width for non-MULE
27513         XEmacsen.
27514
27515         * dgnushack.el: Autoload executable-find for XEmacs.
27516
27517 2004-01-06  Jesper Harder  <harder@ifa.au.dk>
27518
27519         * gnus-art.el (gnus-read-string): Remove.
27520         (gnus-summary-pipe-to-muttprint): Replace gnus-read-string with
27521         read-string.
27522
27523 2004-01-05  Teodor Zlatanov  <tzz@lifelogs.com>
27524
27525         * netrc.el: Autoload password-read.
27526         (netrc): Add configuration group.
27527         (netrc-encoding-method, netrc-openssl-path):
27528         Add variables for encoding and decoding of files with symmetric
27529         ciphers.
27530         (netrc-encode): Add assistant function to encode a file with
27531         netrc-encoding-method.
27532         (netrc-parse): Add interactive parameter, added optional
27533         decoding if netrc-encoding-method is non-nil but otherwise
27534         behavior is standard.
27535         (netrc-encrypting-method, netrc-encrypt, netrc-parse):
27536         Do s/encode/encrypt/ everywhere.
27537
27538         * spam.el: Remove executable-find autoload.
27539
27540 2004-01-05  Jesper Harder  <harder@ifa.au.dk>
27541
27542         * gnus-registry.el: Remove Emacs 20 hash table compatibility code.
27543
27544         * gnus-uu.el (gnus-uu-post-encoded): bury-buffer is always fbound.
27545
27546 2004-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
27547
27548         * gnus-art.el (gnus-treat-ansi-sequences)
27549         (article-treat-ansi-sequences): New variable and function.
27550         Suggested by Dan Jacobson <jidanni@jidanni.org>.
27551
27552         * gnus-sum.el (gnus-summary-wash-map, gnus-summary-make-menu-bar):
27553         Use it.
27554
27555 2004-01-05  Jesper Harder  <harder@ifa.au.dk>
27556
27557         * mm-util.el (mm-quote-arg): Remove.
27558
27559         * mm-decode.el (mm-mailcap-command): Replace mm-quote-arg with
27560         shell-quote-argument.
27561
27562         * gnus-uu.el (gnus-uu-command): do.
27563
27564         * gnus-sum.el (gnus-summary-insert-pseudos): do.
27565
27566         * ietf-drums.el (ietf-drums-token-to-list): Replace mm-make-char
27567         with make-char.
27568
27569         * mm-util.el (mm-make-char): Remove.
27570
27571         * mml.el (mml-mode): Replace gnus-add-minor-mode with
27572         add-minor-mode.
27573
27574         * gnus-undo.el (gnus-undo-mode): do.
27575
27576         * gnus-topic.el (gnus-topic-mode): do.
27577
27578         * gnus-sum.el (gnus-dead-summary-mode): do.
27579
27580         * gnus-start.el (gnus-slave-mode): do.
27581
27582         * gnus-salt.el (gnus-binary-mode, gnus-pick-mode): do.
27583
27584         * gnus-ml.el (gnus-mailing-list-mode): do.
27585
27586         * gnus-gl.el (gnus-grouplens-mode): do.
27587
27588         * gnus-draft.el (gnus-draft-mode): do.
27589
27590         * gnus-dired.el (gnus-dired-mode): do.
27591
27592         * gnus-ems.el (gnus-add-minor-mode): Remove.
27593
27594         * gnus-spec.el (gnus-correct-length, gnus-correct-substring):
27595         Replace gnus-char-width with char-width.
27596
27597         * gnus-ems.el (gnus-char-width): Remove.
27598
27599         * gnus-spec.el (gnus-correct-length, gnus-correct-substring):
27600         Replace gnus-char-width with char-width.
27601
27602         * gnus-ems.el (gnus-char-width): Remove.
27603
27604         * spam-stat.el (with-syntax-table): Remove with-syntax-table
27605         definition.
27606         Remove Emacs 20 hash table compatibility code.
27607
27608         * rfc2047.el (with-syntax-table): Remove with-syntax-table Emacs
27609         20 compatibility code.
27610
27611         * spam.el (spam-point-at-eol): Replace with point-at-eol.
27612
27613         * smime.el (smime-point-at-eol): Replace with point-at-eol.
27614
27615         * rfc2047.el (rfc2047-point-at-bol, rfc2047-point-at-eol):
27616         Replace with point-at-{eol,bol}.
27617
27618         * netrc.el (netrc-point-at-eol): Replace with point-at-eol.
27619
27620         * imap.el (imap-point-at-eol): Replace with point-at-eol.
27621
27622         * flow-fill.el (fill-flowed-point-at-bol)
27623         (fill-flowed-point-at-eol): Replace with point-at-{eol,bol}.
27624
27625         * gnus-util.el (gnus-point-at-bol, gnus-point-at-eol): Remove.
27626         Replace with point-at-{eol,bol} throughout all files.
27627
27628 2004-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
27629
27630         * ntlm.el (ntlm-string-as-unibyte): New macro.
27631         (ntlm-build-auth-response): Use it.
27632
27633         Remove Emacs 20 stuff:
27634         * dgnushack.el (dgnushack-compile): Don't modify max-specpdl-size.
27635         (butlast, mapc, remove): Remove the compiler macros.
27636         * gnus-msg.el (gnus-summary-news-other-window): Use remove instead
27637         of delq and copy-sequence.
27638         * gnus-art.el (popup-menu): Remove the compiler macro.
27639         * nnmail.el (nnmail-split-fancy): Don't support customizing with
27640         Emacs 20.
27641
27642 2004-01-05  Simon Josefsson  <jas@extundo.com>
27643
27644         * ntlm.el: Fix namespace.  Change smb-passwd-hash into
27645         ntlm-smb-passwd-hash, smb-owf-encrypt into ntlm-smb-owf-encrypt,
27646         smb-passwd-hash into ntlm-smb-passwd-hash, smbdes-e-p16 into
27647         ntlm-smb-des-e-p16, smbdes-e-p24 into ntlm-smb-des-e-p24, smbhash
27648         into ntlm-smb-hash, smb-sp8 into ntlm-smb-sp8, smb-str-to-key into
27649         ntlm-smb-str-to-key, smb-dohash into ntlm-smb-dohash, smb-perm1
27650         into ntlm-smb-perm1, smb-perm2 into ntlm-smb-perm2, smb-perm3 into
27651         ntlm-smb-perm3, smb-perm4 into ntlm-smb-perm4, smb-perm5 into
27652         ntlm-smb-perm5, smb-perm6 into ntlm-smb-perm6, smb-sc into
27653         ntlm-smb-sc, smb-sbox into ntlm-smb-sbox, string-permute into
27654         ntlm-string-permute, string-lshift into ntlm-string-lshift,
27655         string-xor into ntlm-string-xor.
27656         Suggested by Jesper Harder <harder@myrealbox.com>.
27657
27658         * ntlm.el: Don't include poem.
27659
27660         * md4.el (print-int32, print-string-hexa): Remove.
27661         Suggested by Jesper Harder <harder@myrealbox.com>.
27662
27663         * sasl-ntlm.el, ntlm.el, md4.el: New files.
27664
27665         * hmac-md5.el (md5-binary): Fix byte compile warning.  (This
27666         probably breaks emacs with DL patch, but do we care? Is anyone
27667         still using the DL stuff?)
27668
27669         * sieve-manage.el: Use the password package.
27670         (sieve-manage-read-passwd): Remove.
27671         (sieve-manage-interactive-login): Use password.  Re-add
27672         condition-case around loop.
27673
27674         * pgg.el (pgg-passphrase-cache, pgg-run-at-time): Remove.
27675         (pgg-add-passphrase-cache, pgg-remove-passphrase-cache):
27676         Use the password package.
27677
27678 2003-02-19  Simon Josefsson  <jas@extundo.com>
27679
27680         * sieve-manage.el (sieve-sasl-auth): Quote optional initial SASL
27681         token.
27682
27683 2002-08-07  Simon Josefsson  <jas@extundo.com>
27684
27685         * sieve-manage.el (require): Use SASL, not RFC2104/MD5.
27686         (sieve-manage-authenticators)
27687         (sieve-manage-authenticator-alist): Add some SASL mechs.
27688         (sieve-sasl-auth): New function.
27689         (sieve-manage-cram-md5-auth)
27690         (sieve-manage-plain-auth): Rewrite using SASL library.
27691         (sieve-manage-digest-md5-p, sieve-manage-digest-md5-auth)
27692         (sieve-manage-scram-md5-p, sieve-manage-scram-md5-auth)
27693         (sieve-manage-ntlm-p, sieve-manage-ntlm-auth)
27694         (sieve-manage-login-p, sieve-manage-login-auth): Add wrappers.
27695
27696 2004-01-05  Simon Josefsson  <jas@extundo.com>
27697
27698         * sasl.el, sasl-cram.el, sasl-digest.el, hmac-md5.el, hmac-def.el:
27699         New files.
27700
27701 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
27702
27703         * gnus-group.el (gnus-no-groups-message): Update.
27704
27705         * gnus-sum.el (gnus-summary-insert-new-articles): Remove .
27706
27707 2003-11-09  Simon Josefsson  <jas@extundo.com>
27708
27709         * imap.el: Support for ID IMAP extension (RFC 2971).
27710         (imap-local-variables): Add imap-id.
27711         (imap-id): New variable.
27712         (imap-id): New function.
27713         (imap-parse-response): Parse untagged ID response.
27714         * nnimap.el (nnimap-id): New variable.
27715         (nnimap-open-connection): Use it.
27716
27717 2003-12-28  Simon Josefsson  <jas@extundo.com>
27718
27719         * gnus-score.el (gnus-score-edit-all-score): New.
27720         * gnus-group.el (gnus-group-score-map): Bind it to W e.
27721
27722 2004-01-04  Simon Josefsson  <jas@extundo.com>
27723
27724         * password.el: Add.
27725
27726 2004-01-04  Mario Lang  <lang@zid.tugraz.at>
27727
27728         * dns.el (dns-query-types): Fix typo.
27729         (dns-query-types): New function.
27730         (dns-read-type): Add support for AAAA records, see RFC 3596.  Parse MX,
27731         PTR and SOA replies, see RFC 1035.
27732
27733 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
27734
27735         * gnus.el (gnus-logo-color-style): Change colors to `no'.
27736
27737         * Move to Changelog.2.
27738
27739 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
27740
27741         * gnus.el (gnus-version-number): Bump version.
27742
27743 2004-01-04  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
27744
27745         * gnus.el: No Gnus v0.1 is released.
27746
27747 2004-01-04  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
27748
27749         * gnus.el: No Gnus v0.0 is released.
27750
27751 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
27752
27753         * gnus.el (gnus-version-number): Bump.
27754         (gnus-version): No.
27755
27756 See ChangeLog.2 for earlier changes.
27757
27758   Copyright (C) 2004-2014 Free Software Foundation, Inc.
27759
27760   This file is part of GNU Emacs.
27761
27762   GNU Emacs is free software: you can redistribute it and/or modify
27763   it under the terms of the GNU General Public License as published by
27764   the Free Software Foundation, either version 3 of the License, or
27765   (at your option) any later version.
27766
27767   GNU Emacs is distributed in the hope that it will be useful,
27768   but WITHOUT ANY WARRANTY; without even the implied warranty of
27769   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
27770   GNU General Public License for more details.
27771
27772   You should have received a copy of the GNU General Public License
27773   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
27774
27775 ;; Local Variables:
27776 ;; coding: utf-8
27777 ;; fill-column: 79
27778 ;; add-log-time-zone-rule: t
27779 ;; End: