Do not overwrite preexisting contents of unread-command-events
[gnus] / lisp / ChangeLog
1 2015-08-02  David Kastrup  <dak@gnu.org>
2
3         * gnus-art.el (gnus-article-describe-key)
4         (gnus-article-describe-key-briefly):
5         Do not overwrite preexisting contents of unread-command-events.
6
7 2015-08-02  Nikolaus Rath  <Nikolaus@rath.org>
8
9         * nnimap.el (nnimap-request-move-article)
10         (nnimap-process-expiry-targets, nnimap-split-incoming-mail): Use MOVE
11         extension if available.
12
13 2015-08-02  Nikolaus Rath  <Nikolaus@rath.org>
14
15         * nnimap.el (nnimap-open-connection-1): explicitly ask server for
16         capabilities instead of relying on LOGIN response.
17
18 2015-07-31  Paul Eggert  <eggert@cs.ucla.edu>
19
20         * nnbabyl.el (nnbabyl-retrieve-headers):
21         * nndiary.el (nndiary-retrieve-headers):
22         * nneething.el (nneething-retrieve-headers):
23         * nnmbox.el (nnmbox-retrieve-headers):
24         * nnmh.el (nnmh-retrieve-headers):
25         * nnml.el (nnml-retrieve-headers):
26         * nnspool.el (nnspool-retrieve-headers):
27         * nntp.el (nntp-retrieve-headers, nntp-retrieve-articles):
28         Prefer (floor (* 100.0 NUMERATOR) DENOMINATOR) when calculating
29         progress-report percentages and the like.  This avoids problems
30         if (* 100 NUMERATOR) would overflow.
31
32         * gnus-registry.el (gnus-registry-import-eld):
33         * registry.el (registry-reindex):
34         Use (* 100.0 ...) rather than (* 100 ...) to avoid int overflow issues.
35
36 2015-07-17  Julien Danjou  <jd@abydos>
37
38         * sieve-mode.el (sieve-font-lock-keywords): Add missing "body" test
39         command.
40
41 2015-07-11  Eric Abrahamsen  <eric@ericabrahamsen.net>
42
43         * gnus-registry.el (gnus-registry--set/remove-mark): Correct the order
44         of function arguments.
45
46 2015-07-10  Stefan Monnier  <monnier@iro.umontreal.ca>
47
48         * nnimap.el: Clean up "unused var" warnings.
49         (auth-source-creation-prompts): Declare.
50         (nnimap-retrieve-headers, nnimap-status-message)
51         (nnimap-request-create-group, nnimap-request-delete-group)
52         (nnimap-close-group, nnimap-request-move-article)
53         (nnimap-request-accept-article, nnimap-request-newgroups)
54         (nnimap-request-post, nnimap-dummy-active-number)
55         (nnimap-save-mail-spec, nnimap-get-groups): Add _ to unused vars.
56         (nnimap-parse-flags): Remove unused var `p'.
57         (nnimap-retrieve-group-data-early): Remove unused var `groups'.
58         (nnimap-flags-to-marks): Remove unused var `totalp'.
59
60 2015-07-09  Nikolaus Rath  <Nikolaus@rath.org>
61
62         * nnimap.el (nnimap-transform-headers): Don't assume that UID comes
63         before RFC822.SIZE.
64
65 2015-07-09  Nikolaus Rath  <Nikolaus@rath.org>
66
67         * nnimap.el (nnimap-open-connection-1): Always query capabilities,
68         so that a 'plain value for the `nnimap-stream' server variable is
69         handled correctly.
70
71 2015-07-08  Eric Abrahamsen  <eric@ericabrahamsen.net>
72
73         Remove unused let variables
74         * nnimap.el (nnimap-request-group): Variables are not used.
75
76         Check if group names are already strings
77         * gnus-group.el (gnus-group-group-name):
78         The group name may already be a string.
79         Specifically, in the group list reached from the *Server* buffer,
80         the 'gnus-group text property returns a string.  Everywhere else
81         it returns a symbol.
82
83 2015-06-24  Stefan Monnier  <monnier@iro.umontreal.ca>
84
85         * nnmaildir.el (nnmaildir--prepare): Use a more functional style.
86         (nnmaildir--update-nov): Remove unused var `numdir'.
87         (nnmaildir-request-type, nnmaildir--scan, nnmaildir-request-newgroups)
88         (nnmaildir-request-group, nnmaildir-request-create-group)
89         (nnmaildir-request-post, nnmaildir-request-move-article)
90         (nnmaildir-request-accept-article, nnmaildir-active-number):
91         Mark unused args.
92         (nnmaildir-get-new-mail, nnmaildir-group-alist, nnmaildir-active-file):
93         Declare.
94         (nnmaildir-request-scan): Remove unused vars `group' and `grp-dir'.
95         (nnmaildir-request-update-info): Remove unused vars `dotfile', `num',
96         `mark', `end', `new-mark', and `mark-sym'.
97         (nnmaildir-retrieve-headers):
98         Remove unused args `srv-dir', `dir', `nlist2'.
99         (nnmaildir-request-expire-articles):
100         Remove unused vars `article', `stop' and `nlist2'.
101         (nnmaildir-request-set-mark): Remove unused vars `begin', `article' and
102         `end'.  Use nnmaildir--article when dyn-binding is needed.
103         Give the value directly in the `let' for `del-mark', `del-action',
104         `add-action', and `set-action'.  Don't use `add-to-list' on a local var.
105         (nnmaildir-close-server):
106         Declare those local vars that need to be dyn-bound.
107
108 2015-06-03  Paul Eggert  <eggert@cs.ucla.edu>
109
110         * gnus-art.el (gnus-button-alist): Also support quotes 'like this'.
111
112 2015-05-31  David Engster  <deng@randomsample.de>
113
114         * tests/gnustest-nntp.el (gnustest-ping-host): Call 'sleep' binary
115         instead of using `sleep-for', as the latter does not seem to reliably
116         wait (see for instance bug 15990).
117
118 2015-05-29  Katsumi Yamaoka  <yamaoka@jpl.org>
119
120         * gnus-art.el (gnus-button-alist): Re-revert last change.
121         cf. <http://news.gmane.org/group/gmane.emacs.devel/thread=186896>
122
123 2015-05-28  Paul Eggert  <eggert@cs.ucla.edu>
124
125         * gnus-art.el (gnus-button-alist): Revert last change.
126         It wasn't that important, and it caused a Gnus build to fail.  See:
127         http://www.randomsample.de:4456/builders/emacs-devel/builds/734
128
129         * gnus-art.el (gnus-button-alist):
130         Also treat "‘" and "’" as quoting chars.
131
132 2015-05-19  Paul Eggert  <eggert@cs.ucla.edu>
133
134         * gnus-art.el (gnus-treat-strip-list-identifiers)
135         (gnus-article-mode-syntax-table):
136         * gnus-group.el (gnus-group-nnimap-edit-acl):
137         * canlock.el, deuglify.el: Fix minor quoting problems in doc strings,
138         e.g., missing quote, ``x'' where `x' was meant, etc.
139
140 2015-05-14  Katsumi Yamaoka  <yamaoka@jpl.org>
141
142         * format-spec.el (format-spec, format-spec-make): Work for XEmacs.
143         Use (char-to-int c) instead of (+ c 0) that the byte compiler optimizes
144         into just c.
145
146 2015-05-11  Katsumi Yamaoka  <yamaoka@jpl.org>
147
148         * format-spec.el (format-spec, format-spec-make): Work for XEmacs.
149         Normalize characters into numbers in spec keys.
150
151 2015-05-07  Katsumi Yamaoka  <yamaoka@jpl.org>
152
153         * dgnushack.el (declare-function): Redefine it to use autoload.
154         * lpath.el (gnus-html-prefetch-images): Declare.
155
156 2015-05-04  Glenn Morris  <rgm@gnu.org>
157
158         * gnus-art.el (nneething-get-file-name): Declare rather than autoload.
159
160         * gnus-async.el (gnus-html-prefetch-images): Remove pointless autoload.
161
162         * gnus-sync.el (gnus-group-topic): Autoload at run-time.
163         (gnus-topic-create-topic, gnus-topic-enter-dribble):
164         Declare rather than autoload.
165
166         * mm-archive.el (gnus-recursive-directory-files)
167         (mailcap-extension-to-mime): Autoload at run-time.
168
169         * mm-util.el (latin-unity-massage-name)
170         (latin-unity-maybe-remap, latin-unity-representations-feasible-region)
171         (latin-unity-representations-present-region):
172         Declare rather than autoload.
173
174         * mml-smime.el (epg-make-context, epg-passphrase-callback-function):
175         Autoload at run-time.
176         (epg-context-set-signers, epg-context-result-for)
177         (epg-new-signature-digest-algorithm, epg-verify-result-to-string)
178         (epg-list-keys, epg-verify-string, epg-sign-string, epg-encrypt-string)
179         (epg-context-set-passphrase-callback, epg-sub-key-fingerprint)
180         (epg-configuration, epg-expand-group, epa-select-keys):
181         Declare rather than autoload.
182
183         * nnir.el (nnimap-change-group, nnimap-make-thread-query):
184         Autoload at run-time.
185         (gnus-group-topic-name, nnimap-buffer, nnimap-command)
186         (gnus-registry-get-id-key, gnus-registry-action):
187         Declare rather than autoload.
188
189         * nnmail.el (mail-send-and-exit): Autoload at run-time.
190
191         * spam.el (spam-stat-buffer-change-to-non-spam)
192         (spam-stat-buffer-change-to-spam, spam-stat-buffer-is-non-spam)
193         (spam-stat-buffer-is-spam, spam-stat-load, spam-stat-save)
194         (spam-stat-split-fancy): Remove pointless autoloads.
195
196         * mm-view.el (epg-decrypt-string): Autoload.
197         * mml-smime.el (epg-key-sub-key-list, epg-sub-key-capability)
198         (epg-sub-key-validity): Fix declarations.
199
200 2015-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
201
202         * gnus.el: Ma Gnus v0.13 is released.
203
204 2015-05-01  Glenn Morris  <rgm@gnu.org>
205
206         * gnus-util.el (iswitchb-read-buffer):
207         * mm-decode.el (libxml-parse-html-region):
208         * mml.el (libxml-parse-html-region):
209         * nnrss.el (libxml-parse-html-region): Update declaration.
210
211 2015-04-27  Glenn Morris  <rgm@gnu.org>
212
213         * message.el (gnus-extract-address-components):
214         Remove bogus declaration that was masking previous problem.
215
216 2015-04-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
217
218         * hashcash.el (hashcash-insert-payment-async-2): Save the mark when
219         altering the buffer.
220         (hashcash-insert-payment-async-2): Revert previous change because it
221         still means that the mark is moving around.
222
223 2015-04-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
224
225         * gnus-uu.el (gnus-uu-save-article):
226         Make the save-restriction/widen calls make more sense.
227
228 2015-04-14  Katsumi Yamaoka  <yamaoka@jpl.org>
229
230         * gnus-art.el (gnus-use-idna):
231         * gnus-sum.el (gnus-summary-idna-message):
232         * message.el (message-use-idna):
233         Catch the invalid-operation error that idna.el will issue.
234
235 2015-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
236
237         * gnus-group.el (gnus-group--setup-tool-bar-update):
238         cursor-sensor-functions should be a list of functions.
239
240 2015-04-13  Stefan Monnier  <monnier@iro.umontreal.ca>
241
242         * gnus-group.el (gnus-tmp-*): Declare.
243         (gnus-update-group-mark-positions): Remove unused `topic' var.
244         (gnus-group-insert-group-line): Remove unused var `header'.
245         (gnus-group--setup-tool-bar-update): New function.
246         (gnus-group-insert-group-line): Use it.
247         (gnus-group-update-eval-form): Declare local
248         dynamically-bound variables.
249         (gnus-group-unsubscribe-group): Use \` and \' to match string bounds.
250
251         * gnus-topic.el (gnus-topic-jump-to-topic)
252         (gnus-group-prepare-topics, gnus-topic-update-topic)
253         (gnus-topic-change-level, gnus-topic-catchup-articles)
254         (gnus-topic-remove-group, gnus-topic-delete, gnus-topic-indent):
255         Use inhibit-read-only.
256         (gnus-topic-prepare-topic): Use gnus-group--setup-tool-bar-update.
257         (gnus-topic-mode): Use define-minor-mode and derived-mode-p.
258
259 2015-04-12  João Távora  <joaotavora@gmail.com>
260
261         * message.el (message-mode):
262         Use `set' and `make-local-variable' instead of `setq-local'.
263
264 2015-04-12  Johan Bockgård  <bojohan@gnu.org>
265
266         * gnus-sum.el (gnus-summary-refer-thread):
267         Make sure gnus-newsgroup-unreads remains sorted.
268
269 2015-04-12  João Távora  <joaotavora@gmail.com>
270
271         Improve sexp-based movement in message-mode
272         * message.el (message--syntax-propertize): New function.
273         (message-mode): Set syntax-related vars.d
274         (message-smileys): New variable.
275
276 2015-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
277
278         * gnus-art.el (gnus-hidden-properties): Simplify.
279         (gnus-article-hide-text, gnus-article-unhide-text)
280         (gnus-article-unhide-text-type): Remove special handling of
281         `intangible' since that property is not used any more.
282         (gnus-article-treat-body-boundary): Use gnus-hidden-properties.
283
284 2015-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
285
286         * dgnushack.el (define-obsolete-function-alias): Add a compiler-marco
287         and a runtime function for it, of which the XEmacs version takes only
288         two arguments.
289
290 2015-04-06  Paul Eggert  <eggert@cs.ucla.edu>
291
292         Use American spelling for 'normalize'
293         * rtree.el (rtree-normalize-range): Rename from rtree-normalise-range.
294         All uses changed.  Add an alias for obsolete usages.
295
296 2015-04-03  Katsumi Yamaoka  <yamaoka@jpl.org>
297
298         * gnus-art.el (gnus-article-browse-html-save-cid-content):
299         Always return relative file name.
300         (gnus-article-browse-html-parts):
301         Make external links absolute and cid file names relative.
302
303 2015-04-01  Eric Abrahamsen  <eric@ericabrahamsen.net>
304
305         * registry.el (registry-prune): Re-use `registry-full' in
306         `registry-prune'.  It's a bit of redundant work, but safer.
307         Also ensure that target-size is an integer.
308
309 2015-03-31  Daiki Ueno  <ueno@gnu.org>
310
311         * plstore.el (plstore--decrypt): Clear entry in
312         `plstore-passphrase-alist' if decryption failed (bug#20030).
313
314 2015-03-28  Adam Sjøgren  <asjo@koldfront.dk>
315
316         * gnus-sum.el (gnus-summary-make-menu-bar): Add "Display HTML images"
317         to "Display" menu.
318
319 2015-03-24  Eric Abrahamsen  <eric@ericabrahamsen.net>
320
321         * nnimap.el (nnimap-split-incoming-mail): If a message is already
322         in the group it should be split to, don't re-copy it into the group.
323
324 2015-03-23  Ben Bacarisse  <ben.lists@bsb.me.uk>  (tiny change)
325
326         * nnmh.el (nnmh-request-expire-articles):
327         Work for the case nnmail-expiry-target is an nnmh group (bug#20170).
328
329 2015-03-21  Eric Abrahamsen  <eric@ericabrahamsen.net>
330
331         * registry.el (registry-lookup-secondary, registry-full)
332         (registry-prune, registry-collect-prune-candidates):
333         * gnus-registry.el (gnus-registry-load): Use slot names rather than
334         initarg names in `oref' and `oset'.
335
336 2015-03-19  Eric Abrahamsen  <eric@ericabrahamsen.net>
337
338         * registry.el (registry-prune): Allow registry to reach full size
339         before pruning.
340
341 2015-03-19  Eric Abrahamsen  <eric@ericabrahamsen.net>
342
343         * registry.el (registry-collect-prune-candidates): Fix call to
344         cl-subseq.
345
346 2015-03-11  Katsumi Yamaoka  <yamaoka@jpl.org>
347
348         * registry.el (registry-db): Temporary fix old Emacsen compilation.
349
350 2015-03-11  Stefan Monnier  <monnier@iro.umontreal.ca>
351
352         * gnus-registry.el (gnus-registry-handle-action)
353         (gnus-registry-post-process-groups): Don't add-to-list on a local var.
354         (gnus-registry-keywords): Make it do something.
355         (gnus-registry-import-eld): Remove unused var `new-entry'.
356         (gnus-registry-action): Remove unused var `to-name'.
357         (gnus-registry-make-db): Prefer `make-instance' to avoid
358         compiler warnings.
359         (gnus-registry-load, gnus-registry-fixup-registry): Avoid `oset'.
360
361         * registry.el (registry-db): Don't oset-default an instance-allocated
362         slot.
363
364 2015-03-10  Glenn Morris  <rgm@gnu.org>
365
366         * message.el (message-valid-fqdn-regexp): Bump :version for
367         2014-11-17 change.
368
369 2015-03-07  Rasmus Pank Roulund  <rasmus@pank.eu>
370
371         * gnus-notifications.el (gnus-notifications-action): Raise window
372         frame.
373         (gnus-notifications-action): Allow mark as read.
374         (gnus-notifications-notify): Show uption to mark as read.
375
376 2015-03-07  Stefan Monnier  <monnier@iro.umontreal.ca>
377
378         * registry.el (registry-lookup-breaks-before-lexbind, registry-lookup)
379         (registry-search, registry-delete, registry-size, registry-insert)
380         (registry-reindex, registry-collect-prune-candidates):
381         * gnus-registry.el (gnus-registry-fixup-registry)
382         (gnus-registry-remove-extra-data): Use slot names rather than initarg
383         names in `oref' and `oset'.
384
385 2015-02-27  Eric Abrahamsen  <eric@ericabrahamsen.net>
386         * lisp/nnimap.el (nnimap-split-incoming-mail): If a message is already
387         in the group it should be split to, don't re-copy it into the group.
388
389 2015-02-25  Adam Sjøgren  <asjo@koldfront.dk>
390
391         * message.el (message-insert-formatted-citation-line): Change %F to
392         fall back to email address if no first name could be determined.
393
394 2015-02-26  Katsumi Yamaoka  <yamaoka@jpl.org>
395
396         * gnus-art.el (gnus-mime-inline-part, gnus-mm-display-part):
397         Fix point motion when removing displayed MIME part.
398         (gnus-article-edit-part): Make jumping to the next part really work
399         when deleting or stripping.
400         (gnus-mime-buttonize-attachments-in-header): Make header attachment
401         buttons identical to the ones in the article body so as to work deleting
402         and stripping.
403
404 2015-02-25  Katsumi Yamaoka  <yamaoka@jpl.org>
405
406         * mm-decode.el (mm-shr)
407         * mm-view.el (mm-inline-text-html-render-with-w3m):
408         Revert my bogus change that made the start marker of a part
409         the "moves after insertion" type.
410
411 2015-02-23  Tassilo Horn  <tsdh@gnu.org>
412
413         * mailcap.el (mailcap-mime-data): Support `pdf-view-mode' (from PDF
414         Tools: https://github.com/politza/pdf-tools) for viewing PDF
415         attachments in emacs.
416
417 2015-02-23  Magnus Henoch  <magnus.henoch@gmail.com>
418
419         * sasl.el (sasl-mechanism-alist): Refer to sasl-scram-rfc
420         instead of sasl-scram-sha-1, as the former is the name that can be
421         required.
422
423         * sasl-scram-rfc.el (sasl-scram-sha-1-steps)
424         (sasl-scram-sha-1-client-final-message)
425         (sasl-scram-sha-1-authenticate-server): Move to end of file.
426
427 2015-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
428
429         * gnus-art.el (gnus-mime-display-single): Avoid "End of buffer" error.
430
431 2015-02-16  Katsumi Yamaoka  <yamaoka@jpl.org>
432
433         * sasl-scram-rfc.el (sasl-cl-coerce, sasl-cl-mapcar-many, sasl-cl-map)
434         (sasl-string-prefix-p): New compatibility functions.
435
436 2015-02-15  Lars Ingebrigtsen  <larsi@gnus.org>
437
438         * gnus-compat.el (process-live-p): Added new compat function for Emacs
439         23.
440
441 2015-02-14  Eric Abrahamsen  <eric@ericabrahamsen.net>
442
443         * nnimap.el (nnimap-get-groups): Correctly read unquoted group names
444         from the server LIST response.
445
446 2015-02-14  Lars Ingebrigtsen  <larsi@gnus.org>
447
448         * nnimap.el (nnimap-retrieve-headers): If the server closes connection
449         during header retrieval, error out instead of interpreting the data in
450         the buffer as the only messages there.  This way, we don't mark
451         articles as read on a server hangup (bug#19035).
452
453         * mm-decode.el (mm-head-p): New function.
454         (mm-display-part): Go to a blank line when inserting parts internally.
455
456 2015-02-13  Magnus Henoch  <magnus.henoch@gmail.com>
457
458         * sasl-scram-rfc.el: New file.
459
460         * sasl.el (sasl-mechanisms): Remove SCRAM-MD5.
461         Add SCRAM-SHA-1 first.
462         (sasl-mechanism-alist): Remove SCRAM-MD5 entry.  Add SCRAM-SHA-1
463         entry (bug#17636).
464
465 2015-02-13  Lars Ingebrigtsen  <larsi@gnus.org>
466
467         * gnus-msg.el (gnus-msg-mail): Don't let-bind `gnus-newsgroup-name' so
468         that we don't get a warning when setting the buffer-local variable
469         (bug#19573).
470
471         * nnmail.el (nnmail-expiry-target-group): Supply the info structure to
472         `gnus-request-group'.
473
474 2015-02-12  Katsumi Yamaoka  <yamaoka@jpl.org>
475
476         * gnus-art.el (gnus-article-browse-html-save-cid-content)
477         (gnus-article-browse-html-parts): Make cid file names relative if and
478         only if html doesn't specify <base> directory.
479
480 2015-02-11  Lars Ingebrigtsen  <larsi@gnus.org>
481
482         * gnus-art.el (gnus-treat-buttonize): Don't re-buttonize URLs in HTML
483         parts, because that breaks filling (since buttons are in a bold face).
484
485 2015-02-10  Katsumi Yamaoka  <yamaoka@jpl.org>
486
487         * mm-decode.el (mm-convert-shr-links): Delete useless variable `face';
488         use gnus-overlays-at and gnus-overlay-put.
489
490 2015-02-10  Lars Ingebrigtsen  <larsi@gnus.org>
491
492         * mm-decode.el (mm-shr): Only pass the fill column when not using
493         fonts, because limiting the width to what's appropriate for followups
494         doesn't really help when not using proportional fonts.
495
496 2015-02-09  Lars Ingebrigtsen  <larsi@gnus.org>
497
498         * mm-decode.el (mm-convert-shr-links): Don't overwrite the faces from
499         shr, beacause that breaks folding.
500         (mm-shr): Don't shorten the width when using fonts.
501
502 2015-02-05  Teodor Zlatanov  <tzz@lifelogs.com>
503
504         * gnus-start.el (gnus-save-newsrc-file-check-timestamp): Remove
505         variable; always check the newrc timestamp.
506         (gnus-save-newsrc-file): Always check timestamp.
507
508 2015-02-05  Timo Lilja  <timo.lilja@iki.fi>  (tiny change)
509
510         * mail-source.el (mail-source-call-script): If scripts exit with an
511         error, pop up an error buffer.
512
513 2015-02-05  Lars Ingebrigtsen  <larsi@gnus.org>
514
515         * gnus-sum.el (gnus-extra-headers): Add the popular Gmail X-GM-LABELS
516         as a default.
517
518         * nnimap.el (nnimap-request-group-scan): Ensure that we've selected the
519         correct server.
520
521 2015-02-05  Vincent Bernat  <bernat@luffy.cx>  (tiny change)
522
523         * nnimap.el (nnimap-request-group-scan): Fix the function name.
524
525         * gnus-int.el (gnus-request-group-scan): Use the correct function name.
526
527 2015-02-05  Lars Ingebrigtsen  <larsi@gnus.org>
528
529         * gnus-sum.el (gnus-select-newsgroup): Pass the group info along so
530         that nnimap works for non-activated backends.
531
532 2015-02-04  Stefan Monnier  <monnier@iro.umontreal.ca>
533
534         * mm-util.el (mm-with-unibyte-current-buffer): Don't emit a warning
535         message, since we already get an obsolescence message.  Use `declare'.
536
537 2015-02-04  Eric Abrahamsen  <eric@ericabrahamsen.net>
538
539         * nnir.el: Revert "Enable non-ASCII IMAP searches".
540
541 2015-01-30  Glenn Morris  <rgm@gnu.org>
542
543         * gnus-registry.el (gnus-registry-max-pruned-entries)
544         (gnus-registry-prune-factor, gnus-registry-default-sort-function):
545         Fix :version.
546         (gnus-registry-default-sort-function): Improve :type.
547
548 2015-01-29  Lars Ingebrigtsen  <larsi@gnus.org>
549
550         * nnimap.el (nnimap-request-group): Allow running this function on
551         groups that don't exist in Gnus yet.
552         (nnimap-request-group): Revert previous patch since that made it
553         impossible to enter nnimap groups.
554
555         * message.el (message-smtpmail-send-it): Remove the mail header
556         separator before sending.
557
558 2015-01-28  Elias Oltmanns  <eo@nebensachen.de>
559
560         * nnimap.el (nnimap-find-expired-articles): Fix handling of
561         (expiry-wait . never).
562
563 2015-01-28  Lars Ingebrigtsen  <larsi@gnus.org>
564
565         * nnimap.el (nnimap-request-group): Clear the buffer before returning
566         the data.
567
568 2015-01-27  Katsumi Yamaoka  <yamaoka@jpl.org>
569
570         * gnus-compat.el (string-bytes): Work for XEmacs.
571
572 2015-01-27  Lars Ingebrigtsen  <larsi@gnus.org>
573
574         * gnus-compat.el (string-bytes): Avoid compilation error on XEmacs.
575
576         * nnir.el (nnir-imap-expr-to-imap): Check for literal+ capability in
577         IMAP.
578
579 2015-01-27  Eric Abrahamsen  <eric@ericabrahamsen.net>
580
581         * nnir.el (nnir-run-imap): Enable non-ASCII IMAP searches.
582
583         * nnmairix.el ("nnmairix"): Declare nnmairix as virtual.
584
585         * gnus-bcklg.el (gnus-backlog-enter-article): No virtual groups should
586         be added to the backlog.
587
588 2015-01-26  Tassilo Horn  <tsdh@gnu.org>
589
590         * Makefile.in (all total, warn, fail-on-warning): Call gnus-load.el
591         target with a recursive make call.
592
593 2015-01-26  Trevor Murphy  <trevor.m.murphy@gmail.com>
594
595         * nnimap.el (nnimap-header-parameters): Refactor and request
596         X-GM-LABELS if it's been announced.
597         (nnimap-transform-headers): Gather and output GM-LABELS.
598
599 2014-12-30  Peder O. Klingenberg  <peder@klingenberg.no>
600
601         * mm-decode.el (mm-display-part): Make non-string methods work.
602         Non-string methods are funcalled and work just fine, the test was
603         bogus.
604         * mm-decode.el (mm-display-external): Show "external" lisp viewers in
605         whole frame.
606
607 2015-01-26  Lars Ingebrigtsen  <larsi@gnus.org>
608
609         * nnimap.el (nnimap-request-accept-article): Allow respooling using
610         nnimap.
611
612         * gnus-group.el (gnus-group-get-new-news-this-group): Explicitly
613         request rescans when being run interactively.
614
615         * nnimap.el (nnimap-request-group): Don't rescan the group here,
616         because that can be very slow in large groups.
617
618         * gnus-int.el (gnus-request-group-scan): New backend function.
619
620         * nnimap.el (nnimap-request-scan-group): Implement in on IMAP.
621
622 2015-01-25  Lars Ingebrigtsen  <larsi@gnus.org>
623
624         * gnus-group.el (gnus-group-suspend): Close all backends.
625
626 2015-01-19  Paul Eggert  <eggert@cs.ucla.edu>
627
628         * dgnushack.el (dgnushack-compile-file): New function.
629         (dgnushack-compile): Use it (bug#19514).
630
631 2015-01-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
632
633         * nntp.el (nntp-send-authinfo): Error out if the password is wrong.
634
635 2015-01-08  Stefan Monnier  <monnier@iro.umontreal.ca>
636
637         * registry.el: Don't use <class> as a variable.
638
639 2014-12-29  Paul Eggert  <eggert@cs.ucla.edu>
640
641         system-name's returned value can vary
642         Also, the system-name variable is now obsolete.
643         Fixes Bug#19438.
644         * message.el (message-make-fqdn):
645         * nnvirtual.el (nnvirtual-retrieve-headers)
646         (nnvirtual-update-xref-header): Prefer (system-name) to system-name,
647         and avoid naming locals 'system-name'.
648
649 2014-12-29  Lars Ingebrigtsen  <larsi@gnus.org>
650
651         * mm-decode.el (mm-shr): Bind `shr-width' to `fill-column' so that
652         lines don't get overlong when responding.
653
654 2014-12-20  Katsumi Yamaoka  <yamaoka@jpl.org>
655
656         * registry.el (cl-remf, cl-loop, cl-subseq):
657         Alias to remf, loop, and subseq respectively for old Emacsen.
658
659 2014-12-19  Andreas Schwab  <schwab@linux-m68k.org>
660
661         * gnus-group.el (gnus-read-ephemeral-bug-group):
662         Bind coding-system-for-read and coding-system-for-write only around
663         with-temp-file, and make buffer unibyte.  Don't write temp file twice.
664
665 2014-12-18  Paul Eggert  <eggert@cs.ucla.edu>
666
667         * registry.el (registry-db): Set default slot later.
668         This is because its value is not a literal integer.
669
670 2014-12-18  Teodor Zlatanov  <tzz@lifelogs.com>
671
672         * registry.el (registry-db): Fix default registry-db max-size.
673
674 2014-12-18  Stefan Monnier  <monnier@iro.umontreal.ca>
675
676         * mm-util.el (mm-with-unibyte-current-buffer): Mark obsolete and
677         add warning.
678
679         * gnus-art.el: Fix up compiler warnings.
680         (article-display-face, article-display-x-face): Remove unused `face'.
681         (gnus-article-browse-html-save-cid-content): Remove unused var `type'.
682         (article-date-ut): Remove unused var `first'.
683         (gnus-article-prepare): Remove unused var `gnus-article'.
684         (gnus-mime-save-part-and-strip): Remove unused var `param'.
685         (gnus-mime-inline-part): Remove unused vars `charset', `contents', and
686         `coding-system' along with corresponding dead code.
687         (gnus-mime-view-part-externally): Remove unused var
688         `mm-user-display-methods'.
689         (gnus-insert-mime-button): Let-bind gnus-tmp-id explicitly.
690         (gnus-display-mime): Remove unused var `handle'.
691         (gnus-mime-display-alternative): Remove unused var `props'.
692         (gnus-article-read-summary-keys): Remove unused var `up-to-top'.
693         (gnus-article-edit-done): Remove unused var `p'.
694         (gnus-url-mailto): Remove unused var `to'.
695         (gnus-treat-article): Let-bind gnus-treat-condition, part-number,
696         total-parts, and gnus-treat-type explicitly.  Remove unused var `elem'.
697
698 2014-12-18  Eric Abrahamsen  <eric@ericabrahamsen.net>
699
700         * registry.el (registry-db): Consolidate the :max-hard and :max-soft
701         slots into a :max-size slot.
702         (registry-db-version): Add new variable for database version number.
703         (registry-prune): Use :max-size slot. Accept and use a sort-function
704         argument.
705         (registry-collect-prune-candidates): Add new function for finding
706         non-precious pruning candidates.
707         (registry-prune-hard-candidates, registry-prune-soft-candidates):
708         Remove obsolete functions.
709         (initialize-instance): Upgrade registry version when starting.
710
711         * gnus-registry.el (gnus-registry-prune-factor): Add new variable.
712         (gnus-registry-max-pruned-entries): Remove obsolete variable.
713         (gnus-registry-cache-file): Change default
714         filename extension to "eieio".
715         (gnus-registry-read): Add new function, split out from
716         `gnus-registry-load', that does the actual object reading.
717         (gnus-registry-load): Use it. Add condition case handler to check for
718         old filename extension and rename to the new one.
719         (gnus-registry-default-sort-function): New variable to specify a sort
720         function to use when pruning.
721         (gnus-registry-save, gnus-registry-insert): Use it.
722         (gnus-registry-sort-by-creation-time): Define a default sort function.
723
724         * tests/gnustest-registry.el (gnustest-registry-make-testable-db):
725         Adjust test for new object signature.
726         (gnustest-registry-pruning-test): Add new pruning test.
727         (gnustest-registry-sort-function): Default sort function for testing.
728         (gnustest-registry-pruning-sort-test): New test for sorting.
729
730 2014-12-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
731
732         * gnus-art.el (gnus-article-mime-handles): Refactor out into own
733         function for reuse.
734         (gnus-mime-buttonize-attachments-in-header): Adjust.
735
736 2014-12-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
737
738         * message.el (message-change-subject): Really check whether the subject
739         changed.
740
741 2014-12-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
742
743         * mailcap.el (mailcap-mime-data): Add doc-view-mode as a viewer for
744         PDFs.
745         (mailcap-view-mime): New function.
746
747 2014-12-01  Glenn Morris  <rgm@gnu.org>
748
749         * gnus-cloud.el (gnus-cloud): Add :version tag.
750
751 2014-11-27  Katsumi Yamaoka  <yamaoka@jpl.org>
752
753         * gnus-art.el (gnus-use-idna):
754         * gnus-sum.el (gnus-summary-idna-message):
755         * message.el (message-use-idna):
756         Protect against nil value for idna-program.
757
758         * message.el (message-use-idna): Load Mule-UCS for XEmacs 21.4.
759
760 2014-11-26  John Mastro  <john.b.mastro@gmail.com>  (tiny change)
761
762         * auth-source.el (auth-source-macos-keychain-search-items): Return
763         result of `auth-source-macos-keychain-result-append' (bug#19074).
764
765 2014-11-25  Glenn Morris  <rgm@gnu.org>
766
767         * gnus-start.el (gnus-save-newsrc-file-check-timestamp):
768         Add :version tag.
769
770 2014-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
771
772         * pop3.el (pop3-open-server): Warn unless encrypted.
773
774         * nnimap.el (nnimap-open-connection-1): Warn unless encrypted.
775
776 2014-11-18  Paul Eggert  <eggert@cs.ucla.edu>
777
778         Port new time stamp handling to Emacs 23.2.
779         This fix is for Gnus.  Problem reported by Katsumi Yamaoka.
780         * time-date.el (time-add, time-subtract, time-less-p):
781         Use eval-and-compile, not eval-when-compile.
782
783 2014-11-17  Albert Krewinkel  <albert@zeitkraut.de>
784
785         * message.el (message-valid-fqdn-regexp): Add non-internaional new
786         TLDs.
787
788 2014-11-17  Paul Eggert  <eggert@cs.ucla.edu>
789
790         Port new time stamp handling to old Emacs and to XEmacs.
791         This is needed for Gnus, which copies time-date.el and which
792         runs on older Emacs implementations.
793         * time-date.el (with-decoded-time-value):
794         Handle 'nil' and floating-point arg more compatibly with new Emacs.
795         (encode-time-value, with-decoded-time-value):
796         Obsolete only if new Emacs.
797         (time-add, time-subtract, time-less-p): Define if not new Emacs.
798
799         Improve time stamp handling, and be more consistent about it.
800         This implements a suggestion made in:
801         http://lists.gnu.org/archive/html/emacs-devel/2014-10/msg00587.html
802         Among other things, this means timer.el no longer needs to
803         autoload the time-date module.
804         * time-date.el (seconds-to-time, days-to-time, time-since)
805         (with-decoded-time-value):
806         Treat 'nil' as current time.  This is mostly for XEmacs.
807         (encode-time-value, with-decoded-time-value): Obsolete.
808         (time-add, time-subtract, time-less-p): Use no-op autoloads, for
809         XEmacs.  Define only if XEmacs, as they're now C builtins in Emacs.
810
811 2014-11-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
812
813         * gnus-sum.el (gnus-summary-exit-no-update): Don't query about
814         discarding changes in ephemeral groups.
815
816         * ietf-drums.el (ietf-drums-parse-address): Don't issue warnings about
817         things the user isn't interested in.
818
819 2014-11-13  Julien Danjou  <jd@abydos>
820
821         * gnus-notifications.el (gnus-notifications-notify): Provide both
822         app-icon and image-path.
823
824 2014-11-10  Kenjiro NAKAYAMA  <nakayamakenjiro@gmail.com>
825
826         * mm-url.el (mm-url-encode-multipart-form-data):
827         Restore to handle "multipart/form-data" by eww.
828
829 2014-11-07  Tassilo Horn  <tsdh@gnu.org>
830
831         * gnus-start.el (gnus-activate-group): Fix typo reported by Tim
832         Landscheidt.
833
834 2014-10-29  Paul Eggert  <eggert@cs.ucla.edu>
835
836         Simplify use of current-time and friends.
837         * gnus-delay.el (gnus-delay-article):
838         * gnus-sum.el (gnus-summary-read-document):
839         * gnus-util.el (gnus-seconds-today, gnus-seconds-month):
840         * message.el (message-make-expires-date):
841         Omit unnecessary call to current-time.
842         * gnus-util.el (gnus-float-time): Simplify to an alias because
843         time-to-seconds now behaves like float-time with respect to nil arg.
844         (gnus-seconds-year): Don't call current-time twice to get the current
845         time stamp, as this can lead to inconsistent results.
846         * time-date.el (time-to-seconds) [!float-time]:
847         Use current time if arg is nil, to be compatible with float-time.
848         (time-date--day-in-year): New function, with most of the guts of
849         the old time-to-day-in-year.
850         (time-to-day-in-year): Use it.
851         (time-to-days): Use it, to avoid decoding the same time stamp twice.
852
853 2014-10-27  Katsumi Yamaoka  <yamaoka@jpl.org>
854
855         * gnus.el (gnus-mode-line-buffer-identification):
856         Don't add image data for a non-graphic display (bug#18813).
857
858 2014-10-24  Katsumi Yamaoka  <yamaoka@jpl.org>
859
860         * gnus.el (gnus-mode-line-buffer-identification): Don't shadow
861         load-path, it blocks autoloading of find-image (bug#18813).
862
863 2014-10-24  enami tsugutomo  <tsugutomo.enami@jp.sony.com>
864
865         * nnimap.el (nnimap-wait-for-response): Ignore NOOP response requested
866         to keep connection open (bug#18728).
867
868 2014-10-20  Glenn Morris  <rgm@gnu.org>
869
870         * Merge in all changes up to 24.4 release.
871
872 2014-10-15  Jorge A. Alfaro-Murillo  <jorge.alfaro-murillo@yale.edu>  (tiny change)
873
874         * message.el (message-insert-signature): Use `newline' instead of
875         inserting explicit "\n".
876
877 2014-10-15  Sylvain Chouleur  <sylvain.chouleur@gmail.com>
878
879         * gnus-icalendar.el: Support vcal format timezones.
880         (gnus-icalendar-event--decode-datefield): Use icalendar functions to
881         compute dates with associated timezone.
882         (gnus-icalendar-event-from-ical): Compute all timezones.
883
884 2014-10-14  Teodor Zlatanov  <tzz@lifelogs.com>
885
886         * gnus-start.el (gnus-save-newsrc-file-check-timestamp): New option to
887         check the newsrc.eld file's timestamp before saving it.
888         (gnus-save-newsrc-file): Use it, with a prompt when the newsrc.eld
889         timestamp has changed to be newer.
890
891 2014-10-06  Jan Tatarik  <jan.tatarik@gmail.com>
892
893         * gnus-icalendar.el (gnus-icalendar-identities):
894         Include message-alternative-emails.
895
896 2014-10-05  Katsumi Yamaoka  <yamaoka@jpl.org>
897
898         * ntlm.el (ntlm-string-make-unibyte, ntlm-secure-hash):
899         New compatibility functions.
900         (ntlm-build-auth-response): Use them.
901
902 2014-10-04  Thomas Fitzsimmons  <fitzsim@fitzsim.org>
903
904         * ntlm.el (ntlm-build-auth-request):
905         Add NTLM2 Session support.  (Bug#15603)
906
907 2014-10-04  Alan Schmitt  <alan.schmitt@polytechnique.org>  (tiny change)
908
909         * nnimap.el (nnimap-process-expiry-targets): Reverse the list of
910         expired messages only when it was built in reverse order.
911
912 2014-10-04  Peter Münster  <pmlists@free.fr>  (tiny change)
913
914         * gnus-delay.el (gnus-delay-send-queue): Remove `gnus-delay-header'
915         last so it can be used in `message-send-hook'.
916
917 2014-09-29  Daiki Ueno  <ueno@gnu.org>
918
919         * mml.el (mml-parse-1): Error out if unknown mode is specified in
920         <#secure> tag (bug#18513).
921
922 2014-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
923
924         * parse-time.el: Require cl when compiling.
925
926 2014-09-26  Katsumi Yamaoka  <yamaoka@jpl.org>
927
928         Use cl-lib as much as possible following the 2014-09-26 change
929         in the Emacs trunk.
930         * parse-time.el: Try requiring cl-lib.
931         (parse-time-incf): Alias to cl-incf or incf.
932         (digit-char-p): Remove.
933         (parse-time-integer): Alias to cl-parse-integer or the one defined.
934         (parse-integer): Rename to parse-time-integer.
935         (parse-time-tokenize, parse-time-rules, parse-time-string)
936         Use parse-time-incf and parse-time-integer.
937
938 2014-09-11  Paul Eggert  <eggert@cs.ucla.edu>
939
940         * gnus-cloud.el (gnus-cloud-parse-version-1): Fix misspelling
941         of ":delete".
942
943 2014-08-26  Katsumi Yamaoka  <yamaoka@jpl.org>
944
945         * gnus-art.el (gnus-article-browse-html-save-cid-content)
946         (gnus-article-browse-html-parts):
947         Revert last change that breaks links other than cid contents.
948
949 2014-08-26  Katsumi Yamaoka  <yamaoka@jpl.org>
950
951         * gnus-art.el (gnus-article-browse-html-save-cid-content)
952         (gnus-article-browse-html-parts): Make cid file names relative.
953
954 2014-08-21  Katsumi Yamaoka  <yamaoka@jpl.org>
955
956         * mm-view.el (mm-display-inline-fontify): Make the working buffer
957         temporarily displayed when running a mode function (at least org-mode
958         requires it).
959
960 2014-08-14  Alan Schmitt  <alan.schmitt@polytechnique.org>
961
962         * gnus-sum.el (gnus-summary-expire-articles): Functions registered to
963         the gnus-summary-article-expire-hook should be told where the function
964         is going. In particular, the Gnus registry might want to know.
965
966 2014-08-12  Stefan Monnier  <monnier@iro.umontreal.ca>
967
968         * gnus-art.el (gnus-hidden-properties): Drop the evil `intangible'.
969
970 2014-08-06  Katsumi Yamaoka  <yamaoka@jpl.org>
971
972         * gnus-sum.el (gnus-summary-expire-articles): Revert.
973
974 2014-08-05  Eric Abrahamsen  <eric@ericabrahamsen.net>
975
976         * gnus-sum.el (gnus-summary-expire-articles): Functions registered to
977         the gnus-summary-article-expire-hook should be told where the function
978         is going. In particular, the Gnus registry might want to know.
979
980 2014-08-03  Paul Eggert  <eggert@cs.ucla.edu>
981
982         Don't mishandle year-9999 dates (Bug#18176).
983         * parse-time.el (parse-time-rules):
984         Allow years up to most-positive-fixnum.
985         * time-date.el (date-to-time):
986         Pass "Specified time is not representable" errors through.
987
988 2014-07-31  Tassilo Horn  <tsdh@gnu.org>
989
990         * gnus-msg.el (gnus-inews-insert-gcc): Allow `gcc-self' to be a list of
991         groups and t.
992
993 2014-07-22  Katsumi Yamaoka  <yamaoka@jpl.org>
994
995         * gnus-utils.el (gnus-recursive-directory-files):
996         Unify hard or symbolic links (bug#18063).
997
998 2013-07-17  Albert Krewinkel  <albert@zeitkraut.de>
999
1000         * gnus-msg.el (gnus-configure-posting-style):
1001         Allow string replacements in values when matching against a header.
1002
1003 2014-07-07  Katsumi Yamaoka  <yamaoka@jpl.org>
1004
1005         * gnus-start.el (gnus-dribble-read-file): Don't stop the auto-saving of
1006         the dribble buffer even when it is shrunk a lot.
1007         <http://thread.gmane.org/gmane.emacs.gnus.user/16923>
1008
1009 2014-06-26  Glenn Morris  <rgm@gnu.org>
1010
1011         * mm-util.el (help-function-arglist): Remove outdated declaration.
1012
1013 2014-06-24  Andreas Schwab  <schwab@linux-m68k.org>
1014
1015         * html2text.el (html2text-get-attr): Rewrite to handle spaces in quoted
1016         attribute values.  (Bug#17834)
1017
1018 2013-06-22  Dmitry Antipov  <dmantipov@yandex.ru>
1019
1020         * gnus-sum.el (gnus-summary-edit-article-done):
1021         Prefer point-marker to copy-marker of point.
1022
1023 2014-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
1024
1025         * Makefile.in (install-el, install-el-elc): Compress .el files.
1026         (uninstall): Remove compressed .el files.
1027
1028 2014-06-05  Katsumi Yamaoka  <yamaoka@jpl.org>
1029
1030         * gnus-art.el (gnus-article-edit-part): Don't modifiy markers.
1031         (gnus-article-read-summary-keys):
1032         Don't bug out when there is no article in the summary buffer.
1033         (gnus-mime-buttonize-attachments-in-header):
1034         Improve criterion that finds parts to display.
1035
1036         * gnus-art.el (gnus-mm-display-part):
1037         * mm-decode.el (mm-shr):
1038         * mm-view.el (mm-inline-text-html-render-with-w3m, mm-inline-text)
1039         (mm-insert-inline): Revert last changes.
1040
1041 2014-06-05  Katsumi Yamaoka  <yamaoka@jpl.org>
1042
1043         * gnus-art.el (gnus-mm-display-part):
1044         * mm-decode.el (mm-shr):
1045         * mm-view.el (mm-inline-text-html-render-with-w3m, mm-inline-text)
1046         (mm-insert-inline): Set insertion type of end-marker, not only
1047         start-marker, of undisplayer so as to stay after inserted text.
1048
1049 2014-06-02  Andreas Schwab  <schwab@linux-m68k.org>
1050
1051         * html2text.el (html2text-get-attr): Fix typo when splitting value from
1052         attribute. (Bug#17613)
1053
1054 2014-05-29  Stefan Monnier  <monnier@iro.umontreal.ca>
1055
1056         * mm-view.el (mm-display-inline-fontify): Use font-lock-ensure.
1057         * gnus-cite.el (gnus-message-citation-mode): Use font-lock-flush.
1058
1059 2014-05-15  Katsumi Yamaoka  <yamaoka@jpl.org>
1060
1061         * gnus-art.el (gnus-mime-inline-part, gnus-mm-display-part):
1062         Don't delete next part button; keep spacing between buttons.
1063
1064 2014-05-14  Katsumi Yamaoka  <yamaoka@jpl.org>
1065
1066         * gnus-art.el (gnus-mime-inline-part, gnus-mm-display-part):
1067         Work for the last MIME part in an article.
1068         (gnus-mime-display-single): Suppress excessive newlines between parts.
1069
1070         * mm-uu.el (mm-uu-dissect): Assume that separators may be accompanied
1071         by leading or trailing newline.
1072
1073 2014-05-12  Sam Steingold  <sds@gnu.org>
1074
1075         * time-date.el (seconds-to-string): New function to pretty print time
1076         delay in seconds.
1077
1078 2014-05-09  Katsumi Yamaoka  <yamaoka@jpl.org>
1079
1080         * gnus-art.el (gnus-mm-display-part): Don't put article out of sight
1081         while prompting a user for a file name, etc.
1082         (gnus-mime-display-single): Display part with a common appearance no
1083         matter whether MIME button is omitted or not; don't add duplicate entry
1084         to gnus-article-mime-handle-alist.
1085         (gnus-mime-buttonize-attachments-in-header): Use copied buttons.
1086
1087 2014-05-08  Adam Sjøgren  <asjo@koldfront.dk>
1088
1089         * mml2015.el (mml2015-display-key-image): New variable.
1090
1091 2014-05-08  Glenn Morris  <rgm@gnu.org>
1092
1093         * gnus-fun.el (gnus-grab-cam-face):
1094         Do not use predictable temp-file name.  (http://bugs.debian.org/747100)
1095         This is CVE-2014-3421.
1096
1097 2014-05-04  Glenn Morris  <rgm@gnu.org>
1098
1099         * gnus-registry.el (gnus-registry-install-p): Doc fix.
1100
1101 2014-05-02  Katsumi Yamaoka  <yamaoka@jpl.org>
1102
1103         * gnus-art.el (gnus-mime-inline-part): Redisplay a button so as to show
1104         the displaying state of a part.
1105         (gnus-mm-display-part): Don't insert a newline in the beginning of
1106         a part like gnus-mime-inline-part doesn't; work for XEmacs.
1107
1108         * mm-decode.el (mm-display-part): Don't insert a newline in the top.
1109         (mm-shr): Make undisplayer unbreakable.
1110
1111         * mm-view.el (mm-inline-image-emacs, mm-inline-image-xemacs):
1112         Don't insert excessive newline.
1113         (mm-inline-text-html-render-with-w3m, mm-inline-text)
1114         (mm-insert-inline): Make undisplayer unbreakable.
1115
1116 2014-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
1117
1118         * gnus.el: Ma Gnus v0.11 is released.
1119
1120 2014-05-01  Katsumi Yamaoka  <yamaoka@jpl.org>
1121
1122         * gnus-art.el (gnus-mm-display-part):
1123         Highlight header attachment buttons.
1124
1125 2014-04-30  Katsumi Yamaoka  <yamaoka@jpl.org>
1126
1127         * gnus-art.el (gnus-mm-display-part): Don't move point while toggling
1128         a part; redisplay a button (enbugged in 2014-02-05).
1129
1130 2014-04-27  Teodor Zlatanov  <tzz@lifelogs.com>
1131
1132         * auth-source.el (auth-source-search, auth-source-search-backends):
1133         Treat :max 0 as an indicator that a boolean return is wanted, as
1134         documented. Reported by Joe Bloggs.
1135
1136 2014-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
1137
1138         * gnus-icalendar.el: Require gnus-art.
1139
1140 2014-04-20  Jan Tatarik  <jan.tatarik@gmail.com>
1141
1142         * gnus-icalendar.el (gnus-icalendar-event->org-entry)
1143         (gnus-icalendar--update-org-event): put event timestamp in
1144         the org entry body instead of the drawer.
1145         (gnus-icalendar-event--get-attendee-names): list of participants should
1146         contain even attendees without common name attribute.
1147         (gnus-icalendar--update-org-event): don't generate duplicates of empty
1148         property tags in org drawers.
1149
1150 2014-04-15  Katsumi Yamaoka  <yamaoka@jpl.org>
1151
1152         * gmm-utils.el (gmm-format-time-string): New function.
1153
1154         * message.el (message-insert-formatted-citation-line): Use the original
1155         author's time zone to express a date string.
1156
1157 2014-04-06  Stefan Monnier  <monnier@iro.umontreal.ca>
1158
1159         * gnus-srvr.el (gnus-tmp-how, gnus-tmp-name, gnus-tmp-where)
1160         (gnus-tmp-status, gnus-tmp-agent, gnus-tmp-cloud)
1161         (gnus-tmp-news-server, gnus-tmp-news-method, gnus-tmp-user-defined):
1162         Silence compiler warnings.
1163         (gnus-server-insert-server-line): Don't use dyn-bind var as argument.
1164
1165 2014-03-24  Katsumi Yamaoka  <yamaoka@jpl.org>
1166
1167         * mml.el: Require url when compiling.
1168
1169         * gnus-cloud.el (gnus-cloud-parse-version-1):
1170         Use plist-get rather than CL's getf.
1171         (gnus-activate-group, gnus-subscribe-group): Declare.
1172
1173         * gnus-sum.el (gnus-mime-buttonize-attachments-in-header): Declare.
1174
1175 2014-03-14  Katsumi Yamaoka  <yamaoka@jpl.org>
1176
1177         * gnus-sum.el (gnus-summary-toggle-header): Display header attachment
1178         buttons when toggling the header off.
1179
1180 2014-03-14  Juanma Barranquero  <lekktu@gmail.com>
1181
1182         * tls.el (tls-program): Reflow docstring.
1183
1184 2014-03-07  Lars Ingebrigtsen  <larsi@gnus.org>
1185
1186         * nnimap.el (nnimap-request-accept-article): Make respooling to nnimap
1187         groups work again.
1188
1189 2014-03-07  George McNinch  <gmcninch@gmail.com>  (tiny change)
1190
1191         * nnir.el (nnir-run-namazu): Parse namazu results that are larger than
1192         999 correctly (i.e. "1,342").
1193
1194 2014-03-07  Lars Ingebrigtsen  <larsi@gnus.org>
1195
1196         * gnus-agent.el (gnus-agent-update-files-total-fetched-for): Don't bug
1197         out if the directory doesn't exist.
1198
1199 2014-03-07  Daiki Ueno  <ueno@gnu.org>
1200
1201         * mml2015.el (mml2015-use): Don't check the availability of GnuPG
1202         commands here; instead, only check if epg-config.el is available.
1203
1204 2014-03-06  Lars Ingebrigtsen  <larsi@gnus.org>
1205
1206         * mml.el (mml-expand-html-into-multipart-related): Allow sending HTML
1207         messages with embedded images.
1208         (mml-generate-mime): Don't bug out if you don't have libxml.
1209
1210 2014-03-06  Lars Ingebrigtsen  <larsi@gnus.org>
1211
1212         * message.el (message-make-html-message-with-image-files): New command.
1213
1214 2014-03-05  Lars Ingebrigtsen  <larsi@gnus.org>
1215
1216         * gnus-group.el (gnus-group-make-group): Clarify prompt.
1217
1218         * mml.el (mml-insert-mime-headers): Allow `recipient-filename'.
1219
1220 2014-02-23  David Engster  <deng@randomsample.de>
1221
1222         * auth-source.el (auth-source-netrc-saver): Do not depend on `cl-lib'
1223         to stay compatible with older Emacsen, so replace `cl-loop' with
1224         `loop'.
1225
1226 2014-02-22  Daniel Colascione  <dancol@dancol.org>
1227
1228         * auth-source.el (auth-source-secrets-listify-pattern): New function.
1229         (auth-source-secrets-search): Don't pass invalid patterns to secrets.el;
1230         instead, build list of patterns.
1231
1232 2014-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
1233
1234         * gnus-art.el (gnus-article-prepare, gnus-article-prepare-display):
1235         Display header attachment buttons by gnus-article-prepare-display
1236         rather than gnus-article-prepare so as to view in mml-preview as well.
1237
1238 2014-02-13  Teodor Zlatanov  <tzz@lifelogs.com>
1239
1240         * auth-source.el (auth-sources): Add pointer to what the .gpg extension
1241         in `auth-sources' means and link to EPA docs.
1242
1243 2014-02-12  Lars Ingebrigtsen  <larsi@gnus.org>
1244
1245         * nnmail.el (nnmail-expand-newtext): Further sub-match fixups
1246         (bug#12375).
1247
1248 2014-02-10  Katsumi Yamaoka  <yamaoka@jpl.org>
1249
1250         * gnus-art.el (gnus-article-goto-part): Find a button in the body first.
1251         (gnus-mime-buttonize-attachments-in-header): Number hidden buttons.
1252
1253 2014-02-09  Lars Ingebrigtsen  <larsi@gnus.org>
1254
1255         * message.el (message-tab): Mention what happens on normal tabs
1256         (bug#11297).
1257
1258 2014-02-08  Glenn Morris  <rgm@gnu.org>
1259
1260         * auth-source.el (auth-sources): Doc fix.  (Bug#16642)
1261
1262 2014-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
1263
1264         * gnus-art.el (gnus-mime-buttonize-attachments-in-header): Display
1265         buttons that are hidden in unselected alternative part as well.
1266         (gnus-mime-display-alternative): Redraw attachment buttons in header.
1267
1268         * gmm-utils.el (gmm-flet, gmm-labels): Add edebug spec.
1269
1270 2014-02-07  Lars Ingebrigtsen  <larsi@gnus.org>
1271
1272         * gnus-srvr.el (gnus-server-toggle-cloud-server): New command and
1273         keystroke.
1274         (gnus-server-toggle-cloud-server): Only allow clouding applicable
1275         types.
1276
1277         * ietf-drums.el (ietf-drums-parse-address): Don't bug out when called
1278         with an empty string.
1279
1280 2014-02-06  Lars Ingebrigtsen  <larsi@gnus.org>
1281
1282         * gnus-msg.el (gnus-summary-cancel-article): `user-mail-address' is
1283         buffer-local in some buffers, so bind it explicitly in the buffer we're
1284         trying to cancel the article in (bug#10808).
1285
1286 2014-02-05  Katsumi Yamaoka  <yamaoka@jpl.org>
1287
1288         * gnus.el, gnus-xmas.el (gnus-copy-overlay, gnus-overlays-at):
1289         New functions.
1290
1291         * gnus-art.el (gnus-mime-display-attachment-buttons-in-header):
1292         New user option.
1293         (gnus-mime-buttonize-attachments-in-header): New function.
1294         (gnus-article-prepare): Use it.
1295         (gnus-mime-inline-part): Suppress extra newline.
1296         (gnus-mm-display-part): Save excursion;
1297         remove useless deleting and adding of buttons.
1298         (gnus-insert-mime-button): Allow insertion in the middle of a line.
1299
1300         * gnus-sum.el (gnus-summary-wash-mime-map, gnus-summary-article-menu):
1301         Add gnus-mime-buttonize-attachments-in-header.
1302
1303 2014-02-05  Lars Ingebrigtsen  <larsi@gnus.org>
1304
1305         * nnimap.el (nnimap-request-articles): New command to download several
1306         articles at once.
1307
1308         * gnus.el (gnus-variable-list): Save Cloud variables.
1309
1310         * gnus-int.el (gnus-request-accept-article): Doc fix.
1311
1312 2014-02-04  Lars Ingebrigtsen  <larsi@gnus.org>
1313
1314         * parse-time.el (parse-time-iso8601-regexp)
1315         (parse-iso8601-time-string): Copied from `url-dav' so that we can use
1316         it more generally.
1317
1318 2014-02-01  Lars Ingebrigtsen  <larsi@gnus.org>
1319
1320         * gnus-cloud.el: New file to provide the Emacs Cloud.
1321
1322         * dgnushack.el: Silence XEmacs w3 warning.
1323
1324         * gravatar.el (gravatar-retrieve-synchronously): XEmacs also has
1325         `url-retrieve-synchronously', apparently.
1326
1327         * dgnushack.el: Silence XEmacs dns.el warning.
1328
1329         * gnus-compat.el (gnus-compat): Declare `declare-function' only here
1330         instead of in all files.
1331
1332         * dns.el (network-interface-list): Define for XEmacs.
1333
1334         * gnus-notifications.el (gravatar-retrieve-synchronously): Declare for
1335         XEmacs.
1336
1337         * nnrss.el (libxml-parse-html-region): Silence compilation error.
1338
1339 2014-02-01  Daniel Dehennin  <daniel.dehennin@baby-gnu.org>
1340
1341         * gnus-mlspl.el (gnus-group-split-fancy): Use `gnus-parameters' in
1342         `gnus-group-split-fancy'.
1343
1344 2014-02-01  Lars Ingebrigtsen  <larsi@gnus.org>
1345
1346         * message.el (message-remove-header): Doc fix.
1347         (message-forward-included-headers): New variable.
1348         (message-remove-ignored-headers): Use it.
1349
1350 2014-02-01  Lars Ingebrigtsen  <larsi@gnus.org>
1351
1352         * nnir.el (nnir-request-update-mark): Don't try to update the source
1353         group if we can't find it (bug#16611).
1354
1355 2014-01-31  Dave Abrahams  <dave@boostpro.com>
1356
1357         * gnus-sum.el (gnus-summary-open-group-with-article): New command.
1358
1359 2014-01-31  Magnus Henoch  <magnus.henoch@gmail.com>
1360
1361         * dns.el (dns-servers-up-to-date-p): New function to see whether the
1362         network interfaces changed.
1363         (dns-query): Use it to flush the data.
1364
1365 2013-09-04  Rasmus Pank Roulund  <emacs@pank.eu>
1366
1367         * gnus-fun.el (gnus-x-face-omit-files): Regexp to omit matched results
1368         from random face commands.
1369         (gnus-face-directory): Like `gnus-x-face-directory` for png files and
1370         Face.
1371         (gnus-face-omit-files): Like `gnus-x-face-omit-files` for Face.
1372         (gnus--random-face-with-type): Generic function returning a face-type
1373         as a string.
1374         (gnus--insert-random-face-with-type): Generic function inserting a face
1375         in a message buffer header.
1376         (gnus-random-x-face): Rewritten to use `gnus--random-face-with-type`.
1377         (gnus-insert-random-x-face-header): Rewritten to use
1378         `gnus--insert-random-face-with-type`.
1379         (gnus-random-face): Return random (png) Face as string.
1380         (nus-insert-random-face-header): Insert random (png) Face in a message
1381         buffer.
1382
1383 2014-01-31  Lars Ingebrigtsen  <larsi@gnus.org>
1384
1385         * mm-url.el: Remove all usage of w3.
1386
1387         * nnrss.el: Ditto.
1388
1389         * mm-decode.el: Ditto.
1390
1391         * mm-view.el: Ditto.
1392
1393         * dgnushack.el: Remove mentions of urldir and w3-dir, since w3 is
1394         outdated and all Emacsen have url.el built-in.
1395
1396         * gnus-setup.el: Remove outdated file.
1397
1398 2014-01-31  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
1399
1400         * gnus.el: Ma Gnus v0.9 is released.
1401
1402 2014-01-31  Lars Ingebrigtsen  <larsi@gnus.org>
1403
1404         * nnimap.el (nnimap-transform-headers): Fix Davmail header parsing.
1405
1406 2014-01-31  Dave Abrahams  <dave@boostpro.com>
1407
1408         * gnus-salt.el (gnus-tree-highlight-article): Don't move point around
1409         in the summary buffer (bug#13769).
1410
1411 2014-01-31  Lars Ingebrigtsen  <larsi@gnus.org>
1412
1413         * gnus-art.el (gnus-article-setup-buffer): Refresh the summary buffer
1414         name if we're using a single article buffer.  Otherwise, it may point
1415         to a killed buffer (bug#13756).
1416
1417 2014-01-30  Lars Ingebrigtsen  <larsi@gnus.org>
1418
1419         * nnmail.el (nnmail-split-it): Instead of redoing the search to restore
1420         the match data, just save and restore it explicitly (bug#12375).
1421
1422         * gnus-sum.el (gnus-summary-read-group-1): Initialize the spam code if
1423         that's needed.
1424
1425         * spam.el (spam-initialize): Allow calling repeatedly, but only run the
1426         the code once (bug#9069).
1427
1428 2014-01-18  Steinar Bang  <sb@dod.no>
1429
1430         * gnus-setup.el (gnus-use-sendmail): We never use sendmail for mail
1431         reading.
1432
1433 2014-01-09  Ken Olum  <kdo@cosmos.phy.tufts.edu>  (tiny change)
1434
1435         * message.el (message-bury): Call bury-buffer with no argument
1436         in the message-return-action case too.
1437
1438 2014-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
1439
1440         * gnus-sum.el (gnus-article-stop-animations): Declare it before using.
1441         (nnimap-split-fancy, nnimap-split-methods): Declare.
1442
1443         * mm-util.el (help-function-arglist): Declare.
1444
1445 2013-12-28  Glenn Morris  <rgm@gnu.org>
1446
1447         * gnus-sieve.el (gnus-sieve-select-method):
1448         * gravatar.el (gravatar-automatic-caching, gravatar-cache-ttl)
1449         (gravatar-rating, gravatar-size):
1450         * message.el (message-minibuffer-local-map):
1451         * sieve-manage.el (sieve-manage-authenticators)
1452         (sieve-manage-authenticator-alist): Specify custom types.
1453
1454         * hashcash.el (hashcash-program): Rename from hashcash-path.
1455         Update callers.
1456
1457         * gnus-icalendar.el (gnus-icalendar-org, gnus-icalendar):
1458         * gnus-sum.el (gnus-subthread-sort-functions): Add version.
1459         * gnus-sync.el (gnus-sync-file-encrypt-to): Add type and version.
1460
1461         * auth-source.el (auth-sources):
1462         * nnmairix.el (nnmairix-propagate-marks-upon-close):
1463         Fix custom types.
1464
1465         * tls.el (tls-certtool-program): Fix default value.
1466
1467 2013-12-26  Lars Ingebrigtsen  <larsi@gnus.org>
1468
1469         * gnus-sum.el (gnus-summary-respool-query): Special-case nnimap so that
1470         we get proper traces there, too.
1471
1472 2013-12-26  Sean Connor  <sconnor005@allyinics.org>  (tiny change)
1473
1474         * gnus-sum.el (gnus-summary-enter-digest-group): Don't discard previous
1475         value of the parameters if the current article has a Reply-To or From
1476         field.
1477
1478 2013-12-26  Lars Ingebrigtsen  <larsi@gnus.org>
1479
1480         * gnus.el (gnus-group-buffer): Remove duplicate definition.
1481
1482 2013-12-25  Lars Ingebrigtsen  <larsi@gnus.org>
1483
1484         * gnus-sum.el (gnus-summary-exit): Stop animations.
1485
1486 2013-12-19  Juri Linkov  <juri@jurta.org>
1487
1488         * gnus.el (gnus-suppress-keymap):
1489         * gnus-art.el (gnus-article-mode-map):
1490         * gnus-group.el (gnus-group-mode-map):
1491         * gnus-sum.el (gnus-summary-mode-map, gnus-summary-backend-map):
1492         Remove [backspace] key binding because it shadows DEL (bug#16035).
1493
1494         * mm-decode.el (mm-viewer-completion-map): Remove duplicate definition.
1495
1496 2013-12-19  Katsumi Yamaoka  <yamaoka@jpl.org>
1497
1498         * gnus-uu.el (gnus-uu-decode-binhex, gnus-uu-decode-binhex-view):
1499         Make sure work directory exists.
1500         (gnus-uu-digest-mail-forward): Store temporary files in work directory
1501         rather than tmp directory.
1502         (gnus-summary-prepare-exit-hook): Replace gnus-exit-group-hook, that is
1503         not necessarily always run, with it.
1504
1505 2013-12-18  Jan Tatarik  <jan.tatarik@gmail.com>
1506
1507         * gnus-icalendar.el (gnus-icalendar-identities): Make changing the
1508         value of gnus-icalendar-additional-identities work without restart.
1509
1510 2013-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
1511
1512         * mm-util.el (mm-make-temp-file):
1513         Alias to make-temp-file for modern Emacsen.
1514
1515 2013-12-08  Katsumi Yamaoka  <yamaoka@jpl.org>
1516
1517         * gnus-msg.el (gnus-setup-message): Fix the type of argument passed to
1518         nnir-article-number and nnir-article-group.
1519
1520 2013-12-03  Vitalie Spinu  <spinuvit@gmail.com>
1521
1522         * message.el (message-send-mail-with-sendmail):
1523         Don't kill error buffer if sending fails.
1524
1525 2013-11-28  Jan Tatarik  <jan.tatarik@gmail.com>
1526
1527         * gnus-icalendar.el (gnus-icalendar-event-from-ical)
1528         (gnus-icalendar-event->org-entry)
1529         (gnus-icalendar--update-org-event)
1530         (gnus-icalendar-event->gnus-calendar): Distinguish between
1531         required/optional/non-participant attendee status.  Fix bug causing
1532         the first required event participant to be omitted.
1533
1534 2013-11-27  Katsumi Yamaoka  <yamaoka@jpl.org>
1535
1536         * gnus-art.el (article-de-quoted-unreadable)
1537         (article-de-base64-unreadable, gnus-mime-copy-part)
1538         * gnus-html.el (gnus-article-html)
1539         * mm-view.el (mm-inline-text-html-render-with-w3)
1540         (mm-inline-text-html-render-with-w3m-standalone)
1541         * rfc2231.el (rfc2231-decode-encoded-string):
1542         Allow overriding charset by mm-charset-override-alist.
1543
1544         * gnus-art.el (gnus-article-browse-html-parts):
1545         Replace LWSPs with `&nbsp;'s in header.
1546
1547         Work for broken Chinese articles.
1548
1549         * gnus-art.el (gnus-article-browse-html-save-cid-content):
1550         Exclude broken handles that gnus-summary-enter-digest-group may create.
1551         (gnus-article-browse-html-parts):
1552         Allow overriding charset by mm-charset-override-alist.
1553
1554 2013-11-21  Jan Tatarik  <jan.tatarik@gmail.com>
1555
1556         * gnus-icalendar.el (gnus-icalendar-additional-identities): New.
1557         (gnus-icalendar-identities): Support additional-identities.
1558
1559 2013-11-21  Jan Tatarik  <jan.tatarik@gmail.com>
1560
1561         * gnus-icalendar.el (gnus-icalendar-event:org-timestamp): Fix
1562         org-timestamp for events ending at midnight.
1563
1564 2013-11-21  Ivan Shmakov  <ivan@siamics.net>
1565
1566         * nndoc.el (nndoc-type-alist, nndoc-debbugs-db-type-p): Support debbugs
1567         .log files.
1568
1569 2013-11-20  David Engster  <deng@randomsample.de>
1570
1571         * lpath.el: Fix XEmacs warning for `beginning-of-visual-line'.
1572
1573 2013-11-20  Dave Goldberg  <david.goldberg6@verizon.net>
1574
1575         * message.el (message-beginning-of-line):
1576         Use beginning-of-visual-line when visual-line-mode is turned on.
1577
1578 2013-11-15  Jan Tatarik  <jan.tatarik@gmail.com>
1579
1580         * gnus-icalendar.el (gnus-icalendar-event->gnus-calendar)
1581         (gnus-icalendar-event-from-ical)
1582         (gnus-icalendar-event->org-entry)
1583         (gnus-icalendar--update-org-event): Required/optional participation,
1584         list of attendees synced to org.
1585
1586 2013-11-13  Jan Tatarik  <jan.tatarik@gmail.com>
1587
1588         * gnus-icalendar.el (gnus-icalendar-event:sync-to-org)
1589         (gnus-icalendar-event:inline-org-buttons): Allow for appointment
1590         cancellations to be synced to org if the original appt has an org
1591         outline.
1592
1593 2013-11-13  Jan Tatarik  <jan.tatarik@gmail.com>
1594
1595         * gnus-icalendar.el (gnus-icalendar--format-summary-line)
1596         (gnus-icalendar-event->org-entry)
1597         (gnus-icalendar--update-org-event)
1598         (gnus-icalendar-event->gnus-calendar): Fix empty location handling.
1599
1600 2013-11-12  Jan Tatarik  <jan.tatarik@gmail.com>
1601
1602         * gnus-icalendar.el (gnus-icalendar-event-from-ical):
1603         Fix timezone handling in gnus-icalendar export to org.
1604
1605 2013-11-06  Katsumi Yamaoka  <yamaoka@jpl.org>
1606
1607         * gnus-salt.el (gnus--let-eval): Silence the Buildbot.
1608
1609 2013-11-05  Katsumi Yamaoka  <yamaoka@jpl.org>
1610
1611         * gnus-cite.el (gnus-cite-add-face): Make non-sticky overlays.
1612
1613 2013-10-30  Glenn Morris  <rgm@gnu.org>
1614
1615         * gnus-group.el (gnus-group-browse-foreign-server):
1616         * gnus-int.el (gnus-start-news-server):
1617         Silence compiler obsolescence warning.
1618
1619 2013-10-29  Teodor Zlatanov  <tzz@lifelogs.com>
1620
1621         * nnimap.el (nnimap-open-connection-1): `auth-source-search' for the
1622         `nnoo-current-server' first, then for the actual `nnimap-address' to
1623         allow netrc entries for the nnoo server to coexist with netrc entries
1624         for the `nnimap-address'.
1625
1626 2013-10-23  Katsumi Yamaoka  <yamaoka@jpl.org>
1627
1628         * mm-decode.el (mm-dissect-buffer): Revert last change.
1629         * nndoc.el (nndoc-dissect-mime-parts-sub): Ditto.
1630         The problem that motivated those changes was attributed to a broken
1631         mail sender, and has been fixed.
1632
1633 2013-10-22  Katsumi Yamaoka  <yamaoka@jpl.org>
1634
1635         * mm-decode.el (mm-dissect-buffer): Guess content-type if the first
1636         token is missing in the Content-Type header.
1637
1638         * nndoc.el (nndoc-dissect-mime-parts-sub): Ditto.
1639
1640 2013-09-18  Glenn Morris  <rgm@gnu.org>
1641
1642         * gnus-util.el (image-size): Declare.
1643
1644 2013-09-17  Katsumi Yamaoka  <yamaoka@jpl.org>
1645
1646         * gnus-icalendar.el (gnus-icalendar-event--find-attendee)
1647         (gnus-icalendar-event-from-ical)
1648         (gnus-icalendar-event--build-reply-event-body)
1649         (gnus-icalendar-event-reply-from-buffer)
1650         (gnus-icalendar-find-org-event-file)
1651         (gnus-icalendar-event->gnus-calendar, gnus-icalendar-reply)
1652         (gnus-icalendar-mm-inline): Use gmm-labels instead of labels or flet.
1653
1654         * mm-util.el (mm-special-display-p): Isolate XEmacs stuff.
1655
1656 2013-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
1657
1658         * gnus-salt.el (gnus-tree-mode): Use define-derived-mode.
1659         Use save-current-buffer.
1660         (gnus-tree-mode-map): Initialize in the declaration.
1661         (gnus-pick-mouse-pick-region): Remove unused var `fun'.
1662         (scroll-in-place): Defvar it.
1663         (gnus-tmp-*): Defvar them.
1664         (gnus-get-tree-buffer): Use derived-mode-p.
1665         (gnus--let-eval): New macro.
1666         (gnus-tree-highlight-node): Use it to avoid dynamic binding of
1667         non-prefixed variables.
1668         (gnus-tree-open, gnus-tree-close): Remove unused arg `group'.
1669
1670         * gnus-sum.el (gnus-summary-highlight): Remove `below' from the list of
1671         vars since it doesn't seem to be available.
1672         (gnus-set-global-variables, gnus-summary-read-group-1)
1673         (gnus-select-newsgroup, gnus-handle-ephemeral-exit)
1674         (gnus-summary-display-article, gnus-summary-select-article)
1675         (gnus-summary-next-article, gnus-offer-save-summaries)
1676         (gnus-summary-generic-mark): Use derived-mode-p.
1677         (gnus-summary-read-group-1, gnus-summary-exit)
1678         (gnus-summary-exit-no-update, gnus-kill-or-deaden-summary):
1679         Adjust calls to gnus-tree-close and gnus-tree-open.
1680
1681         * gnus-eform.el (gnus-edit-form-mode): Use define-derived-mode.
1682
1683         * gnus-agent.el (gnus-category-mode): Use define-derived-mode.
1684         (gnus-agent-mode): Use derived-mode-p.
1685         (gnus-agent-rename-group, gnus-agent-delete-group): Don't bind
1686         gnus-command-method and *-command-method to nil, but bind
1687         gnus-command-method to *-command-method instead!
1688         (gnus-agent-fetch-articles): Remove unused var `id'.
1689         (gnus-agent-fetch-headers): Remove unused arg `force'.
1690         (gnus-agent-braid-nov): Remove unused arg `group'.  Adjust callers.
1691         (gnus-agent-save-alist, gnus-agent-save-local): Remove unused `item'.
1692         (gnus-agent-short-article, gnus-agent-long-article)
1693         (gnus-agent-low-score, gnus-agent-high-score): Move declaration before
1694         first use.
1695         (gnus-agent-fetch-group-1): Remove unused vars `arts', `category',
1696         `score-param'.
1697         (gnus-tmp-name, gnus-tmp-groups): Defvar them.
1698         (gnus-get-predicate): Push in front of the cache, rather than end.
1699         (gnus-agent-expire-current-dirs, gnus-agent-expire-stats): Defvar them.
1700         (gnus-agent-expire-group-1): Use push.  Don't abuse dyn-binding.
1701         (gnus-agent-expire-unagentized-dirs): Don't rebind
1702         gnus-agent-expire-current-dirs since the defvar silences the warning.
1703         (gnus-agent-retrieve-headers): Remove unused var `cached-articles'.
1704         (gnus-agent-regenerate-group): Remove unused vars `point' and `dl'.
1705         (gnus-agent-regenerate): Simplify interactive spec and doc.
1706
1707 2013-09-17  Katsumi Yamaoka  <yamaoka@jpl.org>
1708
1709         * gnus-int.el (gnus-open-server): Silence compiler.
1710
1711         * mm-decode.el (mm-add-meta-html-tag): Fix regexp matching meta tag.
1712
1713         * message.el (message-display-completion-list): Abolish.
1714         (message-completion-in-region): Use display-completion-list.
1715
1716 2013-09-17  Glenn Morris  <rgm@gnu.org>
1717
1718         * gnus-util.el (gnus-message-with-timestamp-1):
1719         Use `messages-buffer' function if available.  Ignore read-only.
1720
1721 2013-09-16  Katsumi Yamaoka  <yamaoka@jpl.org>
1722
1723         * message.el (message-expand-group, message-completion-in-region):
1724         Correct the order of start and end of a region.
1725
1726 2013-09-13  Glenn Morris  <rgm@gnu.org>
1727
1728         * mml2015.el (gnus-create-image): Autoload it.
1729
1730         * gnus-spec.el (gnus-xmas-format): Fix weird error call.
1731
1732         * gnus-html.el (declare-function): Add compat stub for ancient Emacs.
1733         (image-size): Declare.
1734
1735 2013-09-12  Glenn Morris  <rgm@gnu.org>
1736
1737         * gnus-icalendar.el (gnus-icalendar-event--build-reply-event-body):
1738         Avoid using `find', which i) might not be defined at runtime;
1739         ii) does not work, since its default test is eql, not equal.
1740         (gnus-mime-action-alist): Declare.
1741
1742 2013-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
1743
1744         * score-mode.el (gnus-score-mode-map): Move initialization
1745         into declaration.
1746         (gnus-score-mode): Use define-derived-mode.
1747         * gnus-srvr.el (gnus-browse-mode): Use define-derived-mode.
1748         * gnus-kill.el (gnus-kill-file-mode-map): Move initialization
1749         into declaration.
1750         (gnus-kill-file-mode): Use define-derived-mode.
1751         (gnus-kill-file-edit-file, gnus-kill-file-enter-kill, gnus-kill):
1752         Use derived-mode-p.
1753         * gnus-group.el (gnus-group-mode): Use define-derived-mode.
1754         (gnus-group-setup-buffer, gnus-group-name-at-point)
1755         (gnus-group-make-web-group, gnus-group-enter-directory)
1756         (gnus-group-suspend): Use derived-mode-p.
1757         * gnus-cus.el (gnus-custom-mode): Use define-derived-mode.
1758         * gnus-bookmark.el (gnus-bookmark-bmenu-mode): Use define-derived-mode.
1759         * gnus-art.el (gnus-article-mode): Use define-derived-mode.
1760         (gnus-article-setup-buffer, gnus-article-prepare)
1761         (gnus-article-prepare-display, gnus-sticky-article)
1762         (gnus-kill-sticky-article-buffer, gnus-kill-sticky-article-buffers)
1763         (gnus-bind-safe-url-regexp, gnus-article-check-buffer)
1764         (gnus-article-read-summary-keys): Use derived-mode-p.
1765
1766 2013-08-28  Katsumi Yamaoka  <yamaoka@jpl.org>
1767
1768         * mm-decode.el (mm-temp-files-delete): Fix file deletion logic.
1769
1770 2013-08-19  Katsumi Yamaoka  <yamaoka@jpl.org>
1771
1772         * mm-util.el (mm-coding-system-priorities): Exclude iso-2022-jp-2 and
1773         shift_jis from the default value set for Japanese users.
1774
1775 2013-08-13  Glenn Morris  <rgm@gnu.org>
1776
1777         * gnus-icalendar.el (gnus-icalendar-org-capture-file): Fix type.
1778
1779         * gnus.el (gnus-valid-select-methods): Fix type.
1780
1781         * nnimap.el (nnimap-request-articles-find-limit): Fix type, version.
1782
1783 2013-08-12  Katsumi Yamaoka  <yamaoka@jpl.org>
1784
1785         * mm-decode.el (mm-display-external): Run a timer for the temp files
1786         deletion after a viewer exits; add a deletion timer for the needsterm
1787         case, too.
1788
1789         * mm-decode.el (mm-display-external): Try to delete temporary files by
1790         using a 1-min. timer.
1791
1792 2013-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
1793
1794         * mm-decode.el (mm-temp-files-to-be-deleted, mm-temp-files-cache-file):
1795         New internal variables.
1796         (mm-temp-files-delete): New function; add it to gnus-exit-gnus-hook.
1797         (mm-display-external): Use it to delete temporary files instead of
1798         using timers.
1799
1800 2013-08-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1801
1802         * dgnushack.el (dgnushack-compile): Allow building on Emacs 23.
1803
1804 2013-08-06  Jan Tatarik  <jan.tatarik@gmail.com>
1805
1806         * gnus-icalendar.el (gnus-icalendar-event-from-ical): Replace pcase
1807         with cond for backwards compatability.
1808
1809 2013-08-06  Katsumi Yamaoka  <yamaoka@jpl.org>
1810
1811         * mm-decode.el (mm-display-external): Bind process-connection-type to
1812         nil; don't delete a temp file immediately even if a viewer finishes,
1813         since it may be a shell script, like xdg-open, that launches a real
1814         viewer program belatedly.
1815
1816 2013-08-05  Dave Abrahams  <dave@boostpro.com>
1817
1818         * gnus-int.el (gnus-warp-to-article): Allow warping in all groups so
1819         that we can create nndoc groups that excerpt other groups.
1820
1821 2013-08-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1822
1823         * gnus-delay.el (gnus-delay-article): Fix typo.
1824
1825         * gnus-group.el (gnus-group-delete-articles): Allow deleting only "old"
1826         articles.
1827
1828         * gnus-delay.el (gnus-delay-article): Run `message-send-hook' so that
1829         we can get spell-checking etc.
1830
1831 2013-08-02  Katsumi Yamaoka  <yamaoka@jpl.org>
1832
1833         * rfc2047.el (rfc2047-encode-message-header): Unify charsets into
1834         a single one used for encoding the whole text in a header.
1835
1836 2013-08-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1837
1838         * dgnushack.el (dgnushack-compile): `icalendar--decode-isodatetime'
1839         doesn't work properly on XEmacs.
1840
1841 2013-08-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1842
1843         * message.el (message-ignored-news-headers): Delete X-Gnus-Delayed
1844         before sending.
1845
1846         * dgnushack.el (dgnushack-compile): Add a temporary check for
1847         gnus-icalendar.
1848
1849         * mm-decode.el (mm-command-output): New face.
1850         (mm-display-external): Use it.
1851
1852 2013-08-01  Kan-Ru Chen (陳侃如)  <kanru@kanru.info>  (tiny change)
1853
1854         * nnmbox.el (nnmbox-request-article): Don't change point.
1855
1856 2013-08-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1857
1858         * gnus-icalendar.el (gnus-icalendar-event:inline-reply-buttons):
1859         Include `handle' parameter.
1860
1861 2013-08-01  Jan Tatarik  <jan.tatarik@gmail.com>
1862
1863         * gnus-icalendar.el: New file.
1864
1865 2013-08-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1866
1867         * gnus-int.el (gnus-warp-to-article): Mention that warp means jump.
1868
1869         * gnus-uu.el (gnus-uu-mark-thread, gnus-uu-unmark-thread): Work with
1870         dummy roots, too.
1871
1872 2013-08-01  David Edmondson  <dme@dme.org>
1873
1874         * mml2015.el (mml2015-epg-key-image-to-string): Protect against bugging
1875         out on ttys.
1876
1877 2013-08-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1878
1879         * gnus-start.el (gnus-dribble-save): Only save the dribble file if it's
1880         not empty.
1881
1882         * nnrss.el (nnrss-discover-feed): Indent.
1883
1884 2013-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
1885
1886         * gnus-util.el (gnus-emacs-completing-read): Isolate XEmacs stuff.
1887
1888 2013-07-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1889
1890         * gnus-start.el (gnus-read-active-for-groups): Always mark the data as
1891         dirty to ensure nnimap data being saved.
1892
1893 2013-07-30  Tassilo Horn  <tsdh@gnu.org>
1894
1895         * gnus-sum.el (gnus-summary-make-menu-bar): Add "Current thread score"
1896         menu entry.
1897
1898         * gnus-score.el (gnus-summary-current-score): Use prefix arg to show
1899         the current thread's total score instead of the current article's
1900         score.
1901
1902         * gnus-sum.el (gnus-subthread-sort-functions): New defcustom.
1903         (gnus-sort-threads-recursively): Delete defcustom.
1904         (gnus-sort-threads-recursive): Adapt accordingly.
1905
1906 2013-07-30  Tassilo Horn  <tsdh@gnu.org>
1907
1908         * gnus-sum.el (gnus-sort-subthreads-recursive): New function.
1909         (gnus-sort-threads-recursive): Use it.
1910         (gnus-sort-threads): Unconditionally call `gnus-sort-threads-recursive'
1911         again.  Now that determines how to sort subthreads.
1912
1913 2013-07-26  Tassilo Horn  <tsdh@gnu.org>
1914
1915         * gnus-sum.el (gnus-sort-threads-recursively): New defcustom.
1916         (gnus-sort-threads): Use it.
1917
1918 2013-07-25  Andreas Schwab  <schwab@linux-m68k.org>
1919
1920         * gnus-art.el (gnus-button-url-regexp): Make it match url in which
1921         punctuation characters follow parentheses (bug#14950).
1922
1923 2013-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
1924
1925         * gnus.el (gnus-continuum-version):
1926         * gnus-msg.el (gnus-extended-version): Simplify.
1927
1928         * gnus.el (gnus-continuum-version-1): Remove.
1929         * gnus-msg.el (gnus-bug): Revert.
1930
1931         Calculate gnus-version correctly on Cygwin.
1932
1933         * gnus.el (gnus-continuum-version): Do main calculations in integers.
1934         (gnus-continuum-version-1): New function, return a string.
1935
1936         * gnus-msg.el (gnus-extended-version, gnus-bug):
1937         Use gnus-continuum-version-1 instead of gnus-continuum-version.
1938
1939 2013-07-19  Geoff Kuenning  <geoff@cs.hmc.edu>  (tiny change)
1940
1941         * gnus-art.el (gnus-treat-predicate): Allow functions as predicates
1942         (bug#13384).
1943
1944 2013-07-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1945
1946         * gnus-start.el (gnus-clean-old-newsrc): Remove the newsrc cleanups
1947         that were only relevant in a development version a long time ago.
1948
1949 2013-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
1950
1951         * gnus-art.el (gnus-shr-put-image): Make it work as well for shr.el's
1952         that the old Emacs 24s bundle.
1953
1954 2013-07-10  David Engster  <deng@randomsample.de>
1955
1956         * gnus-start.el (gnus-clean-old-newsrc): Always remove 'unexist' marks
1957         if `gnus-newsrc-file-version' does not match `gnus-version'.  This
1958         fixes a bug in Emacs trunk where the 'unexist' marks were always
1959         removed at startup because "Gnus v5.13" was considered smaller than "Ma
1960         Gnus v0.03".
1961
1962 2013-07-10  Tassilo Horn  <tsdh@gnu.org>
1963
1964         * gnus.el (gnus-summary-line-format): Reference
1965         `gnus-user-date-format-alist' for the &user-date; format, not
1966         `gnus-summary-user-date-format-alist'.
1967
1968 2013-07-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1969
1970         * nnml.el (nnml-request-compact-group): Don't bug out if we can't
1971         delete files (bug#13481).
1972
1973 2013-07-08  Tassilo Horn  <tsdh@gnu.org>
1974
1975         * gnus-registry.el (gnus-registry-remove-extra-data): New function.
1976
1977 2013-07-06  Lars Ingebrigtsen  <larsi@gnus.org>
1978
1979         * gnus-art.el (gnus-block-private-groups): Allow `global' methods to
1980         display images.
1981
1982         * gnus.el (gnus-valid-select-methods): Mark nnrss as global.
1983
1984         * message.el (message-cancel-news): According to
1985         <mailman.216.1372942181.12400.help-gnu-emacs@gnu.org>, "cancel" is
1986         preferred over "cmsg cancel" in the Subject.
1987
1988         * nnir.el (nnir-engines): Note that the group specs are regexps
1989         (bug#13238).
1990
1991         * gnus-msg.el (gnus-copy-article-buffer): If the article buffer has
1992         gotten read-only text properties, ensure that those aren't heeded when
1993         copying stuff over (bug#13434).
1994
1995         * mm-view.el (mm-inline-text-html): Don't bug out on multipart messages
1996         (bug#13762).
1997
1998 2013-07-05  David Kastrup  <dak@gnu.org>
1999
2000         * auth-source.el (auth-source-netrc-parse-one): Allow empty strings in
2001         authinfo file again (important for blank passwords).  This had been
2002         broken with 2013-06-15 change.
2003
2004 2013-07-03  Katsumi Yamaoka  <yamaoka@jpl.org>
2005
2006         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups):
2007         Revert 2013-01-14 change.
2008
2009 2013-07-02  Daiki Ueno  <ueno@gnu.org>
2010
2011         * mml2015.el (mml2015-epg-key-image): Use 'gnus-create-image' instead
2012         of 'create-image' for XEmacs compatibility; check errors when decoding
2013         image.  Reported by Uwe Brauer.
2014
2015 2013-06-28  Katsumi Yamaoka  <yamaoka@jpl.org>
2016
2017         * gnus-art.el (gnus-article-extend-url-button): Make it work again with
2018         gnus-button-push revised at 2011-01-19.
2019
2020 2013-06-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2021
2022         * eww.el, shr.el, shr-color.el: Removed from the Gnus repository.  They
2023         now live in the lisp/net Emacs 24 repository.
2024
2025 2013-06-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2026
2027         * eww.el (eww-update-header-line-format): Quote % characters.
2028
2029 2013-06-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2030
2031         * eww.el (eww-process-text-input): Display passwords as asterisks.
2032
2033         * shr.el (shr-make-table-1): Protect against invalid column-spans.
2034
2035 2013-06-19  Tom Tromey  <tromey@redhat.com>
2036
2037         * eww.el (eww-top-url): Remove.
2038         (eww-home-url, eww-start-url, eww-contents-url): New defvars.
2039         (eww-render): Set new variables.  Don't set eww-top-url.
2040         (eww-handle-link): Handle "prev", "home", and "contents".
2041         Downcase the rel text.
2042         (eww-top-url): Choose best top URL.
2043
2044 2013-06-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2045
2046         * eww.el: Rewrite to implement form elements "by hand" instead of
2047         relying in widget.el.  Using widget.el leads to too many
2048         user interface inconsistencies.
2049         (eww-self-insert): Implement entering commands in text fields.
2050         (eww-process-text-input): New function to make text input field editing
2051         work.
2052         (eww-submit): Rewrite to use the new-style form methods.
2053         (eww-select-display): Display the correct selected item.
2054         (eww-change-select): Implement changing the select value.
2055         (eww-toggle-checkbox): Implement radio/checkboxes.
2056         (eww-update-field): Fix compilation error.
2057         (eww-tag-textarea): Implement <textarea>.
2058
2059         * shr.el (shr-urlify): Use `keymap' instead of `local-map' so that we
2060         don't shadow mode-specific bindings.
2061
2062         * eww.el (eww-browse-url): Don't push stuff onto history if there's
2063         nothing to push.
2064
2065         * shr.el (shr-map): Bind [down-mouse-1] to browse URLs.
2066
2067 2013-06-19  Glenn Morris  <rgm@gnu.org>
2068
2069         * gnus-group.el (gnus-mark-article-as-read): Fix declaration.
2070
2071 2013-06-18  Teodor Zlatanov  <tzz@lifelogs.com>
2072
2073         * auth-source.el (auth-source-netrc-parse-entries): Remove debugging.
2074
2075 2013-06-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2076
2077         * shr.el (shr-make-table-1): Implement <td rowspan>.
2078         (shr-table-horizontal-line): Allow nil as a value, and change the
2079         default.
2080         (shr-insert-table-ruler): Respect the nil value.
2081
2082 2013-06-18  Tom Tromey  <tromey@barimba>
2083
2084         * eww.el (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
2085         New defvars.
2086         (eww-open-file): New defun.
2087         (eww-render): Initialize new variables.
2088         (eww-display-html): Handle "link" and "a".
2089         (eww-handle-link, eww-tag-link, eww-tag-a): New defuns.
2090         (eww-mode-map): Move "p" to "l".  Bind "p", "n", "t", and "u".
2091         (eww-back-url): Rename from eww-previous-url.
2092         (eww-next-url, eww-previous-url, eww-up-url, eww-top-url): New
2093         defuns.
2094
2095 2013-06-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2096
2097         * shr.el (shr-tag-table): Insert the images after the table, so that
2098         they're not covered by the table colourisation, which often looked
2099         awkward.
2100         (shr-tag-dl, shr-tag-dt, shr-tag-dd): Add support for <dl>, <dt> and
2101         <dd>.
2102         (shr-make-table-1): Implement <td colspan=> support.
2103         (shr-insert-document): Use one less than window width if `shr-width' is
2104         nil, since otherwise things may get one character too wide.
2105
2106 2013-06-18  Katsumi Yamaoka  <yamaoka@jpl.org>
2107
2108         * eww.el (eww-detect-charset): Improve regexp; move backward.
2109
2110 2013-06-18  Glenn Morris  <rgm@gnu.org>
2111
2112         * mm-decode.el (widget-convert-button): Autoload.
2113
2114         * sieve-manage.el (mm-enable-multibyte): Autoload.
2115
2116         * shr.el (libxml-parse-html-region): Declare.
2117         (shr-render-buffer): Explicit error if no libxml2 support.
2118
2119 2013-06-17  Teodor Zlatanov  <tzz@lifelogs.com>
2120
2121         * auth-source.el (auth-source-current-line): New function.
2122         (auth-source-netrc-parse-entries): When a data token is "machine",
2123         assume we're in the wrong place and abort parsing the current line.
2124
2125 2013-06-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2126
2127         * eww.el (eww-tag-select): Don't render totally empty <select> forms.
2128         (eww-convert-widgets): Don't bug out if the first widget starts at the
2129         beginning of the buffer.
2130         (eww-convert-widgets): Fix last patch.
2131         (eww-tag-input): Support <input type=image>.
2132
2133         * shr.el (shr-insert-table): Respect border-collapse: collapse.
2134         (shr-tag-base): Protect against base specs that are degenerate.
2135         (shr-ensure-paragraph): Don't delete empty lines that have text
2136         properties, because these may be input fields.
2137
2138         * eww.el (eww-convert-widgets): Put `help-echo' on input fields so that
2139         we can navigate to them.
2140
2141         * shr.el (shr-colorize-region): Put the colours over the entire region.
2142         (shr-inhibit-decoration): New variable.
2143         (shr-add-font): Use it to inhibit text property decorations while doing
2144         preliminary table renderings.  This speeds up typical Wikipedia page
2145         renderings by 15%.
2146         (shr-tag-span): Don't respect the <title>, because that overwrites the
2147         help-echo from links inside the spans.
2148         (shr-next-link): Use `help-echo' for navigation, so that we can
2149         navigate to form elements, too.
2150
2151         * eww.el (eww-button): New face.
2152         (eww-convert-widgets): Use it to make submit buttons more button-like.
2153
2154         * mm-decode.el (mm-convert-shr-links): Override the shr local map, so
2155         that Gnus commands work.
2156
2157         * shr.el (shr-render-td): Support horizontal alignment.
2158
2159         * eww.el (eww-put-color): Removed.
2160         (eww-colorize-region): Use `add-face-text-property'.
2161
2162         * shr.el (shr-add-font): Append face data, so that we get the correct
2163         precedence: The innermost value (which is applied first) wins.
2164         (shr-make-overlay): Obsolete function.
2165
2166         * mm-decode.el (mm-convert-shr-links): New function to convert
2167         new-style shr URL links into widgets.
2168         (mm-shr): Use it.
2169
2170         * eww.el (eww-mode-map): Use `shr-next-link' (etc) instead of the
2171         widget commands, since we're no longer using widgets for links.
2172
2173         * shr.el (shr-next-link): New command.
2174         (shr-previous-link): New command.
2175         (shr-urlify): Don't use `widget-convert', because that's slow.
2176         (shr-put-color-1): Use `add-face-text-property' instead of overlays,
2177         because collecting the overlays and reapplying them when generating
2178         tables is slow.
2179         (shr-insert-table): Ditto.
2180
2181 2013-06-17  Stefan Monnier  <monnier@iro.umontreal.ca>
2182
2183         * sieve.el (sieve-edit-script): Avoid beginning-of-buffer.
2184         * shr.el (browse-url): Require `url'.
2185         * eww.el (url): Require format-spec.
2186
2187 2013-06-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2188
2189         * eww.el (eww-display-html): Default to using the entire window width.
2190         (eww-browse-url): Don't add a User-Agent header (twice), because that
2191         makes Bing refuse connection.
2192
2193         * shr.el (shr-make-table): Cache the table rendering at the table
2194         level, and not the <td> level.  This is a bit faster.
2195
2196         * eww.el (eww-render): Go to the correct ID when given URLs ending with
2197         #id.
2198
2199         * shr.el (shr-tag-li): Don't require a new paragraph, since other
2200         browsers don't.
2201         (shr-expand-url): Respect #anchor links.
2202         (shr-parse-base): Chop off the anchor before using.
2203         (shr-descend): Respect display: none.
2204         (shr-descend): Allow marking elements that have certain IDs.
2205
2206         * eww.el (eww-tag-textarea): Use `text' instead of `editable-field'.
2207
2208         * shr.el (shr-expand-url): Don't bug out on zero-length links.
2209
2210         * eww.el (eww-tag-textarea): Support <textarea>.
2211
2212 2013-06-16  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
2213
2214         * shr.el (shr-dom-to-xml): Fixed function call.
2215
2216         * eww.el (eww): New group.
2217         (eww-header-line-format): New custom variable.
2218         (eww-current-title): New variable.
2219         (eww-display-html): Update header and handle title tag.
2220         (eww-update-header-line-format): New function.
2221         (eww-tag-title): New function.
2222
2223         * shr.el (shr-dom-to-xml): New function.
2224         (shr-tag-svg): Add support for the SVG tag.
2225         (shr-bullet): New custom variable.
2226         (shr-tag-li): Support custom bullet in unordered lists.
2227
2228 2013-06-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2229
2230         * shr.el (shr-expand-url): Respect // URLs.
2231
2232         * eww.el (eww-tag-body): Override the shr body rendering so that we can
2233         put a background colour onto the entire buffer.
2234         (eww-render): When being redirected, use the redirect URL as the new
2235         base URL.
2236
2237         * shr.el (shr-parse-base): Fix parsing error.
2238
2239         * eww.el (eww-submit): Pass the base in to `shr-expand-url'.
2240
2241         * shr.el (shr-parse-base): New function.
2242         (shr-expand-url): Use it to expand relative URLs reliably.
2243
2244 2013-06-15  Teodor Zlatanov  <tzz@lifelogs.com>
2245
2246         * auth-source.el (auth-source-search-collection): Fix docstring.
2247         (auth-source-netrc-parse): Refactor and improve netrc parser to support
2248         single-quoted strings and multiline entries.
2249         (auth-source-netrc-parse-next-interesting)
2250         (auth-source-netrc-parse-one, auth-source-netrc-parse-entries): New
2251         functions to support parser.
2252
2253 2013-06-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2254
2255         * eww.el (eww-submit): Get submit button logic right when hitting RET
2256         on non-submit buttons.
2257
2258         * shr.el: Remove shr-preliminary-table-render, since that can't really
2259         be used for anything in practice.
2260
2261 2013-06-13  Albert Krewinkel  <tarleb@moltkeplatz.de>
2262
2263         * sieve.el: Rebind q to (sieve-bury-buffer), bind Q to
2264         (sieve-manage-quit).
2265
2266 2013-06-14  Glenn Morris  <rgm@gnu.org>
2267
2268         * mml2015.el (mml2015-maximum-key-image-dimension): Add :version.
2269
2270 2013-06-14  David Edmondson  <dme@dme.org>  (tiny change)
2271
2272         * mml2015.el (mml2015-maximum-key-image-dimension): New user option to
2273         control the maximum size of photo ID image.
2274         (mml2015-epg-key-image-to-string): Respect it.
2275
2276 2013-06-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2277
2278         * shr.el (shr-tag-table-1): Mark the preliminary table renderings
2279         instead of the final one so that we can more easily distinguish them.
2280
2281         * eww.el (eww-submit): Compute the submission URL correctly.
2282
2283 2013-06-13  Stefan Monnier  <monnier@iro.umontreal.ca>
2284
2285         * sieve-manage.el (sieve-manage-open-server): Don't quote lambda.
2286         Use plist-get rather than CL's getf.
2287         (sieve-manage-parse-capability): Avoid CL's remove-if.
2288
2289 2013-06-13  Albert Krewinkel  <tarleb@moltkeplatz.de>
2290
2291         * sieve.el: Rebind q to (sieve-bury-buffer), bind Q to
2292         (sieve-manage-quit).
2293
2294 2013-06-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2295
2296         * shr.el (shr-expand-url): Expansion should chop off the bits after the
2297         last slash.
2298
2299         * eww.el (eww-tag-select): Use the first value as the default value.
2300
2301 2013-06-13  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
2302
2303         * eww.el (eww): Prepend urls with http:// if scheme is missing.
2304         (eww-mode): Use `define-derived-mode'.
2305         (eww-parse-headers): Parse headers from beginning of buffer so that
2306         file:// links work.
2307
2308 2013-06-13  Katsumi Yamaoka  <yamaoka@jpl.org>
2309
2310         * eww.el (eww-detect-charset): Detect charset from the <meta> tag.
2311
2312 2013-06-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2313
2314         * shr.el (shr-tag-svg): Ignore SVG elements, because we don't know how
2315         to handle them at all.
2316
2317 2013-06-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2318
2319         * eww.el (eww-convert-widgets): Make widgets from non-tabular layouts
2320         work, too.
2321         (eww-tag-select): Implement <select>.
2322
2323 2013-06-10  Albert Krewinkel  <krewinkel@moltkeplatz.de>
2324
2325         * sieve-manage.el (sieve-manage-open): work with STARTTLS: shorten
2326         stream managing functions by using open-protocol-stream to do most of
2327         the work.  Has the nice benefit of enabling STARTTLS.
2328         Wait for capabilities after STARTTLS: following RFC5804, the server
2329         sends new capabilities after successfully establishing a TLS connection
2330         with the client.  The client should update the cached list of
2331         capabilities, but we just ignore the answer for now.
2332         (sieve-manage-network-p, sieve-manage-network-open)
2333         (sieve-manage-starttls-p, sieve-manage-starttls-open)
2334         (sieve-manage-forward, sieve-manage-streams)
2335         (sieve-manage-stream-alist): Remove unneeded functions neither in the
2336         API, nor called by any other function.
2337         Enable Multibyte for SieveManage buffers: The parser won't properly
2338         handle umlauts and line endings unless multibyte is turned on in the
2339         process buffer.
2340
2341 2013-06-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2342
2343         * eww.el (eww-tag-input): Support password fields.
2344         (eww-submit): Support POST.
2345
2346 2013-06-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2347
2348         * eww.el (eww-tag-form): Protect against degenerate forms.
2349
2350         * shr.el (shr-expand-url): Expand URLs that start with a slash
2351         correctly.
2352
2353         * eww.el (eww-submit): Get submit button logic right.
2354
2355         * shr.el (shr-final-table-render): New variable to signal when we're
2356         doing the final table rendering so that we can collect more data at
2357         that point.
2358
2359         * eww.el (eww-submit): Make form submission work.
2360         (eww-tag-input): Implement submit buttons.
2361         (eww-click-radio): Implement radio and checkboxes.
2362         (eww-submit): Handle hidden elements.
2363
2364         * shr.el (shr-descend): Allow other packages to override (or provide)
2365         rendering of elements.
2366         (shr-expand-url): Strip query strings from URLs before expanding them.
2367
2368         * eww.el: Don't require cl-lib.
2369         (eww-tag-form): Start form support.
2370
2371         * dgnushack.el (dgnushack-compile): Ignore eww on XEmacs.
2372
2373         * eww.el: Start writing a new, tiny web browser.
2374         (eww-previous-url): New command.
2375         (eww-quit): New command.
2376
2377 2013-06-10  Albert Krewinkel  <krewinkel@moltkeplatz.de>
2378
2379         * sieve.el: Put point at beginning of buffer when viewing a script.
2380         (sieve-open-server): Respect the PORT parameter.  Show the correct port
2381         number in sieve-buffer's header.  Fixed code to also work with a string
2382         as port specifier.  Properly close the connection on pressing 'q'.  Make
2383         sieve-manage-quit close the connection and process buffer.  Also, remove
2384         duplicate keybinding for 'q'.
2385
2386 2013-06-10  Roy Hashimoto  <roy.hashimoto@gmail.com>  (tiny change)
2387
2388         * mm-view.el (mm-pkcs7-signed-magic): Allow newline in the regexp and
2389         make it easier to read.
2390         (mm-pkcs7-enveloped-magic): Ditto.
2391
2392 2013-06-06  Teodor Zlatanov  <tzz@lifelogs.com>
2393
2394         * gnus-ems.el (gnus-image-type-available-p): Test `display-images-p'
2395         before `image-type-available-p' to avoid loading the image libraries
2396         needlessly.
2397
2398 2013-06-05  David Engster  <deng@randomsample.de>
2399
2400         * gnus-sum.el (gnus-update-marks): Do not remove empty 'unexist'
2401         ranges, since `nnimap-retrieve-group-data-early' also uses it as a flag
2402         to see whether the group was synced before.
2403
2404 2013-06-05  Teodor Zlatanov  <tzz@lifelogs.com>
2405
2406         * tls.el (open-tls-stream): Remove unneeded buffer contents up to point
2407         when opening the connection.
2408         Suggested by João Távora <joaotavora@gmail.com> in
2409         <http://lists.gnu.org/archive/html/emacs-devel/2013-05/msg00464.html>.
2410
2411 2013-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
2412
2413         * gnus-art.el (article-date-ut, article-update-date-lapsed): Don't
2414         assume Date header begins with "Date", that may be customized into
2415         something like "X-Sent" using gnus-article-time-format.
2416         (article-transform-date): Allow multi-line Date header.
2417
2418 2013-06-02  David Engster  <deng@randomsample.de>
2419
2420         * registry.el (initialize-instance, registry-lookup)
2421         (registry-lookup-breaks-before-lexbind, registry-lookup-secondary)
2422         (registry-lookup-secondary-value, registry-search, registry-delete)
2423         (registry-insert, registry-reindex, registry-size, registry-prune): Do
2424         not wrap methods in `eval-and-compile'.  This breaks due to latest
2425         changes in EIEIO (introduction of eieio-core.el).
2426
2427 2013-05-30  Glenn Morris  <rgm@gnu.org>
2428
2429         * nnmail.el (nnmail-fancy-expiry-target):
2430         Also bind mail-dont-reply-to-names.
2431
2432         * spam-stat.el (spam-stat-save):
2433         No need to tweak font-lock in temp buffers.
2434
2435         * shr.el (shr-put-image): Silence compiler.
2436
2437 2013-05-29  Glenn Morris  <rgm@gnu.org>
2438
2439         * gnus-ems.el (set-process-plist): Every supported Emacs has this.
2440
2441         * gnus-group.el (gnus-sequence-of-unread-articles)
2442         (gnus-summary-add-mark, gnus-mark-article-as-read)
2443         (gnus-group-make-articles-read): Declare.
2444
2445         * gnus-sum.el (gnus-parameter-list-identifier)
2446         (gnus-article-stop-animations, gnus-stop-downloads)
2447         (gnus-article-only-boring-p, article-goto-body)
2448         (gnus-flush-original-article-buffer, article-narrow-to-head)
2449         (gnus-article-hidden-text-p, gnus-delete-wash-type)
2450         (gnus-summary-save-in-pipe, gnus-article-show-summary): Declare.
2451
2452         * gnus.el: No need to eval-and-compile autoloads.
2453
2454         * gravatar.el (help-function-arglist): Autoload.
2455
2456         * nnimap.el (gnus-refer-thread-use-nnir): Declare.
2457
2458         * nnmail.el (nnmail-fancy-expiry-target): Maybe use mail-dont-reply-to.
2459
2460         * spam.el: No need to load spam-report when compiling.
2461         No need to eval-and-compile autoloads.
2462         (spam-report-resend-to): Declare.
2463         (spam-report-resend-register-routine): Require 'spam-report.
2464
2465 2013-05-24  Julien Danjou  <julien@danjou.info>
2466
2467         * sieve.el (sieve-setup-buffer): Fix default port value in sieve buffer
2468         setup.
2469
2470 2013-05-23  Glenn Morris  <rgm@gnu.org>
2471
2472         * gnus-util.el (rmail-swap-buffers-maybe)
2473         (rmail-maybe-set-message-counters, rmail-count-new-messages)
2474         (rmail-summary-exists, rmail-show-message, rmail-summary-displayed)
2475         (rmail-pop-to-buffer, rmail-maybe-display-summary): Declare.
2476
2477         * mm-decode.el: No need to load term when compiling.
2478         (term-mode, term-char-mode): Declare.
2479
2480         * mm-util.el: No need to load jka-compr when compiling.
2481         (jka-compr-acceptable-retval-list, jka-compr-make-temp-name): Declare.
2482
2483         * nnmaildir.el: Require is automatically eval-and-compile.
2484         (nnmail): Require at run-time too.
2485
2486         * registry.el (registry-size): Move definition before use.
2487
2488 2013-05-22  Daiki Ueno  <ueno@gnu.org>
2489
2490         * mml2015.el (mml2015-epg-sign): Make sure to insert newline after the
2491         signed data to conform the standard.  (Bug#14232)
2492
2493 2013-05-20  Adam Sjøgren  <asjo@koldfront.dk>
2494
2495         * gnus-spec.el (gnus-parse-complex-format): Use unicode escape for left
2496         double angle quotation mark.
2497
2498 2013-05-20  Glenn Morris  <rgm@gnu.org>
2499
2500         * format-spec.el (format-spec): Allow spec chars with nil.  (Bug#14420)
2501
2502 2013-05-19  Adam Sjøgren  <asjo@koldfront.dk>
2503
2504         * message.el (message-insert-formatted-citation-line): handle finding
2505         first/lastname when more than 2 names appear.
2506
2507 2013-05-19  Adam Sjøgren  <asjo@koldfront.dk>
2508
2509         * shr.el (shr-tag-span): New function.
2510
2511 2013-05-18  Glenn Morris  <rgm@gnu.org>
2512
2513         * message.el (message-mode): Use message-mode-abbrev-table,
2514         with text-mode-abbrev-table as parent.  (Bug#14413)
2515
2516 2013-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
2517
2518         * message.el (message-expand-group): Decode group names.
2519
2520 2013-05-16  Julien Danjou  <julien@danjou.info>
2521
2522         * gnus-notifications.el (gnus-notifications-notify): Use photo-file as
2523         app-icon.
2524
2525 2013-05-15  Glenn Morris  <rgm@gnu.org>
2526
2527         * shr-color.el (shr-color-visible-luminance-min)
2528         (shr-color-visible-distance-min): Use shr-color group.
2529
2530 2013-05-11  Glenn Morris  <rgm@gnu.org>
2531
2532         * gnus-vm.el: Make it loadable without VM.
2533         (gnus-vm-make-folder, gnus-summary-save-in-vm): Require 'vm.
2534         (vm-forward-message, vm-reply, vm-mail): Remove unused autoloads.
2535
2536 2013-05-09  Glenn Morris  <rgm@gnu.org>
2537
2538         * mml1991.el: Make it loadable.  (Bug#13456)
2539
2540         * gnus-art.el (gnus-article-date-headers, gnus-blocked-images):
2541         * gnus-async.el (gnus-async-post-fetch-function):
2542         * gnus-gravatar.el (gnus-gravatar-size, gnus-gravatar-properties):
2543         * gnus-html.el (gnus-html-image-cache-ttl):
2544         * gnus-notifications.el (gnus-notifications-timeout):
2545         * gnus-picon.el (gnus-picon-properties):
2546         * gnus-util.el (gnus-completion-styles):
2547         * gnus.el (gnus-other-frame-resume-function):
2548         * message.el (message-user-organization-file)
2549         (message-cite-reply-position):
2550         * nnir.el (nnir-summary-line-format)
2551         (nnir-retrieve-headers-override-function):
2552         * shr-color.el (shr-color-visible-luminance-min):
2553         * shr.el (shr-blocked-images):
2554         * spam-report.el (spam-report-resend-to):
2555         * spam.el (spam-summary-exit-behavior): Fix custom types.
2556
2557         * gnus-salt.el (gnus-selected-tree-face): Fix default.
2558
2559 2013-05-07  Katsumi Yamaoka  <yamaoka@jpl.org>
2560
2561         * gnus-art.el (gnus-article-describe-bindings): Require help-mode
2562         because of let-binding help-xref-following.  (Bug#14356)
2563
2564 2013-05-06  Glenn Morris  <rgm@gnu.org>
2565
2566         * mml2015.el (mml2015-epg-sign): Add name="signature.asc".  (Bug#13465)
2567
2568 2013-05-04  Andrew Cohen  <cohen@bu.edu>
2569
2570         * gnus-sum.el (gnus-read-header): Ensure groups are prefixed when
2571         entering into the registry.
2572
2573 2013-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
2574
2575         * gnus.el: Ma Gnus v0.7 is released.
2576
2577 2013-05-01  Katsumi Yamaoka  <yamaoka@jpl.org>
2578
2579         * gnus-util.el (gnus-emacs-completing-read): Fix a filter for XEmacs.
2580         (Bug#14304)
2581
2582 2013-04-27  Glenn Morris  <rgm@gnu.org>
2583
2584         * gnus.el (gnus-list-debbugs):
2585         Use require rather than autoload.  (Bug#14262)
2586
2587 2013-04-27  Julien Danjou  <julien@danjou.info>
2588
2589         * sieve-manage.el (sieve-manage-authenticator-alist): Update the sieve
2590         port to "sieve" now that it has an official IANA port assigned.
2591
2592 2013-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
2593
2594         * mail-source.el (mail-source-fetch-pop, mail-source-check-pop):
2595         Don't set the MAILHOST environment variable permanently (Bug#14271).
2596
2597 2013-04-26  Glenn Morris  <rgm@gnu.org>
2598
2599         * message.el (message-bury): Revert 2013-03-18 change.  (Bug#14117)
2600
2601 2013-04-25  Andrew Cohen  <cohen@bu.edu>
2602
2603         * gnus-msg.el (gnus-inews-insert-gcc): Re-order conditional to work for
2604         string values of 'gcc-self.  Thanks to Saroj Thirumalai.
2605
2606 2013-04-24  Andrew Cohen  <cohen@bu.edu>
2607
2608         * nnir.el (nnir-close-group): Make sure we are in the right group.
2609
2610         * gnus-sum.el (gnus-summary-insert-articles): Force updates to the
2611         dependency table from all newly retrieved headers.
2612
2613 2013-04-16  David Edmondson  <dme@dme.org>
2614
2615         Support <img src="data:...">.
2616
2617         * shr.el (shr-image-from-data): New function.
2618         (shr-tag-img): Use it.
2619
2620 2013-04-14  Andrew Cohen  <cohen@bu.edu>
2621
2622         * nnir.el (nnir-request-set-mark): Make sure we are in the right
2623         group.
2624
2625 2013-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
2626
2627         * gnus-msg.el (gnus-msg-mail): Make it avoid using posting styles
2628         corresponding to any existing group (Bug#14166).
2629
2630 2013-04-10  Andrew Cohen  <cohen@bu.edu>
2631
2632         * nnir.el (number-sequence): No longer used.
2633         (nnir-request-set-mark): New function.
2634         (nnir-request-update-info): Improve marks updating.
2635         (nnir-request-scan): Don't duplicate marks updating.
2636         (gnus-group-make-nnir-group, nnir-run-imap, nnir-request-create-group):
2637         Use 'assq rather than 'assoc.  Quote anonymous function.
2638         (nnir-request-group, nnir-close-group, gnus-summary-create-nnir-group):
2639         Use 'gnus-group-prefixed-p.
2640         (gnus-summary-create-nnir-group): Make sure server for method is open.
2641
2642 2013-04-04  Andrew Cohen  <cohen@bu.edu>
2643
2644         * nnir.el (gnus-nnir-group-p): New function.
2645         (nnir-possibly-change-group): Use it.
2646
2647         * gnus-msg.el (gnus-setup-message): Use it.
2648
2649 2013-04-04  Katsumi Yamaoka  <yamaoka@jpl.org>
2650
2651         * mml.el (mml-minibuffer-read-description): Use `default' insted of
2652         `initial-input' for the argument name.
2653         Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
2654
2655 2013-04-03  Kevin Layer  <layer@known.net>  (tiny change)
2656
2657         * mml.el (mml-minibuffer-read-description): Allow passing in a prefix
2658         (used by MH-E).
2659
2660 2013-04-01  Andrew Cohen  <cohen@bu.edu>
2661
2662         * nnir.el (nnir-request-update-mark): Improve mark updating in original
2663         group.
2664
2665         * gnus-msg.el (nnir-article-number, nnir-article-group): Autoload to
2666         fix compilation.
2667
2668 2013-03-31  Andrew Cohen  <cohen@bu.edu>
2669
2670         * nnir.el (nnir-method-default-engines): And another typo.
2671
2672 2013-03-30  Andrew Cohen  <cohen@bu.edu>
2673
2674         * nnir.el (nnir-method-default-engines): Fix typo.
2675
2676 2013-03-29  Andrew Cohen  <cohen@bu.edu>
2677
2678         * nnir.el: Define 'number-sequence for xemacs.
2679         (gnus-summary-create-nnir-group): New function to create an nnir group
2680         from an nnir summary buffer based on the current query.
2681         (nnir-request-create-group): Update to allow nnir group creation based
2682         on the current query.
2683
2684 2013-03-28  Katsumi Yamaoka  <yamaoka@jpl.org>
2685
2686         * nndraft.el (nndraft-request-expire-articles):
2687         Make expiry target always `delete'.
2688
2689 2013-03-27  Andrew Cohen  <cohen@bu.edu>
2690
2691         * gnus-msg.el (gnus-setup-message): When replying from an nnir summary
2692         buffer use the posting-style and gcc of the original article group.
2693         (gnus-inews-insert-gcc): Don't set gcc-self for virtual groups.
2694
2695         * nnir.el: Fix byte-compile warning.  nnoo-define-skeleton should come
2696         after other deffoos.
2697
2698 2013-03-25  Andrew Cohen  <cohen@bu.edu>
2699
2700         * nnir.el: Major rewrite.  Cleaner separation between searches and group
2701         management.  Marks are now shown in nnir summary buffers.  Rudimentary
2702         support for real (i.e. not ephemeral) nnir groups.
2703         (gnus-summary-make-nnir-group): New function for initiating searches
2704         from a summary buffer.
2705
2706 2013-03-18  Sam Steingold  <sds@gnu.org>
2707
2708         * message.el (message-bury): Minor cleanup.
2709
2710 2013-03-07  Paul Eggert  <eggert@cs.ucla.edu>
2711
2712         * gnus-cite.el: Specify utf-8, not iso-8859-1, for ASCII file.
2713
2714 2013-03-06  Katsumi Yamaoka  <yamaoka@jpl.org>
2715
2716         * nndir.el (nndir-request-list): Remove 2nd argument passed to
2717         nnml-request-list.  (Bug#13873)
2718         (nndir-request-newsgroups): Remove, unused.
2719
2720         * nndraft.el (nndraft-request-newsgroups): Remove, unused.
2721
2722 2013-03-05  Paul Eggert  <eggert@cs.ucla.edu>
2723
2724         * deuglify.el, gnus-delay.el, gnus-spec.el, gnus-sum.el, html2text.el,
2725         message.el, mm-decode.el, mml1991.el, nnir.el, shr.el, utf7.el:
2726         Prefer UTF-8 when the encoding shouldn't matter and changes are small.
2727
2728 2013-03-03  Ted Phelps  <phelps@gnusto.com>
2729
2730         * shr.el: Make all the overlays set the `evaporate' property so that
2731         they're removed properly.
2732
2733 2013-02-25  Adam Sjøgren  <asjo@koldfront.dk>  (tiny change)
2734
2735         * mml2015.el (mml2015-epg-key-image): Wrap epg-gpg-program in
2736         shell-quote-argument.
2737
2738 2013-02-22  David Engster  <deng@randomsample.de>
2739
2740         * gnus-registry.el (gnus-registry-save): Provide class name when
2741         calling `eieio-persistent-read' to avoid "unsafe call" warning.  Use
2742         `condition-case' to stay compatible with older EIEIO versions which
2743         only accept one argument.
2744
2745 2013-02-17  Daiki Ueno  <ueno@gnu.org>
2746
2747         * mml2015.el (epg-key-user-id-list, epg-user-id-string)
2748         (epg-user-id-validity): Autoload.
2749         (mml2015-epg-check-user-id): New function.
2750         (mml2015-epg-check-sub-key): New function split from
2751         mml2015-epg-find-usable-key.
2752         (mml2015-epg-find-usable-key): Accept context, name, usage, and
2753         optional name-is-key-id, to handle the case when user-id is unusable.
2754         Reported by Łukasz Stelmach <stlman@poczta.fm>.
2755
2756 2013-02-17  Glenn Morris  <rgm@gnu.org>
2757
2758         * shr.el (shr-put-image): Use image-multi-frame-p if available.
2759
2760 2013-02-16  Glenn Morris  <rgm@gnu.org>
2761
2762         * shr.el (shr-put-image): Only animate images that specify a delay.
2763         This is consistent with the old image-animated-p behavior.
2764
2765 2013-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
2766
2767         * gnus-util.el (gnus-define-keys): Convert [?\S-\ ] to [(shift space)]
2768         for XEmacs.
2769
2770 2013-02-13  Juri Linkov  <juri@jurta.org>
2771
2772         * gnus-art.el (gnus-article-mode-map):
2773         * gnus-sum.el (gnus-summary-mode-map, gnus-summary-article-map):
2774         Make S-SPC scroll in the opposite sense to SPC.  (Bug#2145)
2775
2776 2013-02-07  Gábor Vida  <gabor.v.vida@ericsson.com>  (tiny change)
2777
2778         * auth-source.el (auth-source-format-prompt): Don't get confused by
2779         any "\" in replacement text.  (Bug#13637)
2780
2781 2013-01-30  Christopher Schmidt  <christopher@ch.ristopher.com>
2782
2783         * gnus-int.el (gnus-backend-trace-elapsed): New variable.
2784         (gnus-backend-trace): Honour gnus-backend-trace.
2785
2786         * mml.el (mml-insert-part): Insert closing tag.
2787
2788         * mm-decode.el (mm-save-part): Handle invalid read-file-name results.
2789
2790 2013-01-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2791
2792         * gnus-sum.el (gnus-summary-read-group-1): Protect against not being
2793         able to find the article, which can happen in debbugs groups,
2794         apparently.
2795
2796 2013-01-16  Glenn Morris  <rgm@gnu.org>
2797
2798         * smiley.el (smiley-style): Make the file loadable in batch mode.
2799
2800 2013-01-15  Stefan Monnier  <monnier@iro.umontreal.ca>
2801
2802         * nnimap.el (nnimap-keepalive): Don't throw an error if there's no more
2803         imap process running.
2804
2805 2013-01-14  Julien Danjou  <julien@danjou.info>
2806
2807         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups):
2808         Compare addresses against addresses, not against the full From field.
2809
2810 2013-01-13  Richard Stallman  <rms@gnu.org>
2811
2812         * message.el (message-forward-make-body-mime): New args BEG, END
2813         specify what part of FORWARD-BUFFER to use.  Do the work directly
2814         instead of calling `mml-insert-buffer'.
2815
2816 2013-01-11  Aaron S. Hawley  <Aaron.Hawley@vtinfo.com>
2817
2818         * gnus-start.el (gnus-check-new-newsgroups): Fix ambiguous doc string
2819         cross-reference(s).
2820
2821         * gnus-sum.el (gnus-summary-newsgroup-prefix): Fix ambiguous doc string
2822         cross-reference(s).
2823
2824 2013-01-11  Dmitry Antipov  <dmantipov@yandex.ru>
2825
2826         * gnus-art.el (gnus-mime-display-security): Use point-min-marker
2827         and point-max-marker.
2828         * gnus-async.el (gnus-async-article-callback): Use point-max-marker.
2829
2830 2013-01-11  Julien Danjou  <julien@danjou.info>
2831
2832         * color.el (color-rgb-to-hsv): Fix conversion computing in case min and
2833         max are almost equal.  Also return the correct value for V which is
2834         already between 0 and 1.
2835
2836 2013-01-10  Uwe Brauer  <oub@mat.ucm.es>  (tiny change)
2837
2838         * mml-smime.el (mml-smime-encrypt-to-self): New user option analogous
2839         to mml2015-encrypt-to-self.
2840         (mml-smime-epg-encrypt): Respect mml-smime-encrypt-to-self.
2841
2842 2013-01-09  Daiki Ueno  <ueno@gnu.org>
2843
2844         * mml-smime.el (epg-sub-key-fingerprint): Autoload for
2845         mml-smime-epg-find-usable-secret-key.
2846
2847 2013-01-08  Glenn Morris  <rgm@gnu.org>
2848
2849         * mml-smime.el (mml-smime-sign-with-sender): Add :version.
2850
2851 2013-01-07  Daiki Ueno  <ueno@gnu.org>
2852
2853         * mml-smime.el: Support signing by sender.
2854         Requested by Uwe Brauer.
2855         (mml-smime-sign-with-sender): New user option analogous
2856         to mml2015-sign-with-sender.
2857         (mml-smime-epg-sign): Respect mml-smime-sign-with-sender.
2858         (mml-smime-epg-find-usable-secret-key): New helper function copied from
2859         mml2015.el.
2860
2861 2012-12-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2862
2863         * gnus-msg.el (gnus-inews-insert-gcc): Don't insert Gcc headers if Gnus
2864         isn't running, because Gnus will probably not know how to handle the
2865         Gcc header (bug#11941).
2866
2867         * nnimap.el (nnimap-update-info): Treat \Deleted articles as \Read
2868         articles.
2869
2870 2012-12-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2871
2872         * nnfolder.el (nnfolder-recursive-directory-files): New function.
2873         (nnfolder-generate-active-file): Make this function work with recursive
2874         folder names.
2875
2876 2012-12-27  Lars Ingebrigtsen  <larsi@gnus.org>
2877
2878         * nntp.el (nntp-open-connection): Use HELP as the capability command
2879         instead of CAPABILITY because Typhoon v2.2.2.503 chokes completely on
2880         unknown commands.  And CAPABILITY is an unknown command (bug#12763).
2881
2882 2012-12-27  Wolfgang Jenkner  <wjenkner@inode.at>
2883
2884         * gnus-spec.el (gnus-face-face-function): Don't use nil as no-op face
2885         place holder since this gives `Invalid face reference: nil' messages.
2886         Use the `default' face instead.  It has the same effect here, even
2887         though it is not no-op.
2888
2889         * gnus-util.el
2890         (gnus-put-text-property-excluding-characters-with-faces): Similarly.
2891
2892 2012-12-27  Lars Ingebrigtsen  <larsi@gnus.org>
2893
2894         * gnus-msg.el (gnus-summary-resend-message): Don't bug out on
2895         non-string posting styles (bug#13285).
2896
2897 2012-12-27  Glenn Morris  <rgm@gnu.org>
2898
2899         * plstore.el (plstore-passphrase-callback-function):
2900         Use plstore-get-file.
2901
2902 2012-12-27  Andreas Schwab  <schwab@linux-m68k.org>
2903
2904         * mml2015.el (mml2015-epg-key-image): Separate attribute stream from
2905         stderr.
2906
2907 2012-12-26  Katsumi Yamaoka  <yamaoka@jpl.org>
2908
2909         * mml2015.el (mml2015-epg-key-image): Use mm-set-buffer-multibyte.
2910
2911         * gnus-compat.el (set-buffer-multibyte): Remove.
2912
2913 2012-12-25  Adam Sjøgren  <asjo@koldfront.dk>
2914
2915         * mml2015.el (mml2015-epg-key-image): Use --attribute-fd rather than
2916         temporary file to get PGP key image.  Pass no-show-photos when
2917         extracting image to avoid having it pop up twice.
2918
2919 2012-12-26  Lars Ingebrigtsen  <larsi@gnus.org>
2920
2921         * gnus-art.el (gnus-article-treat-types): Include text/html as parts
2922         eligible for treatment.
2923
2924         * gnus-util.el (gnus-goto-colon): Move to the beginning of the visual
2925         lines.  This makes summary commands with hidden threads work more
2926         reliably.
2927
2928         * gnus-cite.el (gnus-article-hide-citation-maybe): Leave an expansion
2929         button to mark the hidden citations (bug#9395).
2930
2931 2012-12-26  Daiki Ueno  <ueno@gnu.org>
2932
2933         * mml2015.el (mml2015-epg-signature-to-string): New function.
2934         (mml2015-epg-verify-result-to-string): New function.
2935         (mml2015-epg-decrypt, mml2015-epg-clear-decrypt, mml2015-epg-verify)
2936         (mml2015-epg-clear-verify): Use mml2015-epg-verify-result-to-string
2937         instead of epg-verify-result-to-string.
2938         (epg-signature-key-id, epg-signature-to-string): Autoload.
2939         (epg-verify-result-to-string): Remove autoload.
2940
2941 2012-12-25  Adam Sjøgren  <asjo@koldfront.dk>
2942
2943         * mml2015.el (mml2015-epg-key-image): New function, to retrieve photo
2944         ID image from GPG public key.
2945         (mml2015-epg-key-image-to-string): New function.
2946
2947 2012-12-25  Leo Liu  <sdl.web@gmail.com>
2948
2949         * plstore.el (plstore-passphrase-callback-function): Fix error when
2950         error when plstore-cache-passphrase-for-symmetric-encryption is set
2951         (bug#13264).
2952
2953 2012-12-25  Lars Ingebrigtsen  <larsi@gnus.org>
2954
2955         * gnus-sum.el (gnus-set-global-variables): Don't copy over the summary
2956         buffer to the article buffer here, because that clobbers multiple
2957         article buffers.
2958
2959         * gnus-art.el (gnus-article-setup-buffer): Make sure that the article
2960         buffer always points to the right summary buffer.
2961
2962 2012-12-25  John Wiegley  <jwiegley@gmail.com>
2963
2964         * auth-source.el (auth-source-netrc-parse): Allow using "password" as
2965         the password (bug#12097).
2966
2967 2012-12-25  Lars Ingebrigtsen  <larsi@gnus.org>
2968
2969         * shr.el (shr-tag-a): Don't tagify <A> elements that don't have HREFs
2970         (bug#13263).
2971
2972         * gnus-salt.el (gnus-highlight-selected-tree): Check whether the Tree
2973         buffer exists before using it (bug#12475).
2974
2975         * gnus-agent.el (gnus-agent-fetch-articles): Don't fetch articles from
2976         offline groups (bug#11937).
2977
2978         * message.el (message-yank-original): When using customize to set the
2979         value of `message-cite-style', the variable it set to a symbol that's
2980         the name of the variable, which must then be dereferenced (bug#12616).
2981
2982 2012-09-13  Wolfgang Jenkner  <wjenkner@inode.at>
2983
2984         * lisp/gnus-spec.el (gnus-face-face-function): Initialize the value of
2985         the `face' property with a list whose car is the face specified in the
2986         format string and whose cdr is (nil).
2987         * lisp/gnus-util.el
2988         (gnus-put-text-property-excluding-characters-with-faces):
2989         Change accordingly.
2990         (gnus-get-text-property-excluding-characters-with-faces): New function.
2991         * lisp/gnus-sum.el (gnus-summary-highlight-line):
2992         * lisp/gnus-salt.el (gnus-tree-highlight-node):
2993         * lisp/gnus-group.el (gnus-group-highlight-line): Use it.
2994
2995 2012-12-25  Lars Ingebrigtsen  <larsi@gnus.org>
2996
2997         * nnimap.el (nnimap-authenticator): Expand to allow specifying the
2998         login methods.
2999         (nnimap-login): Respect the `nnimap-authenticator' variable.
3000
3001         * gnus-sum.el (gnus-summary-push-marks-to-backend): Push the complete
3002         mark state when moving articles.  Otherwise unticked articles will get
3003         their ticks back after moving.
3004
3005 2012-12-24  Lars Ingebrigtsen  <larsi@gnus.org>
3006
3007         * gnus-srvr.el (gnus-browse-delete-group): Fix syntax error.
3008
3009         * message.el (message-ignored-news-headers): Always remove
3010         X-Message-SMTP-Method to avoid information leakage if the user
3011         mistakenly inserts the header into news messages.
3012
3013         * gnus-srvr.el (gnus-browse-delete-group): New command and keystroke.
3014
3015         * gnus-sum.el (gnus-summary-hide-thread): If point were further to the
3016         right than four characters, this command would move point to
3017         `point-max'.  Don't do that.
3018
3019         * gnus-group.el (gnus-group-read-ephemeral-group): Set the active data
3020         to nil to allow re-selecting groups that gain articles.
3021         (gnus-bug-group-download-format-alist): Update the URL.
3022
3023 2012-12-23  Andreas Schwab  <schwab@suse.de>
3024
3025         * shr.el (shr-tag-em): Render em as italic, not bold.
3026
3027 2012-12-23  Lars Ingebrigtsen  <larsi@gnus.org>
3028
3029         * gnus-int.el (gnus-backend-trace): Factor out into its own function
3030         for reuse.
3031         (gnus-open-server): Use it to add more tracing.
3032         (gnus-finish-retrieve-group-infos): Add backend tracing.
3033         (gnus-backend-trace): Also note the elapsed seconds.
3034
3035 2012-12-22  Philipp Haselwarter  <philipp@haselwarter.org>
3036
3037         * gnus-sync.el (gnus-sync-file-encrypt-to, gnus-sync-save):
3038         Set epa-file-encrypt-to from variable to avoid querying.
3039
3040 2012-12-14  Akinori MUSHA  <knu@iDaemons.org>  (tiny change)
3041
3042         * sieve-mode.el (sieve-font-lock-keywords):
3043         Keywords should be word delimited.  (Bug#13173)
3044
3045 2012-12-13  Andreas Schwab  <schwab@suse.de>
3046
3047         * tls.el (tls-program): Update customize type.
3048
3049 2012-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
3050
3051         * gnus-art.el (gnus-article-browse-html-parts): Use <div align="left">
3052         instead of <pre> to align message header.
3053
3054 2012-12-12  Sam Steingold  <sds@gnu.org>
3055
3056         * gnus.el (gnus-other-frame-resume-function): Add user option.
3057         (gnus-other-frame): Call `gnus-other-frame-resume-function' on resume.
3058
3059 2012-12-06  Sam Steingold  <sds@gnu.org>
3060
3061         * gnus-start.el (gnus-before-resume-hook): Add.
3062         (gnus-1): Run it when Gnus is alive.
3063
3064 2012-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
3065
3066         * gmm-utils.el (gmm-called-interactively-p): Restore as a macro.
3067         * gnus-art.el (article-unsplit-urls)
3068         * gnus-bookmark.el (gnus-bookmark-bmenu-list)
3069         * gnus-registry.el (gnus-registry-get-article-marks)
3070         * message.el (message-goto-body): Use it.
3071         (message-called-interactively-p): Remove.
3072
3073         * spam-stat.el (spam-stat-called-interactively-p): New macro.
3074         (spam-stat-score-buffer): Use it.
3075
3076         * spam.el: Silence the warnings against BBDB functions when compiling.
3077
3078         * gnus-score.el (gnus-score-decode-text-parts):
3079         Use append+mapcar instead of the cl function mapcan.
3080
3081 2012-12-05  Sam Steingold  <sds@gnu.org>
3082
3083         * gnus.el (gnus-delete-gnus-frame): Extract from `gnus-other-frame'.
3084         (gnus-other-frame): Add `gnus-delete-gnus-frame' to
3085         `gnus-suspend-gnus-hook' in addition to `gnus-exit-gnus-hook'.
3086
3087 2012-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
3088
3089         * gmm-utils.el (gmm-called-interactively-p): Revert.
3090         This seems to cause Emacs to get stuck!
3091         * gnus-art.el (article-unsplit-urls)
3092         * gnus-bookmark.el (gnus-bookmark-bmenu-list)
3093         * gnus-registry.el (gnus-registry-get-article-marks)
3094         * message.el (message-goto-body)
3095         (message-called-interactively-p): Revert.
3096
3097         * gmm-utils.el (gmm-called-interactively-p): New function.
3098         * gnus-art.el (article-unsplit-urls)
3099         * gnus-bookmark.el (gnus-bookmark-bmenu-list)
3100         * gnus-registry.el (gnus-registry-get-article-marks)
3101         * message.el (message-goto-body): Use it.
3102         (message-called-interactively-p): Remove.
3103
3104         * gmm-utils.el (gmm-flet): Restore it using cl-letf.
3105         * gnus-sync.el (gnus-sync-lesync-call)
3106         * message.el (message-read-from-minibuffer): Use it.
3107
3108 2012-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
3109
3110         * gmm-utils.el (gmm-flet): Remove.
3111         * gnus-sync.el (gnus-sync-lesync-call)
3112         * message.el (message-read-from-minibuffer): Don't use it.
3113
3114 2012-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
3115
3116         * gmm-utils.el (gmm-labels): Use cl-labels if available.
3117
3118 2012-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
3119
3120         * gmm-utils.el (gmm-flet, gmm-labels): New macros.
3121
3122         * gnus-sync.el (gnus-sync-lesync-call)
3123         * message.el (message-read-from-minibuffer): Use gmm-flet.
3124
3125         * gnus-score.el (gnus-score-decode-text-parts): Use gmm-labels.
3126
3127         * gnus-util.el (gnus-macroexpand-all): Remove.
3128
3129 2012-12-03  Andreas Schwab  <schwab@linux-m68k.org>
3130
3131         * gnus-sum.el (gnus-summary-mode-map): Bind gnus-summary-widget-forward
3132         to TAB, not [tab].
3133         (gnus-summary-article-map): Likewise.
3134
3135         * gnus-sync.el (gnus-sync-newsrc-offsets): Restore definition.
3136         (gnus-sync-save): Use correct format for gnus-sync-newsrc-loader.
3137
3138 2012-11-21  Paul Eggert  <eggert@cs.ucla.edu>
3139
3140         * time-date.el: Commentary fix.
3141
3142 2012-11-19  Stefan Monnier  <monnier@iro.umontreal.ca>
3143
3144         * color.el: Don't require cl.
3145         (color-complement): `caddr' -> `nth 2'.
3146
3147         * time-date.el (time-to-seconds): De-obsolete.
3148
3149 2012-11-19  Katsumi Yamaoka  <yamaoka@jpl.org>
3150
3151         * message.el (message-get-reply-headers):
3152         Make sure the reply goes to the author if it is a wide reply.
3153
3154 2012-11-16  Jan Tatarik  <jan.tatarik@gmail.com>
3155
3156         * gnus-score.el (gnus-score-body):
3157         * gnus-logic.el (gnus-advanced-body): Don't score by headers when
3158         scoring by body.
3159
3160 2012-11-16  Glenn Morris  <rgm@gnu.org>
3161
3162         * gnus-diary.el (nndiary-request-create-group-functions)
3163         (nndiary-request-update-info-functions)
3164         (gnus-subscribe-newsgroup-functions)
3165         (nndiary-request-accept-article-functions):
3166         Use new names for hooks rather than obsolete aliases.
3167
3168 2012-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
3169
3170         * dgnushack.el (define-obsolete-variable-alias): Simplify.
3171
3172 2012-11-08  Katsumi Yamaoka  <yamaoka@jpl.org>
3173
3174         * gnus-art.el (gnus-article-browse-html-parts): Always replace charset
3175         in meta tag with the one the part specifies in its header.
3176
3177 2012-10-25  Stephen Eglen  <S.J.Eglen@damtp.cam.ac.uk>
3178
3179         * gnus-dired.el (gnus-dired-attach): Attach to last used message buffer
3180         by default.
3181
3182 2012-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
3183
3184         * dgnushack.el (define-compiler-macro): Add autoload for XEmacs 21.4
3185         and SXEmacs.  Suggested by Nelson Ferreira <nelson.ferreira@ieee.org>.
3186
3187 2012-10-24  Katsumi Yamaoka  <yamaoka@jpl.org>
3188
3189         * dgnushack.el (define-obsolete-variable-alias): Add a compiler-marco
3190         and a runtime function for it, of which the XEmacs version takes only
3191         two arguments.
3192
3193 2012-10-23  Stefan Monnier  <monnier@iro.umontreal.ca>
3194
3195         * nndiary.el (nndiary-request-create-group-functions)
3196         (nndiary-request-update-info-functions)
3197         (nndiary-request-accept-article-functions):
3198         * gnus-start.el (gnus-subscribe-newsgroup-functions): Don't use
3199         "-hooks" suffix.
3200
3201 2012-10-19  Julien Danjou  <julien@danjou.info>
3202
3203         * gnus-art.el: Require gnus-util because it uses
3204         `gnus-timer--function'.
3205
3206 2012-10-17  Kazuhiro Ito  <kzhr@d1.dion.ne.jp>  (tiny change)
3207
3208         * starttls.el (starttls-extra-arguments): Doc fix.
3209
3210 2012-10-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3211
3212         * shr.el (shr-insert): \r is also not inserted, so don't try to delete
3213         it.
3214
3215 2012-10-06  Glenn Morris  <rgm@gnu.org>
3216
3217         * gnus-notifications.el (gnus-notifications):
3218         Add missing group :version tag.
3219         * gnus-msg.el (gnus-gcc-pre-body-encode-hook)
3220         (gnus-gcc-post-body-encode-hook):
3221         * gnus-sync.el (gnus-sync-lesync-name)
3222         (gnus-sync-lesync-install-topics): Add missing custom :version tags.
3223
3224 2012-10-06  Julian Scheid  <julians37@gmail.com>  (tiny change)
3225
3226         * color.el (color-hsl-to-rgb): Fix incorrect results for
3227         small and large hue values.  (Bug#12559)
3228
3229 2012-10-05  Katsumi Yamaoka  <yamaoka@jpl.org>
3230
3231         New UIDL implementation.
3232
3233         * mail-source.el (mail-sources, mail-source-keyword-map):
3234         Add :leave as a pop3 keyword.
3235         (mail-source-fetch-pop): Bind pop3-leave-mail-on-server.
3236
3237         * pop3.el (pop3-leave-mail-on-server): Allow number.
3238         (pop3-uidl-file, pop3-uidl-file-backup): New user options.
3239         (pop3-movemail): Add UIDL support.
3240         (pop3-send-streaming-command): Take a list of mail numbers instead of
3241         the number of mails.
3242         (pop3-write-to-file): Add X-UIDL header.
3243         (pop3-uidl-stat, pop3-uidl-dele, pop3-uidl-load, pop3-uidl-save)
3244         (pop3-uidl-add-xheader): New functions.
3245
3246         * message.el (message-ignored-resent-headers):
3247         Add X-Content-Length and X-UIDL headers.
3248
3249 2012-10-05  Glenn Morris  <rgm@gnu.org>
3250
3251         * color.el (color-name-to-rgb, color-rgb-to-hex)
3252         (color-hue-to-rgb, color-hsl-to-rgb, color-rgb-to-hsv)
3253         (color-rgb-to-hsl, color-srgb-to-xyz, color-saturate-hsl)
3254         (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
3255         (color-lighten-name, color-darken-hsl, color-darken-name): Doc fixes.
3256
3257 2012-09-25  Katsumi Yamaoka  <yamaoka@jpl.org>
3258
3259         * gnus-art.el (gnus-article-browse-delete-temp-files): Never ask again
3260         a user about whether to delete temp files if once a user answered as n.
3261
3262 2012-09-25  Chong Yidong  <cyd@gnu.org>
3263
3264         * password-cache.el (password-read-and-add): Use a declare form to mark
3265         this function obsolete.
3266
3267 2012-09-19  Katsumi Yamaoka  <yamaoka@jpl.org>
3268
3269         * lpath.el: Bind mail-encode-mml for old Emacsen.
3270
3271 2012-09-17  Richard Stallman  <rms@gnu.org>
3272
3273         * message.el (message-in-body-p): Don't set mark or modify buffer.
3274
3275         * mml.el (mml-attach-file): Doc fix.
3276         (mml-attach-external, mml-attach-buffer, mml-attach-file):
3277         Set mail-encode-mml when in Mail mode.
3278         Simplify code to set HEAD and move back to HEAD.
3279         (mml-insert-multipart, mml-insert-part):
3280         Set mail-encode-mml when in Mail mode.
3281
3282 2012-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
3283
3284         * gnus-util.el (gnus-timer--function): New function.
3285
3286         * gnus-art.el (gnus-article-stop-animations): Use it.
3287
3288 2012-09-13  Paul Eggert  <eggert@cs.ucla.edu>
3289
3290         Fix glitches caused by addition of psec to timers.
3291         * gnus-art.el (gnus-article-stop-animations): Use timer--function
3292         rather than raw access to timer vector.
3293
3294 2012-09-11  Julien Danjou  <julien@danjou.info>
3295
3296         * gnus-notifications.el (gnus-notifications): Check for nil values in
3297         ignored addresses check.
3298
3299 2012-09-10  Stefan Monnier  <monnier@iro.umontreal.ca>
3300
3301         * qp.el (quoted-printable-decode-region): Inline+CSE+strength-reduction.
3302
3303 2012-09-07  Chong Yidong  <cyd@gnu.org>
3304
3305         * gnus-util.el
3306         (gnus-put-text-property-excluding-characters-with-faces): Restore.
3307
3308         * gnus-salt.el (gnus-tree-highlight-node):
3309         * gnus-sum.el (gnus-summary-highlight-line):
3310         * gnus-group.el (gnus-group-highlight-line): Revert use of add-face.
3311
3312 2012-09-06  Lars Ingebrigtsen  <larsi@gnus.org>
3313
3314         * gnus-util.el: Fix compilation error on XEmacs 21.4.
3315
3316 2012-09-06  Juri Linkov  <juri@jurta.org>
3317
3318         * gnus-group.el (gnus-read-ephemeral-gmane-group): Change the naming
3319         scheme for buffer names to be more consistent with other group and
3320         article buffer names in Gnus.
3321
3322 2012-09-06  Lars Ingebrigtsen  <larsi@gnus.org>
3323
3324         * gnus-util.el
3325         (gnus-put-text-property-excluding-characters-with-faces): Removed.
3326
3327         * gnus-compat.el: Define compat function `add-face' from Wolfgang
3328         Jenkner.
3329
3330         * gnus-group.el (gnus-group-highlight-line): Use combining faces.
3331
3332         * gnus-sum.el (gnus-summary-highlight-line): Ditto.
3333
3334         * gnus-salt.el (gnus-tree-highlight-node): Ditto.
3335
3336 2012-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
3337
3338         * gnus-score.el (gnus-score-decode-text-parts): Use #' for
3339         mm-text-parts used in labels macro to make it work with XEmacs 21.5.
3340
3341         * gnus-util.el (gnus-string-prefix-p): New function, an alias to
3342         string-prefix-p in Emacs >=23.2.
3343
3344         * nnmaildir.el (nnmaildir--ensure-suffix, nnmaildir--add-flag)
3345         (nnmaildir--remove-flag, nnmaildir--scan): Use gnus-string-match-p
3346         instead of string-match-p.
3347         (nnmaildir--scan): Use gnus-string-prefix-p instead of string-prefix-p.
3348
3349 2012-09-06  Kenichi Handa  <handa@gnu.org>
3350
3351         * qp.el (quoted-printable-decode-region): Fix previous change; handle
3352         lowercase a..f.
3353
3354 2012-09-05  Magnus Henoch  <magnus.henoch@gmail.com>
3355
3356         * nnmaildir.el (nnmaildir--article-set-flags): Fix compilation error.
3357
3358 2012-09-05  Martin Stjernholm  <mast@lysator.liu.se>
3359
3360         * nnimap.el (nnimap-request-move-article): Decode the group name when
3361         doing internal moves to avoid charset issues.
3362
3363         * gnus-demon.el (gnus-demon-init): Fixed regression when IDLE is t and
3364         TIME is set.
3365
3366 2012-09-05  Juri Linkov  <juri@jurta.org>
3367
3368         * gnus-group.el (gnus-read-ephemeral-bug-group): Allow opening more
3369         than one group at a time (bug#11961).
3370
3371 2012-09-05  Julien Danjou  <julien@danjou.info>
3372
3373         * gnus-srvr.el (gnus-server-open-server): Don't message on failure:
3374         this hide the real reason with a message giving absolutely no hint.
3375
3376 2012-09-05  Lars Ingebrigtsen  <larsi@gnus.org>
3377
3378         * gnus-group.el (gnus-group-mark-article-read): Propagate the read mark
3379         to the backend (bug#11804).
3380
3381         * message.el (message-insert-newsgroups): Don't insert newsgroup
3382         duplicates (bug#12275).
3383
3384 2012-09-05  John Wiegley  <johnw@newartisans.com>
3385
3386         * gnus.el (gnus-expand-group-parameters): Allow regexp substitutions in
3387         sieve rules.
3388
3389 2012-09-05  Jan Tatarik  <jan.tatarik@gmail.com>
3390
3391         * gnus-score.el (gnus-score-decode-text-parts): Use #' for the local
3392         function.
3393
3394         * gnus-logic.el (gnus-advanced-body): Allow scoring on decoded bodies.
3395
3396         * gnus-score.el (gnus-score-decode-text-parts): Ditto.
3397
3398 2012-09-05  Magnus Henoch  <magnus.henoch@gmail.com>
3399
3400         * nnmaildir.el: Make nnmaildir understand and write maildir flags.
3401         That is, rename files from "unique:2," to "unique:2,S" for "seen", etc.
3402         This should make nnmaildir more usable with offlineimap.
3403
3404 2012-09-05  Julien Danjou  <julien@danjou.info>
3405
3406         * nnimap.el (nnimap-request-list): Revert change that made listing
3407         synchronous.
3408         (nnimap-get-responses): Restore.
3409
3410 2012-09-03  Lars Ingebrigtsen  <larsi@gnus.org>
3411
3412         * dgnushack.el: XEmacs 21.5 compilation fix.
3413
3414         * gnus-notifications.el (gnus-notifications-notify): Use it.
3415
3416         * gnus-fun.el (gnus-funcall-no-warning): New function to silence
3417         warnings on XEmacs.
3418
3419 2012-09-01  Paul Eggert  <eggert@cs.ucla.edu>
3420
3421         Better seeds for (random).
3422         * gnus-sync.el (gnus-sync-lesync-setup):
3423         * message.el (message-canlock-generate, message-unique-id):
3424         Change (random t) to (random), now that the latter is more random.
3425
3426 2012-08-31  Dave Abrahams  <dave@boostpro.com>
3427
3428         * nnimap.el (nnimap-change-group): Document result value
3429
3430         * auth-source.el (auth-sources): Fix macos keychain access.
3431
3432         * gnus-int.el (gnus-request-head): When gnus-override-method is set,
3433         allow the backend `request-head' function to determine the group
3434         name on its own.
3435         (gnus-request-expire-articles): Filter out negative article numbers
3436         during expiry (Bug#11980).
3437
3438         * gnus-range.el (gnus-set-difference): Change gnus-set-difference from
3439         O(N^2) to O(N).  This makes warping into huge groups tolerable.
3440
3441         * gnus-registry.el (gnus-try-warping-via-registry): Don't act as though
3442         you've found the article when you haven't.
3443
3444         * nnimap.el (nnimap-find-article-by-message-id): Account for the fact
3445         that nnimap-change-group can return t.
3446
3447 2012-08-31  Stefan Monnier  <monnier@iro.umontreal.ca>
3448
3449         * gnus-notifications.el (gnus-notifications-action): Avoid CL-ism.
3450
3451 2012-08-30  Julien Danjou  <julien@danjou.info>
3452
3453         * gnus-notifications.el (gnus-notifications-notify): Use timeout from
3454         `gnus-notifications-timeout'.
3455         (gnus-notifications-timeout): Add.
3456         (gnus-notifications-action): New function.
3457         (gnus-notifications-notify): Add :action using
3458         `gnus-notifications-action'.
3459         (gnus-notifications-id-to-msg): New variable.
3460         (gnus-notifications): Use `gnus-notifications-id-to-msg' to map
3461         notifications id to messages.
3462
3463 2012-08-30  Kenichi Handa  <handa@gnu.org>
3464
3465         * qp.el (quoted-printable-decode-region): Decode multiple bytes at
3466         once.
3467
3468 2012-08-29  Julien Danjou  <julien@danjou.info>
3469
3470         * gnus-notifications.el: New file.
3471         (gnus-notifications-notify): New function.
3472         (gnus-notifications): Use `gnus-notifications-notify'.
3473
3474 2012-08-28  Katsumi Yamaoka  <yamaoka@jpl.org>
3475
3476         * gnus-sum.el (gnus-summary-enter-digest-group): Decode content
3477         transfer encoding first; bind gnus-newsgroup-charset to the charset
3478         that the article specifies (Bug#12209).
3479
3480 2012-08-22  Katsumi Yamaoka  <yamaoka@jpl.org>
3481
3482         * gnus-cus.el (gnus-group-customize): Decode values posting-style holds.
3483         (gnus-group-customize-done): Encode values posting-style holds.
3484
3485         * gnus-msg.el (gnus-summary-resend-message)
3486         (gnus-configure-posting-styles): Decode values posting-style group
3487         parameter holds.
3488
3489 2012-08-21  Katsumi Yamaoka  <yamaoka@jpl.org>
3490
3491         * gnus-msg.el (gnus-summary-resend-message): Honor posting-style for
3492         `name' and `address' in Resent-From header.
3493
3494 2012-08-14  Chong Yidong  <cyd@gnu.org>
3495
3496         * gnus-art.el (article-display-face): Handle failure in
3497         gnus-create-image (Bug#11802).
3498
3499 2012-08-10  Stefan Monnier  <monnier@iro.umontreal.ca>
3500
3501         * gnus-agent.el (gnus-agent-cat-defaccessor, gnus-agent-cat-groups):
3502         Use defsetf.
3503
3504 2012-08-10  Daiki Ueno  <ueno@unixuser.org>
3505
3506         * auth-source.el (auth-source-plstore-search)
3507         (auth-source-secrets-search): Ignore :require and :type in search spec.
3508
3509 2012-08-06  Julien Danjou  <julien@danjou.info>
3510
3511         * nnimap.el (nnimap-request-head): Resture to-buffer parameter, used by
3512         `nnimap-request-move-article'.
3513
3514         * gnus-demon.el (gnus-demon-add-handler, gnus-demon-remove-handler):
3515         Remove autoload, already handled by gnus.el.
3516
3517         * nnimap.el (nnimap-request-head): Remove to-buffer argument.
3518
3519         * gnus-int.el (gnus-request-head): Remove to-buffer argument, only
3520         supported by nnimap actually.  Reverts previous change.
3521
3522         * gnus-int.el (gnus-request-head): Add an optional to-buffer parameter
3523         to mimic `gnus-request-article' and enjoy backends the nn*-request-head
3524         to-buffer argument that is already supported.
3525
3526 2012-08-05  Julien Danjou  <julien@danjou.info>
3527
3528         * gnus-demon.el (gnus-demon-add-handler, gnus-demon-remove-handler):
3529         Add autoload.
3530
3531 2012-07-31  Katsumi Yamaoka  <yamaoka@jpl.org>
3532
3533         * gnus.el (gnus-valid-select-methods): Fix custom type.
3534
3535 2012-07-29  Teodor Zlatanov  <tzz@lifelogs.com>
3536
3537         * auth-source.el (auth-sources, auth-source-backend-parse)
3538         (auth-source-macos-keychain-search)
3539         (auth-source-macos-keychain-search-items)
3540         (auth-source-macos-keychain-result-append)
3541         (auth-source-macos-keychain-create): Support Mac OS X Keychains in
3542         auth-source.el through the /usr/bin/security utility.
3543         (auth-sources): Fix syntax error.
3544         (auth-source-macos-keychain-result-append): Fix variable name.
3545         (auth-sources, auth-source-macos-keychain-result-append): More fixes.
3546
3547 2012-07-27  Julien Danjou  <julien@danjou.info>
3548
3549         * message.el (fboundp): Add a defalias on `mail-dont-reply-to' for
3550         Emacs < 24.1
3551
3552 2012-07-27  Katsumi Yamaoka  <yamaoka@jpl.org>
3553
3554         * message.el (message-kill-address): Don't kill last newline.
3555         (message-skip-to-next-address): Don't move to the next header.
3556         (message-fill-field-address): Work properly.
3557
3558 2012-07-25  Julien Danjou  <julien@danjou.info>
3559
3560         * gnus-art.el (gnus-kill-sticky-article-buffers): Reintroduce.
3561
3562 2012-07-24  Julien Danjou  <julien@danjou.info>
3563
3564         * mail-source.el (mail-source-movemail-and-remove): Remove, unused.
3565
3566         * nntp.el (nntp-send-nosy-authinfo, nntp-send-authinfo-from-file)
3567         (nntp-async-timer-handler): Remove, unused.
3568
3569         * nnimap.el (nnimap-get-responses): Remove, unused.
3570
3571         * nnheader.el (mail-header-set-extra): Remove, unused.
3572
3573         * netrc.el (netrc-find-service-number, netrc-store-data): Remove,
3574         unused.
3575
3576         * mm-view.el (mm-view-sound-file): Remove, unused.
3577
3578         * mm-url.el (mm-url-fetch-simple, mm-url-fetch-form)
3579         (mm-url-encode-multipart-form-data): Remove, unused.
3580
3581         * message.el (message-remove-signature, message-make-host-name)
3582         (message-fill-address): Remove, unused.
3583
3584         * gnus.el (gnus-writable-groups, gnus-group-guess-prefixed-name)
3585         (gnus-group-guess-full-name, gnus-group-guess-prefixed-name): Remove,
3586         unused.
3587
3588         * gnus-xmas.el (gnus-xmas-highlight-selected-summary)
3589         (gnus-xmas-call-region): Remove, unused.
3590
3591         * gnus-uu.el (gnus-uu-find-name-in-shar): Remove, unused.
3592
3593         * gnus-util.el (gnus-extract-address-component-name)
3594         (gnus-extract-address-component-email, gnus-sortable-date)
3595         (gnus-alist-to-hashtable, gnus-hashtable-to-alist)
3596         (gnus-process-live-p): Remove, unused.
3597
3598         * gnus-topic.el (gnus-group-parent-topic): Remove, unused.
3599
3600         * gnus-sum.el (gnus-score-set-default, gnus-article-parent-p)
3601         (gnus-article-read-p, gnus-uncompress-marks): Remove, unused.
3602         (gnus-summary-set-current-mark): Remove obsolete, empty and unused
3603         function.
3604
3605         * gnus-start.el (gnus-kill-newsgroup): Remove unused obsolete function.
3606
3607         * gnus-score.el (gnus-summary-score-crossposting)
3608         (gnus-score-regexp-bad-p): Remove, unused.
3609
3610         * gnus-salt.el (gnus-tree-goto-article): Remove, unused.
3611
3612         * gnus-range.el (gnus-sublist-p): Remove, unused.
3613
3614         * gnus-msg.el (gnus-mail-parse-comma-list, gnus-put-message): Remove,
3615         unused.
3616
3617         * gnus-kill.el (gnus-Newsgroup-kill-file): Remove, unused.
3618
3619         * gnus-int.el (gnus-list-active-group, gnus-request-group-articles)
3620         (gnus-request-associate-buffer): Remove, unused.
3621
3622         * gnus-group.el (gnus-group-set-method-info)
3623         (gnus-group-set-params-info): Remove, unused.
3624
3625         * gnus-fun.el (gnus-shell-command-to-string)
3626         (gnus-shell-command-on-region): Remove, unused.
3627
3628         * gnus-cite.el (gnus-cited-line-p): Remove, unused.
3629
3630         * gnus-art.el (gnus-article-text-type-exists-p)
3631         (article-translate-characters, gnus-article-hide-text-of-type)
3632         (gnus-kill-sticky-article-buffers, gnus-article-maybe-highlight):
3633         Remove, unused.
3634
3635 2012-07-22  Andrew Cohen  <cohen@bu.edu>
3636
3637         * nnir.el ("nnir"): Add 'virtual ability to nnir backend.
3638
3639 2012-07-21  Julien Danjou  <julien@danjou.info>
3640
3641         * message.el (message-dont-reply-to-names): Replace deprecated
3642         `rmail-dont-reply-to-names' with `mail-dont-reply-to-names'.
3643         (message-get-reply-headers): Ditto.
3644
3645 2012-07-18  Julien Danjou  <julien@danjou.info>
3646
3647         * sieve-mode.el (sieve-mode-map): Bind C-c C-c to
3648         `sieve-upload-and-kill'.
3649
3650         * sieve.el (sieve-bury-buffer): Remove function.
3651         (sieve-manage-mode-map): Map "q" to `kill-buffer'.
3652         (sieve-upload-and-kill): New function, mapped to C-c C-c.
3653
3654 2012-07-17  Andreas Schwab  <schwab@linux-m68k.org>
3655
3656         * shr.el (shr-expand-url): Handle URL starting with `//'.
3657
3658 2012-07-13  Chong Yidong  <cyd@gnu.org>
3659
3660         * smime.el (smime-certificate-info): Set buffer-read-only directly,
3661         instead of calling toggle-read-only with a (bogus) argument.
3662
3663 2012-07-09  Tassilo Horn  <tassilo@member.fsf.org>
3664
3665         * gnus-sum.el (gnus-summary-limit-to-author): Use default value instead
3666         of initial input when reading the author to restrict the summary to.
3667
3668 2012-07-09  Katsumi Yamaoka  <yamaoka@jpl.org>
3669
3670         * mm-decode.el (mm-shr):
3671         Allow overriding charset by mm-charset-override-alist.
3672
3673 2012-07-03  Katsumi Yamaoka  <yamaoka@jpl.org>
3674
3675         * gnus-art.el (gnus-article-view-part):
3676         Toggle subparts of multipart/alternative part.
3677
3678 2012-06-27  Stefan Monnier  <monnier@iro.umontreal.ca>
3679
3680         * shr.el (shr-render-buffer): New command.
3681         (shr-visit-file): Use it.
3682
3683 2012-06-27  Katsumi Yamaoka  <yamaoka@jpl.org>
3684
3685         * tests/gnustest-nntp.el, tests/gnustest-registry.el:
3686         Set no-byte-compile and no-update-autoloads.
3687
3688 2012-06-26  Katsumi Yamaoka  <yamaoka@jpl.org>
3689
3690         * mm-decode.el: Add coding cookie for a soft hyphen that mm-shr uses.
3691
3692 2012-06-25  Julien Danjou  <julien@danjou.info>
3693
3694         * nnimap.el (nnimap-request-articles-find-limit): Rename from
3695         `nnimap-request-move-articles-find-limit' since we do not use it only
3696         for move operations.
3697         (nnimap-request-accept-article): Use
3698         `nnimap-request-articles-find-limit' to limit search by message-id.
3699
3700 2012-06-22  Paul Eggert  <eggert@cs.ucla.edu>
3701
3702         Support higher-resolution time stamps (Bug#9000).
3703
3704         * time-date.el (with-decoded-time-value): New arg PICO-SYMBOL in
3705         VARLIST.  It's optional, for backward compatibility.
3706         (encode-time-value): New optional arg PICO.  New type 3.
3707         (time-to-seconds) [!float-time]: Support the new picoseconds
3708         component if it's used.
3709         (seconds-to-time, time-subtract, time-add):
3710         Support ps-resolution time stamps as well.
3711
3712 2012-06-19  Julien Danjou  <julien@danjou.info>
3713
3714         * nnir.el (nnir-run-imap): Fix, use `nnimap-change-group'.
3715
3716         * nnimap.el (nnimap-log-buffer): Check that
3717         `window-point-insertion-type' is boundp, since it's not available in
3718         XEmacs.
3719
3720 2012-06-19  Michael Welsh Duggan  <md5i@md5i.com>  (tiny change)
3721
3722         * nnimap.el (nnimap-log-buffer): Add this, setting
3723         `window-point-insertion-type' in the buffer to t.
3724         (nnimap-log-command): Use nnimap-log-buffer.
3725
3726 2012-06-19  Julien Danjou  <julien@danjou.info>
3727
3728         * nnimap.el (nnimap-find-article-by-message-id): Add an optional limit
3729         argument to be able to limit the search.
3730         (nnimap-request-move-article): Use `nnimap-request-move-articles-find-limit'.
3731         (nnimap-request-move-articles-find-limit): Add this to limit the search
3732         by Message-Id after a message move.
3733         (nnimap): Add defgroup.
3734
3735 2012-06-18  Nelson Ferreira  <nelson.ferreira@ieee.org>  (tiny change)
3736
3737         * gnus-win.el (gnus-configure-frame): Pass an arg to window-dedicated-p.
3738
3739 2012-06-15  Julien Danjou  <julien@danjou.info>
3740
3741         * nnimap.el (nnimap-find-article-by-message-id): Use
3742         `nnimap-possibly-change-group' rather than its own EXAMINE call.
3743         (nnimap-possibly-change-group): Add read-only argument.
3744         (nnimap-request-list): Use nnimap-possibly-change-group rather than
3745         issuing EXAMINE manually.
3746         (nnimap-find-article-by-message-id): Use `nnimap-possibly-change-group'
3747         with read-only argument.
3748         (nnimap-change-group): Rename from `nnimap-possibly-change-group'.  We
3749         cannot possibly change because we need to be sure that it's either
3750         read-write or read-only.
3751
3752 2012-06-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3753
3754         * gnus-art.el (gnus-article-read-summary-keys): Protect against the key
3755         being bound to a lambda form.
3756
3757 2012-04-14  Wolfgang Jenkner  <wjenkner@inode.at>
3758
3759         * gnus-agent.el (gnus-agent-retrieve-headers): Recalculate the range of
3760         articles when fetch-old is non-nil (bug#11370).
3761
3762 2012-05-04  Wolfgang Jenkner  <wjenkner@inode.at>
3763
3764         * gnus-picon.el (gnus-picon-properties): New defcustom.
3765         (gnus-picon-create-glyph): Use it.
3766
3767 2012-06-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3768
3769         * gnus-group.el (gnus-group-get-new-news): Respect
3770         `gnus-group-use-permanent-levels', as documented (bug#11638).
3771
3772 2012-06-10  Dave Abrahams  <dave@boostpro.com>
3773
3774         * gnus-int.el (gnus-warp-to-article): Limit registry warping to real
3775         groups (bug#11641).
3776
3777 2012-06-10  Toke Høiland-Jørgensen  <toke@toke.dk>  (tiny change)
3778
3779         * nnmaildir.el (nnmaildir-request-expire-articles): Ensure that `time'
3780         is an integer to avoid later problems.
3781
3782 2012-06-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3783
3784         * shr.el: Add a iso-8859-1 cookie to make stuff work under other
3785         locales.
3786
3787         * mm-decode.el (mm-display-part): Dissect archives when hitting `RET'
3788         on a handle.
3789
3790         * gnus-sum.el (gnus-summary-limit-to-author): Use the current From
3791         address as the default.
3792         (gnus-summary-insert-old-articles): Don't include unexisting messages.
3793
3794         * nnfolder.el (nnfolder-save-buffer): Delete old versions silently.  It
3795         makes no sense to query the user about internal files.
3796
3797         * gnus-spec.el: Remove all the byte-compilation stuff, since
3798         benchmarking shows that it doesn't help when entering large summary
3799         buffers.
3800
3801         * gnus-xmas.el (gnus-xmas-define): Remove.
3802
3803         * gnus-util.el (gnus-byte-code): Remove.
3804
3805         * gnus-spec.el (gnus-update-format-specifications): Remove outdated
3806         grouplens stuff.
3807
3808 2012-06-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3809
3810         * gnus-msg.el (gnus-msg-mail): Warn the user about Gnus not running
3811         (bug#11514).
3812
3813 2012-06-07  Stephen Eglen  <S.J.Eglen@damtp.cam.ac.uk>
3814
3815         * message.el (message-buffers): Return all buffers derived from Message
3816         to make `gnus-dired-attach' work with mu4e.
3817
3818 2012-06-01  Stefan Monnier  <monnier@iro.umontreal.ca>
3819
3820         * nntp.el: Stop the `letf' madness.
3821         (nntp--report-1): New var.
3822         (nntp-report): Merge nntp-report-1 into it.
3823         (nntp-with-open-group-function): Set nntp--report-1 instead of modifying
3824         the nntp-report function.
3825
3826         * auth-source.el: Fix comment-style to follow the convention.
3827
3828 2012-05-28  Daiki Ueno  <ueno@unixuser.org>
3829
3830         * mm-decode.el (mm-inhibit-auto-detect-attachment): New variable.
3831         (mm-dissect-singlepart): Don't guess the MIME type of
3832         application/octet-stream parts if mm-inhibit-auto-detect-attachment is
3833         set.
3834         (mm-dissect-multipart): Bind mm-inhibit-auto-detect-attachment if the
3835         toplevel MIME type is multipart/encrypted.
3836
3837 2012-05-27  Katsumi Yamaoka  <yamaoka@jpl.org>
3838
3839         * gnus-msg.el (gnus-msg-mail): Ensure that gnus-newsgroup-name is
3840         a string so that Gcc works (bug#11514).
3841
3842 2012-05-26  Stefan Monnier  <monnier@iro.umontreal.ca>
3843
3844         * legacy-gnus-agent.el (gnus-agent-unhook-expire-days):
3845         * gnus-demon.el (gnus-demon-init): Don't bother with type-of.
3846
3847 2012-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
3848
3849         * gnus-win.el (gnus-configure-frame): Don't signal an error when
3850         jumping to *Server* from a dedicated *Group* window.
3851         (gnus-configure-frame): CSE.
3852
3853         * gnus-registry.el: Minor style cleanup.
3854         (gnus-registry--set/remove-mark): New function, extracted from
3855         gnus-registry-install-shortcuts.
3856         (gnus-registry-install-shortcuts): Use it.
3857
3858 2012-05-25  Katsumi Yamaoka  <yamaoka@jpl.org>
3859
3860         * nnspool.el (news-path): Use eval-and-compile.
3861
3862 2012-05-24  Glenn Morris  <rgm@gnu.org>
3863
3864         * nnspool.el (news-directory, news-path, news-inews-program):
3865         Move here from paths.el.  Don't see a need for these to be autoloaded.
3866
3867         * gnus.el (gnus-default-nntp-server): Make it a defcustom.
3868         Merge in doc from paths.el version.  Don't see any need for this to be
3869         autoloaded, or for the warning about users not setting it.
3870
3871 2011-12-02  Wolfgang Jenkner  <wjenkner@inode.at>
3872
3873         * gnus-agent.el (gnus-agent-save-active): Deal with the "groups"
3874         format.  In particular, add an optional argument and a docstring.
3875
3876         * gnus-start.el (gnus-groups-to-gnus-format): Use it.
3877
3878         * nntp.el (nntp-finish-retrieve-group-infos): Make `nntp-server-buffer'
3879         current before calling `gnus-groups-to-gnus-format'.
3880         Note that this was already the case for `gnus-active-to-gnus-format'.
3881
3882 2012-05-04  Paul Eggert  <eggert@cs.ucla.edu>
3883
3884         Fix minor Y10k bug.
3885         * nnweb.el (nnweb-google-parse-1): Don't assume years have 4 digits.
3886
3887 2012-05-01  Stefan Monnier  <monnier@iro.umontreal.ca>
3888
3889         * nnimap.el (nnimap-open-connection-1): Don't leave an "opening..."
3890         message once it's actually open.
3891
3892 2012-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
3893
3894         * gnus.el: Ma Gnus v0.5 is released.
3895
3896 2012-04-28  Stefan Monnier  <monnier@iro.umontreal.ca>
3897
3898         * auth-source.el (auth-source--aput-1, auth-source--aput)
3899         (auth-source--aget): New functions and macros.
3900         Use them instead of aput/aget.
3901
3902 2012-04-27  Andreas Schwab  <schwab@linux-m68k.org>
3903
3904         * gnus.el (debbugs-gnu): Don't override existing autoload definition.
3905
3906 2012-04-26  Daiki Ueno  <ueno@unixuser.org>
3907
3908         * plstore.el (plstore-called-interactively-p): New compat macro copied
3909         from message.el.
3910         (plstore-mode): Use it.
3911
3912 2012-04-26  Daiki Ueno  <ueno@unixuser.org>
3913
3914         * plstore.el: Revive the editing feature.
3915         (plstore-mode): New mode to edit plstore file.
3916         (plstore-mode-toggle-display, plstore-mode-original)
3917         (plstore-mode-decoded): New command.
3918         (plstore--encode, plstore--decode, plstore--write-contents-functions)
3919         (plstore--insert-buffer, plstore--make): New function.
3920         (plstore-open, plstore-save): Simplify by using them.
3921
3922 2012-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
3923
3924         * pop3.el (pop3-wait-for-messages): Fix retrieved data size calculation.
3925
3926 2012-04-19  Juanma Barranquero  <lekktu@gmail.com>
3927
3928         * tls.el (open-tls-stream): Remove unused binding.
3929
3930 2012-04-16  Glenn Morris  <rgm@gnu.org>
3931
3932         * nndraft.el (nndraft-request-list): Fix declaration.
3933
3934 2012-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3935
3936         * mm-decode.el (mm-dissect-buffer): Doc fix.
3937
3938         * gnus-msg.el (gnus-inews-insert-gcc): Don't do the alist stuff when we
3939         don't have a current group.
3940
3941         * gnus-sum.el (gnus-handle-ephemeral-exit): Avoid creating the group
3942         buffer if it doesn't exist.
3943
3944         * gnus-group.el (gnus-group-read-ephemeral-group): If no quit-config is
3945         given, mark the group as ephemeral with the current window conf.
3946
3947         * gnus-sum.el (gnus-set-global-variables): Don't assume that the group
3948         buffer exists, which it doesn't if we haven't started Gnus.
3949         (gnus-summary-exit): Allow quitting when we don't have a group buffer.
3950
3951 2012-04-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3952
3953         * mml.el (mml-generate-mime): Allow specifying what the top-level part
3954         type is.
3955
3956         * gnus-start.el (gnus-clean-old-newsrc): Remove totally bogus
3957         `unexists' entries.
3958         (gnus-clean-old-newsrc): Fix last checkin.
3959
3960         * nnimap.el (nnimap-update-info): None of the articles below the active
3961         low-water mark exist.
3962
3963         * dgnushack.el: Get rid of XEmacs compilation warning.
3964
3965         * gnus-msg.el (gnus-summary-cancel-article): See what From header we
3966         would have gotten if we posted to the group, and use that to compare
3967         against the message we want to cancel (bug#10808).
3968
3969         * gnus-sum.el (gnus-auto-center-summary): `scroll-margin' isn't defined
3970         on XEmacs.
3971
3972 2012-04-10  Philipp Haselwarter  <philipp.haselwarter@gmx.de>  (tiny change)
3973
3974         * gnus-sum.el (gnus-auto-center-summary): Set default to respect
3975         `scroll-margin'.
3976
3977 2012-04-10  Elias Oltmanns  <eo@nebensachen.de>  (tiny change)
3978
3979         * gnus-cite.el (gnus-dissect-cited-text): A single line without
3980         citation prefix within a block of cited text should be considered part
3981         of that block *only* if it is a blank line.
3982
3983 2012-04-09  Chong Yidong  <cyd@gnu.org>
3984
3985         * binhex.el, hashcash.el, uudecode.el:
3986         Remove * characters from the front of variable docstrings.
3987
3988 2012-04-02  Katsumi Yamaoka  <yamaoka@jpl.org>
3989
3990         * shr.el (shr-find-fill-point): Remove unused code; don't break a line
3991         before kinsoku-bol characters nor within kinsoku-eol characters.
3992
3993 2012-03-27  Katsumi Yamaoka  <yamaoka@jpl.org>
3994
3995         * gnus-sync.el (gnus-topic-alist, gnus-group-topic)
3996         (gnus-topic-create-topic, gnus-topic-enter-dribble): Silence compiler.
3997         (gnus-sync-read): Use mapc instead of mapcar.
3998
3999         * mm-archive.el: Require mm-decode for some macros.
4000         (gnus-recursive-directory-files, mailcap-extension-to-mime): Silence
4001         the byte compiler.
4002         (mm-archive-decoders): New function that returns the value of
4003         the mm-archive-decoders variable.
4004
4005         * mm-decode.el: Don't require mm-archive; autoload mm-archive functions
4006         instead.
4007         (mm-dissect-singlepart): Use the function mm-archive-decoders.
4008
4009         * nnimap.el (gnus-refer-thread-use-nnir):
4010         * nnmail.el (mail-send-and-exit): Silence the byte compiler.
4011
4012 2012-03-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4013
4014         * gnus-compat.el: Define `bound-and-true-p' for XEmacs.
4015
4016 2012-03-12  Peter Münster  <pmrb@free.fr>
4017
4018         * gnus-demon.el (gnus-demon-timers): Now a plist (function -> timer).
4019         (gnus-demon-cancel): Ditto.
4020         (gnus-demon-run-callback): When function cannot be called due to low
4021         idleness, call it when idleness reaches the expected value, instead of
4022         waiting another timer period.
4023         (gnus-demon-init): Add `time' to arguments of call-back.
4024
4025 2012-03-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4026
4027         * dgnushack.el: Bind `gnus-registry-enabled' for XEmacs.
4028
4029         * gnus.el: Register gnus-registry functions.
4030
4031         * gnus-registry.el (gnus-try-warping-via-registry): Moved here and
4032         indent.
4033
4034         * gnus-int.el (gnus-warp-to-article): Check whether the registry is
4035         enabled before warping.
4036
4037 2012-03-22  Dave Abrahams  <dave@boostpro.com>
4038
4039         * gnus-sum.el (gnus-summary-insert-subject): Record information in the
4040         registry about each article retrieved.
4041
4042         * gnus-int.el (gnus-select-group-with-message-id): New function.
4043         (gnus-try-warping-via-registry): Ditto.
4044         (gnus-warp-to-article): Fall back on the registry.
4045
4046 2012-03-22  Sergio Martínez  <samf0xb58@gmail.com>  (tiny change)
4047
4048         * nnimap.el (nnimap-request-scan): Allow `nnimap-inbox' to be a list of
4049         inboxes.
4050
4051 2012-03-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4052
4053         * nnimap.el (nnimap-fetch-partial-articles): Minor doc string fixup.
4054
4055 2012-03-22  Katsumi Yamaoka  <yamaoka@jpl.org>
4056
4057         * gnus-msg.el (gnus-summary-resend-message-insert-gcc): Assume that
4058         gnus-gcc-self-resent-messages may be a group parameter.
4059         (gnus-summary-resend-message): Don't encode encoded words in header
4060         when Gcc'ing resent message.
4061
4062 2012-03-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4063
4064         * shr.el (shr-insert): Treat non-breaking space just like normal
4065         space.  This seems to produce more pleasing results.
4066         (shr-insert): Only insert a blank line if we're starting from an image.
4067         (shr-tag-br): Allow <br> to end lines or to make a single blank line.
4068         (shr-ensure-paragraph): Consider lines with white space to be blank.
4069
4070 2012-03-15  Elias Pipping  <pipping@lavabit.com>
4071
4072         * Makefile.in: Respect DESTDIR.
4073
4074 2012-03-14  Christopher Schmidt  <christopher@ch.ristopher.com>
4075
4076         * gnus-msg.el (gnus-inews-do-gcc): Add gnus-gcc-pre-body-encode-hook
4077         and gnus-gcc-post-body-encode-hook.
4078
4079 2012-03-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4080
4081         * gnus-group.el (gnus-group-expire-articles-1): Don't try to expire
4082         messages that don't exist.
4083
4084         * gnus-sum.el (gnus-summary-expire-articles): Ditto.
4085
4086 2012-04-11  Katsumi Yamaoka  <yamaoka@jpl.org>
4087
4088         pgg-def.el, pgg-gpg.el, pgg-parse.el, pgg-pgp.el, pgg-pgp5.el, pgg.el:
4089         Remove.
4090
4091         dgnushack.el (pgg-snarf-keys-region): Remove autoload.
4092
4093         lpath.el (pgg-parse-crc24-string, pgg-parse-crc24): Remove declaration.
4094
4095 2012-04-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4096
4097         * gnus-msg.el (gnus-inews-insert-gcc): Protect against when we don't
4098         have a group name.
4099
4100         * gnus-art.el (article-wash-html): Ensure that we insert the HTML into
4101         a multibyte buffer (bug#7410).
4102         (article-wash-html): Parse the original article buffer to get the
4103         unencoded data (bug#7410).
4104
4105         * gnus-start.el (gnus-read-newsrc-el-file): Protect against broken
4106         .newsrc.el files.
4107
4108 2012-04-05  Bastien Guerry  <bzg@altern.org>
4109
4110         * color.el (color-lighten-name): Fix typo.
4111
4112 2012-03-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4113
4114         * auth-source.el (auth-source-netrc-create): Quote tokens that contain
4115         "#" to avoid having them interpreted as comments.
4116
4117 2012-03-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4118
4119         * shr.el (shr-insert): Update the text state properly to avoid
4120         inserting spurious paragraph starts.
4121
4122 2012-03-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4123
4124         * shr.el (shr-table-widths): Divide the extra width more fairly over
4125         the TDs (bug#10973).
4126         (shr-render-td): Don't delete too much padding.
4127         (shr-natural-width): Compute the natural width more correctly.
4128         (shr-insert): Allow the natural width to be computed for tables again.
4129         (shr-tag-table-1): Rework how the natural widths are computed by
4130         rendering the table a third time.
4131         (shr-natural-width): Removed.
4132         (shr-buffer-width): New function.
4133         (shr-expand-newlines): Use it.
4134
4135         * gnus-msg.el (gnus-bug): Don't delete the other windows.  We may be
4136         using a `gnus-use-full-window' setup (bug#11013).
4137
4138 2012-03-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4139
4140         * gnus-int.el (gnus-backend-trace): Flip default to nil before Emacs
4141         24.1 release.
4142
4143 2012-03-10  David Edmondson  <dme@dme.org>
4144
4145         * mm-uu.el (mm-uu-forward-extract): Allow for blank lines between the
4146         'Forwarded Message' header and the start of the message.
4147
4148 2012-03-04  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
4149
4150         * gnus-msg.el (gnus-msg-mail): Call `message-mail' correctly when Gnus
4151         isn't running (bug#10897).
4152
4153 2012-03-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4154
4155         * tls.el (open-tls-stream): Don't set the dont-query-on-exit flag.
4156         This is inconsistent with all the other stream functions, which leave
4157         the setting up to the higher levels (if so wanted) (bug#10931).
4158
4159 2012-02-28  Glenn Morris  <rgm@gnu.org>
4160
4161         * gmm-utils.el, gnus-agent.el, gnus-score.el, messagexmas.el,
4162         mm-decode.el: Standardize possessive apostrophe usage.
4163
4164 2012-02-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4165
4166         * shr.el (shr-column-specs): Protect against TDs with "width: 0%".
4167
4168 2012-02-25  Andreas Schwab  <schwab@linux-m68k.org>
4169
4170         * parse-time.el (parse-time-string): Allow extractor to return nil.
4171
4172 2012-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
4173
4174         * nntp.el (nntp-send-authinfo): Work for secure nntp entry in authinfo.
4175
4176 2012-02-20  Lars Ingebrigtsen  <larsi@gnus.org>
4177
4178         * gnus-start.el (gnus-clean-old-newsrc): Allow a FORCE parameter.
4179
4180 2012-02-20  Lars Ingebrigtsen  <larsi@gnus.org>
4181
4182         * mm-decode.el (mm-shr): Remove "soft hyphens".
4183
4184         * nnimap.el (nnimap-request-list): Return the group names encoded as
4185         utf8.  Otherwise non-European group names don't work.
4186         (nnimap-request-newgroups): Ditto.
4187
4188         * gnus-sum.el (gnus-summary-insert-old-articles): Fix the syntax for
4189         the default in `read-string' (bug#10757).
4190
4191         * gnus-msg.el (gnus-group-post-news): Don't bug out on `C-u a' on
4192         topics (bug#10843).
4193
4194         * nnimap.el (nnimap-log-command): Add the IMAP address to the log
4195         buffer.  Suggested by Herbert Valerio Riedel.
4196         (nnimap-request-move-article): Delete the message from the correct IMAP
4197         server.
4198
4199 2012-02-19  Gábor Vida  <vidagabor@gmail.com>  (tiny change)
4200
4201         * gnus-demon.el (gnus-demon-init): Don't multiply time twice.
4202         Reported by Peter Münster.
4203
4204 2012-02-18  Lars Ingebrigtsen  <larsi@gnus.org>
4205
4206         * shr.el (shr-image-fetched): Make sure we really kill the right
4207         buffer.
4208
4209 2012-02-16  Leo Liu  <sdl.web@gmail.com>
4210
4211         * gnus-start.el (gnus-1): Avoid duplicate entries.
4212
4213 2012-02-15  Lars Ingebrigtsen  <larsi@gnus.org>
4214
4215         * imap.el: Remove.
4216
4217         * nntp.el (nntp-coding-system-for-read): Remove.
4218         (nntp-coding-system-for-write): Ditto.
4219         (nntp-open-connection): Just use `binary' directly.
4220
4221         * gnus-start.el (gnus-clean-old-newsrc): Delete `unexist' from pre-Ma
4222         Gnus 0.3.
4223
4224 2012-02-16  Lars Ingebrigtsen  <larsi@gnus.org>
4225
4226         * mm-decode.el (mm-dissect-singlepart): Guess what the type of
4227         application/octet-stream parts really is.
4228
4229         * gnus-sum.el (gnus-propagate-marks): Remove.
4230
4231 2012-02-15  Paul Eggert  <eggert@cs.ucla.edu>
4232
4233         * shr.el (shr-rescale-image): Undo previous change; see
4234         <http://lists.gnu.org/archive/html/emacs-devel/2012-02/msg00540.html>.
4235
4236 2012-02-15  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
4237
4238         * gnus.el: Ma Gnus v0.3 is released.
4239
4240 2012-02-15  Lars Ingebrigtsen  <larsi@gnus.org>
4241
4242         * gnus-sum.el (gnus-summary-local-variables): Make
4243         `gnus-newsgroup-unexist' into a local variable.
4244
4245 2012-02-14  Teodor Zlatanov  <tzz@lifelogs.com>
4246
4247         * registry.el (registry-usage-test, registry-persistence-test): Move to
4248         tests/gnustest-registry.el.
4249         (registry-make-testable-db, registry-match-test)
4250         (registry-instantiation-test): Move to tests/gnustest-registry.el.
4251
4252         * gnus-registry.el (gnus-registry-misc-test)
4253         (gnus-registry-usage-test): Move to tests/gnustest-registry.el.
4254
4255         * tests/gnustest-registry.el: New file with the registry and
4256         gnus-registry ERT tests.
4257
4258 2012-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
4259
4260         * gnus-msg.el (gnus-summary-resend-message): Make
4261         gnus-summary-resend-message-insert-gcc be last item in
4262         message-header-setup-hook.
4263
4264 2012-02-13  Lars Ingebrigtsen  <larsi@gnus.org>
4265
4266         * nnfolder.el (nnfolder-marks-directory, nnfolder-marks-is-evil)
4267         (nnfolder-marks, nnfolder-marks-file-suffix, nnfolder-marks-modtime):
4268         Remove.
4269         (nnfolder-open-server): Don't use marks.
4270         (nnfolder-request-delete-group): Ditto.
4271         (nnfolder-request-rename-group): Ditto.
4272         (nnfolder-request-set-mark, nnfolder-request-marks)
4273         (nnfolder-group-marks-pathname, nnfolder-marks-changed-p)
4274         (nnfolder-save-marks, nnfolder-open-marks): Remove.
4275
4276         * nnml.el (nnml-marks-is-evil, nnml-marks-file-name, nnml-marks)
4277         (nnml-marks-modtime): Remove.
4278         (nnml-request-delete-group): Don't use marks.
4279         (nnml-request-rename-group): Ditto.
4280         (nnml-request-set-mark, nnml-request-marks, nnml-marks-changed-p)
4281         (nnml-save-marks, nnml-open-marks): Remove.
4282
4283         * nntp.el (nntp-marks-is-evil, nntp-marks-file-name, nntp-marks)
4284         (nntp-marks-modtime, nntp-marks-directory, nntp-request-set-mark)
4285         (nntp-request-marks, nntp-marks-directory, nntp-marks-changed-p)
4286         (nntp-save-marks, nntp-open-marks, nntp-possibly-create-directory)
4287         (nntp-server-to-method-cache): Remove.
4288
4289         * shr.el (shr-rescale-image): Fix wrong merge.
4290
4291 2012-02-15  Lars Ingebrigtsen  <larsi@gnus.org>
4292
4293         * shr.el (shr-remove-trailing-whitespace): Really delete the padding on
4294         too-wide lines.
4295
4296 2012-02-13  Lars Ingebrigtsen  <larsi@gnus.org>
4297
4298         * nnimap.el (nnimap-record-commands): New variable.
4299         (nnimap-log-command): Use it.
4300         (nnimap-make-process-buffer): Add a space to the process buffer.
4301         (nnimap-transform-headers): Don't bug out on header lines containing
4302         stuff that look like IMAP length encodings.
4303
4304         * shr.el (shr-rescale-image): Allow viewing large images.
4305
4306 2012-02-12  Lars Ingebrigtsen  <larsi@gnus.org>
4307
4308         * nnml.el (nnml-request-compact-group): Delete the marks file after
4309         compaction (bug#10800).
4310
4311         * gnus-art.el (gnus-stop-downloads): Stop `url-queue' downloads on
4312         group exit.
4313
4314         * nnimap.el (nnimap-parse-flags): Parse correctly when we have mixed
4315         QRESYNC/FETCH output.
4316
4317 2012-02-11  Glenn Morris  <rgm@gnu.org>
4318
4319         * sieve-manage.el (sieve-manage-default-stream):
4320         * shr.el (shr):
4321         * nnir.el (nnir-ignored-newsgroups, nnir-summary-line-format)
4322         (nnir-retrieve-headers-override-function)
4323         (nnir-imap-default-search-key, nnir-notmuch-program)
4324         (nnir-notmuch-additional-switches, nnir-notmuch-remove-prefix)
4325         (nnir-method-default-engines):
4326         * message.el (message-cite-reply-position):
4327         * gssapi.el (gssapi-program):
4328         * gravatar.el (gravatar):
4329         * gnus-sum.el (gnus-refer-thread-use-nnir):
4330         * gnus-registry.el (gnus-registry-unfollowed-addresses)
4331         (gnus-registry-max-pruned-entries):
4332         * gnus-picon.el (gnus-picon-inhibit-top-level-domains):
4333         * gnus-int.el (gnus-after-set-mark-hook)
4334         (gnus-before-update-mark-hook):
4335         * gnus-async.el (gnus-async-post-fetch-function):
4336         * auth-source.el (auth-source-cache-expiry):
4337         Add missing :version tags to new defcustoms and defgroups.
4338
4339 2012-02-11  Lars Ingebrigtsen  <larsi@gnus.org>
4340
4341         * gnus-sum.el (gnus-adjust-marked-articles): Add to
4342         `gnus-newsgroup-unexist'.
4343
4344         * gnus.el (gnus-article-mark-lists): Add `unexist' to the list of
4345         marks.
4346         (gnus-article-special-mark-lists): Put the `unexist' in the special
4347         marks list instead.
4348
4349         * gnus-sum.el (gnus-articles-to-read): Don't include unexisting
4350         articles in the list of articles to be selected.
4351
4352         * nnimap.el (nnimap-retrieve-group-data-early): Query for unexisting
4353         articles.
4354         (nnimap-update-info): Keep track of unexisting articles.
4355         (nnimap-update-qresync-info): Ditto.
4356
4357 2012-02-10  Lars Ingebrigtsen  <larsi@gnus.org>
4358
4359         * message.el (message-default-send-mail-function): Made into own
4360         function for reuse by emacsbug.el.
4361
4362 2012-02-09  Juanma Barranquero  <lekktu@gmail.com>
4363
4364         * gnus.el (gnus-method-ephemeral-p): Move after declaration of defsubst
4365         `gnus-sloppily-equal-method-parameters' to avoid a warning.
4366
4367 2012-02-09  Lars Ingebrigtsen  <larsi@gnus.org>
4368
4369         * mm-archive.el (mm-archive-dissect-and-inline): New function.
4370         (mm-archive-dissect-and-inline): Fix up the undisplayer.
4371
4372         * gnus-compat.el: Define `timer-set-function'.
4373
4374         * mm-decode.el (mm-display-external): Output the text from the command
4375         in the buffer after the command finished.  This makes text-based
4376         commands behave better.
4377
4378 2012-02-08  Lars Ingebrigtsen  <larsi@gnus.org>
4379
4380         * gnus-compat.el: Add a compat for the old `url-retrieve'.
4381
4382 2012-02-07  Lars Ingebrigtsen  <larsi@gnus.org>
4383
4384         * gnus-compat.el: Make `help-function-arglist' be compatible on Emacs
4385         23.1.
4386
4387 2012-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
4388
4389         * gnus-sum.el (gnus-summary-show-thread): Revert last two changes.
4390
4391 2012-02-07  Lars Ingebrigtsen  <larsi@gnus.org>
4392
4393         * message.el (smtpmail-smtp-user): Silence compiler warning.
4394
4395 2012-02-06  Lars Ingebrigtsen  <larsi@gnus.org>
4396
4397         * message.el (message-multi-smtp-send-mail): Also allow specifying the
4398         SMTP user name.
4399
4400 2012-02-06  Katsumi Yamaoka  <yamaoka@jpl.org>
4401
4402         * gnus-sum.el (gnus-summary-show-thread):
4403         next-single-char-property-change may return nil in XEmacs.
4404         (gnus-summary-article-map): Fix typo.
4405
4406 2012-02-09  Lars Ingebrigtsen  <larsi@gnus.org>
4407
4408         * gnus-msg.el (gnus-msg-mail): Use `message-mail' if Gnus isn't
4409         running.
4410
4411         * nnimap.el (nnimap-wait-for-response): Minor fixup of message string.
4412
4413         * gnus.el (gnus-server-extend-method): Don't add an -address component
4414         if the method already has one (bug#9676).
4415
4416 2012-02-08  Lars Ingebrigtsen  <larsi@gnus.org>
4417
4418         * gnus-sum.el (gnus-summary-insert-old-articles): Use a default instead
4419         of an initial-input for consistency (bug#10757).
4420
4421         * dgnushack.el: Fix XEmacs compilation warning.
4422
4423         * shr.el: Inhibit getting and sending cookies when fetching pictures.
4424
4425         * gnus-html.el (gnus-html-schedule-image-fetching): Ditto.
4426
4427 2012-02-07  Lars Ingebrigtsen  <larsi@gnus.org>
4428
4429         * shr.el (shr-remove-trailing-whitespace): Don't strip whitespace from
4430         lines that are narrower than the window width.  Otherwise background
4431         "blocks" will look less readable.
4432
4433 2012-02-07  Lars Ingebrigtsen  <larsi@gnus.org>
4434
4435         * nnimap.el (nnimap-transform-headers): Remove unused variable.
4436         (nnimap-transform-headers): Fix parsing BODYSTRUCTURE elements that
4437         have newlines within the strings, and where the UID comes after the
4438         BODYSTRUCTURE element (bug#10537).
4439
4440         * shr-color.el (shr-color-set-minimum-interval): Rename to add prefix
4441         (bug#10732).
4442
4443         * shr.el (shr-insert-document): Add doc string.
4444         (shr-visit-file): Ditto.
4445         (shr-remove-trailing-whitespace): New function.
4446         (shr-insert-document): Use it to clean up trailing whitespace as the
4447         final step (bug#10714).
4448
4449 2012-02-06  Lars Ingebrigtsen  <larsi@gnus.org>
4450
4451         * gnus-sum.el (gnus-summary-exit-no-update): Really deaden the summary
4452         buffer if `gnus-kill-summary-on-exit' is nil.
4453
4454 2012-02-06  Lars Ingebrigtsen  <larsi@gnus.org>
4455
4456         * gnus-sum.el (gnus-handle-ephemeral-exit): Allow exiting from Gnus
4457         when just reading a single group from "without" Gnus.
4458
4459 2012-02-06  Chong Yidong  <cyd@gnu.org>
4460
4461         * gnus-sum.el (gnus-summary-show-thread):
4462         next-single-char-property-change never returns nil (Bug#8657).
4463
4464 2012-02-02  Lars Ingebrigtsen  <larsi@gnus.org>
4465
4466         * message.el (message-multi-smtp-send-mail): New function.
4467         (message-multi-smtp-send-mail): Respect the X-Message-SMTP-Method
4468         header to implement multi-SMTP functionality.
4469
4470         * gnus-agent.el (gnus-agent-send-mail-function): Removed.
4471         (gnus-agentize): Don't set it.
4472         (gnus-agent-send-mail): Don't use it.
4473
4474         * gnus-sum.el (gnus-summary-widget-backward): New function and
4475         keystroke.
4476
4477         * gnus-compat.el: More the compat functions more compatible.
4478
4479         * shr.el (shr-put-image): Remove underlines from sliced images.
4480         (shr-zoom-image): Compute the region to be replaced more correctly.
4481
4482 2012-02-02  Katsumi Yamaoka  <yamaoka@jpl.org>
4483
4484         * gnus-msg.el (gnus-gcc-self-resent-messages): New user option.
4485         (gnus-summary-resend-message-insert-gcc): New function.
4486         (gnus-summary-resend-message): Modify message-header-setup-hook and
4487         message-sent-hook to make it work for Gcc.
4488         (gnus-inews-do-gcc): Update the number of unread articles of groups
4489         that messages are Gcc'd to.
4490
4491         * message.el (message-resend): Run message-sent-hook to do Gcc.
4492
4493 2012-02-01  Lars Ingebrigtsen  <larsi@gnus.org>
4494
4495         * lpath.el: Fix an XEmacs compilation warning.
4496
4497         * gnus-compat.el: Require `help-fns' to fix compilation error.
4498
4499         * gnus-registry.el (gnus-registry-fixup-registry): Move the message to
4500         a higher level to silence compilation.
4501
4502         * gnus-art.el (gnus-shr-put-image): Take and pass on a `flags'
4503         parameter to allow controlling the scaling.
4504
4505         * shr.el (shr-zoom-image): New command and keystroke.
4506         (shr-put-image): Take a `size' flag to say how to scale the image.
4507
4508         * gnus-compat.el: Redefine `delete-directory' to provide recursive
4509         deletion unless already defined.
4510
4511         * gnus.el (gnus-compat): Require it.
4512
4513         * gnus-compat.el: New file.
4514
4515         * gnus-start.el (gnus-clean-old-newsrc): New function.
4516         (gnus-read-newsrc-file): Use it.
4517
4518         * mm-archive.el (mm-dissect-archive): Use it to get all file names.
4519         Use recursive deletion.
4520         (mm-dissect-archive): Add support for zip files.
4521
4522         * gnus-util.el (gnus-recursive-directory-files): New function.
4523
4524         * mm-archive.el (mm-archive-list-files): Inline text and image parts.
4525         (mm-archive-decoders): Add tgz support.
4526
4527         * mm-decode.el (mm-shr): Make sure that the HTML ends with a newline.
4528         Otherwise inserting text into the Gnus buffer can look odd.
4529
4530         * gnus-art.el (gnus-mime-inline-part): Slight clean-up.
4531
4532         * mm-archive.el (mm-archive-decoders): Add support for tar.
4533
4534         * gnus.el (gnus-logo-color-alist): Change the colours for Ma Gnus.
4535
4536         * nnmail.el (nnmail-extra-headers): Add Cc to the default.
4537
4538 2012-01-31  Lars Ingebrigtsen  <larsi@gnus.org>
4539
4540         * mm-decode.el (mm-dissect-singlepart): Check that the decoder exists.
4541
4542         * mm-archive.el: New file.
4543
4544         * mm-decode.el (mm-dissect-singlepart): Use it to decode ms-tnef files.
4545
4546         * mm-util.el (mm-find-buffer-file-coding-system): Comment fix.
4547
4548         * message.el (message-goto-*): Make all the `message-goto-*' commands
4549         push the mark before moving point.  This makes it easier to go back to
4550         where you came from after editing whatever you jumped to.
4551
4552 2012-01-31  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
4553
4554         * gnus.el: Ma Gnus v0.1 is released.
4555
4556 2012-02-05  Lars Ingebrigtsen  <larsi@gnus.org>
4557
4558         * nnimap.el (nnimap-open-server): Allow switching the nnoo server
4559         without reconnecting.
4560         (nnimap-possibly-change-group): Ditto.
4561         (nnimap-finish-retrieve-group-infos): Don't reconnect if the server
4562         connection has died before being called.
4563
4564 2012-02-02  Lars Ingebrigtsen  <larsi@gnus.org>
4565
4566         * nnimap.el (nnimap-retrieve-group-data-early): Don't say we're doing
4567         an initial sync unless we're really doing one.
4568
4569         * gnus-group.el (gnus-group-read-ephemeral-group): Don't add a new
4570         address parameter if one already exists (bug#9676).
4571
4572         * gnus-msg.el (gnus-summary-mail-forward): Respect the process marks,
4573         not the prefix, as documented (bug#10689).
4574
4575 2012-02-01  Lars Ingebrigtsen  <larsi@gnus.org>
4576
4577         * gnus.el (gnus-valid-select-methods): nnmaildir also saves marks in
4578         the "server".
4579
4580         * gnus-group.el (gnus-group-get-new-news-this-group): Don't overwrite
4581         the real error message with the useless "previously known to be down".
4582         Which isn't even correct.
4583
4584         * nntp.el (nntp-open-connection): Report the error message if the nntp
4585         server can't be reached.
4586
4587         * nnimap.el (nnimap-retrieve-group-data-early): Keep track of how many
4588         groups we do a total scan for.
4589         (nnimap-wait-for-response): Say that we're doing a total scan, if we're
4590         doing that.
4591
4592 2012-01-31  Jim Meyering  <jim@meyering.net>
4593
4594         * gnus-agent.el (gnus-agent-expire-unagentized-dirs):
4595         Correct a comment (insert "not") and hide nominally-doubled "to".
4596
4597 2012-01-31  Lars Ingebrigtsen  <larsi@gnus.org>
4598
4599         * gnus.el (gnus-version): Change name to "Ma Gnus".
4600
4601 2012-01-30  Philipp Haselwarter  <philipp.haselwarter@gmx.de>  (tiny change)
4602
4603         * gnus-agent.el (gnus-agent-auto-agentize-methods): Point to the Agent
4604         section in the manual.
4605
4606 2012-01-30  Lars Ingebrigtsen  <larsi@gnus.org>
4607
4608         * rfc2047.el (rfc2047-encode-region): Allow not folding the encoded
4609         words.
4610         (rfc2047-encode-string): Ditto.
4611         (rfc2047-encode-parameter): Don't fold parameters.  Some MUAs do not
4612         understand folded filename="..." parameters, for instance.
4613
4614         * nnimap.el (nnimap-wait-for-response): Include the imap server name in
4615         the message for greater debuggability.
4616
4617 2012-01-28  Lars Ingebrigtsen  <larsi@gnus.org>
4618
4619         * mm-view.el (mm-display-inline-fontify): Bind `font-lock-support-mode'
4620         instead of setting it locally, since the latter doesn't seem to have
4621         any effect (most of the time).
4622
4623 2012-01-27  Elias Pipping  <pipping@lavabit.com>  (tiny change)
4624
4625         * shr.el (shr-browse-url): Fix the name of the `browse-url-mail'
4626         function call.
4627
4628 2012-01-27  Gábor Vida  <vidagabor@gmail.com>  (tiny change)
4629
4630         * gnus-demon.el (gnus-demon-run-callback, gnus-demon-init): Convert to
4631         seconds, and make the repeat clause with HH:MM specs work as
4632         documented.
4633
4634 2012-01-27  Lars Ingebrigtsen  <larsi@gnus.org>
4635
4636         * proto-stream.el (proto-stream-capability-open): Fall back on
4637         :end-of-command if :end-of-capability doesn't exist.
4638
4639 2012-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
4640
4641         * gnus-sum.el (gnus-summary-mode): Don't make bidi-paragraph-direction
4642         bound globally in old Emacsen and XEmacsen.
4643
4644 2012-01-27  Lars Ingebrigtsen  <larsi@gnus.org>
4645
4646         * gnus-start.el (gnus-get-unread-articles): Clear out "early" methods
4647         so that previous errors don't prohibit getting new news.
4648
4649         * nnimap.el (nnimap-retrieve-group-data-early): Ditto.
4650
4651         * nntp.el (nntp-retrieve-group-data-early): Ditto.
4652
4653 2012-01-26  Nick Alcock  <nick.alcock@oracle.com>  (tiny change)
4654
4655         * gnus.el (gnus-group-find-parameter): Check for liveness of the
4656         buffer, not of the string which is its name.
4657
4658 2012-01-26  Lars Ingebrigtsen  <larsi@gnus.org>
4659
4660         * proto-stream.el (proto-stream-capability-open): Wait for
4661         :end-of-capability, not :end-of-command.
4662
4663         * gnus-sum.el (gnus-summary-move-article): Don't propagate marks to
4664         non-server-marks groups.
4665         (gnus-group-make-articles-read): Ditto.
4666
4667         * gnus-srvr.el (gnus-server-prepare): Use it to avoid showing ephemeral
4668         methods (bug#9676).
4669
4670         * gnus.el (gnus-method-ephemeral-p): New function.
4671
4672 2012-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
4673
4674         * gnus-sum.el (gnus-summary-mode): Force paragraph direction to be
4675         left-to-right.
4676
4677 2012-01-26  Lars Ingebrigtsen  <larsi@gnus.org>
4678
4679         * nnimap.el (nnir-search-thread): Autoload to avoid a compilation
4680         warning.
4681
4682 2012-01-25  Lars Ingebrigtsen  <larsi@gnus.org>
4683
4684         * gnus-sum.el (gnus-summary-line-format-alist): Don't try to
4685         macroexpand the nnir things, since they haven't been defined yet, and
4686         nnir requires gnus-sum.
4687
4688 2012-01-24  Julien Danjou  <julien@danjou.info>
4689
4690         * color.el (color-rgb-to-hsl): Fix value computing.
4691         (color-hue-to-rgb): New function.
4692         (color-hsl-to-rgb): New function.
4693         (color-clamp, color-saturate-hsl, color-saturate-name)
4694         (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
4695         (color-lighten-name, color-darken-hsl, color-darken-name): New function.
4696
4697 2012-01-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4698
4699         * mm-decode.el (mm-interactively-view-part): Fix prompt.
4700
4701 2012-01-19  Julien Danjou  <julien@danjou.info>
4702
4703         * color.el (color-name-to-rgb): Use the white color to find the max
4704         color component value and return correctly computed values.
4705         (color-name-to-rgb): Add missing float conversion for max value.
4706
4707 2012-01-10  Teodor Zlatanov  <tzz@lifelogs.com>
4708
4709         * nntp.el (nntp-send-authinfo): Query `auth-source-search' with the
4710         logical server name in addition to the actual machine address.
4711
4712         * auth-source.el (auth-source-user-and-password): Add convenience
4713         wrapper to search by just host and optionally user.
4714
4715 2012-01-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4716
4717         * shr.el (shr-visit-file): Move point to the beginning of the buffer
4718         after rendering.
4719
4720 2012-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
4721
4722         * gnus-sync.el (gnus-sync-newsrc-groups): Quote normally.
4723         (gnus-sync-lesync-pre-save-group-entry): Remove invalid invlists.
4724         (gnus-sync-lesync-normalize-group-entry): Ignore a few more keys.
4725
4726 2012-01-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4727
4728         * gnus-sum.el (gnus-summary-read-group): Document more parameters
4729         (bug#9693).
4730         (gnus-summary-setup-buffer): Document return value (bug#9697).
4731
4732         * mm-decode.el (mm-interactively-view-part): Use `completing-read',
4733         since ido doesn't work on symbols (bug#9632).
4734
4735         * gnus.el (gnus-group-fast-parameter): Use the same precedence rules
4736         when getting a single value as when getting all the values.  This means
4737         that atoms like `gcc-self' work cumulatively, like variable settings,
4738         instead of getting the value from the last matching clause.
4739         (gnus-group-find-parameter): Protect against the group buffer not
4740         existing (bug#9585).
4741
4742 2012-01-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4743
4744         * gnus-start.el (gnus-activate-group): Document more parameters
4745         (bug#9694).
4746
4747         * gnus-group.el (gnus-group-read-ephemeral-group): Doc clarification
4748         (bug#9692).
4749
4750         * gnus-agent.el (gnus-agent-store-article): Tell the Agent when the
4751         article was fetched, so that it can be expired later (bug#9958).
4752         (gnus-agent-summary-fetch-series): Add doc string.
4753         (gnus-agent-summary-fetch-group): Don't remove tick and dormant marks
4754         (bug#9517).
4755
4756         * nntp.el (nntp-retrieve-groups): Refuse to do retrieval when an async
4757         retrieval is happening.
4758
4759         * gnus.el (gnus-parameters): Doc fix.
4760
4761 2012-01-06  Dave Abrahams  <dave@boostpro.com>
4762
4763         * gnus-sum.el (gnus-summary-refer-thread): If the subtree is hidden,
4764         show the thread after expansion.
4765
4766 2012-01-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4767
4768         * gnus-art.el (article-narrow-to-head): If the head is completely
4769         empty, narrow to the empty region (bug#9764).
4770
4771         * gnus-sum.el (gnus-summary-mark-article-as-unread): Mark articles as
4772         read, and then mark them as unread only when the unread mark is used.
4773         This makes `C-- T k' actually work, even though it's confusing.
4774
4775         * gnus-win.el (gnus-all-windows-visible-p): Ensure that the buffer is
4776         alive before we try to find its window.
4777
4778 2012-01-06  Brian Sniffen  <bsniffen@akamai.com>  (tiny change)
4779
4780         * mm-decode.el (mm-display-external): Use a longer timeout for the
4781         deletion to allow slow programs to display the file.
4782
4783 2012-01-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4784
4785         * gnus-art.el (gnus-article-browse-delete-temp-files): Fix up the
4786         prompt to be less confusing.
4787
4788         * gnus-msg.el (gnus-summary-reply): Do not give a `switch-to-buffer'
4789         argument to `message-reply'.  This broke `special-display-*' frame
4790         pop-uping (bug#10238).
4791
4792 2012-01-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4793
4794         * starttls.el (starttls-available-p): Return nil on Windows/MS-DOS
4795         systems, since these allegedly don't work there.
4796
4797 2012-01-04  Chris Gray  <chrismgray@gmail.com>  (tiny change)
4798
4799         * mm-decode.el (mm-shr): Check that `gnus-summary-buffer' really is a
4800         live buffer.
4801
4802 2012-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4803
4804         * nnir.el (nnir-retrieve-headers): Protect against the article not
4805         existing on the server (bug#10335).
4806
4807 2012-01-04  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
4808
4809         * gnus-agent.el (gnus-agent-load-local): Recompute
4810         gnus-agent-article-local on changing method.
4811
4812 2012-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4813
4814         * gnus.el (gnus-parameters): Note precedence.
4815
4816 2012-01-04  Leo Liu  <sdl.web@gmail.com>
4817
4818         * nndraft.el (nndraft-update-unread-articles): Don't move point around
4819         in the group buffer.
4820
4821 2012-01-04  Julien Danjou  <julien@danjou.info>
4822
4823         * nnimap.el (nnimap-update-info): Fix an error when all articles UIDs
4824         change.
4825
4826 2012-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4827
4828         * shr.el (shr-rescale-image): Add :ascent 100 to the rescaled picture,
4829         too.
4830
4831         * nntp.el (nntp-retrieve-group-data-early): Use it.
4832
4833 2012-01-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4834
4835         * nntp.el (nntp-retrieval-in-progress): New variable.
4836         (nntp-make-process-buffer): Make it buffer-local.
4837
4838         * gnus-demon.el (gnus-demon-time-to-step): Resurrect function lost in
4839         2010.
4840         (gnus-demon-init): Use it to compute the time if time is on the form
4841         "04:23".
4842
4843         * gnus-topic.el (gnus-topic-history): Define `gnus-topic-history'.
4844
4845         * nnimap.el (nnimap-finish-retrieve-group-infos): Check the connection
4846         status in the correct buffer.
4847
4848 2012-01-03  Leo Liu  <sdl.web@gmail.com>
4849
4850         * gnus-topic.el (gnus-topic-goto-next-group): Don't move point around
4851         when opening topics (bug#10407).
4852
4853 2011-12-30  Paul Eggert  <eggert@cs.ucla.edu>
4854
4855         * gnus-cus.el (gnus-score-customize):
4856         * gnus-sum.el (gnus-sort-gathered-threads):
4857         * message.el (message-shorten-references):
4858         * nnmairix.el (nnmairix-request-group):
4859         * uudecode.el (uudecode-decode-region-internal): Spelling fix.
4860
4861 2011-12-29  Paul Eggert  <eggert@cs.ucla.edu>
4862
4863         * gnus-agent.el (gnus-agent-regenerate-group):
4864         * gnus-int.el (gnus-retrieve-group-data-early):
4865         * mm-util.el (mm-codepage-ibm-list):
4866         * nndiary.el (Commentary, nndiary-get-new-mail):
4867         * nnir.el (nnir):
4868         * pgg-parse.el (pgg-parse-symmetric-key-algorithm-alist): Spelling fix.
4869
4870 2011-12-28  Katsumi Yamaoka  <yamaoka@jpl.org>
4871
4872         * mm-view.el (mm-display-inline-fontify): Add comment.
4873
4874 2011-12-21  Paul Eggert  <eggert@cs.ucla.edu>
4875
4876         * nndiary.el (nndiary-parse-schedule-value, nndiary-parse-schedule):
4877         * ntlm.el (ntlm-smb-dohash): Spelling fix.
4878
4879 2011-12-19  Paul Eggert  <eggert@cs.ucla.edu>
4880
4881         * gnus-art.el (gnus-split-methods):
4882         * gnus-msg.el (gnus-configure-posting-styles):
4883         * gnus-spec.el (gnus-parse-simple-format):
4884         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
4885         * message.el (message-do-actions): Spelling fix.
4886
4887 2011-12-15  Juri Linkov  <juri@jurta.org>
4888
4889         * mm-decode.el (mm-inline-media-tests): Add missing
4890         `mm-handle-media-subtype'.
4891
4892 2011-12-14  Paul Eggert  <eggert@cs.ucla.edu>
4893
4894         * gnus-group.el (gnus-group-tool-bar):
4895         * gnus-sum.el (gnus-summary-tool-bar):
4896         * message.el (message-tool-bar):
4897         * rfc2231.el (rfc2231-parse-string): Spelling fix.
4898
4899 2011-12-12  Paul Eggert  <eggert@cs.ucla.edu>
4900
4901         * plstore.el (plstore--insert-buffer): Spelling fix.
4902
4903 2011-12-09  Tassilo Horn  <tassilo@member.fsf.org>
4904
4905         * message.el (message-valid-fqdn-regexp): Update with newly approved
4906         top-level domain names ".tel" and ".asia".
4907
4908 2011-12-08  Katsumi Yamaoka  <yamaoka@jpl.org>
4909
4910         * gnus-sum.el (gnus-summary-show-article): Don't load shr
4911         unconditionally.
4912
4913 2011-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
4914
4915         * message.el (message-pop-to-buffer): Use pop-to-buffer instead of
4916         pop-to-buffer-same-window for old Emacsen.
4917
4918 2011-12-06  Juanma Barranquero  <lekktu@gmail.com>
4919
4920         * gnus-sum.el (gnus-summary-make-tool-bar): Fix typo.
4921
4922 2011-12-05  Paul Eggert  <eggert@cs.ucla.edu>
4923
4924         * netrc.el (netrc-credentials): Spelling fix.
4925
4926 2011-12-04  Paul Eggert  <eggert@cs.ucla.edu>
4927
4928         * gnus-fun.el (gnus-fun-ppm-change-string):
4929         * gnus-msg.el (gnus-inews-do-gcc):
4930         * gnus-sum.el (gnus-summary-find-for-reselect):
4931         * gnus.el (gnus-summary-cancelled):
4932         * message.el (message-cancel-hook, message-send-news):
4933         * nndiary.el (nndiary-headers, nndiary-parse-schedule-value):
4934         * nnir.el (nnir-run-hyrex):
4935         * nntp.el (nntp-with-open-group-function):
4936         * pgg.el (pgg-pending-timers): Spelling fix.
4937
4938 2011-12-04  Chong Yidong  <cyd@gnu.org>
4939
4940         * message.el (message-pop-to-buffer): Partially revert 2011-11-30
4941         change (Bug#10200).
4942
4943 2011-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
4944
4945         * compface.el (uncompface):
4946         * gnus-art.el (gnus-article-x-face-command): Update the header format
4947         of icon data for the most recent icontopbm program.
4948
4949 2011-12-01  Katsumi Yamaoka  <yamaoka@jpl.org>
4950
4951         * gnus-msg.el (gnus-inews-do-gcc):
4952         * message.el (message-send-mail):
4953         * mml.el (mml-generate-mime): Share the value of the buffer-local
4954         `message-options' variable between a draft buffer and temprary working
4955         buffers.
4956
4957 2011-11-30  Stefan Monnier  <monnier@iro.umontreal.ca>
4958
4959         * message.el (message-pop-to-buffer): Revert 2011-09-11 change.
4960
4961 2011-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
4962
4963         * gnus-art.el (gnus-article-browse-html-parts): Convert link file names
4964         for Cygwin.
4965
4966 2011-11-27  Paul Eggert  <eggert@cs.ucla.edu>
4967
4968         * gnus-group.el (gnus-group-prepare-flat):
4969         * mm-bodies.el (mm-encode-body):
4970         * mml.el (mml-preview):
4971         * nnml.el (nnml-request-compact-group):
4972         * pop3.el (pop3-stream-type): Spelling fix.
4973
4974 2011-11-26  Paul Eggert  <eggert@cs.ucla.edu>
4975
4976         * gnus-start.el (gnus-newsrc-to-gnus-format): Spelling fix.
4977
4978 2011-11-25  Paul Eggert  <eggert@cs.ucla.edu>
4979
4980         * color.el (color-rgb-to-hsl):
4981         * gmm-utils.el (gmm-tool-bar-style):
4982         * gnus-group.el (gnus-group-prepare-flat):
4983         * gnus-topic.el (gnus-topic-prepare-topic):
4984         * mm-decode.el (mm-discouraged-alternatives):
4985         * rfc2047.el (rfc2047-encode-1):
4986         * starttls.el: Spelling fix.
4987
4988 2011-11-24  Glenn Morris  <rgm@gnu.org>
4989
4990         * binhex.el (binhex-begin-line): Give it basic doc-string.
4991
4992         * starttls.el, tls.el: Fix case of "GnuTLS".
4993
4994 2011-11-24  Juanma Barranquero  <lekktu@gmail.com>
4995
4996         * gnus-group.el (gnus-group-highlight): Fix typo.
4997
4998 2011-11-24  Adam W  <adam_w67@yahoo.com>  (tiny change)
4999
5000         * mail-source.el (mail-source-fetch-maildir): Don't expect the return
5001         value of `delete-file', that returns nil for a local file but returns t
5002         for a remote file using ssh.
5003
5004 2011-11-22  Paul Eggert  <eggert@cs.ucla.edu>
5005
5006         * gnus-sum.el (gnus-summary-save-article): Spelling fix.
5007
5008 2011-11-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5009
5010         * shr.el (shr-table-horizontal-line): Use "?\s" instead of "? " to
5011         avoid later breakage.
5012
5013 2011-11-22  Katsumi Yamaoka  <yamaoka@jpl.org>
5014
5015         * gnus-art.el (gnus-article-setup-buffer): Decode group name used for
5016         article buffers' name.
5017
5018 2011-11-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5019
5020         * shr.el (shr-table-horizontal-line): Revert infinite loops introduced
5021         by Paul Eggert's spellfixes two days ago.
5022
5023 2011-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5024
5025         * dgnushack.el (fboundp): Define `with-demoted-errors' for Emacsen that
5026         doesn't have it.
5027
5028         * mm-view.el (mm-display-inline-fontify): Make the font-lock variables
5029         buffer-local instead of binding them to avoid warnings.  Also demote
5030         errors (bug#10063).
5031         (font-lock-mode-hook): Shut up byte compiler.
5032
5033 2011-11-20  Juanma Barranquero  <lekktu@gmail.com>
5034
5035         * mm-util.el (mm-charset-after):
5036         * nnir.el (nnir-run-hyrex):
5037         * ntlm.el (ntlm-build-auth-request, ntlm-build-auth-response)
5038         (ntlm-get-password-hashes, ntlm-md4hash):
5039         * smime.el: Fix typo.
5040
5041 2011-11-20  Paul Eggert  <eggert@cs.ucla.edu>
5042
5043         * gnus-agent.el (gnus-agent-expire-group-1):
5044         * nndiary.el (nndiary-last-occurence):
5045         * nnimap.el (nnimap-request-set-mark):
5046         * nnmairix.el (nnmairix-only-use-registry):
5047         * gnus-group.el (gnus-group-prepare-flat):
5048         * gnus-sum.el (gnus-decode-encoded-word-methods):
5049         * message.el (message-wash-subject):
5050         * nntp.el (nntp-retrieve-headers-with-xover):
5051         * smime.el (smime-certificate-directory): Spelling fix.
5052
5053 2011-11-19  Paul Eggert  <eggert@cs.ucla.edu>
5054
5055         * nnmail.el (nnmail-get-new-mail-1): Remove unused local variables.
5056
5057         * color.el:
5058         * gnus-agent.el (gnus-agent-possibly-alter-active):
5059         * gnus-dired.el (gnus-dired-print):
5060         * mail-parse.el:
5061         * nnmairix.el (nnmairix-request-group):
5062         * shr.el (shr-image-displayer):
5063         * sieve-manage.el:
5064         * spam.el (spam-autodetect-recheck-messages): Spelling fix.
5065
5066 2011-11-18  Paul Eggert  <eggert@cs.ucla.edu>
5067
5068         * gnus-sum.el (gnus-auto-select-subject):
5069         * spam-report.el (spam-report-resend): Spelling fix.
5070
5071 2011-11-17  Paul Eggert  <eggert@cs.ucla.edu>
5072
5073         * gnus-agent.el (gnus-agent-get-undownloaded-list):
5074         * gnus-art.el (gnus-default-article-saver):
5075         * gnus-srvr.el (gnus-server-copy-server):
5076         * gnus.el (gnus-sloppily-equal-method-parameters):
5077         * html2text.el (html2text-format-tag-list):
5078         * message.el (message-narrow-to-head):
5079         * nndiary.el:
5080         * nnmairix.el (nnmairix-determine-original-group-from-registry):
5081         * sieve.el: Spelling fix.
5082
5083 2011-11-16  Juanma Barranquero  <lekktu@gmail.com>
5084
5085         * gnus-agent.el (gnus-agent-expire-unagentized-dirs):
5086         * gnus-sum.el (gnus-summary-make-menu-bar):
5087         * gnus-uu.el (gnus-uu-decode-postscript)
5088         (gnus-uu-decode-postscript-and-save):
5089         * mailcap.el (mailcap-print-command):
5090         * registry.el (registry-lookup, registry-lookup-breaks-before-lexbind):
5091         Fix typos.
5092
5093 2011-11-15  Juanma Barranquero  <lekktu@gmail.com>
5094
5095         * gnus-art.el (gnus-article-part-wrapper):
5096         * html2text.el (html2text-fix-paragraphs):
5097         * mm-decode.el (mm-image-fit-p):
5098         * rfc2047.el (rfc2047-encode-message-header):
5099         * shr-color.el (shr-color-visible-distance-min)
5100         (shr-color-relative-to-absolute, set-minimum-interval)
5101         (shr-color-visible): Fix typos.
5102
5103 2011-11-15  Paul Eggert  <eggert@cs.ucla.edu>
5104
5105         * gmm-utils.el (gmm-tool-bar-item):
5106         * gnus-art.el (gnus-treat-body-boundary):
5107         * gnus-diary.el (gnus-user-format-function-d):
5108         * gnus-start.el (gnus-get-unread-articles):
5109         * pgg-gpg.el (pgg-gpg-update-agent):
5110         * smime.el (smime-cert-by-ldap-1): Spelling fix.
5111
5112 2011-11-14  Paul Eggert  <eggert@cs.ucla.edu>
5113
5114         * gnus-topic.el (gnus-group-prepare-topics):
5115         * gnus-uu.el (gnus-extract-view):
5116         * gnus-win.el (gnus-use-frames-on-any-display): Spelling fix.
5117
5118 2011-11-09  Teodor Zlatanov  <tzz@lifelogs.com>
5119
5120         * spam.el: Move BBDB autoloads.
5121         (spam-exists-in-BBDB-p): New function to do the BBDB search directly in
5122         BBDB 2 and 3.
5123         (spam-check-BBDB): Use it.
5124         (spam-enter-ham-BBDB): Use it.
5125
5126 2011-11-09  Paul Eggert  <eggert@cs.ucla.edu>
5127
5128         * smime.el (smime-draw-buffer): Spelling fix.
5129
5130 2011-10-31  Peter Münster  <pmrb@free.fr>  (tiny change)
5131
5132         * gnus-group.el (gnus-group-get-new-news): New parameter `one-level'
5133         for scanning exactly one level.
5134         * gnus-start.el (gnus-get-unread-articles): Ditto.
5135
5136 2011-11-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5137
5138         * gnus-sum.el (gnus-articles-to-read): Change wording in prompt to be
5139         slightly clearer.
5140
5141 2011-11-03  Teodor Zlatanov  <tzz@lifelogs.com>
5142
5143         * gnus-sync.el: More commentary about setup.
5144
5145 2011-11-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5146
5147         * message.el (message-send-and-exit): Document `arg'.
5148
5149 2011-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
5150
5151         * nnimap.el (nnimap-open-connection-1): Use tcp-keealive if possible.
5152
5153 2011-11-02  Teodor Zlatanov  <tzz@lifelogs.com>
5154
5155         * gnus-sync.el: More commentary about `gnus-sync-read' issues.
5156
5157         * gnus-util.el (gnus-bound-and-true-p): Another comment to explain why
5158         we don't use `bound-and-true-p'.
5159
5160 2011-11-01  Teodor Zlatanov  <tzz@lifelogs.com>
5161
5162         * gnus-util.el (gnus-bound-and-true-p): Remove.
5163         (gnus-bound-and-true-dumber-p): Rename to `gnus-bound-and-true-p'.
5164         * nnir.el: Use it.
5165         * nnmairix.el: Use it.
5166
5167 2011-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
5168
5169         * gnus-sync.el: Improve docs about CouchDB admins.
5170
5171         * gnus-util.el (gnus-bound-and-true-dumber-p): Define new, slower, dumb
5172         function because `gnus-bound-and-true-p' doesn't work well in XEmacs
5173         for reasons unknown.
5174         * nnir.el: Use it.
5175         * nnmairix.el: Use it.
5176
5177         * nnregistry.el: Remove unnecessary `gnus-registry-enabled' defvar.
5178         * nnir.el: Ditto.
5179         * nnmairix.el: Ditto.
5180
5181         * gnus-registry.el (gnus-registry-enabled): Default to nil.
5182
5183 2011-10-29  Teodor Zlatanov  <tzz@lifelogs.com>
5184
5185         * gnus-sync.el (gnus-sync-lesync-setup): Fix salt when user setup is
5186         not needed.  Provide xmlplistread list function to produce XML plist
5187         output for non-Gnus LeSync clients.
5188
5189 2011-10-27  Teodor Zlatanov  <tzz@lifelogs.com>
5190
5191         * gnus-fallback-lib/json.el: Add for XEmacs and Emacs 22 support.
5192
5193         * gnus-sync.el: Add LeSync synchronization backend and logic to read
5194         and save against it.  Group subscriptions, read marks, other marks,
5195         subscription levels, topic names, and topic offsets (the group's
5196         position within the topic) are saved.  This is an experimental backend
5197         and may change significantly.  Load json.el from the gnus-fallback-lib
5198         if it's not available otherwise.
5199         (gnus-sync-save): Don't use `apply-partially' because of XEmacs.
5200
5201 2011-10-26  Stefan Monnier  <monnier@iro.umontreal.ca>
5202
5203         * message.el (message-completion-function): Make sure
5204         message-tab-body-function is not attempted if one of
5205         message-completion-alist fails to find a completion (bug#9158).
5206
5207 2011-10-26  Daiki Ueno  <ueno@unixuser.org>
5208
5209         * mml.el (mml-quote-region): Quote <#secure> tag.
5210         (mml-generate-mime-1): Unquote <#secure> tag.
5211
5212 2011-10-20  Chong Yidong  <cyd@gnu.org>
5213
5214         * gnus-cite.el (gnus-message-citation-mode): Doc fix (in Emacs 24,
5215         calling a minor mode from Lisp with nil arg enables it, so we have to
5216         make the wording a bit ambiguous here).
5217
5218 2011-10-18  Teodor Zlatanov  <tzz@lifelogs.com>
5219
5220         * gnus-util.el (gnus-bound-and-true-p): Macro for XEmacs compatibility.
5221         * nnir.el (nnir-mode): Use it.
5222         * nnmairix.el (nnmairix-determine-original-group-from-registry):
5223         Use it.
5224
5225         * nnir.el (gnus-registry-enabled): Defvar to keep the compiler happy.
5226         * nnmairix.el (gnus-registry-enabled): Ditto.
5227
5228 2011-10-17  Dave Abrahams  <dave@boostpro.com>
5229
5230         * gnus-registry.el (gnus-registry-enabled): Add new variable (Bug#9691).
5231         (gnus-registry-install-shortcuts): Set `gnus-registry-install' to 'ask
5232         only while we need to find out if it should be t or nil.
5233         (gnus-registry-initialize): Don't set `gnus-registry-install' to t.
5234         (gnus-registry-install-hooks): Set `gnus-registry-enabled' to t when
5235         the registry is installed.  Set it to nil when it's unloaded.
5236         (gnus-registry-install-p): Provide user guidance for the initial value
5237         of `gnus-registry-install' when it's 'ask, otherwise return its value.
5238         * nnregistry.el (nnregistry-open-server, nnregistry-server-opened):
5239         Use `gnus-registry-enabled' instead of `gnus-registry-install'.
5240         * nnmairix.el (nnmairix-determine-original-group-from-registry):
5241         Use `gnus-registry-enabled' instead of `gnus-registry-install'.
5242         * nnir.el (nnir-mode): Use `gnus-registry-enabled' instead of
5243         `gnus-registry-install'.
5244
5245 2011-10-17  Daiki Ueno  <ueno@unixuser.org>
5246
5247         * mml2015.el (mml2015-epg-find-usable-key): Add comment about the
5248         previous change.
5249         * mml1991.el (mml1991-epg-find-usable-key): Skip the whole key if the
5250         primary key is marked as disabled.
5251
5252 2011-10-17  Christian von Roques  <roques@mti.ag>  (tiny change)
5253
5254         * mml2015.el (mml2015-epg-find-usable-key): Skip the whole key if the
5255         primary key is marked as disabled.
5256
5257 2011-10-11  Andreas Schwab  <schwab@linux-m68k.org>
5258
5259         * html2text.el (html2text-clean-anchor): Check for quotes around
5260         `href' value.
5261
5262 2011-10-11  Teodor Zlatanov  <tzz@lifelogs.com>
5263
5264         * spam.el (spam-check-BBDB): Simplify and support BBDB 3.x when
5265         searching.  Drop `bbdb-cache'.
5266
5267 2011-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
5268
5269         * message.el (message-signed-or-encrypted-p): Exclude header when
5270         checking if there is signed or encrypted body in text/plain message.
5271
5272 2011-10-09  Andreas Schwab  <schwab@linux-m68k.org>
5273
5274         * html2text.el (html2text-get-attr): Correctly handle attribute values
5275         containing "=".
5276
5277 2011-09-22  Kan-Ru Chen  <kanru@kanru.info>
5278
5279         * ecomplete.el (ecomplete-display-matches): Use a local keymap to
5280         handle bindings.
5281
5282 2011-10-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5283
5284         * gnus-win.el (gnus-configure-windows): Protect against reading
5285         ephemeral groups outside of Gnus.
5286
5287 2011-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
5288
5289         * shr.el (shr-tag-img): Don't get images displayed in tables.
5290
5291 2011-10-03  Glenn Morris  <rgm@gnu.org>
5292
5293         * gnus-group.el (gnus-bug-group-download-format-alist): Once again get
5294         the "maintainer" version of debbugs.gnu.org reports.
5295
5296 2011-10-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5297
5298         * shr.el (shr-tag-img): Add a space at the end of an ALT image text to
5299         make asynchronous adjacent image insertion work better.
5300
5301 2011-09-27  Daiki Ueno  <ueno@unixuser.org>
5302
5303         * plstore.el (plstore-select-keys, plstore-encrypt-to): Clarify
5304         documentation.
5305
5306 2011-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5307
5308         * gnus-uu.el (gnus-uu-grab-articles): Require gnus-async so that
5309         `gnus-asynchronous' isn't shadowed.
5310
5311 2011-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5312
5313         * gnus-xmas.el (gnus-xmas-define): Add `member-ignore-case'.
5314
5315         * nnimap.el (nnimap-wait-for-response): Message less (bug#9540).
5316         (nnimap-insert-partial-structure): The charset parameter isn't
5317         case-sensitive.
5318
5319         * nnheader.el (nnheader-message-maybe): New function.
5320
5321         * shr.el (shr-tag-table): Render totally broken tables better.
5322
5323         * mml.el (mml-generate-mime-1): Don't alter the contents if we're
5324         computing the boundary.
5325
5326 2011-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5327
5328         * pop3.el (pop3-number-of-responses): Remove.
5329         (pop3-wait-for-messages): Rewrite to take linear time instead of
5330         exponential time.
5331
5332 2011-09-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5333
5334         * gnus-sum.el (gnus-summary-show-article): Bind `shr-ignore-cache' to
5335         re-fetch images.
5336
5337         * shr.el (shr-tag-img): Support a new variable `shr-ignore-cache' to
5338         re-fetch images when hitting `g' in Gnus.
5339
5340 2011-09-22  Katsumi Yamaoka  <yamaoka@jpl.org>
5341
5342         * mml.el (mml-inhibit-compute-boundary): New internal variable.
5343         (mml-compute-boundary): Don't check collision if it is non-nil.
5344         (mml-compute-boundary-1): Use mml-generate-mime-1 to encode part
5345         before checking collision.
5346
5347 2011-09-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5348
5349         * message.el (message-indent-citation): Really make sure there's a
5350         newline at the end.
5351
5352         * nnimap.el (nnimap-parse-flags): Make regexp less prone to overflows.
5353         Fix suggested by John Wiegley.
5354
5355         * pop3.el (pop3-open-server): Fix +OK end-of-command regexp.
5356
5357         * gnus-art.el (gnus-treat-hide-citation): Add doc.
5358
5359         * message.el (message-default-send-rename-function): Break out into its
5360         own function.
5361
5362         * ecomplete.el (ecomplete-display-matches): Revert patch since it
5363         doesn't work under XEmacs.
5364
5365         * nnimap.el (nnimap-map-port): New function to connect to 993 instead
5366         of "imaps" to word around Windows problems.
5367         (nnimap-open-connection-1): Use it.
5368
5369         * message.el (message-indent-citation): Revert last change which made
5370         `F' not work.
5371
5372 2011-09-13  Kan-Ru Chen  <kanru@kanru.info>
5373
5374         * ecomplete.el (ecomplete-display-matches): Intercept key sequence from
5375         terminal as well.
5376
5377 2011-09-21  Katsumi Yamaoka  <yamaoka@jpl.org>
5378
5379         * mm-view.el (mm-display-inline-fontify): Don't run doc-view-mode
5380         because it displays images using overlays that aren't easy to copy to
5381         the article buffer.
5382
5383 2011-09-20  Łukasz Stelmach  <lukasz.stelmach@iem.pw.edu.pl>  (tiny change)
5384
5385         * message.el (message-indent-citation): Fix empty line removal at the
5386         end of the citation.
5387
5388 2011-09-20  Julien Danjou  <julien@danjou.info>
5389
5390         * auth-source.el (auth-source-netrc-create): Use default value for
5391         password if specified.  Evaluate default.
5392         (auth-source-plstore-create): Ditto.
5393         (auth-source-plstore-create, auth-source-netrc-create): Fix default
5394         value evaluation.
5395         (auth-source-netrc-create): Typo fix.
5396         (auth-source-plstore-create): Ditto.
5397
5398         * password-cache.el (password-cache-remove): Remove entries even if the
5399         value is nil, so that password with a nil value (negative caching) is
5400         possible to invalidate.
5401
5402         * auth-source.el (auth-source-format-cache-entry): New function.
5403
5404 2011-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
5405
5406         * gnus-fun.el (gnus-convert-image-to-x-face-command): Doc fix.
5407
5408 2011-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5409
5410         * mm-decode.el (mm-inline-media-tests): Fix typo in regexp.
5411
5412 2011-09-19  Julien Danjou  <julien@danjou.info>
5413
5414         * auth-source.el (auth-source-netrc-parse): Use an obfuscation method
5415         which work with things that are not ASCII.
5416
5417 2011-09-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5418
5419         * mm-decode.el (mm-inline-media-tests): Support imagemagick images.
5420
5421 2011-09-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5422
5423         * gnus-sum.el (gnus-summary-read-group-1): Bump the "Retrieving"
5424         message level.
5425
5426 2011-09-15  Katsumi Yamaoka  <yamaoka@jpl.org>
5427
5428         * message.el (message-read-from-minibuffer): Make abbrev expansion work.
5429
5430 2011-09-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5431
5432         * gnus.el (gnus-interactive-exit): Update defcustom spec.
5433
5434 2011-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
5435
5436         * gnus.el (gnus-nntp-server): Move to gnus-int.el to silence bytecomp.
5437         * gnus-int.el (gnus-nntp-server): Move from gnus.el.
5438
5439 2011-09-12  Andrew Cohen  <cohen@andy.bu.edu>
5440
5441         * gnus-group.el (gnus-group-list-limit-map, gnus-group-list-flush-map)
5442         (gnus-group-list-plus-map): Allow limiting, flushing and plusing ticked
5443         articles.
5444
5445 2011-09-11  Chong Yidong  <cyd@stupidchicken.com>
5446
5447         * message.el (message-pop-to-buffer): Default to switch-to-buffer.
5448         (message-mail-other-window, message-mail-other-frame)
5449         (message-news-other-window, message-news-other-frame):
5450         Use switch-to-buffer-other-frame and switch-to-buffer-other-window
5451         instead of setting buffer display varibles.
5452
5453 2011-09-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5454
5455         * gnus-group.el (gnus-group-list-limit): Explain what the command does.
5456
5457         * gnus-sum.el (gnus-fetch-headers): Bump message level.
5458
5459 2011-09-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5460
5461         * gnus-dup.el (gnus-dup-suppress-articles): Move "Suppressing
5462         duplicates" to a higher level.
5463
5464         * gnus-util.el (gnus-verbose): Lower default to 6 to get rid of the
5465         most egregious messages.
5466
5467 2011-09-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5468
5469         * gnus-msg.el (gnus-summary-mail-forward): Minuscule doc fix.
5470
5471 2011-09-10  Tetsuo Tsukamoto  <tt.tetsuo.tsukamoto@gmail.com>  (tiny change)
5472
5473         * nnrss.el (nnrss-retrieve-groups): Decode the charset before looking
5474         up the file (bug#9351).
5475
5476 2011-09-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5477
5478         * nnimap.el: Redo the charset handling.  Let Gnus encode the names, as
5479         it does with all other backends, but decode the names immediately after
5480         getting them.
5481
5482         * gnus-group.el (gnus-group-name-charset): Always return `utf-7' when
5483         decoding nnimap groups.
5484
5485         * gnus.el (gnus-variable-list): Don't save `gnus-format-specs' in the
5486         newsrc file.  It doesn't seem like an important optimization any more.
5487
5488 2011-09-10  Dave Abrahams  <dave@boostpro.com>
5489
5490         * nnimap.el (nnimap-transform-headers): Fix regexp to be less prone to
5491         overflows.
5492
5493 2011-09-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5494
5495         * gnus.el (gnus-article-mark-lists): Remove `recent'.
5496         (gnus-interactive-exit): Extend to `quiet'.
5497
5498         * gnus-sum.el (gnus-offer-save-summaries): Use it.
5499
5500         * gnus-art.el (gnus-treat-hide-citation-maybe): Add more doc to the
5501         string.
5502
5503         * plstore.el (plstore--get-buffer): Silence compiler warnings by
5504         renaming function arguments from `this'.
5505
5506         * gnus-sum.el (gnus-newsgroup-recent): Remove.
5507
5508         * gnus-spec.el (gnus-lrm-string-p): `bidi-string-mark-left-to-right'
5509         has been renamed.
5510         (gnus-lrm-string-p): Include RLM and PDF, too.
5511
5512         * gnus-int.el (gnus-open-server): Make the "denied" message clearer
5513         (bug#9225).
5514
5515 2011-09-10  Eli Zaretskii  <eliz@gnu.org>
5516
5517         Add autoload cookies for functions used by sendmail.el.
5518         * mm-encode.el (mm-default-file-encoding): Add autoload cookie.
5519
5520         * mml.el (mml-to-mime, mml-attach-file): Add autoload cookies.
5521
5522 2011-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
5523
5524         * gnus-art.el (article-date-ut): Work properly even when there are
5525         things like Date header in the body; work for forwarded parts.
5526
5527 2011-09-05  Andrew Cohen  <cohen@andy.bu.edu>
5528
5529         * gnus-sum.el (gnus-summary-exit): Ensure we kill the proper
5530         original-article-buffer.
5531
5532 2011-09-05  Kan-Ru Chen  <kanru@kanru.info>
5533
5534         * nnir.el (nnir-compose-result): Fix matching of server type.
5535         (nnir-run-swish++): Ditto.
5536         (nnir-run-namazu): Ditto.
5537         (nnir-run-notmuch): Ditto.
5538
5539 2011-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5540
5541         * gnus.el (gnus-home-directory): Add warning about setting in .gnus.el
5542         (bug#9405).
5543
5544         * gnus-score.el (gnus-summary-increase-score): Doc clarification
5545         (bug#9421).
5546
5547         * gnus-spec.el (gnus-face-0): Make all the face specs into defcustoms
5548         (bug#9425).
5549
5550         * gnus-art.el (gnus-treatment-function-alist): Remove CRs as the first
5551         thing (bug#9426).
5552
5553 2011-09-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5554
5555         * nnimap.el (nnimap-open-connection-1): Use the correct port number in
5556         the error message.
5557
5558 2011-09-02  Eli Zaretskii  <eliz@gnu.org>
5559
5560         * message.el (message-setup-1): Return t (Bug#9392).
5561
5562 2011-09-01  Andrew Cohen  <cohen@andy.bu.edu>
5563
5564         * gnus-sum.el: When adding article headers to a summary buffer also
5565         update gnus-newsgroup-articles (bug#9386).
5566
5567 2011-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
5568
5569         * auth-source.el: Autoload help-mode.
5570
5571 2011-08-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5572
5573         * gnus-group.el (gnus-group-name-charset): Don't bug out on server
5574         names.
5575
5576 2011-08-27  Daiki Ueno  <ueno@unixuser.org>
5577
5578         * mml-smime.el (mml-smime-epg-verify): Don't use the 4th arg of
5579         mm-replace-in-string for compatibility issues.
5580         * mml2015.el (mml2015-epg-verify): Ditto.
5581
5582 2011-08-26  Katsumi Yamaoka  <yamaoka@jpl.org>
5583
5584         * mailcap.el (mailcap-mime-data): Regexp-quote MIME subtype.
5585
5586         * gnus-msg.el (gnus-setup-message): Remove extra apostrophe.
5587
5588 2011-08-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5589
5590         * nnmail.el (nnmail-get-new-mail-1): If one mail source bugs out,
5591         continue on and do the clean-up phase (bug#9188).
5592
5593         * gnus-sum.el (gnus-summary-expire-articles): When expiring articles,
5594         just ignore groups that can't be opened instead of erroring out
5595         (bug#9225).
5596
5597         * gnus-art.el (gnus-article-update-date-headers): Flip the default to
5598         nil since some many people are fuddy-duddies.
5599
5600         * gnus-html.el (gnus-html-image-fetched): Don't cache zero-length
5601         images.
5602
5603         * nntp.el (nntp-authinfo-file): Mark as obsolete -- use auth-source
5604         instead.
5605
5606         * pop3.el (pop3-wait-for-messages): Don't use Gnus functions here.
5607
5608         * gnus-util.el (gnus-process-live-p): Copy over compat function.
5609
5610         * pop3.el (pop3-wait-for-messages): If the pop3 process dies, stop
5611         processing.
5612
5613         * nntp.el (nntp-kill-buffer): Kill the process before killing the
5614         buffer to avoid warnings.
5615
5616 2011-08-20  Simon Josefsson  <simon@josefsson.org>
5617
5618         * gnus-agent.el (gnus-agent-expire-done-message): Use %.f as format
5619         specified to reduce precision.
5620
5621 2011-08-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5622
5623         * nnimap.el (nnimap-transform-headers): Protect against (NIL ...)
5624         bodystructures (bug#9314).
5625
5626 2011-08-19  Katsumi Yamaoka  <yamaoka@jpl.org>
5627
5628         * gnus-art.el (gnus-insert-mime-button, gnus-mime-display-alternative):
5629         Make button keymap non-sticky after buttons.
5630
5631 2011-08-18  David Engster  <dengste@eml.cc>
5632
5633         * nnmairix.el (nnmairix-request-set-mark)
5634         (nnmairix-goto-original-article): Remove adding of article to registry,
5635         since `gnus-registry-add-group' isn't available anymore.
5636         (nnmairix-determine-original-group-from-registry):
5637         Use `gnus-registry-get-id-key' since `gnus-registry-fetch-groups' isn't
5638         available anymore.
5639
5640 2011-08-12  Simon Josefsson  <simon@josefsson.org>
5641
5642         * starttls.el (starttls-any-program-available): Define as obsolete
5643         function.
5644
5645 2011-08-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5646
5647         * gnus-util.el (gnus-y-or-n-p): Reinstate the message-clearing y-or-n-p
5648         versions which Gnus use when appropriate.
5649
5650         * gnus-group.el (gnus-group-clear-data): Add a y-or-n query, since it's
5651         a pretty destructive command.
5652
5653         * nnmail.el (nnmail-extra-headers): Clarify slightly (bug#9302).
5654
5655 2011-08-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5656
5657         * message.el (message-fix-before-sending): Make a different warning
5658         about NUL characters (bug#9270).
5659
5660         * gnus-sum.el (gnus-auto-select-subject): Allow specifying a function
5661         from custom (bug#9260).
5662
5663         * gnus-spec.el (gnus-lrm-string): Use 8206 instead of ?\x200e to make
5664         things work in Emacs 22 and XEmacs, too.
5665
5666         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): LRM-ify the
5667         default From.
5668
5669         * gnus-spec.el (gnus-lrm-string-p): New macro.
5670         (gnus-lrm-string): New constant.
5671         (gnus-summary-line-format-spec): LRM-ify the from.
5672         (gnus-tilde-max-form): LRM-ify string chopping.
5673
5674         * gnus-ems.el (gnus-string-mark-left-to-right): New function.
5675
5676         * message.el (message-is-yours-p): Allow disabling canlock checking
5677         (bug#9295).
5678         (message-shoot-gnksa-feet): Add `canlock-verify'.
5679         (message-auto-save-directory): Use ~/ as the auto-save directory if the
5680         message directory isn't writable (bug#9304).
5681
5682         * auth-source.el (auth-source-netrc-saver): Make the .authinfo file
5683         non-world-readable.
5684
5685 2011-08-17  Katsumi Yamaoka  <yamaoka@jpl.org>
5686
5687         * nndraft.el (nndraft-update-unread-articles): Don't send delayed
5688         articles.
5689
5690 2011-08-13  Andreas Schwab  <schwab@linux-m68k.org>
5691
5692         * gnus-score.el (gnus-all-score-files): Use copy-sequence instead of
5693         copy-list.
5694
5695 2011-08-12  Sam Steingold  <sds@gnu.org>
5696
5697         * gnus-score.el (gnus-score-find-alist): Keep the score files already
5698         in the reverse order to avoid modifying the cache with `nreverse'.
5699         (gnus-all-score-files): Do not modify the value returned by
5700         `gnus-score-find-alist' because it lives in a cache variable.
5701         (gnus-current-home-score-file): No need to `nreverse' the return value
5702         of `gnus-score-find-alist', it is already in the correct order.
5703
5704 2011-08-11  Andrew Cohen  <cohen@andy.bu.edu>
5705
5706         * nnimap.el (nnimap-transform-headers): BODYSTRUCTURE for messages of
5707         type MESSAGE and subtype RFC822 is slightly different from those of
5708         type TEXT.
5709
5710 2011-08-05  Andrew Cohen  <cohen@andy.bu.edu>
5711
5712         * gnus-sum.el (gnus-summary-refer-article): Warp to article.
5713         This allows article-referral to work from an nnir group.
5714
5715 2011-08-04  Andrew Cohen  <cohen@andy.bu.edu>
5716
5717         * gnus.el (registry-ignore): Add nnir groups to the ignore-list.
5718
5719 2011-08-04  Daiki Ueno  <ueno@unixuser.org>
5720
5721         * mml1991.el (mml1991-epg-find-usable-key)
5722         (mml1991-epg-find-usable-secret-key): New function.
5723         (mml1991-epg-sign): Check if signing key is usable.
5724         (mml1991-epg-encrypt): Check if encrypting key is usable (bug#8955).
5725
5726 2011-08-03  Andrew Cohen  <cohen@andy.bu.edu>
5727
5728         * nnir.el (nnir-read-server-parm): Add an argument to restrict to
5729         server-variables only.  This should fix a bug introduced with commit
5730         e1889675b7f4adf057833c5513c9374134c4e053.
5731         (nnir-run-query): 'nnir-search-engine should not be set from the global
5732         environment.
5733
5734 2011-08-02  Andrew Cohen  <cohen@andy.bu.edu>
5735
5736         * nnir.el (nnir-search-thread): Position point on referring article
5737         line.
5738         (nnir-warp-to-article): Clean up summary buffers.
5739
5740         * nnimap.el (nnimap-request-thread): Whitespace fix.
5741
5742 2011-08-02  Steve Purcell  <steve@sanityinc.com>  (tiny change)
5743
5744         * nnimap.el (nnimap-get-groups): Decode "&" correctly.
5745
5746 2011-08-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5747
5748         * starttls.el (starttls-available-p): Rename from
5749         `starttls-any-program-available' and changed return convention.
5750
5751 2011-07-31  Lars Ingebrigtsen  <larsi@gnus.org>
5752
5753         * nnmaildir.el (nnmaildir-request-accept-article): Don't call
5754         `unix-sync' unless it's defined.
5755
5756 2011-07-31  Marcus Harnisch  <marcus.harnisch@gmx.net>  (tiny change)
5757
5758         * gnus-art.el (gnus-article-stop-animations): Use `elt' instead of
5759         `aref' for XEmacs compatibiltiy.
5760
5761 2011-07-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5762
5763         * spam.el (spam-fetch-field-fast): Rewrite slightly for clarity.
5764
5765 2011-07-31  Dave Abrahams  <dave@boostpro.com>
5766
5767         * gnus-sum.el (gnus-summary-refer-thread): Since lambdas aren't
5768         closures, quote the form properly (bug#9194).
5769
5770 2011-07-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5771
5772         * gnus-sum.el (gnus-summary-insert-new-articles): Clean up slightly.
5773         (gnus-summary-insert-new-articles): Protect against servers that are
5774         down.
5775
5776 2011-07-29  Daniel Dehennin  <daniel.dehennin@baby-gnu.org>
5777
5778         * mm-decode.el (mm-dissect-buffer): Add a default content-disposition
5779         in mm handle if none is specified.
5780
5781 2011-07-24  Andrew Cohen  <cohen@andy.bu.edu>
5782
5783         * nnimap.el (nnimap-make-thread-query): Quote message-ids for gmail.
5784
5785 2011-07-23  Andrew Cohen  <cohen@andy.bu.edu>
5786
5787         * nnir.el (nnir-search-thread): New function to make an nnir group
5788         based on a thread query.
5789
5790         * gnus-sum.el (gnus-refer-thread-use-nnir): New variable to control use
5791         of nnir in thread referral.
5792         (gnus-summary-refer-thread): Use it.
5793
5794         * nnimap.el (nnimap-request-thread): Use it.
5795
5796 2011-07-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5797
5798         * shr.el (shr-tag-comment): Ignore HTML comments.
5799
5800 2011-07-20  Andrew Cohen  <cohen@andy.bu.edu>
5801
5802         * nnir.el (gnus-group-make-nnir-group): Allow optional search query
5803         argument.
5804         (gnus-group-make-nnir-group, nnir-request-group, nnir-run-query):
5805         Use `nnir-address' to handle server info rather than passing an arg.
5806
5807         * nnimap.el (nnimap-make-thread-query): New utility function to format
5808         an imap thread search query.
5809         (nnimap-request-thread): Use it.
5810
5811         * gnus-sum.el (gnus-handle-ephemeral-exit): Ensure we are setting the
5812         right select-method if we are not going back to the group buffer.
5813
5814 2011-07-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5815
5816         * gnus-group.el (gnus-group-read-ephemeral-group): Make sure we don't
5817         enter invalid buffer configurations into the quit form (bug#9107).
5818         (gnus-group-tool-bar-gnome): Replace connect/disconnect with
5819         unplugged/plugged.
5820
5821         * gnus-sum.el (gnus-summary-refer-thread): When inserting new headers,
5822         keep track of which ones are unread (bug#9061).
5823
5824         * gnus.el (gnus-refer-article-method): Allow entering any sexp
5825         (bug#9055).
5826
5827         * gnus-art.el (gnus-article-show-images): Allow working if using w3m
5828         (bug#9041).
5829
5830         * gnus-html.el (mm-util): Require (bug#9073).
5831
5832         * gnus-sum.el (gnus-delete-duplicate-headers): New function.
5833         (gnus-summary-refer-thread): Use it to remove duplicates in the
5834         un-threaded view (bug#9053).
5835         (gnus-summary-insert-subject): Document USE-OLD-HEADER (bug#9070).
5836
5837 2011-07-07  Kan-Ru Chen  <kanru@kanru.info>
5838
5839         * nnir.el (nnir-read-server-parm): Use default value from global
5840         variable.  Without this the default search engine parameters aren't
5841         used at all.
5842
5843 2011-07-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5844
5845         * message.el (message-unique-id): Don't use the undocumented return
5846         value from (random t) (bug#9118).
5847
5848 2011-07-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5849
5850         * message.el (message-auto-save-directory): If the ~/Mail directory
5851         doesn't exist, use ~ as the auto-save directory (bug#4432).
5852
5853         * gnus-group.el (gnus-group-read-ephemeral-group): Start Gnus if it
5854         hasn't already been started.
5855
5856 2011-07-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5857
5858         * gnus.el (debbugs-gnu): Rename from debbugs-emacs.
5859
5860         * message.el (message-reply): Work around mysterious bug where
5861         `message-mode' seems to overwrite the locally bound `subject' variable.
5862
5863 2011-07-14  Andrew Cohen  <cohen@andy.bu.edu>
5864
5865         * nnimap.el (nnimap-request-thread): Ensure search is performed in
5866         correct group.
5867
5868         * gnus-int.el (gnus-request-thread): Add group argument.
5869
5870         * gnus-sum.el (gnus-summary-refer-thread): Use it.
5871
5872 2011-07-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5873
5874         * dgnushack.el (debbugs-gnu-summary-mode): Update compat names, too.
5875
5876         * gnus-group.el (gnus-read-ephemeral-emacs-bug-group): `debbugs-*'
5877         renamed to `debbugs-gnu-*'.
5878
5879 2011-07-08  Daiki Ueno  <ueno@unixuser.org>
5880
5881         * plstore.el: Revert the editing feature since it is not urgent.
5882         (plstore-mode, plstore-mode-toggle-display, plstore-mode-original)
5883         (plstore-mode-decoded): Remove.
5884
5885 2011-07-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5886
5887         * gnus-msg.el (gnus-bug): Don't insert user variables.  It usually
5888         isn't very interesting any more, and it leaks potentially secret data.
5889         (gnus-debug): Remove.
5890
5891         * gnus-art.el (gnus-ignored-headers): Remove obsolete and non-working
5892         use of :custom-show.
5893
5894 2011-07-07  Daiki Ueno  <ueno@unixuser.org>
5895
5896         * plstore.el: Add documentation.
5897         (plstore-mode): New mode to edit plstore file.
5898         (plstore-mode-toggle-display, plstore-mode-original)
5899         (plstore-mode-decoded): New command.
5900         (plstore--encode, plstore--decode, plstore--write-contents-functions)
5901         (plstore--insert-buffer, plstore--make): New function.
5902         (plstore-open, plstore-save): Simplify by using them.
5903
5904 2011-07-06  Glenn Morris  <rgm@gnu.org>
5905
5906         * gnus-group.el (gnus-read-ephemeral-emacs-bug-group): Silence compiler.
5907
5908 2011-07-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5909
5910         * gnus.el (gnus-refer-article-method): Remove mention of nnspool, which
5911         no longer is much used.
5912         (gnus-summary-line-format): Link to "Marking Articles" instead of "Read
5913         Articles".
5914
5915 2011-04-03  Kan-Ru Chen  <kanru@kanru.info>
5916
5917         * nnir.el (nnir-notmuch-program, nnir-notmuch-additional-switches)
5918         (nnir-notmuch-remove-prefix, nnir-engines, nnir-run-notmuch): New nnir
5919         `notmuch' backend.
5920
5921 2011-07-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5922
5923         * mm-decode.el (mm-text-html-renderer): Doc fix.
5924
5925         * gnus-msg.el (gnus-bug): Fix the MML tag.
5926
5927         * pop3.el (pop3-open-server): -ERR is a valid response to CAPA.
5928
5929 2011-07-05  Daiki Ueno  <ueno@unixuser.org>
5930
5931         * gnus-start.el (gnus-get-unread-articles): Don't connect to the
5932         secondary methods if started with `gnus-no-server'.
5933
5934 2011-07-05  Juanma Barranquero  <lekktu@gmail.com>
5935
5936         * message.el (message-return-action): Fix typo in docstring.
5937
5938 2011-07-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5939
5940         * gnus-group.el (gnus-read-ephemeral-bug-group): Allow fetching several
5941         bug reports at once.
5942
5943         * nnimap.el (nnimap-request-scan): Say that splitting has finished.
5944
5945 2011-07-04  Katsumi Yamaoka  <yamaoka@jpl.org>
5946
5947         * nndraft.el: Require gnus-group.
5948         (nndraft-request-list): Declare.
5949
5950         * nndraft.el (nndraft-update-unread-articles): Don't show group having
5951         no unread article unless it matches gnus-permanently-visible-groups.
5952
5953         * nndraft.el (nndraft-update-unread-articles): New function.
5954         (nndraft-request-associate-buffer): Use it to update the number of
5955         unread articles for the nndraft groups in the group buffer when saving
5956         or killing a draft message.
5957
5958 2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5959
5960         * gnus-group.el (gnus-read-ephemeral-bug-group): Bind the coding
5961         systems to binary before writing and reading the mbox files.
5962
5963         * gnus.el (gnus-summary-line-format): Link to the info node for %U
5964         instead of trying to list them all (bug#8978).
5965
5966 2011-07-03  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
5967
5968         * pop3.el (pop3-open-server): Use :end-of-capability.
5969
5970 2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5971
5972         * gnus-group.el (gnus-read-ephemeral-emacs-bug-group): Make sure that
5973         the id is always a number.
5974
5975         * dgnushack.el (debbugs-summary-mode): Shut up compiler about debbugs.
5976
5977         * gnus-group.el (gnus-read-ephemeral-emacs-bug-group): Hook into
5978         debbugs mode, if possible.
5979
5980 2011-07-02  Daiki Ueno  <ueno@unixuser.org>
5981
5982         * auth-source.el (auth-source-token-passphrase-callback-function):
5983         Reindent.
5984         (epg-context-operation): Remove unnecessary autoload.
5985
5986 2011-07-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5987
5988         * gnus.el (gnus-list-debbugs): New command.
5989
5990         * gnus-group.el (gnus-bug-group-download-format-alist): Get the
5991         mboxstat instead of the maintbox, since the stat seems to be fuller.
5992
5993         * gnus-msg.el (gnus-configure-posting-styles): Don't try to select dead
5994         summary buffers.
5995
5996         * message.el (message-get-reply-headers): Delete all duplicates,
5997         instead of the first.
5998         (message-get-reply-headers): Ensure that we have progress while
5999         deleting duplicates.
6000
6001         * gnus-msg.el (gnus-configure-posting-styles): Get the local
6002         gnus-posting-style value from the summary buffer to make it easier to
6003         make that a per-buffer conf.
6004
6005 2011-07-02  Andrew Cohen  <cohen@andy.bu.edu>
6006
6007         * nnir.el (nnir-run-imap): Allow halting a search when an article is
6008         found by setting `shortcut' in 'query.
6009         (nnir-request-article): Use `shortcut' setting when requesting article
6010         by Message-ID.
6011
6012 2011-07-02  Teodor Zlatanov  <tzz@lifelogs.com>
6013
6014         * gnus-msg.el (gnus-bug): Give the Version and Package headers to
6015         debbugs with the X-Debbugs-Package and X-Debbugs-Version headers.
6016         Bring the pseudo-headers back too.
6017
6018 2011-07-01  Daiki Ueno  <ueno@unixuser.org>
6019
6020         * auth-source.el (auth-source-token-passphrase-callback-function):
6021         Simplify and remove EPA dependency.
6022
6023 2011-07-01  Andrew Cohen  <cohen@andy.bu.edu>
6024
6025         * nnir.el (nnir-request-article): Fix error message text.
6026
6027 2011-07-01  Daiki Ueno  <ueno@unixuser.org>
6028
6029         * auth-source.el (plstore-delete): Autoload.
6030         (auth-source-plstore-search): Support delete operation.
6031         * plstore.el (plstore-delete): New function.
6032
6033 2011-07-01  Katsumi Yamaoka  <yamaoka@jpl.org>
6034
6035         * gnus-draft.el (gnus-draft-clear-marks): Revert last change;
6036         mark actually existing articles as unread rather than the ones that
6037         active asserts.
6038
6039 2011-07-01  Paul Eggert  <eggert@cs.ucla.edu>
6040
6041         * nntp.el (nntp-record-command):
6042         * gnus-util.el (gnus-message-with-timestamp-1):
6043         Use format-time-string rather than decoding time stamps by hand.
6044         This is simpler and insulates the code from potential changes to
6045         current-time format.
6046
6047 2011-07-01  Katsumi Yamaoka  <yamaoka@jpl.org>
6048
6049         * gnus-draft.el (gnus-draft-clear-marks): Mark deleted articles as read.
6050
6051 2011-07-01  Daiki Ueno  <ueno@unixuser.org>
6052
6053         * plstore.el (plstore-select-keys, plstore-encrypt-to): New variable.
6054         (plstore-save): Support public key encryption.
6055         (plstore--init-from-buffer): New function.
6056         (plstore-open): Use it; fix error when opening a non-existent file.
6057         (plstore-revert): Use plstore--init-from-buffer.
6058
6059 2011-07-01  Daiki Ueno  <ueno@unixuser.org>
6060
6061         * auth-source.el (auth-source-backend): Fix :initarg for data slot.
6062
6063 2011-06-30  Katsumi Yamaoka  <yamaoka@jpl.org>
6064
6065         * mml2015.el (mml2015-use): Replace string-match-p with string-match
6066         for old Emacsen.
6067
6068 2011-06-30  Daiki Ueno  <ueno@unixuser.org>
6069
6070         * mml2015.el (mml2015-use): Don't try to load PGG on Emacs 24, when EPG
6071         is not fully working.
6072
6073 2011-06-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6074
6075         * dgnushack.el: Autoload sha1 on XEmacs.
6076
6077         * gnus-group.el (gnus-read-ephemeral-emacs-bug-group): Take an optional
6078         quit window configuration.
6079
6080         * auth-source.el (epg-context-set-passphrase-callback):
6081         Remove duplicate autoload.
6082
6083 2011-06-30  Andrew Cohen  <cohen@andy.bu.edu>
6084
6085         * nnir.el (nnir-request-article): Allow requesting articles by
6086         Message-ID with nnimap.
6087
6088         * gnus-sum.el (gnus-refer-article-methods): Allow (nnir) entry to use
6089         current server.
6090
6091 2011-06-30  Teodor Zlatanov  <tzz@lifelogs.com>
6092
6093         * auth-source.el: Autoload EPA/EPG functions.
6094         (auth-source-netrc-use-gpg-tokens): Clarify that it should not be
6095         changed when EPA/EPG is not available.
6096         (auth-source-backend): Rename "arg" member to "data".
6097         (auth-source-backend-parse, auth-source-plstore-search)
6098         (auth-source-plstore-create): Use it.
6099
6100 2011-06-30  Andrew Cohen  <cohen@andy.bu.edu>
6101
6102         * gnus-art.el (gnus-request-article-this-buffer): Use existing function
6103         `gnus-refer-article-methods'.
6104
6105 2011-06-30  Teodor Zlatanov  <tzz@lifelogs.com>
6106
6107         * auth-source.el: Require EPA and EPG.
6108         (auth-source-passphrase-alist): New variable.
6109         (auth-source-passphrase-callback-function)
6110         (auth-source-token-passphrase-callback-function): Callbacks for the
6111         netrc field encryption (GPG tokens).
6112         (auth-source-epa-extract-gpg-token, auth-source-epa-make-gpg-token):
6113         Symmetric encryption and decryption of the netrc GPG tokens.
6114         (auth-source-netrc-normalize): Use them, simplifying the closure.
6115
6116 2011-06-30  Katsumi Yamaoka  <yamaoka@jpl.org>
6117
6118         * dgnushack.el (dgnushack-compile): Don't compile plstore.el unless epg
6119         is available.
6120
6121 2011-06-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6122
6123         * nnimap.el (nnimap-split-incoming-mail): If `nnimap-split-fancy' is
6124         non-nil, and `nnimap-split-methods' is nil, use the former.
6125
6126 2011-06-30  Daiki Ueno  <ueno@unixuser.org>
6127
6128         * plstore.el (plstore-revert): New function.
6129         (plstore-open): Use it; hide the buffer from user.
6130
6131 2011-06-30  Daiki Ueno  <ueno@unixuser.org>
6132
6133         * auth-source.el (auth-source-backend): New member "arg".
6134         (auth-source-backend-parse): Handle new backend 'plstore.
6135         * plstore.el: New file.
6136
6137 2011-06-30  Glenn Morris  <rgm@gnu.org>
6138
6139         * mm-util.el (mm-charset-synonym-alist): Move definition before use.
6140
6141 2011-06-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6142
6143         * nnimap.el (nnimap-process-expiry-targets): Say what target we're
6144         expiring articles to.
6145
6146         * mm-util.el (mm-charset-to-coding-system): Recognize all ANSI.x3.4
6147         variations as ASCII (bug#5458).
6148
6149 2011-06-30  Katsumi Yamaoka  <yamaoka@jpl.org>
6150
6151         * nnmh.el (nnmh-request-list-1): Work on MS Windows.
6152
6153 2011-06-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6154
6155         * message.el (message-point-in-header-p): Tweak the function to default
6156         to saying that we're not in the headers if there is no separator at
6157         all.  This makes it possible to use the Message version of `M-q' in
6158         buffers with no headers (bug#7987).
6159         (message-point-in-header-p): Fix last checkin to work with an empty
6160         mail-header-separator, too.
6161
6162         * auth-source.el (auth-source-netrc-saver): If the user says "don't ask
6163         again, save the choice via customize.
6164
6165 2011-06-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6166
6167         * message.el (message-send-mail-function): Add `sendmail-query-once'.
6168
6169         * nnimap.el (nnimap-finish-retrieve-group-infos): If the server has
6170         ended the connection, bail out before waiting infinitely on a new
6171         connection.
6172
6173 2011-06-28  Teodor Zlatanov  <tzz@lifelogs.com>
6174
6175         * gnus-msg.el (gnus-bug): Add Package and Version pseudo-headers to bug
6176         reports.
6177
6178         * gnus.el (gnus-bug-package): Use "gnus."
6179         (gnus-maintainer): Direct bug reports to submit@debbugs.gnu.org.
6180
6181 2011-06-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6182
6183         * dgnushack.el: Make the timer warning go away on XEmacs.
6184
6185         * gnus-art.el (gnus-article-stop-animations): New function to stop any
6186         animations going on at article exit time.
6187
6188         * gnus-registry.el (gnus-registry-user-format-function-M): Reinstate,
6189         since removing it breaks people upgrading.
6190
6191         * shr.el (shr-put-image): Use the new interface for animating images.
6192         (shr-put-image): Animate for 60 seconds.
6193
6194         * dgnushack.el: Bind `gnutls-available-p' to `ignore' on XEmacs to
6195         avoid compiler warnings.
6196
6197         * auth-source.el (with-auth-source-epa-overrides): Fix compilation
6198         error with `find-file-hooks' on Emacs 22.
6199         (with-auth-source-epa-overrides): Ugly hack to Wrap the
6200         `find-file-hook' things in `symbol-value' to avoid compilation warnings
6201         on all architectures.
6202
6203         * spam.el (spam-stat): Require in a normal fashion without binding
6204         `spam-stat-install-hooks' to avoid compilation warnings.
6205
6206         * spam-stat.el (spam-stat-install-hooks): Remove.
6207         (spam-stat-install-hooks): Don't run automatically.
6208
6209 2011-06-26  Timo Juhani Lindfors  <timo.lindfors@iki.fi>  (tiny change)
6210
6211         * gnus-msg.el (gnus-summary-reply-to-list-with-original): New command
6212         and keystroke.
6213
6214 2011-06-23  Katsumi Yamaoka  <yamaoka@jpl.org>
6215
6216         * auth-source.el (auth-source-netrc-cache): Move forward.
6217
6218 2011-06-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6219
6220         * proto-stream.el (proto-stream-open-starttls): Use
6221         `gnutls-available-p' to see whether we have built-in support.
6222
6223         * auth-source.el (auth-source-netrc-create): Don't query the bits that
6224         we already know.
6225         (auth-source-forget-all-cached): Clear auth-source-netrc-cache, too.
6226         (auth-source-netrc-create): Don't prompt for the stuff we already know.
6227
6228 2011-06-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6229
6230         * auth-source.el (auth-source-netrc-create): Don't print all tokens in
6231         %S format, since that looks odd.
6232         (auth-sources): Prefer the ~/.authinfo file over the ~/.authinfo.gpg
6233         file, especially when saving.
6234
6235 2011-06-21  Andrew Cohen  <cohen@andy.bu.edu>
6236
6237         * nnimap.el (nnimap-find-article-by-message-id): return nil when no
6238         article found.
6239
6240 2011-06-18  Teodor Zlatanov  <tzz@lifelogs.com>
6241
6242         * auth-source.el (auth-source-netrc-use-gpg-tokens): Replace
6243         `auth-source-save-secrets' with a more sensitive alist that can be
6244         configured per file.  Experimental, so defaults to 'never.
6245         (auth-source-netrc-create): Use it.  Still experimental code.
6246         (with-auth-source-epa-overrides): Use `find-file-hooks' if
6247         `find-file-hook' is unbound (XEmacs fix).  Fix backquoting bug.
6248
6249 2011-06-16  Teodor Zlatanov  <tzz@lifelogs.com>
6250
6251         * auth-source.el (auth-source-save-secrets): New variable to control if
6252         secret tokens should be saved encrypted.
6253         (auth-source-netrc-parse, auth-source-netrc-search): Pass the file name
6254         to `auth-source-netrc-normalize'.
6255         (with-auth-source-epa-overrides): Add convenience macro.  Don't depend
6256         on the EPA variables being defined.
6257         (auth-source-epa-make-gpg-token): Convert text to a "gpg:" token.
6258         (auth-source-netrc-normalize): Convert "gpg:" tokens back to text in
6259         the lexical-let closure.
6260         (auth-source-netrc-create): Create "gpg:" tokens according to
6261         `auth-source-save-secrets'.
6262
6263 2011-06-10  Katsumi Yamaoka  <yamaoka@jpl.org>
6264
6265         * gnus-group.el (gnus-group-update-group): Add new argument
6266         `info-unchanged' that stops updating dribble buffer.
6267
6268         * gnus-start.el (gnus-dribble-enter): Add new argument `regexp' that
6269         deletes lines matching to it in dribble buffer.
6270
6271         * gnus-agent.el (gnus-agent-fetch-group-1):
6272         * gnus-group.el (gnus-group-update-group-line, gnus-group-make-group):
6273         * gnus-srvr.el (gnus-server-update-server, gnus-server-set-info):
6274         * gnus-start.el (gnus-group-change-level):
6275         * gnus-sum.el (gnus-summary-move-article): Delete old dribble entry.
6276
6277         * gnus-sum.el (gnus-summary-update-info): Don't update dribble buffer
6278         if newsgroup info is not changed.
6279
6280         * gnus-group.el (gnus-group-get-new-news-this-group):
6281         * gnus-sum.el (gnus-summary-read-group-1, gnus-summary-exit-no-update):
6282         Don't update dribble buffer.
6283
6284 2011-06-01  Teodor Zlatanov  <tzz@lifelogs.com>
6285
6286         * gnus-registry.el (gnus-registry-remove-ignored): New function to
6287         remove entries with groups we ignore.
6288
6289 2011-05-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6290
6291         * shr.el (shr-rescale-image): Add an :ascent of 100 to images so that
6292         the underline comes at the bottom.
6293
6294 2011-05-31  Teodor Zlatanov  <tzz@lifelogs.com>
6295
6296         * gnus-registry.el (gnus-registry-article-marks-to-chars): Rename from
6297         `gnus-registry-user-format-function-M' and declare the latter obsolete.
6298         (gnus-registry-article-marks-to-names): Rename from
6299         `gnus-registry-user-format-function-M2'.
6300
6301 2011-05-31  Katsumi Yamaoka  <yamaoka@jpl.org>
6302
6303         * gnus-sum.el (gnus-summary-exit): Make sure to kill article buffer in
6304         ephemeral group.
6305
6306 2011-05-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6307
6308         * shr.el (shr-browse-image): Copy the URL if called interactively.
6309
6310 2011-05-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6311
6312         * gnus-group.el (gnus-group-mark-article-read): It's possible that we
6313         want to have `gnus-newsgroup-unselected' kept sorted.  If this isn't
6314         done, then unselected articles may be marked as read.
6315
6316         * pop3.el (pop3-open-server): Erase the buffer after the greeting,
6317         since not doing this seems to lead to a race condition in pop3-logon.
6318
6319         * nnvirtual.el (nnvirtual-request-article): Bind `gnus-command-method'
6320         so that the call chain it correct when we call "upwards".
6321
6322         * gnus-sum.el (gnus-select-newsgroup): Auto-expiry doesn't make sense
6323         in read-only groups.
6324
6325         * gnus-group.el (gnus-group-mark-article-read): Ditto.
6326
6327         * message.el (message-cite-reply-position): Doc string fix.
6328
6329         * nnimap.el (nnimap-transform-headers): Simplify regexp to hopefully
6330         avoid regexp overflow.
6331         (nnimap-transform-split-mail): Ditto.
6332
6333         * pop3.el (pop3-retr): Error out if the server closes the connection.
6334
6335 2011-05-30  Stefan Monnier  <monnier@iro.umontreal.ca>
6336
6337         * mml1991.el (mml1991-mailcrypt-encrypt): Remove use of ill-designed
6338         mm-with-unibyte-current-buffer.  The buffer should not contain any
6339         multibyte chars anyway at this stage.
6340
6341 2011-05-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6342
6343         * shr.el (shr-urlify): Use shr-add-font to make underlines be less ugly
6344         at the end of lines.
6345
6346 2011-05-29  Julien Danjou  <julien@danjou.info>
6347
6348         * smiley.el (gnus-smiley-file-types): Add gif as supported file type.
6349
6350 2011-05-27  Glenn Morris  <rgm@gnu.org>
6351
6352         * gnus-group.el (gnus-bug-group-download-format-alist):
6353         Use the "maintainer" version of debian reports as well.
6354
6355 2011-05-26  Glenn Morris  <rgm@gnu.org>
6356
6357         * gnus-group.el (gnus-bug-group-download-format-alist):
6358         Use the "maintainer" version of debbugs.gnu.org reports.
6359
6360 2011-05-24  Katsumi Yamaoka  <yamaoka@jpl.org>
6361
6362         * gnus-art.el (gnus-mime-delete-part): Fix mm-handle-filename usage.
6363
6364 2011-05-23  Stefan Monnier  <monnier@iro.umontreal.ca>
6365
6366         * gnus-cus.el (gnus-agent-customize-category):
6367         * gnus-delay.el (gnus-delay-send-queue):
6368         * gnus.el (gnus-other-frame):
6369         Don't quote lambda expressions with `quote'.
6370
6371 2011-05-20  Teodor Zlatanov  <tzz@lifelogs.com>
6372
6373         * gnus-sum.el (gnus-summary-hide-thread): Fix bug where moving to hide
6374         the thread moves us backwards and so we loop forever.
6375
6376 2011-05-19  Katsumi Yamaoka  <yamaoka@jpl.org>
6377
6378         * mm-bodies.el (mm-decode-content-transfer-encoding): Allow leading
6379         whitespace in base64 data lines.
6380
6381 2011-05-18  Teodor Zlatanov  <tzz@lifelogs.com>
6382
6383         * gnus-registry.el (gnus-registry-user-format-function-M):
6384         Use `mapconcat'.
6385         (gnus-registry-user-format-function-M2): Use to see the full text of
6386         the marks.  Make "," the mark text separator.
6387
6388         * nntp.el (nntp-send-authinfo): Use the "force" token for NNTP
6389         authentication with auth-source.
6390
6391 2011-05-17  Glenn Morris  <rgm@gnu.org>
6392
6393         * gnus-group.el (gnus-import-other-newsrc-file):
6394         Use insert-file-contents.
6395
6396 2011-05-16  Teodor Zlatanov  <tzz@lifelogs.com>
6397
6398         * gnus-sum.el (gnus-summary-hide-all-threads): Add update message every
6399         1000 iterations.
6400
6401 2011-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
6402
6403         * nntp.el (nntp-open-connection): Check if process-type is available.
6404
6405 2011-05-16  Julien Danjou  <julien@danjou.info>
6406
6407         * shr.el (shr-tag-del): Add support for del tag.
6408
6409 2011-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
6410
6411         * gnus-html.el (gnus-html-put-image): Register a displayer.
6412
6413         * shr.el (shr-image-displayer): Don't remove text props from alt text.
6414
6415 2011-05-13  Teodor Zlatanov  <tzz@lifelogs.com>
6416
6417         * registry.el (prune-factor): New initialization parameter defaulting
6418         to 0.1.
6419         (registry-prune-hard): Use it.
6420
6421         * gnus-registry.el (gnus-registry-fixup-registry): Set prune-factor to
6422         0.1 expicitly.
6423
6424 2011-05-13  Glenn Morris  <rgm@gnu.org>
6425
6426         * message.el (message-send-mail-with-sendmail): Assume sendmail-program
6427         is bound, since this function requires sendmail.
6428
6429 2011-05-11  Teodor Zlatanov  <tzz@lifelogs.com>
6430
6431         * registry.el (registry-usage-test): Disable pruning test.
6432
6433 2011-05-11  David Engster  <dengste@eml.cc>
6434
6435         * lpath.el: Bind shr-put-image and process-type for Emacs22 and XEmacs.
6436         Bind set-network-process-option for XEmacs.
6437
6438 2011-05-10  Teodor Zlatanov  <tzz@lifelogs.com>
6439
6440         * registry.el (registry-prune-hard-candidates)
6441         (registry-prune-soft-candidates): Helper methods for registry pruning.
6442         (registry-prune): Use them.  Make the sort function optional.
6443
6444 2011-05-10  Jim Meyering  <meyering@redhat.com>
6445
6446         * shr.el (shr-colorize-region): Fix typo "on on -> on".
6447
6448 2011-05-10  Julien Danjou  <julien@danjou.info>
6449
6450         * shr.el (shr-put-color-1): Do not bug out when old-props is a face
6451         symbol and not a list.
6452
6453 2011-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
6454
6455         * gnus-art.el (gnus-article-mode): Move binding of
6456         shr-put-image-function here from gnus-article-prepare-display.
6457
6458         * shr.el (shr-put-image-function): New variable.
6459         (shr-image-fetched, shr-image-displayer, shr-tag-img): Funcall it.
6460         (shr-put-image): Return scaled image.
6461
6462         * gnus-art.el (gnus-shr-put-image): New function.
6463         (gnus-article-prepare-display): Bind shr-put-image-function to it.
6464
6465         * gnus-html.el (gnus-html-wash-images): Register scaled images, not
6466         original ones, as deletable.
6467
6468 2011-05-09  Stefan Monnier  <monnier@iro.umontreal.ca>
6469
6470         * nntp.el (nntp-open-connection): Set TCP keepalive option.
6471
6472 2011-05-09  Teodor Zlatanov  <tzz@lifelogs.com>
6473
6474         * registry.el (registry-full): Add convenience method.  Fix logic.
6475         (registry-insert): Use it.  Fix logic here too.
6476
6477         * gnus-registry.el (gnus-registry-insert): Add wrapper that calls
6478         `registry-prune' if `registry-full' returns t.
6479         (gnus-registry-handle-action)
6480         (gnus-registry-get-or-make-entry, gnus-registry-set-id-key)
6481         (gnus-registry-usage-test): Use it.
6482
6483 2011-05-07  Julien Danjou  <julien@danjou.info>
6484
6485         * shr.el (shr-link): Make shr-link inherit from link by default.
6486
6487 2011-05-06  Teodor Zlatanov  <tzz@lifelogs.com>
6488
6489         * shr.el (shr-urlify, shr-link): Fix shr-link face.
6490
6491 2011-05-05  Teodor Zlatanov  <tzz@lifelogs.com>
6492
6493         * shr.el (shr-urlify, shr-link): Still broken but at least doesn't
6494         error out because the face is not a list.
6495
6496 2011-05-05  Glenn Morris  <rgm@gnu.org>
6497
6498         * proto-stream.el (gnutls-negotiate): Fix declarations.
6499
6500         * gnus-start.el (gnus-propagate-marks): Declare.
6501
6502 2011-05-04  Teodor Zlatanov  <tzz@lifelogs.com>
6503
6504         * registry.el (registry-reindex): Fix percentage message.
6505
6506         * proto-stream.el (network-stream-open-starttls): Adjust to call
6507         `gnutls-negotiate' with :process and :hostname arguments.
6508
6509 2011-05-03  Teodor Zlatanov  <tzz@lifelogs.com>
6510
6511         * shr.el: Add shr-link face for links.
6512         (shr-urlify): Use it.
6513
6514         * registry.el (registry-insert): Make error message more helpful.
6515
6516 2011-05-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6517
6518         * gnus-html.el (gnus-html-schedule-image-fetching):
6519         Use url-queue-retrieve, if it exists.
6520
6521         * shr.el (shr-tag-img): Ditto.
6522
6523         * gnus.el: Autoload more gnus-agent functions.
6524
6525         * gnus-art.el (gnus-request-article-this-buffer): Store articles in the
6526         agent if we haven't already (bug#8502).
6527
6528         * gnus-async.el (gnus-async-article-callback): Put prefetched articles
6529         into the Agent, too.
6530
6531         * gnus-agent.el (gnus-agent-store-article): New function.
6532
6533         * nnheader.el (nnheader-insert-buffer-substring): Rename from nntp-
6534         and moved from that file for reuse.
6535
6536         * pop3.el (pop3-open-server): Error messages are "-ERR".
6537
6538 2011-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6539
6540         * pop3.el (pop3-open-server): Upgrade opportunistically to STARTTLS.
6541         (open-tls-stream): Remove superfluous tls/starttls autoloads.
6542
6543 2011-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
6544
6545         * gnus.el: No Gnus v0.17 is released.
6546
6547 2011-05-01  Stefan Monnier  <monnier@iro.umontreal.ca>
6548
6549         * gnus-sum.el (gnus-summary-next-article): Don't bug out if the summary
6550         buffer has moved to a different frame.
6551
6552 2011-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6553
6554         * nnimap.el (nnimap-request-article): Use nntp-insert-buffer-substring
6555         to get the conversion from unibyte to multibyte buffers to work on
6556         Emacs 22.
6557
6558         * nntp.el (nntp-request-article): Slight clean-up.
6559
6560 2011-04-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6561
6562         * shr.el (shr-strike-through): New face.
6563         (shr-tag-s): Use it to provide <s> support.
6564         (shr-tag-s): Remove duplicate definition.
6565
6566 2011-04-25  Teodor Zlatanov  <tzz@lifelogs.com>
6567
6568         * gnus-registry.el (gnus-registry-ignore-group-p): Don't call
6569         `gnus-parameter-registry-ignore' if the *Group* buffer doesn't exist.
6570
6571 2011-04-24  Teodor Zlatanov  <tzz@lifelogs.com>
6572
6573         * proto-stream.el (proto-stream-open-starttls): Give host parameter to
6574         `gnutls-negotiate'.
6575         (gnutls-negotiate): Adjust `gnutls-negotiate' declaration.
6576
6577 2011-04-23  Glenn Morris  <rgm@gnu.org>
6578
6579         * gnus-sum.el (gnus-extra-headers): Bump :version.
6580
6581 2011-04-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6582
6583         * shr.el (shr-tag-sup): New function.
6584         (shr-tag-sub): Ditto.
6585
6586 2011-04-22  Teodor Zlatanov  <tzz@lifelogs.com>
6587
6588         * gnus-registry.el (gnus-registry-ignore-group-p): Test specifically
6589         for the case where `gnus-registry-ignored-groups' is a list of lists,
6590         and don't call `gnus-parameter-registry-ignore' otherwise.
6591
6592 2011-04-21  Teodor Zlatanov  <tzz@lifelogs.com>
6593
6594         * nnimap.el (nnimap-user): New backend variable.
6595         (nnimap-open-connection-1): Use it.
6596         (nnimap-credentials): Accept user parameter so it's explicit what user
6597         name is desired.
6598
6599         * gnus-sum.el (gnus-extra-headers): Add Keywords, Cc, and Gcc to
6600         default.
6601
6602         * gnus.el (gnus-registry-ignored-groups): Provide default in gnus.el,
6603         not gnus-registry.el.
6604
6605         * gnus-registry.el: Mention in comments how to modify
6606         `gnus-extra-headers' for proper recipient tracking and that it may
6607         already have To and Cc recently, which it does as of this commit.
6608         (gnus-registry-ignored-groups): Remove defcustom.
6609         Explain why in comments.
6610         (gnus-registry-action): Fix data-header reference to use the extra
6611         headers.  Explain in package commentary how to add To and Cc headers to
6612         the gnus-extra-headers.
6613         (gnus-registry-ignored-groups): Adjust defaults to match the parameter.
6614         (gnus-registry-ignore-group-p): Adjust to take either a group/topic
6615         parameter list or a string list in `gnus-registry-ignored-groups'.
6616         Fix logic error.
6617
6618 2011-04-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6619
6620         * shr.el (shr-expand-url): Protect against null urls.
6621
6622 2011-04-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6623
6624         * shr.el (shr-base): New binding.
6625         (shr-tag-base): Keep track of <base>.
6626         (shr-expand-url): New function used throughout.
6627
6628 2011-04-20  Teodor Zlatanov  <tzz@lifelogs.com>
6629
6630         * gnus-registry.el
6631         (gnus-registry--split-fancy-with-parent-internal): Fix loop bugs.
6632         (gnus-registry-ignored-groups): New variable.
6633         (gnus-registry-ignore-group-p): Use it.
6634         (gnus-registry-handle-action): Use `gnus-registry-ignore-group-p' and
6635         set the destination group to nil (same as delete) if it's ignored.
6636
6637 2011-04-20  David Engster  <dengste@eml.cc>
6638
6639         * tests/gnustest-nntp.el: New file for simple NNTP testing.
6640
6641         * Makefile.in (test-nntp): New rule.
6642         (check): Add it.
6643         (test-registry): Change '$(EMACS_COMP)' to '$(EMACS) $(FLAGS)'.
6644
6645 2011-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
6646
6647         * gnus-registry.el (gnus-registry-action)
6648         (gnus-registry-fetch-header-fast):
6649         Don't use mail-header that looks an internal function of mailheader.el.
6650
6651 2011-04-19  Glenn Morris  <rgm@gnu.org>
6652
6653         * time-date.el (time-to-days): Remove unused local variables.
6654
6655 2011-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
6656
6657         * gnus-registry.el: Eliminate cl functions.
6658         (gnus-registry-sort-addresses): New function that replaces mapcan.
6659         (gnus-registry-action, gnus-registry-spool-action)
6660         (gnus-registry-split-fancy-with-parent)
6661         (gnus-registry-fetch-recipients-fast): Use it.
6662         (gnus-registry-import-eld): Replace delete* with dolist + delq.
6663
6664         * registry.el (initialize-instance, registry-lookup)
6665         (registry-lookup-breaks-before-lexbind, registry-lookup-secondary)
6666         (registry-lookup-secondary-value, registry-search, registry-delete)
6667         (registry-insert, registry-reindex, registry-size, registry-prune):
6668         Use eval-and-compile.
6669
6670 2011-04-16  Teodor Zlatanov  <tzz@lifelogs.com>
6671
6672         * registry.el (registry-reindex): New method to recreate the secondary
6673         registry indices.
6674
6675         * gnus-registry.el (gnus-registry-fixup-registry): Use it if the
6676         tracked field changes.
6677         (gnus-registry-unfollowed-addresses, gnus-registry-track-extra)
6678         (gnus-registry-action, gnus-registry-spool-action)
6679         (gnus-registry-handle-action)
6680         (gnus-registry--split-fancy-with-parent-internal)
6681         (gnus-registry-split-fancy-with-parent)
6682         (gnus-registry-register-message-ids): Add recipient tracking on spool,
6683         move, and delete actions, and for fancy splitting with parent.
6684         (gnus-registry-extract-addresses)
6685         (gnus-registry-fetch-recipients-fast)
6686         (gnus-registry-fetch-header-fast): Convenience functions.
6687         (gnus-registry-misc-test): ERT test of
6688         `gnus-registry-extract-addresses'.
6689
6690 2011-04-15  Teodor Zlatanov  <tzz@lifelogs.com>
6691
6692         * gnus-registry.el (gnus-registry--split-fancy-with-parent-internal):
6693         Track by subject first, then sender.
6694
6695 2011-04-15  Stefan Monnier  <monnier@iro.umontreal.ca>
6696
6697         * message.el (message-bogus-system-names): Replace ^...$ => \`...\'.
6698
6699         * gnus.el (gnus-splash-svg-color-symbols): Don't use insert-file from
6700         Lisp.
6701
6702         * gnus-draft.el (gnus-draft-setup): New arg `dont-pop'.
6703         (gnus-draft-send): Use it to avoid popping
6704         up frames from gnus-group-send-queue.
6705
6706 2011-04-14  Teodor Zlatanov  <tzz@lifelogs.com>
6707
6708         * gnus-registry.el: Updated gnus-registry docs.
6709
6710 2011-04-12  Teodor Zlatanov  <tzz@lifelogs.com>
6711
6712         * gnus-registry.el (gnus-registry--split-fancy-with-parent-internal):
6713         Fix logic bug.
6714         (gnus-registry-post-process-groups): Fix logging of no results and
6715         quote sender and subject.
6716
6717 2011-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6718
6719         * proto-stream.el (proto-stream-open-starttls): Only do opportunistic
6720         STARTTLS upgrades if we have built-in gnutls support.  Upgrades via
6721         gnutls-cli are too slow to be done opportunistically.
6722
6723         * gnus-start.el (gnus-get-unread-articles): Slight cleanup.
6724         (gnus-read-active-for-groups): Don't try to finish getting stuff where
6725         we had no early-data returned.
6726         (gnus-get-unread-articles): Add a sanity check so that we don't issue
6727         two async commands to the same server at the same time.
6728
6729 2011-04-12  Stig Sandbeck Mathisen  <ssm@fnord.no>  (tiny change)
6730
6731         * gnus-sum.el (gnus-summary-select-article-buffer): Doc fix.
6732
6733 2011-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6734
6735         * gnus-registry.el (gnus-registry-remake-db): Put the warning on a
6736         "warning" level.
6737
6738         * mm-url.el (mm-url-package-name): Remove to ease third-party reuse.
6739         (mm-url-insert-file-contents): Don't set the package names.
6740
6741 2011-04-11  Teodor Zlatanov  <tzz@lifelogs.com>
6742
6743         * gnus-registry.el (gnus-registry-action): Remove properties and
6744         simplify subject in `gnus-registry-handle-action'.
6745         (gnus-registry-spool-action): Get subject and sender from message if
6746         they are not passed in.
6747         (gnus-registry-handle-action): Remove properties and simplify subject
6748         consistently.
6749
6750 2011-04-11  Stefan Monnier  <monnier@iro.umontreal.ca>
6751
6752         * registry.el: Require CL before using defmacro*.
6753
6754 2011-04-11  Katsumi Yamaoka  <yamaoka@jpl.org>
6755
6756         * gnus-art.el (article-treat-date): Assume that
6757         gnus-article-date-headers may be a group parameter.
6758
6759 2011-04-07  Teodor Zlatanov  <tzz@lifelogs.com>
6760
6761         * gnus-registry.el (gnus-registry-handle-action): More debugging.
6762
6763         * gnus-start.el (gnus-gnus-to-newsrc-format): Add a way to run
6764         interactively so the newsrc file can contain foreign groups too.
6765         Useful for debugging but not much for users.
6766
6767 2011-04-07  David Engster  <dengste@eml.cc>
6768
6769         * registry.el (registry-usage-test): Only do
6770         `registry-lookup-breaks-before-lexbind' testing for Emacs24 with
6771         lexical binding.
6772
6773 2011-04-07  David Engster  <dengste@eml.cc>
6774
6775         * Makefile.in (check, test-registry): New rules for test-suite.
6776
6777 2011-04-06  David Engster  <dengste@eml.cc>
6778
6779         * registry.el, gnus-registry.el: Use `ignore-errors' instead of third
6780         argument NOERROR for `require', since XEmacs 21.4 does not support it.
6781
6782 2011-04-06  David Engster  <dengste@eml.cc>
6783
6784         * registry.el (initialize-instance): Change :after to :AFTER to be
6785         compatible with old EIEIO version in XEmacs.
6786
6787 2011-04-06  Teodor Zlatanov  <tzz@lifelogs.com>
6788
6789         * gnus-registry.el (gnus-registry-post-process-groups)
6790         (gnus-registry--split-fancy-with-parent-internal): Fix splitting bugs
6791         and provide better messaging.
6792
6793 2011-04-06  David Engster  <dengste@eml.cc>
6794
6795         * Makefile.in (fail-on-warning): New rule to compile with warnings as
6796         errors.
6797
6798         * dgnushack.el (dgnushack-compile-error-on-warn): New function to call
6799         dgnushack-compile with error-on-warn enabled, and to signal an error if
6800         clean compilation failed.
6801         (dgnushack-compile): New argument 'error-on-warn'.  If non-nil, compile
6802         with `byte-compile-error-on-warn'.  Return nil if errors occured.
6803
6804 2011-04-06  Teodor Zlatanov  <tzz@lifelogs.com>
6805
6806         * gnus-registry.el: Don't use ERT if it's not available.  Load it
6807         unconditionally anyway, discarding errors.
6808         (gnus-registry-delete-entries): New convenience function.
6809         (gnus-registry-import-eld): Import from old .eld registry.
6810
6811         * registry.el: Don't use ERT if it's not available.  Load it
6812         unconditionally anyway, discarding errors.
6813
6814         * proto-stream.el (gnutls-negotiate): Revert inadvertent commit of the
6815         version from the Claudio Bley GnuTLS patch (extra optional parameters
6816         and host name).
6817
6818 2011-04-05  Teodor Zlatanov  <tzz@lifelogs.com>
6819
6820         * gnus-registry.el (gnus-registry-fixup-registry): New function to
6821         fixup the parameters that can be customized by the user between
6822         save/read cycles.
6823         (gnus-registry-read): Use it.
6824         (gnus-registry-make-db): Use it.
6825         (gnus-registry-spool-action, gnus-registry-handle-action):
6826         Fix messaging.
6827         (gnus-registry--split-fancy-with-parent-internal): Fix loop.
6828         Map references to actual group names with sender and subject tracking.
6829         (gnus-registry-post-process-groups): Use `cond' for better messaging.
6830         (gnus-registry-usage-test): Add subject lookup test.
6831
6832         * registry.el (registry-db, initialize-instance): Set up constructor
6833         instead of :initform arguments for the sake of older Emacsen.
6834         (registry-lookup-breaks-before-lexbind): New method to demonstrate
6835         pre-lexbind merge bug.
6836         (registry-usage-test): Use it.
6837         (initialize-instance, registry-db): Move the non-function initforms
6838         back to the class definition.
6839
6840 2011-04-03  Teodor Zlatanov  <tzz@lifelogs.com>
6841
6842         * registry.el: New library to manage gnus-registry-style data.
6843
6844         * gnus-registry.el: Use it (major rewrite).
6845
6846         * nnregistry.el: Use it.
6847
6848         * spam.el: Use it.
6849
6850 2011-04-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6851
6852         * gnus-sum.el (gnus-update-marks): Reinstate the code to not alter
6853         marks on non-selected articles.
6854
6855 2011-04-02  Chong Yidong  <cyd@stupidchicken.com>
6856
6857         * nnimap.el (nnimap-open-connection-1): Pass explicit :end-of-command
6858         parameter to open-protocol-stream.
6859
6860 2011-04-01  Julien Danjou  <julien@danjou.info>
6861
6862         * mm-view.el (mm-display-inline-fontify): Do not fontify with
6863         fundamental-mode.
6864
6865 2011-04-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6866
6867         * gnus-start.el (gnus-get-unread-articles): Don't try to contact denied
6868         servers.
6869
6870 2011-03-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6871
6872         * gnus-sum.el (gnus-update-marks): Revert intersection change, which
6873         made marks not propagate, again.
6874
6875 2011-03-30  Chong Yidong  <cyd@stupidchicken.com>
6876
6877         * proto-stream.el (open-protocol-stream): Bring back `network' type.
6878         Make this the default type.
6879         (proto-stream-open-plain): Rename from proto-stream-open-default.
6880         (open-protocol-stream, proto-stream-open-starttls)
6881         (proto-stream-open-tls, proto-stream-open-shell): Replace `default'
6882         with `plain'.
6883
6884         * nnimap.el (nnimap-stream, nnimap-open-connection-1): Accept `network'
6885         value.
6886
6887         * nntp.el (nntp-open-connection-function): Document the fact that some
6888         values are not functions but are instead handled specially.
6889         Recognize nntp-open-plain-stream value.
6890         (nntp-open-connection): Recognize that value.
6891
6892 2011-03-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6893
6894         * dgnushack.el: Only do the defcustom compilation thing on XEmacs,
6895         where it seems to be needed.
6896
6897 2011-03-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6898
6899         * gssapi.el (open-gssapi-stream): Remove the last mentions of the IMAP
6900         stuff.
6901
6902         * gnus-score.el (gnus-score-string): Fix calling convention of
6903         `gnus-simplify-buffer-fuzzy' after last patches.
6904
6905         * gnus-sum.el (gnus-update-marks): Don't send any marks updates to the
6906         server for articles we didn't get any headers for.  This is a sanity
6907         check.
6908
6909 2011-03-29  Michael Welsh Duggan  <md5i@md5i.com>
6910
6911         * nnimap.el (nnimap-open-connection-1): Is the login responds with a
6912         new CAPABILITY, use it.
6913
6914 2011-03-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6915
6916         * gnus-agent.el (gnus-agent-fetch-headers): Don't message if we're not
6917         downloading anything.
6918
6919         * gnus.el (gnus-splash-svg-color-symbols): Remove superfluous `and'.
6920
6921 2011-03-29  Adam Sjøgren  <asjo@koldfront.dk>
6922
6923         * gnus.el (gnus-group-startup-message): Prefer svg file and replace
6924         colors.
6925         (gnus-splash-svg-color-symbols): New function.
6926
6927 2011-03-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6928
6929         * gnus-sum.el (gnus-simplify-buffer-fuzzy): Take the regexp explicitly
6930         instead of using the global gnus-simplify-subject-fuzzy-regexp.
6931         (gnus-simplify-subject-fuzzy): Use the local
6932         gnus-simplify-subject-fuzzy-regex instead of the global one.
6933         This makes using this variable in group parameters work.
6934
6935 2011-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
6936
6937         * gnus-registry.el (gnus-registry-unfollowed-groups):
6938         Add "archive:sent" to the unfollowed group regex (for the recent Gnus
6939         archive:sent-YYYY-MM-DD groups).
6940         (gnus-registry-split-fancy-with-parent): Bail out early in sender
6941         tracking if there are more than `gnus-registry-max-track-groups'
6942         matches.
6943
6944 2011-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
6945
6946         * message.el (message--yank-original-internal): New function to do the
6947         insertion cleanly inside eval in `message-yank-original'.
6948         (message-yank-original): Use it.
6949
6950 2011-03-29  Julien Danjou  <julien@danjou.info>
6951
6952         * mm-view.el (mm-display-inline-fontify): Use `set-normal-mode' with
6953         local variables disabled rather than `normal-mode'.
6954
6955 2011-03-28  Brian T. Sniffen  <bsniffen@akamai.com>  (tiny change)
6956
6957         * imap.el (imap-shell-open, imap-process-connection-type):
6958         Use imap-process-connection-type for 'shell' streams as well as
6959         Kerberos, SSL, other subprocesses.
6960
6961 2011-03-26  Chong Yidong  <cyd@stupidchicken.com>
6962
6963         * proto-stream.el: Changes preparatory to merging open-protocol-stream
6964         with open-network-stream.
6965         (proto-stream-always-use-starttls): Option removed.
6966         (open-protocol-stream): Return a process object by default.  Provide a
6967         new parameter :return-list specifying a list-type return value, which
6968         now has the form (PROP . PLIST) instead of a fixed-length list.  Change
6969         :type `network' to `try-starttls', and `network-only' to `default'.
6970         Make `default' the default, for compatibility with open-network-stream.
6971         Handle the no-parameter case exactly as open-network-stream, with no
6972         additional stream processing.  Search plists using plist-get.
6973         Explicitly add :end-of-commend parameter if it is missing.
6974         (proto-stream-open-default): Rename from
6975         proto-stream-open-network-only.  Return 'default as the type.
6976         (proto-stream-open-starttls): Rename from proto-stream-open-network.
6977         Use plist-get.  Don't return `tls' as the type if STARTTLS negotiation
6978         failed.  Always return a list with a (possibly dead) process as the
6979         first element, for compatibility with open-network-stream.
6980         (proto-stream-open-tls): Use plist-get.  Always return a list.
6981         (proto-stream-open-shell): Return `default' as connection type.
6982         (proto-stream-capability-open): Use plist-get.
6983         (proto-stream-eoc): Function deleted.
6984
6985         * nnimap.el (nnimap-stream, nnimap-open-connection)
6986         (nnimap-open-connection-1): Handle renaming of :type parameter for
6987         open-protocol-stream.
6988         (nnimap-open-connection-1): Pass a :return-list parameter
6989         open-protocol-stream to obtain a list return value.  Parse this list
6990         using plist-get.
6991
6992         * nntp.el (nntp-open-connection): Handle renaming of :type parameter
6993         for open-protocol-stream.  Accept open-protocol-stream return value
6994         that is a subprocess object instead of a list.  Handle the case of a
6995         dead returned process.
6996
6997 2011-03-25  Teodor Zlatanov  <tzz@lifelogs.com>
6998
6999         * mm-util.el (mm-handle-filename): Move to mm-decode.el (bug#8330).
7000
7001         * mm-decode.el (mm-handle-filename): Move from mm-util.el (bug#8330).
7002
7003 2011-03-21  Julien Danjou  <julien@danjou.info>
7004
7005         * mm-view.el (mm-display-inline-fontify): Make mode optional, and call
7006         normal-mode if not set.  Set temp buffer unmodified to avoid kill-buffer
7007         query.
7008         (mm-inline-text): Render normal text with fontification whenever
7009         possible.
7010
7011         * gnus-sum.el (gnus-summary-save-parts-1):
7012         * gnus-art.el (gnus-article-browse-html-save-cid-content)
7013         (gnus-article-browse-html-parts, gnus-mime-delete-part)
7014         (gnus-mime-copy-part, gnus-mime-inline-part, gnus-insert-mime-button):
7015         Use `mm-handle-filename'.
7016
7017         * mm-util.el (mm-handle-filename): New function, return the filename of
7018         an handle.
7019
7020 2011-03-18  Julien Danjou  <julien@danjou.info>
7021
7022         * gnus-util.el (gnus-buffer-live-p): Simplify gnus-buffer-live-p.
7023         (gnus-buffer-live-p): Check that buffer is not nil.
7024
7025 2011-03-17  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
7026
7027         * gnus.el: No Gnus v0.15 is released.
7028
7029 2011-03-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7030
7031         * time-date.el (format-seconds): Use assoc instead of assoc-string to
7032         avoid warning on XEmacs.
7033
7034         * dgnushack.el: Bind help-echo-owns-message to avoid a compiler warning
7035         on XEmacs.
7036
7037         * gnus-art.el: Require mouse, which the build bot seems to say is
7038         needed.
7039
7040         * dgnushack.el: Define url-retrieve-synchronously unless not defined.
7041
7042         * gravatar.el (gravatar-retrieve-synchronously): Use `url-retrieve' on
7043         XEmacs, since it doesn't have url-retrieve-synchronously.
7044
7045         * time-date.el (format-seconds): Use assoc instead of assoc-string,
7046         since assoc-string doesn't exist in XEmacs.
7047
7048 2011-03-17  Antoine Levitt  <antoine.levitt@gmail.com>
7049
7050         * gnus-group.el (gnus-group-list-ticked): New function.
7051         (gnus-group-make-menu-bar): Provide a menu entry for it.
7052         (gnus-group-list-map): Provide a binding for it.
7053
7054 2011-03-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7055
7056         * shr.el (shr-visit-file): New command.
7057
7058         * nnimap.el (nnimap-fetch-inbox): Rewrite slightly last patch.
7059
7060 2011-03-17  Bjørn Mork  <bjorn@mork.no>
7061
7062         * nnimap.el (nnimap-fetch-inbox): Don't download bodies on ver4-capable
7063         servers.
7064
7065 2011-03-16  Julien Danjou  <julien@danjou.info>
7066
7067         * mm-uu.el (mm-uu-dissect-text-parts): Only dissect handle that are
7068         inline.
7069
7070         * gnus-art.el (article-hide-list-identifiers):
7071         Use gnus-group-get-list-identifiers.
7072
7073         * gnus-sum.el (gnus-group-get-list-identifiers): New function.
7074         (gnus-summary-remove-list-identifiers):
7075         Use gnus-group-get-list-identifiers to get regexp.
7076         (gnus-select-newsgroup, gnus-summary-insert-subject)
7077         (gnus-summary-insert-articles):
7078         Call gnus-summary-remove-list-identifiers unconditionally.
7079
7080 2011-03-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7081
7082         * gnus-sum.el (gnus-articles-to-read): Revert back to old behavior if
7083         we're selecting a group with unread articles.
7084
7085         * nnimap.el (nnimap-open-connection-1): Allow `network-only', too.
7086
7087         * gssapi.el: New file separated out from imap.el to provide a general
7088         Kerberos 5 connection facility for Emacs.
7089
7090         * message.el (message-elide-ellipsis): Document the format spec
7091         ellipsis.
7092
7093 2011-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
7094
7095         * message.el (message-elide-region): Allow the ellipsis to say how many
7096         lines were removed.
7097
7098 2011-03-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7099
7100         * gnus-win.el (gnus-configure-frame): Protect against trying to restore
7101         window configurations containing buffers that are now dead.
7102
7103         * nnimap.el (nnimap-parse-flags): Remove all MODSEQ entries before
7104         parsing to avoid integer overflows.
7105         (nnimap-parse-flags): Simplify the last change.
7106         (nnimap-parse-flags): Store HIGHESTMODSEQ as a string, since it may be
7107         too large for 32-bit Emacsen.
7108
7109 2011-03-15  Stefan Monnier  <monnier@iro.umontreal.ca>
7110
7111         * auth-source.el (auth-source-netrc-create):
7112         * message.el (message-yank-original): Fix use of `case'.
7113
7114 2011-03-15  Nelson Ferreira  <nelson.ferreira@ieee.org>  (tiny change)
7115
7116         * gnus-art.el (gnus-article-treat-body-boundary): Fix boundary width on
7117         XEmacs, which was one character too wide.
7118
7119 2011-03-09  Antoine Levitt  <antoine.levitt@gmail.com>
7120
7121         * gnus-sum.el (gnus-articles-to-read): Use gnus-large-newsgroup as
7122         default number of articles to display.
7123         (gnus-articles-to-read): Use pretty names for prompt.
7124
7125 2011-03-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7126
7127         * gnus-int.el (gnus-open-server): Ditto.
7128
7129         * gnus-start.el (gnus-activate-group): Give a backtrace if
7130         debug-on-quit is set and the user hits `C-g'.
7131         (gnus-read-active-file): Ditto.
7132
7133         * gnus-group.el (gnus-group-read-ephemeral-group): Ditto.
7134
7135 2011-03-15  Teodor Zlatanov  <tzz@lifelogs.com>
7136
7137         * message.el (message-yank-original): Use cond instead of CL case.
7138
7139 2011-03-15  Stefan Monnier  <monnier@iro.umontreal.ca>
7140
7141         * auth-source.el (auth-source-netrc-create): Use usual format for the
7142         default in prompts.
7143
7144 2011-03-14  Katsumi Yamaoka  <yamaoka@jpl.org>
7145
7146         * lpath.el: Fbind read-char-choice for XEmacs.
7147
7148 2011-03-13  Teodor Zlatanov  <tzz@lifelogs.com>
7149
7150         * auth-source.el (auth-source-netrc-create): Show the default in the
7151         prompt when prompting for token creation.
7152
7153 2011-03-12  Teodor Zlatanov  <tzz@lifelogs.com>
7154
7155         * auth-source.el (auth-source-format-prompt): Always convert the value
7156         to a string to avoid evaluating non-string arguments.
7157         (auth-source-netrc-create): Offer default properly, not as initial
7158         content in `read-string'.
7159         (auth-source-netrc-saver): Use a cache keyed by file name and MD5 hash
7160         of line to determine if we've been run before.  If so, don't run again,
7161         but print a trivial message to indicate the cache was hit instead.
7162
7163 2011-03-11  Teodor Zlatanov  <tzz@lifelogs.com>
7164
7165         * gnus-sync.el (gnus-sync-install-hooks, gnus-sync-unload-hook):
7166         Don't install `gnus-sync-read' to any hooks by default.  It's buggy.
7167         The user will have to run `gnus-sync-read' manually and wait for Cloudy
7168         Gnus.
7169
7170 2011-03-11  Julien Danjou  <julien@danjou.info>
7171
7172         * mm-uu.el (mm-uu-type-alist): Add support for diff starting with "===
7173         modified file".
7174
7175 2011-03-09  Teodor Zlatanov  <tzz@lifelogs.com>
7176
7177         * auth-source.el (auth-source-read-char-choice): New function to read a
7178         character choice using `dropdown-list', `read-char-choice', or
7179         `read-char'.  It appends "[a/b/c] " to the prompt if the choices were
7180         '(?a ?b ?c).  The `dropdown-list' support is disabled for now.  Use
7181         `eval-when-compile' to load `dropdown-list'.  Remove `dropdown-list'.
7182         (auth-source-netrc-saver): Use it.
7183         (auth-source-pick-first-password): New convenience function.
7184
7185 2011-03-08  Teodor Zlatanov  <tzz@lifelogs.com>
7186
7187         * nnimap.el (nnimap-credentials): Keep the :save-function as the third
7188         parameter in the credentials.
7189         (nnimap-open-connection-1): Use it after a successful login.
7190         (nnimap-credentials): Add IMAP-specific user and password prompt.
7191
7192         * auth-source.el (auth-source-search): Add :require parameter, taking a
7193         list.  Document it and the :save-function return token.  Pass :require
7194         down.  Change the CREATED message from a warning to a debug statement.
7195         (auth-source-search-backends): Pass :require down.
7196         (auth-source-netrc-search): Pass :require down.
7197         (auth-source-netrc-parse): Use :require, if it's given, as a filter.
7198         Change save prompt to indicate all modifications saved here are
7199         deletions.
7200         (auth-source-netrc-create): Take user login name as default in user
7201         prompt.  Move all the save functionality to a lexically bound function
7202         under the :save-function token in the returned list.  Set up clearer
7203         default prompts for user, host, port, and secret.
7204         (auth-source-netrc-saver): New function, intended to be wrapped for
7205         :save-function.
7206
7207 2011-03-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7208
7209         * shr.el (shr-table-horizontal-line): Change the defaults for the table
7210         lines to be spaces instead.
7211
7212 2011-03-07  Julien Danjou  <julien@danjou.info>
7213
7214         * sieve-manage.el (sieve-sasl-auth): Create auth-info if not found.
7215         (sieve-sasl-auth): Check that auth-source-search did return something,
7216         or just return an empty string.
7217
7218 2011-03-05  Antoine Levitt  <antoine.levitt@gmail.com>
7219
7220         * gnus.el (gnus-interactive): Use read-directory-name.
7221
7222         * gnus-uu.el (gnus-uu-decode-uu-and-save)
7223         (gnus-uu-decode-unshar-and-save, gnus-uu-decode-save)
7224         (gnus-uu-decode-binhex, gnus-uu-decode-yenc)
7225         (gnus-uu-decode-save-view, gnus-uu-decode-postscript-and-save):
7226         Likewise.
7227
7228         * gnus-group.el (gnus-group-make-directory-group): Likewise.
7229
7230 2011-03-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7231
7232         * gnus-start.el (gnus-group-change-level): Allow putting foreign groups
7233         onto the list of killed groups, too.  This makes killed nnimap groups,
7234         for instance, more reliably not reappear.
7235
7236         * nnimap.el (nnimap-request-thread): Don't bug out when we can't find
7237         the parent.
7238
7239         * gnus-sum.el (gnus-update-read-articles): Fix typo.
7240
7241         * gnus.el (gnus-valid-select-methods): Mark nnimap as a backend that
7242         really have server-side marks.
7243
7244         * gnus-sum.el (gnus-propagate-marks): Change default back to nil again,
7245         since most backends do not usefully have server-side marks.
7246         (gnus-update-read-articles): Propagate marks to all backends that
7247         really have server-side marks.
7248
7249 2011-03-05  Antoine Levitt  <antoine.levitt@gmail.com>
7250
7251         * message.el (message-cite-reply-position, message-cite-style):
7252         New variables.
7253         (message-yank-original): Use the new citation styles.
7254
7255 2011-03-04  Daiki Ueno  <ueno@unixuser.org>
7256
7257         * message.el (message-options): Revert 22da67af (workaround for XEmacs
7258         buffer-local issue); don't mark it buffer-local when running under
7259         XEmacs.
7260
7261 2011-03-03  Tassilo Horn  <tassilo@member.fsf.org>
7262
7263         * nnimap.el (nnimap-parse-flags): Add a workaround for FETCH lines with
7264         numbers too big to be `read'.
7265
7266 2011-03-02  Teodor Zlatanov  <tzz@lifelogs.com>
7267
7268         * password-cache.el (password-in-cache-p): Add autoload.
7269
7270         * message.el (message-options): Make buffer-local two ways to attempt
7271         to fix a XEmacs bug.
7272
7273 2011-03-02  Julien Danjou  <julien@danjou.info>
7274
7275         * gnus-art.el (gnus-with-article-buffer): Fix buffer live check.
7276
7277 2011-03-01  Julien Danjou  <julien@danjou.info>
7278
7279         * gnus-art.el (list-identifier): Add list-identifier as a parameter
7280         group.
7281         (article-hide-list-identifiers): Use list-identifier group parameter.
7282
7283 2011-02-28  Julien Danjou  <julien@danjou.info>
7284
7285         * sieve.el (sieve-buffer-script-name): New local variable to store
7286         sieve script name.
7287         (sieve-edit-script): Store sieve script name.
7288         (sieve-upload): Use sieve script name when uploading.
7289         (sieve-upload): Use substitute-command-keys.
7290         (sieve-edit-script): Use substitute-command-keys.
7291         (sieve-refresh-scriptlist): Use substitute-command-keys.
7292         (sieve-manage-mode-map): Define keymap properly.
7293         (sieve-manage-mode): Do not set mode name manually, change mode-name to
7294         (sieve-refresh-scriptlist): Use substitute-command-keys."Sieve-manage".
7295         Remove commented code about cvs.
7296         (sieve-manage-quit): New function.
7297         (sieve-manage-mode-map): Bind 'q' to sieve-manage-quit.
7298
7299 2011-02-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7300
7301         * gnus-group.el (gnus-import-other-newsrc-file): New function.
7302
7303 2011-02-25  Teodor Zlatanov  <tzz@lifelogs.com>
7304
7305         * auth-source.el (auth-source-search): Cache empty result sets.
7306
7307         * password-cache.el (password-in-cache-p): Convenience function to
7308         check if a key is in the cache, even if the value is nil.
7309
7310         * auth-source.el (auth-source-save-behavior): New variable to replace
7311         `auth-source-never-create'.
7312         (auth-source-netrc-create): Use it.
7313         (auth-source-never-save): Remove.
7314
7315 2011-02-25  Lars Ingebrigtsen  <larsi@gnus.org>
7316
7317         * nnimap.el (nnimap-stream): Doc fix.
7318         (nnimap-open-connection-1): Reverse the order of the ports to that the
7319         prompted-for port is first.
7320
7321         * gnus-start.el (gnus-get-unread-articles): Don't clobber the async
7322         retrieval by the no-group selection.
7323
7324         * gnus-demon.el (gnus-demon-init): run-with-timer should be called with
7325         numerical parameters.
7326
7327 2011-02-25  Julien Danjou  <julien@danjou.info>
7328
7329         * gnus-gravatar.el: Use gnus-with-article-buffer.
7330
7331         * gnus-art.el (gnus-with-article-buffer): Check that the
7332         gnus-article-buffer is alive.
7333
7334 2011-02-24  Teodor Zlatanov  <tzz@lifelogs.com>
7335
7336         * auth-source.el (auth-source-creation-prompts): New variable to manage
7337         creation-time prompts.
7338         (auth-source-search): Document it.
7339         (auth-source-format-prompt): Add utility function.
7340         (auth-source-netrc-create): Don't default the user name to
7341         user-login-name.  Use `auth-source-creation-prompts' and some default
7342         prompts for user, host, port, and password (the default generic prompt
7343         remains ugly).
7344         (auth-source-never-save): Add customizable option to never save info.
7345         (auth-source-netrc-create): Use it and improve save prompts.  Fix help
7346         mode excursion.
7347
7348 2011-02-24  Katsumi Yamaoka  <yamaoka@jpl.org>
7349
7350         * auth-source.el (auth-source-netrc-create): Use `read-char' with no
7351         argument that XEmacs doesn't support.
7352
7353         * dgnushack.el (dgnushack-compile): Exclude color.el from being
7354         compiled for Emacsen having no `libxml-parse-html-region' support.
7355
7356         * gnus-xmas.el (gnus-xmas-define): Remove gnus-x-color-values.
7357
7358         * lpath.el: Bind buffer-save-without-query for XEmacs.
7359
7360 2011-02-23  Julien Danjou  <julien@danjou.info>
7361
7362         * gnus-art.el (article-make-date-line): Ignore errors if time is
7363         invalid and not convertible.
7364         (article-make-date-line): Only add lapsed time if time is not nil.
7365
7366 2011-02-23  Teodor Zlatanov  <tzz@lifelogs.com>
7367
7368         * auth-source.el (auth-source-netrc-create): Use `read-char' instead of
7369         `read-char-choice' for backwards compatibility.
7370         (auth-source-netrc-element-or-first): New function to DTRT for
7371         parameter extraction.
7372         (auth-source-netrc-create): Use it and fix multiple parameter print
7373         bug.  Use the default passed from above (given-default) or the
7374         built-in (user-login-name for :user).
7375
7376 2011-02-23  Lars Ingebrigtsen  <larsi@gnus.org>
7377
7378         * gnus-start.el (gnus-dribble-read-file):
7379         Set buffer-save-without-query, since we always want to save the dribble
7380         file, probably.
7381
7382         * nnmail.el (nnmail-article-group): Allow a final "" split to work on
7383         nnimap.
7384
7385         * gnus-sum.el (gnus-user-date-format-alist): Rename back again from
7386         -summary- since it's a user-visible variable.
7387
7388         * nnimap.el (nnimap-retrieve-group-data-early): Don't do QRESYNC the
7389         first time you use the new Gnus.
7390
7391 2011-02-22  Teodor Zlatanov  <tzz@lifelogs.com>
7392
7393         * auth-source.el: Don't load netrc.el.
7394         (auth-sources): Search ~/.netrc as well by default.
7395         (auth-source-debug): Add 'trivia option for extra output.
7396         (auth-source-do-trivia): Use it.
7397         (auth-source-search): Simplify logic to use
7398         `auth-source-search-backends'.  Use `auth-source-do-trivia' where
7399         appropriate.  Don't keep a running count at this level.  Layer :create
7400         and :delete options appropriately on the first and second passes.
7401         Don't track the backend with the search results.
7402         (auth-source-search-backends): New function to search a list of
7403         backends for a processed spec.
7404         (auth-source-netrc-parse): Cache all netrc files, making
7405         auth-source-netrc-cache an alist keyed by the file name and using the
7406         file mtime as the caching criterion.  Keep the obfuscated data secret
7407         with a lexical bind.
7408         (auth-source-netrc-search): Don't calculate the length of the results
7409         unnecessarily.
7410         (auth-source-search-backends): Fix bug.
7411         (auth-source-netrc-create): Rework prompts.
7412
7413 2011-02-22  Andrew Cohen  <cohen@andy.bu.edu>
7414
7415         * nnir.el (nnir-imap-search-arguments, nnir-imap-default-search-key):
7416         Lower case names of search constraints.
7417         (nnir-run-query): Cache and reuse search constraints for all imap
7418         servers.
7419
7420 2011-02-22  Lars Ingebrigtsen  <larsi@gnus.org>
7421
7422         * gnus-msg.el (gnus-inews-add-send-actions): Restore the winconf name
7423         after exit.
7424         (gnus-setup-message): Define missing variable from last checkin.
7425
7426         * gnus-sum.el (gnus-summary-show-article): When called with t as the
7427         value, show the raw article.
7428
7429 2011-02-22  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
7430
7431         * gnus.el: No Gnus v0.13 is released.
7432
7433 2011-02-21  Lars Ingebrigtsen  <larsi@gnus.org>
7434
7435         * nnimap.el (nnimap-open-connection-1): Revert last change, since
7436         auth-source now accepts numbers.
7437
7438         * auth-source.el (auth-source-netrc-parse): Accept a number as the port
7439         spec, too.
7440         (auth-source-ensure-strings): New function.
7441
7442         * gnus-art.el (gnus-article-update-date-headers): Doc fix.
7443         (gnus-article-setup-buffer): Always restart the date timer so that user
7444         changes to the frequency is respected.
7445
7446         * nnimap.el (nnimap-open-connection-1): auth-source expects strings as
7447         port numbers, so make sure it gets that if nnimap-server-port is
7448         explicit.
7449
7450 2011-02-21  Simon Josefsson  <simon@josefsson.org>
7451
7452         * nnimap.el (nnimap-inbox): Doc fix.
7453
7454 2011-02-21  Chong Yidong  <cyd@stupidchicken.com>
7455
7456         * color.el (color-name-to-rgb): Rename from color-rgb->normalize.
7457         Autoload.  Add optional arg FRAME, and pass it to color-values.
7458         (color-complement): Caller changed.  Doc fix.
7459         (color-gradient): Rewrite for better clarity and efficiency.
7460
7461 2011-02-20  Chong Yidong  <cyd@stupidchicken.com>
7462
7463         * shr-color.el (shr-color->hexadecimal): Use renamed function names
7464         color-rgb-to-hex, color-name-to-rgb, color-srgb-to-lab, and
7465         color-lab-to-srgb.
7466
7467 2011-02-20  Drew Adams  <drew.adams@oracle.com>
7468
7469         * color.el: First part of merge from hexrgb.el.
7470         (color-rgb-to-hex): Rename from color-rgb->hex.
7471         (color-rgb-to-hsv): Rename from color-rgb->hsv.  Force hue and
7472         saturation to zero if the value is too small.
7473         (color-rgb-to-hsl): Rename from color-rgb->hsl.
7474         (color-srgb-to-xyz): Rename from color-srgb->xyz.  Doc fix.
7475         (color-xyz-to-srgb): Rename from color-xyz->srgb.  Doc fix.
7476         (color-xyz-to-lab): Rename from color-xyz->lab.  Doc fix.
7477         (color-lab-to-xyz): Rename from color-lab->xyz.  Doc fix.
7478         (color-lab-to-srgb): Rename from color-lab->srgb.  Doc fix.
7479         (color-cie-de2000): Doc fix.
7480
7481 2011-02-21  Lars Ingebrigtsen  <larsi@gnus.org>
7482
7483         * nntp.el (nntp-finish-retrieve-group-infos): Add a kludge to use the
7484         given method as in the group name if we're using an extended method.
7485         (nntp-finish-retrieve-group-infos): Wait for the end of the LIST ACTIVE
7486         command, if we're using that, instead of waiting for the beginning.
7487
7488         * gnus-start.el (gnus-get-unread-articles): Extend the methods so that
7489         we're sure to get unique server names, and we don't output two async
7490         commands in the same buffer.  This fixes an NNTP hang for some users.
7491
7492 2011-02-21  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
7493
7494         * gnus.el: No Gnus v0.11 is released.
7495
7496 2011-02-21  Lars Ingebrigtsen  <larsi@gnus.org>
7497
7498         * gnus-sum.el (gnus-summary-next-article): Add a kludge to reselect the
7499         summary buffer before reading going to the next buffer.  This avoids
7500         putting the point in the group buffer if you `C-g' the command.
7501
7502         * auth-source.el (auth-source-netrc-parse): Add an in-memory netrc
7503         cache (for now) to make ~/.authinfo.gpg files usable.
7504
7505         * nnfolder.el (copyright-update): Define for the compiler.
7506
7507         * auth-source.el (auth-source-search): Fix unbound variable.
7508
7509 2011-02-19  Glenn Morris  <rgm@gnu.org>
7510
7511         * gnus.el (gnus-meta): Doc fix.
7512
7513 2011-02-19  Chong Yidong  <cyd@stupidchicken.com>
7514
7515         * nnfolder.el (nnfolder-save-buffer): Don't let-bind copyright-update,
7516         in case it's not yet loaded.
7517
7518 2011-02-20  Lars Ingebrigtsen  <larsi@gnus.org>
7519
7520         * nnimap.el (nnimap-wait-for-response): Ensure that we get the entire
7521         line we're waiting for.
7522
7523 2011-02-19  Darren Hoo  <darren.hoo@gmail.com>  (tiny change)
7524
7525         * gnus-art.el (gnus-article-next-page-1): Because customized mode-line
7526         face with line-width greater than zero will cause RET in gnus summary
7527         buffer to scroll down article page-wise because auto vscroll happens,
7528         it should be temporally disabled when doing a scroll-up.
7529
7530 2011-02-19  Lars Ingebrigtsen  <larsi@gnus.org>
7531
7532         * nnimap.el (nnimap-parse-copied-articles): Allow for "<foo> OK"
7533         outputs from the server.
7534
7535 2011-02-18  Antoine Levitt  <antoine.levitt@gmail.com>  (tiny change)
7536
7537         * gnus-art.el (gnus-article-prepare): Run gnus-article-prepare-hook
7538         later so that bbdb can hook in easier.
7539
7540 2011-02-18  Lars Ingebrigtsen  <larsi@gnus.org>
7541
7542         * auth-source.el (auth-source-search): Don't try to create credentials
7543         if the caller doesn't want that.
7544         (auth-source-search): If we don't find a match, don't bug out on
7545         non-bound variables.
7546         (auth-source-search): Only ask a single backend to create the
7547         credentials.
7548
7549         * nnimap.el (nnimap-log-command): Add a newline to the inhibited
7550         logging.
7551         (nnimap-credentials): Protect against auth-source-search returning nil.
7552         (nnimap-request-list): Protect against not being able to open the
7553         server.
7554
7555 2011-02-17  Lars Ingebrigtsen  <larsi@gnus.org>
7556
7557         * auth-source.el (auth-source-search): Do a two-phase search, one with
7558         no :create to get the responses from all backends.
7559
7560         * nnimap.el (nnimap-open-connection-1): Delete duplicate server names
7561         when getting credentials.
7562
7563         * gnus-util.el (gnus-delete-duplicates): New function.
7564
7565 2011-02-17  Teodor Zlatanov  <tzz@lifelogs.com>
7566
7567         * nnimap.el (nnimap-credentials): Instead of picking the first port as
7568         a creation default, pass the whole port list down.  It will be
7569         completed.
7570
7571         * auth-source.el (auth-source-search): Updated docs to talk about
7572         multiple creation choices.
7573         (auth-source-netrc-create): Accept a list as a value (from the search
7574         parameters) and do completion on that list.  Keep a separate netrc line
7575         with the password obscured for showing the user.
7576
7577         * nnimap.el (nnimap-open-connection-1): Make the `nnimap-address' the
7578         first choice to `auth-source-search' so it will be used for entry
7579         creation instead of the server's Gnus-specific name.
7580         (nnimap-credentials): Rely on the auth-source library to select which
7581         port is actually wanted in the new netrc entry, so don't override
7582         `auth-source-creation-defaults'.
7583
7584         * auth-source.el (auth-source-netrc-parse): Use :port instead of
7585         :protocol and accept a missing user, host, or port as a wildcard match.
7586         (auth-source-debug): Default to off.
7587
7588         (auth-source-netrc-search, auth-source-netrc-create)
7589         (auth-source-secrets-search, auth-source-secrets-create)
7590         (auth-source-user-or-password, auth-source-backend, auth-sources)
7591         (auth-source-backend-parse-parameters, auth-source-search): Use :port
7592         instead of :protocol.
7593
7594         * nnimap.el (nnimap-credentials): Pass a port default to
7595         `auth-source-search' in case an entry needs to be created.
7596         (nnimap-open-connection-1): Use :port instead of :protocol.
7597
7598 2011-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
7599
7600         * auth-source.el: Bind load-path when loading EIEIO from
7601         "gnus-fallback-lib/eieio"; don't pass more than two args, that XEmacs
7602         21.4 doesn't support, to `require'.
7603         (auth-source-secrets-search): Use mm-delete-duplicates instead of
7604         delete-dups that is not available in XEmacs 21.4.
7605
7606 2011-02-16  Raphael Kubo da Costa  <kubito@gmail.com>  (tiny change)
7607
7608         * auth-source.el: Correctly load EIEIO from "gnus-fallback-lib/eieio"
7609         as EIEIO must also be loaded when auth-source.el is being
7610         byte-compiled.
7611
7612 2011-02-16  Teodor Zlatanov  <tzz@lifelogs.com>
7613
7614         * gnus-fallback-lib/eieio/eieio.el: Copy from Emacs.
7615
7616         * gnus-fallback-lib/eieio/eieio-speedbar.el: Copy from Emacs.
7617
7618         * gnus-fallback-lib/eieio/eieio-opt.el: Copy from Emacs.
7619
7620         * gnus-fallback-lib/eieio/eieio-datadebug.el: Copy from Emacs.
7621
7622         * gnus-fallback-lib/eieio/eieio-custom.el: Copy from Emacs.
7623
7624         * gnus-fallback-lib/eieio/eieio-comp.el: Copy from Emacs.
7625
7626         * gnus-fallback-lib/eieio/eieio-base.el: Copy from Emacs.
7627
7628         * auth-source.el: Load EIEIO from "gnus-fallback-lib/eieio" if
7629         necessary.
7630
7631 2011-02-16  Lars Ingebrigtsen  <larsi@gnus.org>
7632
7633         * gnus-sum.el (gnus-propagate-marks): Change default to t again, since
7634         nil means that nnimap doesn't get updated.
7635
7636 2011-02-16  Teodor Zlatanov  <tzz@lifelogs.com>
7637
7638         * auth-source.el (auth-source-netrc-create): Return a synthetic search
7639         result when the user doesn't want to write to the file.
7640         (auth-source-netrc-search): Expect a synthetic result and proceed
7641         accordingly.
7642         (auth-source-cache-expiry): New variable to override
7643         `password-cache-expiry'.
7644         (auth-source-remember): Use it.
7645
7646         * nnimap.el (nnimap-credentials): Remove the `inhibit-create'
7647         parameter.  Create entry if necessary by using :create t.
7648         (nnimap-open-connection-1): Don't pass `inhibit-create'.
7649
7650 2011-02-15  Teodor Zlatanov  <tzz@lifelogs.com>
7651
7652         * auth-source.el (auth-source-debug): Enable by default and don't
7653         mention the obsolete `auth-source-hide-passwords'.
7654         (auth-source-do-warn): New function to debug unconditionally.
7655         (auth-source-do-debug): Use it.
7656         (auth-source-backend-parse): Use it for invalid `auth-sources' entries
7657         and for Secrets API entries when the secrets.el library is not
7658         available.
7659
7660 2011-02-14  Lars Ingebrigtsen  <larsi@gnus.org>
7661
7662         * gnus-sum.el (gnus-propagate-marks): Default to nil.
7663         (gnus-summary-exit): Kill the correct article buffer on exit from a
7664         `C-d' group.
7665
7666         * gnus-start.el (gnus-use-backend-marks): Removed, since it duplicates
7667         gnus-propagate-marks.
7668
7669         * gnus-sum.el (gnus-summary-exit-no-update): Restore the group conf
7670         before killing the buffers so that a non-full window conf gets handled
7671         correctly.
7672         (gnus-summary-exit): Ditto.
7673         (gnus-summary-read-group-1): Ditto.
7674
7675         * nntp.el (nntp-retrieve-group-data-early): Reinstate the two-part
7676         async code again so that we can debug it properly.
7677
7678         * message.el (message-reply): Take an optional switch-buffer parameter
7679         so that Gnus window confs are respected better.
7680
7681 2011-02-14  Teodor Zlatanov  <tzz@lifelogs.com>
7682
7683         * auth-source.el (auth-source-backend-parse-parameters): Don't rely on
7684         `plist-get' to accept non-list parameters (XEmacs issue).
7685         Fix docstring.
7686         (auth-source-secrets-search): Use `delete-dups', `append mapcar', and
7687         `butlast' instead of `remove-duplicates', `mapcan', and `subseq'.
7688         (auth-sources, auth-source-backend-parse, auth-source-secrets-search):
7689         Login collection is "Login" and not "login".
7690
7691 2011-02-14  Lars Ingebrigtsen  <larsi@gnus.org>
7692
7693         * gnus-art.el (article-update-date-lapsed): Don't bug out when updating
7694         multiple headers.
7695
7696         * nnimap.el (nnimap-inhibit-logging): New variable.
7697         (nnimap-log-command): Don't log login commands.
7698
7699         * auth-source.el (auth-source-netrc-search): The asserts seem to want
7700         to have more parameters.
7701
7702         * nnimap.el (nnimap-send-command): Mark the command time for each
7703         command, so that we don't get NOOPs stepping on our toes.
7704
7705         * gnus-art.el (article-date-ut): Get the date from the Date header on
7706         `t'.
7707
7708 2011-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
7709
7710         * auth-source.el (auth-source-search): Use copy-sequence instead of
7711         the cl.el copy-list.
7712
7713 2011-02-13  Teodor Zlatanov  <tzz@lifelogs.com>
7714
7715         * imap.el: Bring it back (revert
7716         84d800cd31de3064f0ed39617d725709a2f8f42f).
7717
7718 2011-02-13  Adam Sjøgren  <asjo@koldfront.dk>
7719
7720         * gnus-delay.el (gnus-delay-article) Fix number of seconds per day.
7721         Improve prompt.
7722
7723 2011-02-13  Lars Ingebrigtsen  <larsi@gnus.org>
7724
7725         * gnus-art.el (gnus-article-mode-line-format): Remove the article
7726         washing status from the default format.  It isn't very informative.
7727
7728 2011-02-13  Tassilo Horn  <tassilo@member.fsf.org>  (tiny change)
7729
7730         * nnimap.el (nnimap-request-accept-article, nnimap-process-quirk):
7731         Fix Gcc processing on imap.
7732
7733 2011-02-13  Teodor Zlatanov  <tzz@lifelogs.com>
7734
7735         * imap.el: Remove file.  All the functionality is in nnimap.el.
7736
7737 2011-02-10  Stefan Monnier  <monnier@iro.umontreal.ca>
7738
7739         * message.el (message-bury): Don't pop up a new window when selected
7740         window is dedicated.
7741
7742 2011-02-10  Antoine Levitt  <antoine.levitt@gmail.com>  (tiny change)
7743
7744         * gnus-sum.el (gnus-summary-save-parts): Use read-directory-name.
7745
7746 2011-02-10  Teodor Zlatanov  <tzz@lifelogs.com>
7747
7748         * sieve-manage.el: Autoload `auth-source-search'.
7749         (sieve-sasl-auth): Use it.
7750
7751 2011-02-09  Teodor Zlatanov  <tzz@lifelogs.com>
7752
7753         * nnimap.el: Autoload `auth-source-forget+'.
7754         (nnimap-open-connection-1): Use it if the connection fails.
7755
7756         * auth-source.el: Require `password-cache'.
7757         (auth-source-hide-passwords, auth-source-cache): Remove and mark
7758         obsolete.
7759         (auth-source-magic): Marker for `password-cache' keys.
7760         (auth-source-do-cache): Update docstring.
7761         (auth-source-search): Use and check cache.
7762         (auth-source-forget-all-cached, auth-source-remember)
7763         (auth-source-recall, auth-source-forget, auth-source-forget+)
7764         (auth-source-specmatchp): Caching support functions.
7765         (auth-source-forget-user-or-password, auth-source-forget-all-cached):
7766         Remove and obsolete.
7767         (auth-source-user-or-password): Remove caching to further discourage
7768         using it.  Always hide passwords.
7769
7770         * password-cache.el (password-cache-remove): Accept secrets that are
7771         not strings.
7772
7773 2011-02-09  Lars Ingebrigtsen  <larsi@gnus.org>
7774
7775         * nntp.el (nntp-retrieve-group-data-early-disabled): Disable the async
7776         code for now, since it doesn't work for all users.
7777
7778 2011-02-09  Julien Danjou  <julien@danjou.info>
7779
7780         * message.el (message-options): Make message-options really buffer
7781         local.
7782
7783 2011-02-08  Teodor Zlatanov  <tzz@lifelogs.com>
7784
7785         * mail-source.el: Autoload `auth-source-search'.
7786         (mail-source-keyword-map): Note order matters.
7787         (mail-source-set-1): Get all the mail-source source values and
7788         defaults and search auth-source on those if needed.  This can all
7789         probably be simplified.
7790
7791         * nnimap.el: Autoload `auth-source-search'.
7792         (nnimap-credentials): Use it.
7793         (nnimap-open-connection-1): Ask for the virtual server and physical
7794         address in one shot.
7795
7796         * nntp.el: Autoload `auth-source-search'.
7797         (nntp-send-authinfo): Use it.  Note TODO.
7798
7799 2011-02-08  Julien Danjou  <julien@danjou.info>
7800
7801         * shr.el (shr-tag-body): Add support for text attribute in body
7802         markups.
7803
7804         * message.el (message-options): Make message-options a local variable.
7805
7806 2011-02-07  Teodor Zlatanov  <tzz@lifelogs.com>
7807
7808         * auth-source.el (auth-source-secrets-search)
7809         (auth-source-user-or-password): Use `append' instead of `nconc'.
7810         (auth-source-user-or-password): Build return list better and protect
7811         against nil :secret.
7812
7813 2011-02-07  Lars Ingebrigtsen  <larsi@gnus.org>
7814
7815         * nnimap.el (nnimap-update-info): Refactor slightly.
7816         (nnimap-update-info): Tell Gnus whether there are any \Recent messages.
7817         (nnimap-update-info): Clean up slightly.
7818         (nnimap-quirk): Add quirk for Gmail IMAP which bugs out on NUL
7819         characters.
7820         (nnimap-process-quirk): Rename function to avoid collision.
7821         (nnimap-update-info): Fix macrology bug-out.
7822         (nnimap-update-info): Simplify split history test.
7823
7824 2011-02-06  Michael Albinus  <michael.albinus@gmx.de>
7825
7826         * auth-source.el (top): Require 'eieio unconditionally.
7827         Autoload `secrets-get-attributes' instead of `secrets-get-attribute'.
7828         (auth-source-secrets-search): Limit search when `max' is greater than
7829         number of results.
7830
7831 2011-02-06  Lars Ingebrigtsen  <larsi@gnus.org>
7832
7833         * nntp.el (nntp-finish-retrieve-group-infos): Protect against the first
7834         part not returning any data.
7835
7836         * proto-stream.el (open-protocol-stream): Document the return value.
7837
7838 2011-02-06  Teodor Zlatanov  <tzz@lifelogs.com>
7839
7840         * auth-source.el (auth-source-secrets-search): Add examples.
7841
7842 2011-02-06  Julien Danjou  <julien@danjou.info>
7843
7844         * message.el (message-setup-1): Handle message-generate-headers-first
7845         set to t.
7846
7847 2011-02-06  Teodor Zlatanov  <tzz@lifelogs.com>
7848
7849         * auth-source.el (auth-sources): Allow for simpler defaults for Secrets
7850         API with a string "secrets:collection-name" and with 'default.
7851         (auth-source-backend-parse): Parse "secrets:collection-name" and
7852         'default.  Recurse on parses instead of repeating code.  Use the
7853         Secrets API is the source is not nil and 'ignore otherwise.  Emit a
7854         message when ignoring a source.
7855         (auth-source-search): List ignored search keys at the top level.
7856         (auth-source-netrc-create): Use `case' instead of `cond'.
7857         (auth-source-secrets-search): Created with TODOs.
7858         (auth-source-secrets-create): Created with TODOs.
7859         (auth-source-retrieve, auth-source-create, auth-source-delete)
7860         (auth-source-protocol-defaults, auth-source-user-or-password-imap)
7861         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
7862         (auth-source-user-or-password-sftp)
7863         (auth-source-user-or-password-smtp): Remove.
7864         (auth-source-user-or-password): Deprecated and modified to be a wrapper
7865         around `auth-source-search'.  Not tested thoroughly.
7866
7867 2011-02-04  Teodor Zlatanov  <tzz@lifelogs.com>
7868
7869         * auth-source.el: Bring in assoc and eioeio libraries.
7870         (secrets-enabled): New variable to track the status of the Secrets API.
7871         (auth-source-backend): New EIOEIO class to represent a backend.
7872         (auth-source-creation-defaults): New variable to set prompt defaults
7873         during token creation (see the `auth-source-search' docstring for
7874         details).
7875         (auth-sources): Simplify to allow a simple string as a netrc backend
7876         spec.
7877         (auth-source-backend-parse): Parse a backend from an `auth-sources' spec.
7878         (auth-source-backend-parse-parameters): Fill in the backend parameters.
7879         (auth-source-search): Main auth-source API entry point.
7880         (auth-source-delete): Wrapper around `auth-source-search' for deletion.
7881         (auth-source-search-collection): Helper function for searching.
7882         (auth-source-netrc-parse, auth-source-netrc-normalize)
7883         (auth-source-netrc-search, auth-source-netrc-create): Netrc backend.
7884         Supports search, create, and delete.
7885         (auth-source-secrets-search, auth-source-secrets-create): Secrets API
7886         backend stubs.
7887         (auth-source-user-or-password): Call `auth-source-search' but it's not
7888         ready yet.
7889
7890 2011-02-04  Lars Ingebrigtsen  <larsi@gnus.org>
7891
7892         * message.el (message-setup-1): Remove the read-only stuff, since it
7893         doesn't work under XEmacs, for some reason.
7894
7895         * gnus-sum.el (gnus-user-date): Rename back from
7896         gnus-summary-user-date since user code refers to it.
7897
7898         * shr.el (shr-render-td): Store the actual background color used.
7899
7900         * message.el (message-setup-1): Don't bind the constant
7901         -forbidden-properties.
7902         (message-setup-1): Revert previous change, since it needs to bind the
7903         props to insert them.
7904         (message-resend): Allow removing the read-only separator line.
7905
7906 2011-02-03  Lars Ingebrigtsen  <larsi@gnus.org>
7907
7908         * nnimap.el (nnimap-request-accept-article): Give an error message if
7909         the APPEND wasn't successful.
7910
7911 2011-02-03  Adam Sjøgren  <asjo@koldfront.dk>
7912
7913         * gnus-start.el (gnus-get-unread-articles): Fix the call to methods
7914         that have no groups.
7915
7916 2011-02-03  Julien Danjou  <julien@danjou.info>
7917
7918         * gnus-draft.el: Remove progn around gnus-draft-setup.
7919
7920 2011-02-03  Lars Ingebrigtsen  <larsi@gnus.org>
7921
7922         * gnus-start.el (gnus-read-active-for-groups): This function is never
7923         called with a nil `infos', so clean that up.
7924         (gnus-get-unread-articles): Request active files from primary/secondary
7925         methods that have no groups (yet).
7926
7927 2011-02-03  Julien Danjou  <julien@danjou.info>
7928
7929         * message.el (message-setup-1): Always generate References first.
7930         (message-mail): Return the return value of message-setup, not always t.
7931         (message-setup-1): Insert mail-header-separator with read-only and
7932         intangible properties set.
7933
7934         * gnus.el (gnus-summary-line-format): Add missing semi-colon for
7935         user-date in docstring.
7936
7937         * gnus-art.el (gnus-article-jump-to-part): Remove useless sit-for.
7938
7939         * gnus.el (gnus-summary-line-format): Mention &user-date format in
7940         docstring.
7941
7942         * gnus.el (gnus-user-date-format-alist): Change default value.
7943         Use defcustom, with type and group.  Move from gnus-util.el.
7944         Rename to gnus-summary-user-date-format-alist.
7945
7946 2011-02-03  Glenn Morris  <rgm@gnu.org>
7947
7948         * nnimap.el (gnus-fetch-headers): Declare.
7949
7950         * nnheader.el (gnus-range-add, gnus-remove-from-range): Autoload.
7951
7952 2011-02-03  Lars Ingebrigtsen  <larsi@gnus.org>
7953
7954         * message.el (message-forward-make-body-digest-plain)
7955         (message-followup, message-reply): Clean up things noted by Stefan.
7956
7957         * gnus-art.el (gnus-article-setup-buffer): Stop the date timer if
7958         gnus-article-update-date-headers is nil.
7959         (gnus-article-date-headers): Rip out the old -treat-date-* stuff, since
7960         it didn't really work with defcustom.
7961         (article-update-date-lapsed): Make sure the window start doesn't move,
7962         either.
7963
7964 2011-02-01  Julien Danjou  <julien@danjou.info>
7965
7966         * mm-uu.el (mm-uu-type-alist): Add support for git format-patch diff
7967         format.
7968
7969         * mm-decode.el (mm-inline-media-tests): Do not check for diff-mode it's
7970         standard in Emacs nowadays.
7971
7972         * color.el (color-gradient): Add a color-gradient function.
7973
7974 2011-02-01  Stefan Monnier  <monnier@iro.umontreal.ca>
7975
7976         * message.el (message-expand-name): Don't trust the return value of
7977         bbdb-complete-name.
7978         (message-check-news-header-syntax): Remove unused var `start'.
7979         (message-idna-to-ascii-rhs-1): Remove unused vars `rhs' and `address'.
7980         (message-inhibit-body-encoding): Move to before first use.
7981         (mail-abbrev-mode-regexp, Expires, User-Agent, Lines, Distribution)
7982         (To, References, In-Reply-To, Newsgroups, Subject, Path, From)
7983         (Organization, Message-ID, Date, mh-previous-window-config):
7984         Defvar the vars using dynamic scoping.
7985
7986 2011-02-01  Lars Ingebrigtsen  <larsi@gnus.org>
7987
7988         * shr.el (shr-render-td): Only do colors at the final rendering.
7989         Should be slightly faster.
7990         (shr-insert-table): Fix up TD background colors when doing the
7991         vertical padding.
7992
7993         * gnus-art.el (article-date-ut): Protect against articles with no Date
7994         header.
7995         (article-update-date-lapsed): Don't use current-column to find the
7996         horizontal position.  It's fragile in the presence of \003 characters.
7997
7998         * gnus-start.el (gnus-read-active-file-1): Remove dead parameter infos.
7999
8000 2011-01-31  Lars Ingebrigtsen  <larsi@gnus.org>
8001
8002         * gnus-art.el (article-transform-date): Rewrite to still work when
8003         there are several rfc2822 parts.
8004         (article-transform-date): Fix infinite recursion.
8005         (article-date-ut): Replace infinitely many Date headers with a single
8006         one when called interactively.
8007
8008         * nnimap.el (nnimap-wait-for-response): Wait for results in a more
8009         secure manner.
8010
8011         * gnus-art.el (article-update-date-lapsed): Try to avoid having point
8012         move around by not using save-window-excursion.  It seems to work...
8013
8014 2011-01-31  Katsumi Yamaoka  <yamaoka@jpl.org>
8015
8016         * gnus-art.el (article-make-date-line): Work for user-defined format.
8017
8018 2011-01-31  Lars Ingebrigtsen  <larsi@gnus.org>
8019
8020         * nntp.el (nntp-retrieve-group-data-early)
8021         (nntp-finish-retrieve-group-infos): Implement the asynchronous data
8022         fetching functions.
8023
8024         * gnus-start.el (gnus-read-active-for-groups): Read the active files
8025         thoroughly for all backends that have no known groups.  This should
8026         allow new nnml methods to retrieve mail.
8027
8028         * gnus-group.el (gnus-group-jump-to-group): Allow jumping to groups
8029         that Gnus doesn't know exists again.
8030
8031         * gnus-art.el (gnus-article-date-lapsed-new-header): Remove.
8032         (gnus-treat-date-ut): Ditto.
8033         (gnus-article-update-date-header): Rename.
8034         (gnus-treat-date-local): Remove.
8035         (gnus-treat-date-english): Remove.
8036         (gnus-treat-date-lapsed): Remove.
8037         (gnus-treat-date-combined-lapsed): Remove.
8038         (gnus-treat-date-original): Remove.
8039         (gnus-treat-date-iso8601): Remove.
8040         (gnus-treat-date-user-defined): Remove.
8041         (gnus-article-date-headers): New variable to control all the date
8042         header options.
8043         (article-date-ut): Rewrite to allow using the new way to format date
8044         headers(s).
8045
8046 2011-01-30  Lars Ingebrigtsen  <larsi@gnus.org>
8047
8048         * nnmail.el (nnmail-article-group): Check for a direct fancy split
8049         method.
8050         (nnmail-article-group): A better test for fanciness.
8051
8052         * nnimap.el (nnimap-request-head): Protect against not finding the
8053         article by Message-ID.
8054
8055 2011-01-29  Lars Ingebrigtsen  <larsi@gnus.org>
8056
8057         * gnus-art.el (article-update-date-lapsed): Try a better way to really
8058         keep point at the "same place".
8059
8060 2011-01-28  Lars Ingebrigtsen  <larsi@gnus.org>
8061
8062         * gnus-sum.el (gnus-select-newsgroup): Don't try to alter the active
8063         data if the group is inactive.
8064
8065 2011-01-28  Julien Danjou  <julien@danjou.info>
8066
8067         * gnus-win.el: Remove dead function gnus-window-configuration-element.
8068         (gnus-all-windows-visible-p): Remove old compatibility code.
8069         (gnus-window-top-edge): Add docstring.
8070
8071         * gnus-group.el (gnus-group-jump-to-group): Set must match to t.
8072
8073 2011-01-28  Lars Ingebrigtsen  <larsi@gnus.org>
8074
8075         * gnus-int.el (gnus-request-marks): Call *-request-marks instead of the
8076         older request-update-info.
8077
8078         * gnus-art.el (article-make-date-line): Limit the length a bit more.
8079
8080 2011-01-28  Daiki Ueno  <ueno@unixuser.org>
8081
8082         * mml2015.el (mml2015-epg-sign, mml2015-epg-encrypt):
8083         Give mml2015-signers higher precedence over mml2015-sign-with-sender.
8084
8085 2011-01-27  Lars Ingebrigtsen  <larsi@gnus.org>
8086
8087         * gnus-group.el (gnus-group-refresh-group): Refresh even non-visible
8088         groups.  This makes the nndraft:queue group pop up if it's not already
8089         there.
8090
8091         * gnus-sum.el (gnus-summary-read-group-1): Fix the "contains no
8092         messages" logic, which was reversed.
8093
8094         * gnus-art.el (article-update-date-lapsed): Ensure that point stays at
8095         the "same place" even if point is on the line being replaced.
8096         (article-update-date-lapsed): Allow updating both the combined lapsed
8097         and the lapsed headers.
8098         (article-update-date-lapsed): Skip past all the X-Sent/Date headers.
8099         (article-make-date-line): Limit the number of segments dynamically to
8100         avoid too-long lines.
8101
8102 2011-01-27  Julien Danjou  <julien@danjou.info>
8103
8104         * mml2015.el (mml2015-epg-sign): Add and use mml2015-sign-with-sender.
8105         (mml2015-epg-encrypt): Use mml2015-sign-with-sender.
8106
8107 2011-01-27  Katsumi Yamaoka  <yamaoka@jpl.org>
8108
8109         * shr.el (shr-expand-newlines, shr-previous-newline-padding-width):
8110         Use plist-get instead of the cl function getf.
8111
8112 2011-01-27  Glenn Morris  <rgm@gnu.org>
8113
8114         * gnus-util.el (float-time): Get rid of compiler warning, again.
8115
8116 2011-01-27  Lars Ingebrigtsen  <larsi@gnus.org>
8117
8118         * shr.el (shr-put-color): Special-case background colors: Do put them
8119         at the blank parts at the front of the lines.
8120
8121         * gnus-draft.el (gnus-draft-clear-marks): New function to be run as an
8122         exit hook to nix out all data on readedness on group exit.
8123
8124         * gnus-util.el (float-time): If float-time is bound, always use it on
8125         all Emacsen.  It's unclear why the subrp check was there.
8126         (time-date): Require to make some autoload issues on XEmacs go away.
8127
8128         * shr.el (shr-put-color): Don't do the box padding in tables, since
8129         they're already padded.
8130
8131 2011-01-26  Lars Ingebrigtsen  <larsi@gnus.org>
8132
8133         * gnus-art.el (gnus-article-next-page): When the last line of the
8134         article is displayed, scroll down once more instead of going to the
8135         next article at once.
8136         (article-lapsed-string): Refactor out and allow specifying how many
8137         segments you want.
8138         (gnus-article-setup-buffer): Start updating the lapsed header directly.
8139         (gnus-article-update-lapsed-header): New variable.
8140
8141         * shr.el: Revert change that made headings use different-sized faces.
8142         The Emacs display engine isn't advanced enough that, for instance,
8143         tables can comfortably use differently-sized faces.
8144
8145 2011-01-25  Lars Ingebrigtsen  <larsi@gnus.org>
8146
8147         * nnimap.el (nnimap-open-connection-1): Store the actual stream type
8148         used.
8149         (nnimap-login): Prefer plain LOGIN if it's enabled (since it requires
8150         fewer round trips than CRAM-MD5, and it's less likely to be buggy), and
8151         we're using an encrypted connection.
8152
8153         * proto-stream.el: Alter the interface functions to also return the
8154         actual stream type used: network or tls.
8155
8156 2011-01-25  Julien Danjou  <julien@danjou.info>
8157
8158         * mm-view.el (mm-display-shell-script-inline): Fix typo in docstring.
8159         (mm-display-javascript-inline): New function.
8160
8161         * mm-decode.el (mm-inline-media-tests): Add application/javascript
8162         viewing function.
8163
8164 2011-01-25  Katsumi Yamaoka  <yamaoka@jpl.org>
8165
8166         * shr.el (shr-expand-newlines): Fix variable name.
8167
8168 2011-01-25  Lars Ingebrigtsen  <larsi@gnus.org>
8169
8170         * shr.el (shr-expand-newlines): Make nested boxes work.
8171
8172 2011-01-24  Lars Ingebrigtsen  <larsi@gnus.org>
8173
8174         * shr.el (shr-expand-newlines): Proof of concept implementation of boxy
8175         backgrounds.
8176         (shr-expand-newlines): Switch to using overlays to enable kill'n'yank
8177         in a more sensible manner.
8178
8179 2011-01-24  Teodor Zlatanov  <tzz@lifelogs.com>
8180
8181         * mml-smime.el (mml-smime-use): Make it a defcustom and default to 'epg
8182         if EPG is loaded.
8183
8184 2011-01-24  Julien Danjou  <julien@danjou.info>
8185
8186         * shr.el: Use defface to create shr-tag-h[1-6] faces to fontify h[1-6]
8187         tags.
8188
8189 2011-01-24  Lars Ingebrigtsen  <larsi@gnus.org>
8190
8191         * gnus-art.el (gnus-article-read-summary-keys): Don't call disabled
8192         commands.
8193
8194         * gnus-gravatar.el (gnus-gravatar-insert): Don't move point around
8195         in the article buffer.
8196         (gnus-gravatar-insert): Use blank space from the current buffer to
8197         avoid breaking text properties.  This makes X-Sent updating work again.
8198
8199         * gravatar.el (gravatar-retrieve): Be silent when retrieving.
8200
8201 2011-01-23  Lars Ingebrigtsen  <larsi@gnus.org>
8202
8203         * gnus-html.el (gnus-html-image-fetched): Kill the buffer anyway, and
8204         fix the bug in url-http.el instead.
8205
8206         * shr.el (shr-image-fetched): Ditto.
8207
8208         * shr.el (shr-image-fetched): Avoid having point move in the article
8209         buffer.
8210
8211         * gnus-html.el (gnus-html-image-fetched): Don't kill the temporary
8212         buffer after being called.  It's apparently being killed by url.el, and
8213         killing it made point move to end-of-buffer in a random buffer.
8214
8215         * shr.el (shr-image-fetched): Ditto.
8216
8217 2011-01-23  Julien Danjou  <julien@danjou.info>
8218
8219         * mm-decode.el (mm-inline-media-tests): Change text/org to text/x-org.
8220
8221         * mm-uu.el (mm-uu-org-src-code-block-extract): Change text/org to
8222         text/x-org.
8223
8224 2011-01-22  Lars Ingebrigtsen  <larsi@gnus.org>
8225
8226         * gnus-sum.el (gnus-summary-move-article): Protect against backends
8227         (i.e., nnimap) returning nil as the article number.
8228
8229 2011-01-22  Kazuhiro Ito  <kzhr@d1.dion.ne.jp>  (tiny change)
8230
8231         * flow-fill.el (fill-flowed): Make `delete-space' option correspond to
8232         "DelSp" parameter in RFC3676.
8233
8234 2011-01-22  Lars Ingebrigtsen  <larsi@gnus.org>
8235
8236         * message.el (message-check-recipients): Display the encoded version of
8237         the bogus address if they differ.
8238
8239         * gnus-draft.el (gnus-group-send-queue): Really refresh the queue group
8240         after sending.
8241
8242         * gnus-agent.el (gnus-agent-send-mail): Ditto.
8243
8244         * gnus-group.el (gnus-group-refresh-group): New convenience function.
8245
8246         * gnus-draft.el (gnus-group-send-queue): Update the queue group in the
8247         group buffer after sending the queue.
8248
8249         * gnus-agent.el (gnus-agent-send-mail): Ditto.
8250
8251 2011-01-22  Julien Danjou  <julien@danjou.info>
8252
8253         * mailcap.el (mailcap-mime-extensions): Rename text/org to text/x-org.
8254
8255 2011-01-22  Lars Ingebrigtsen  <larsi@gnus.org>
8256
8257         * mm-decode.el (mm-preferred-alternative-precedence): Don't bug out on
8258         nested related parts.
8259
8260         * nnfolder.el (nnfolder-request-expire-articles): Return the list of
8261         unexpired articles.  This fixes the regression that led expiry marks to
8262         disappear from nnfolder groups.
8263
8264 2011-01-21  Stefan Monnier  <monnier@iro.umontreal.ca>
8265
8266         * gnus-art.el (gnus-button-alist, gnus-button-handle-info-keystrokes):
8267         Don't confuse the "ret" of "retrograde" with RET.
8268
8269 2011-01-21  Julien Danjou  <julien@danjou.info>
8270
8271         * gnus-art.el (gnus-mime-display-single): Use mm-display-inline rather
8272         than mm-insert-inline.
8273
8274 2011-01-21  Katsumi Yamaoka  <yamaoka@jpl.org>
8275
8276         * gnus-art.el (gnus-article-remove-images, gnus-article-show-images):
8277         Widen article buffer.
8278
8279 2011-01-20  Stefan Monnier  <monnier@iro.umontreal.ca>
8280
8281         * mm-util.el (mm-find-buffer-file-coding-system): Don't forget to kill
8282         the temp buffer.
8283         * message.el (message-mailer-swallows-blank-line): Use with-temp-buffer.
8284
8285 2011-01-20  Julien Danjou  <julien@danjou.info>
8286
8287         * mm-decode.el (mm-inline-media-tests): Add text/x-sh.
8288
8289         * gnus-art.el (gnus-mime-inline-part): Use mm-display-inline rather
8290         than mm-insert-inline to insert inline part: this respect
8291         mm-inline-media-tests displayers.
8292
8293         * mm-view.el (mm-display-shell-script-inline): New function.
8294
8295         * mm-decode.el (mm-inline-media-tests): Add x-shellscript and x-sh.
8296
8297         * mm-uu.el (mm-uu-type-alist): Add org block.
8298         (mm-uu-org-src-code-block-extract): New function.
8299
8300         * mm-view.el (mm-display-org-inline): New function.
8301
8302         * mm-decode.el (mm-automatic-display): Add text/org.
8303
8304         * mailcap.el (mailcap-mime-extensions): Add .org.
8305
8306 2011-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
8307
8308         * gnus-art.el (gnus-article-highlight): Remove argument passed to
8309         gnus-article-add-buttons.
8310
8311 2011-01-19  Tom Rauchenwald  <sehnsucht.nach.unendlichkeit@quantentunnel.de>  (tiny change)
8312
8313         * spam.el (spam-spamassassin-register-with-sa-learn): Insert a full
8314         From header with a date and "nobody" as the sender.
8315
8316 2011-01-19  Julien Danjou  <julien@danjou.info>
8317
8318         * gnus-art.el (gnus-article-add-buttons): Simplify condition.
8319         (gnus-button-push): Remove gnus-button-entry function, it fails heavily
8320         if you have the same regexp several times.
8321         (gnus-button-push): Fix matching when regexp is symbol.
8322
8323 2011-01-15  Glenn Morris  <rgm@gnu.org>
8324
8325         * message.el (message-mail): A compose-mail function should
8326         accept headers as strings.
8327
8328 2011-01-13  Chong Yidong  <cyd@stupidchicken.com>
8329
8330         * message.el (message-tool-bar-gnome): Tweak tool-bar items.
8331         Add :vert-only tags.
8332         (message-mail): New arg RETURN-ACTION.
8333         (message-return-action): New var.
8334         (message-bury): Use it.
8335         (message-mode): Make it buffer-local.
8336         (message-send-and-exit): Always call message-bury.
8337
8338         * gnus-msg.el (gnus-msg-mail): New arg RETURN-ACTION.  Pass it to
8339         message-mail.
8340
8341 2011-01-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8342
8343         * nnimap.el (nnimap-convert-partial-article): Protect against
8344         zero-length body parts.
8345
8346         * mm-decode.el (mm-preferred-alternative-precedence):
8347         Discourage showing empty parts.
8348
8349         * gnus-int.el (gnus-request-accept-article): Don't try to update marks
8350         and stuff if the backend didn't return the article number.  This fixes
8351         an Exchange-related nnimap bug.
8352
8353         * gnus-sum.el (gnus-summary-next-article): Remove hack to reselect
8354         group window, because it does the wrong thing when a separate frame
8355         displays the group buffer.
8356
8357         * proto-stream.el (open-protocol-stream): Protect against the low-level
8358         transport functions returning nil.
8359
8360 2011-01-07  Daiki Ueno  <ueno@unixuser.org>
8361
8362         * mml2015.el (epg-sub-key-fingerprint): Autoload.
8363         (mml2015-epg-find-usable-secret-key): New function.
8364         (mml2015-epg-sign): Use mml2015-epg-find-usable-secret-key instead of
8365         mml2015-epg-find-usable-key (Bug#7797).
8366         (mml2015-epg-encrypt): Ditto.
8367
8368 2011-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
8369
8370         * dgnushack.el (rot13-string): Fix the way to get the argument.
8371
8372 2011-01-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8373
8374         * flow-fill.el (fill-flowed-encode): Do encoding citation-aware.
8375
8376 2011-01-03  Glenn Morris  <rgm@gnu.org>
8377
8378         * sieve-manage.el (sieve-manage-open): Correctly set sieve-manage-port.
8379
8380         * sieve.el (sieve-open-server): Give a more explicit error if
8381         sieve-manage-open returns nil.  (Bug#7720)
8382
8383 2011-01-02  Karl Fogel  <kfogel@red-bean.com>
8384
8385         * gnus-msg.el (gnus-message-replyencrypt): Default to `t'.
8386
8387 2011-01-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8388
8389         * nnimap.el (nnimap-login): Prefer AUTH=CRAM-MD5, if it's available.
8390         This avoids sending passwords in plain text over non-encrypted
8391         channels.
8392
8393         * shr.el (shr-rescale-image): Display all GIF images as animated images.
8394
8395         * nnimap.el (nnimap-login): Refactored out into own function, and
8396         implement CRAM-MD5.
8397         (nnimap-wait-for-line): Refactored out.
8398
8399         * mm-view.el (mml-smime): Require.
8400
8401 2010-12-20  David Engster  <deng@eml.cc>
8402
8403         * mm-view.el (mm-view-pkcs7-decrypt): If mml-smime-use is set to 'epg,
8404         use EPG to decrypt S/MIME messages instead of openssl.
8405
8406 2011-01-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8407
8408         * nnimap.el (nnimap-request-group): Avoid double SELECT on `M-g'.
8409
8410         * gnus-group.el (gnus-group-kill-group): Don't try to update the group
8411         status is the group clearly is unreachable.
8412
8413         * auth-source.el (auth-source-create): Add the optional second
8414         parameter to `local-variable-p' to be compatible with XEmacs.
8415
8416 2011-01-02  Wang Diancheng  <dcwang@kingbase.com.cn>  (tiny change)
8417
8418         * nnml.el (nnml-request-article): Allow requesting by Message-ID to
8419         work when using a compressed nnml folder.
8420
8421 2011-01-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8422
8423         * gnus-sum.el (gnus-select-newsgroup): Don't propagate marks to
8424         backends after sanitising on entry, because this never makes sense:
8425         If the articles have gone missing, then the data no longer exists on
8426         the backend, and if they haven't, then Gnus is wrong, and shouldn't
8427         overwrite anything anyway.
8428
8429         * shr.el (shr-insert-document): Bind shr-width dynamically to
8430         window-width if it's nil.
8431
8432 2010-12-30  Tassilo Horn  <tassilo@member.fsf.org>
8433
8434         * shr.el (shr-width, shr-insert-document): Allow nil as shr-width value
8435         with the meaning of using the full emacs window width for rendering.
8436
8437 2010-12-27  Daiki Ueno  <ueno@unixuser.org>
8438
8439         * mml2015.el (mml2015-epg-sign, mml2015-epg-encrypt): Take care the
8440         case when sender is not given.
8441
8442 2010-12-23  Julien Danjou  <julien@danjou.info>
8443
8444         * gnus-gravatar.el (gnus-gravatar-transform-address): Set
8445         `mail-extr-ignore-realname-equals-mailbox-name' to nil when extracting
8446         the addresses, otherwise we might misplaced the gravatar.
8447
8448 2010-12-21  Daiki Ueno  <ueno@unixuser.org>
8449
8450         * mml1991.el (pgg-sign-region, pgg-encrypt-region):
8451         * gnus-art.el (pgg-snarf-keys-region): Autoload since PGG is now
8452         obsolete in Emacs.
8453
8454 2010-12-20  Julien Danjou  <julien@danjou.info>
8455
8456         * gnus-util.el (gnus-rescale-image): Revert last change.
8457
8458 2010-12-17  Chong Yidong  <cyd@stupidchicken.com>
8459
8460         * binhex.el: Improve commentary (Bug#7482).
8461
8462 2010-12-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8463
8464         * gnus-group.el (gnus-group-delete-articles): New command.
8465
8466 2010-12-17  Andrew Cohen  <cohen@andy.bu.edu>
8467
8468         * nnir.el (nnir-mode): Make sure 'gnus-registry-install is bound.
8469
8470 2010-12-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8471
8472         * gnus-sum.el (gnus-get-newsgroup-headers): Revert the last change
8473         here, since it's up to the backends to do CRLF removal if their
8474         protocol has it.
8475
8476         * nnimap.el (nnimap-retrieve-headers): Remove CRLF from the headers.
8477
8478 2010-12-17  Julien Danjou  <julien@danjou.info>
8479
8480         * gnus-util.el (gnus-rescale-image): Allow to resize images even if
8481         they are from file.  Can also scale up.
8482
8483 2010-12-17  Andrew Cohen  <cohen@andy.bu.edu>
8484
8485         * gnus-sum.el (gnus-summary-refer-thread): Simplify code.
8486         Restore gnus-use-agent.
8487         (gnus-get-newsgroup-headers): Avoid unwanted spaces at eol.
8488
8489         * nnir.el (nnir-get-active): Ignore nnir-ignored-newsgroups if null.
8490
8491 2010-12-17  Julien Danjou  <julien@danjou.info>
8492
8493         * gravatar.el (gravatar-retrieve-synchronously): New function.
8494         (gravatar-get-data): Make more robust.
8495
8496 2010-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
8497
8498         * lpath.el: Bind epa-file-encrypt-to for Emacs 22 and XEmacs.
8499
8500 2010-12-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8501
8502         * nnimap.el (nnimap-wait-for-response): Fix the end-point calculation
8503         to really consider the last line.
8504
8505 2010-12-16  Daiki Ueno  <ueno@unixuser.org>
8506
8507         * auth-source.el (auth-source-gpg-encrypt-to): New variable to set the
8508         list of recipient keys, or use symmetric encryption if not a list.
8509         (auth-source-create): Use it to make `epa-file-encrypt-to' local for an
8510         EPA override, replacing the call to `netrc-store-data'.
8511
8512 2010-12-16  Dan Davison  <dandavison7@gmail.com>  (tiny change)
8513
8514         * gnus-srvr.el: Avoid passing nil regexp argument to
8515         delete-matching-lines.
8516
8517 2010-12-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8518
8519         * gnus-html.el (gnus-html-schedule-image-fetching): Make sure the HTML
8520         fetching stops when Gnus exits.
8521
8522         * nnfolder.el (nnfolder-save-all-buffers): Refactor out into its own
8523         function.
8524         (nnfolder-request-expire-articles): Save all the buffers after doing
8525         expiry.
8526
8527         * nnmail.el (nnmail-expiry-target-group): Revert the "all articles are
8528         the last article", since that led to serious performance regressions
8529         when expiring nnml groups.
8530
8531 2010-12-16  Andrew Cohen  <cohen@andy.bu.edu>
8532
8533         * nnir.el: Improve customizations.
8534
8535 2010-12-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8536
8537         * gnus-start.el (gnus-subscribe-newsgroup): Notify the backend.
8538
8539         * gnus-group.el (gnus-group-kill-group): Notify the backend that the
8540         group has been killed.
8541         (gnus-group-yank-group): Ditto.
8542
8543         * gnus-srvr.el (gnus-browse-unsubscribe-group): Ditto.
8544
8545         * nnimap.el (nnimap-request-update-group-status): New function.
8546
8547         * gnus-int.el (gnus-request-update-group-status): New interface
8548         function.
8549
8550         * gnus-sum.el (gnus-summary-push-marks-to-backend): Fix the logic for
8551         copying read-ness to the backends.
8552
8553         * nnimap.el (nnimap-quirk): New function.
8554         (nnimap-retrieve-group-data-early): Use it.
8555         (nnimap-quirks): New alist.
8556
8557 2010-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
8558
8559         * shr.el (shr-insert): Set shr-start after deleting trailing space;
8560         don't delete it within indentation.
8561
8562 2010-12-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8563
8564         * nnimap.el (nnimap-wait-for-response): Always look (at least) at the
8565         previous line.
8566
8567 2010-12-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8568
8569         * nnimap.el (nnimap-retrieve-group-data-early): Fix the syntax of the
8570         QRESYNC command by deleting a superfluous space which broke Cyrus
8571         servers.  This change will break other servers that are buggy the other
8572         way around.
8573
8574 2010-12-14  Teodor Zlatanov  <tzz@lifelogs.com>
8575
8576         * spam.el: Reindent and fix long lines.
8577         (spam-copy-or-move-routine): Exclude invalid move destinations.
8578
8579 2010-12-14  Andrew Cohen  <cohen@andy.bu.edu>
8580
8581         * nnir.el (nnir-mode): Don't install registry hooks if user hasn't
8582         installed the registry.
8583
8584 2010-12-14  Katsumi Yamaoka  <yamaoka@jpl.org>
8585
8586         * dgnushack.el (rot13-string): New macro for XEmacs.  netrc.el uses it.
8587
8588 2010-12-13  Andrew Cohen  <cohen@andy.bu.edu>
8589
8590         * nnir.el (nnir-run-gmane): Better check for gmane groups: error out if
8591         groupname doesn't contain "gmane".
8592
8593 2010-12-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8594
8595         * netrc.el (netrc-point-at-eol): Remove the unused netrc-point-at-old
8596         and netrc-bound-and-true-p bindings.
8597         (netrc-parse): Cache the netrc contents.
8598
8599         * gnus-start.el (gnus-matches-options-n): Fix typo in last change.
8600         (gnus-1): Don't create the nndrafts group twice.
8601         (gnus-setup-news): There's no need to read the active file here, since
8602         that's done again later on a per-backend basis.
8603         (gnus-start-draft-setup): Make sure that the new group is started out
8604         empty.
8605
8606         * gnus-agent.el (gnus-agentize): Don't create the queue group
8607         automatically on startup.  It'll be created later, if needed.
8608
8609         * gnus-start.el (gnus-auto-subscribed-groups): Add nnimap to the list
8610         of automatically subscribed groups.
8611         (gnus-auto-subscribed-categories): New variable.
8612         (gnus-matches-options-n): Use it.
8613         (gnus-default-subscribed-newsgroups): Remove unused variable.
8614         (gnus-start-draft-setup): Message a bit less.
8615
8616 2010-12-13  Andrew Cohen  <cohen@andy.bu.edu>
8617
8618         * nnir.el (nnir-run-imap): Return article list in order of increasing
8619         UID.
8620
8621 2010-12-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8622
8623         * gnus-sum.el (gnus-summary-enter-digest-group):
8624         Mention gnus-auto-select-on-ephemeral-exit.
8625
8626         * proto-stream.el (proto-stream-open-network-only): Fix the calling
8627         convention of the network-only option.
8628
8629 2010-12-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8630
8631         * proto-stream.el (proto-stream-open-network-only): New function to
8632         have a way to specify non-STARTTLS upgrade connections.
8633
8634 2010-12-10  Julien Danjou  <julien@danjou.info>
8635
8636         * gnus-gravatar.el (gnus-gravatar-transform-address): Fix error when
8637         email address is nil.
8638
8639         * message.el (message-bogus-recipient-p): Set address to "" if nil.
8640
8641 2010-12-10  Andrew Cohen  <cohen@andy.bu.edu>
8642
8643         * nnir.el (nnir-request-expire-articles): Ignore expiry except for
8644         deletion.
8645         (nnir-run-imap): Only need to parse list once.
8646
8647 2010-12-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8648
8649         * shr.el (shr-tag-script): Ignore <script>.
8650         (shr-tag-label): Add <label> support.
8651
8652 2010-12-09  Katsumi Yamaoka  <yamaoka@jpl.org>
8653
8654         * mm-util.el (mm-ucs-to-char): Use eval-and-compile.
8655
8656         * shr.el (shr-image-displayer): Work for images lined side by side.
8657
8658 2010-12-08  Robert Pluim  <rpluim@gmail.com>
8659
8660         * gnus-demon.el (gnus-demon-init): Call run-with-timer with an integer
8661         parameter, since XEmacs doesn't accept t as a parameter.
8662
8663 2010-12-08  Andrew Cohen  <cohen@andy.bu.edu>
8664
8665         * nnir.el (nnir-retrieve-headers): Use rassq when comparing article
8666         ids.
8667         (nnir-run-gmane): Simplify groupspec formatting.
8668         (nnir-request-expire-articles): New function.
8669
8670 2010-12-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8671
8672         * nnimap.el (nnimap-parse-flags): Tweak VANISHED regexp to avoid regexp
8673         overflow, possibly.
8674
8675         * shr.el (shr-tag-table-1): Use bg/gfcolor specs on tables.
8676         (shr-render-td): Handle td style="" better.
8677         (shr-tag-table): Use the color from the style sheet.
8678         (shr-render-td): Make sure we copy over all the overlays, too.
8679
8680 2010-12-07  Andrew Cohen  <cohen@andy.bu.edu>
8681
8682         * nnir.el (nnir-run-gmane): Restore sub-optimal test for gmane server.
8683         (nnir-request-article): Improve article retrieval.
8684
8685 2010-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
8686
8687         * mm-util.el (mm-extra-numeric-entities): New variable.
8688
8689         * mm-url.el (mm-url-decode-entities):
8690         * mm-decode.el (mm-shr): Use it to decode extra numeric entities.
8691
8692         * lpath.el: Fbind completion-at-point for Emacs 22 and XEmacs.
8693
8694 2010-12-07  Stefan Monnier  <monnier@iro.umontreal.ca>
8695
8696         * message.el: Use completion-at-point.
8697         (message-completion-function): New fun, extracted from message-tab.
8698         (message-mode): Use it for completion-at-point-functions.
8699         (message-tab): Use it and completion-at-point.
8700
8701 2010-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
8702
8703         * shr.el (shr-find-fill-point): Don't break a line after a kinsoku-bol
8704         character if a non-breakable character follows.
8705
8706 2010-12-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8707
8708         * proto-stream.el (proto-stream-open-tls): Return nil if we don't get
8709         any stream.
8710
8711         * shr.el (shr-tag-font): Colorize the region.
8712         (shr-tag-body): Ditto.
8713         (shr-tag-font): Actually let the styles be inherited instead of
8714         overwriting them.
8715         (shr-tag-font): Get the background color right.
8716         (shr-tag-style): Ignore all <style> tags for the moment.
8717
8718         * gnus-int.el (gnus-request-thread): Rework to take a header instead of
8719         a Message-ID to avoid having nnimap depend on gnus-sum.
8720
8721         * shr.el (shr-descend): Only colorize something if we have a node that
8722         sets colors.
8723
8724 2010-12-06  Julien Danjou  <julien@danjou.info>
8725
8726         * shr.el (shr-render-td): Render td content with shr-descend, so style
8727         will be applied to <td> too.
8728         (shr-colorize-region): Colorize region even if we only have a background.
8729         (shr-tag-body): Fix color and background color inheritance.
8730         Do not recolorize after shr-generic.
8731         (shr-tag-font): Let shr-generic colorize via inheritance.
8732
8733 2010-12-06  Katsumi Yamaoka  <yamaoka@jpl.org>
8734
8735         * shr.el (shr-find-fill-point): Don't regard apostrophe as kinsoku-bol.
8736
8737 2010-12-06  Andrew Cohen  <cohen@andy.bu.edu>
8738
8739         * nnir.el (nnir-request-move-article): Remove obsolete code.
8740
8741 2010-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
8742
8743         * gnus-util.el (gnus-macroexpand-all): Use eval-and-compile.
8744
8745 2010-12-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8746
8747         * gnus-sum.el (gnus-summary-respool-article): The completion function
8748         expects a list instead of an alist.
8749
8750         * nntp.el (nntp-snarf-error-message): nnheader-report takes a format
8751         string as the parameter.
8752
8753         * gnus.el (gnus-valid-select-methods): Allow nnimap to respool.
8754
8755         * shr.el (shr-stylesheet): New dynamic variable for cascading the
8756         styles.
8757         (shr-colorize-region): New function.
8758         (shr-insert-background-overlay): Remove.
8759         (shr-render-td): Background setting should be taken care of on a higher
8760         level.
8761         (shr-tag-body): Use post-hoc colorizations.
8762         (shr-tag-body): Set up a style sheet based on bgcolor/fgcolor.
8763         (shr-put-color-1): Don't overwrite old colors.
8764         (shr-colorize-region): When the background color isn't explicit, use
8765         a fixed background.
8766
8767         * gnus-util.el (gnus-output-to-mail): Require nnmail before using
8768         nnmail variables.
8769
8770 2010-12-05  Bjørn Mork  <bjorn@mork.no>
8771
8772         * nnimap.el (nnimap-process-expiry-targets): Avoid downloading articles
8773         unless necessary.
8774
8775 2010-12-05  Andrew Cohen  <cohen@andy.bu.edu>
8776
8777         * nnir.el (nnir-run-gmane): Use more careful test for gmane nntp
8778         server.
8779
8780 2010-12-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8781
8782         * gnus-html.el (gnus-html-put-image): Use widget instead of local maps
8783         so that TAB works.
8784
8785         * gnus-sum.el (gnus-summary-show-article): Reverse the meanings of `C-u
8786         C-u g' and `C-u g' so that `C-u g' does what it traditionally did.
8787
8788         * shr.el (shr-urlify): Show the URL before the title to avoid
8789         misleading URLs.
8790
8791 2010-12-04  Adam Sjøgren  <asjo@koldfront.dk>
8792
8793         * shr.el (shr-urlify): Display the title in <a> tags.
8794
8795 2010-12-04  Andrew Cohen  <cohen@andy.bu.edu>
8796
8797         * nnir.el (nnir-categorize): Replace mapcar with mapc.
8798
8799 2010-12-03  Andrew Cohen  <cohen@andy.bu.edu>
8800
8801         * nnir.el: Rearrange code to allow macros to be autoloaded by
8802         gnus-sum.el.
8803         (nnir-retrieve-headers-override-function): Make this variable
8804         customizable.
8805         (nnir-retrieve-headers): Remove obsolete subject-mangling code.
8806
8807         * gnus-sum.el (nnir-article-group, nnir-article-rsv): Autoload macros
8808         from nnir.el.
8809
8810 2010-12-03  Julien Danjou  <julien@danjou.info>
8811
8812         * gnus-demon.el (gnus-demon-init): Fix time computing when time is nil.
8813
8814 2010-12-03  Katsumi Yamaoka  <yamaoka@jpl.org>
8815
8816         * gnus-util.el (gnus-macroexpand-all): Don't modify argument;
8817         allow optional argument `environment'.
8818
8819 2010-12-03  Glenn Morris  <rgm@gnu.org>
8820
8821         * mm-extern.el (message-goto-body): Update declaration.
8822
8823 2010-12-03  Katsumi Yamaoka  <yamaoka@jpl.org>
8824
8825         * gnus-util.el (gnus-macroexpand-all): New function.
8826
8827         * gnus-sum.el (gnus-summary-line-format-alist): Use gnus-macroexpand-all
8828         instead of macroexpand-all that is unavailable in XEmacs.
8829
8830 2010-12-02  Andrew Cohen  <cohen@andy.bu.edu>
8831
8832         * nnir.el (nnir-summary-line-format): New variable.
8833         (nnir-mode): Use it.
8834         (nnir-artlist-*, nnir-aritem-*): Reimplement as macros.
8835         (nnir-article-ids): Reimplement as defsubst.
8836         (nnir-retrieve-headers): Don't mangle the subject header.
8837         (nnir-run-imap): Use 100 as RSV score.
8838         (nnir-run-find-grep): Fix for full server searching.
8839         (nnir-run-gmane): Better restriction to gmane groups.
8840
8841         * gnus-sum.el (gnus-summary-line-format-alist): Add specs for nnir
8842         summary buffers.
8843
8844 2010-12-02  Julien Danjou  <julien@danjou.info>
8845
8846         * gnus-win.el (gnus-configure-frame): Remove old compatibility code.
8847
8848         * gnus-msg.el: Mark gnus-outgoing-message-group as obsolete.
8849
8850         * gnus-win.el (gnus-configure-windows): Remove Gnus 3.x setting
8851         support.
8852
8853 2010-12-01  Andrew Cohen  <cohen@andy.bu.edu>
8854
8855         * nnir.el: Update to handle the registry better.
8856         (autoload): Silence byte-compiler.
8857         (nnir-open-server): Add a hook for nnir groups.
8858         (nnir-request-move-article): Don't mangle the header.  Better to use
8859         formatting variables (which will be added in the future).
8860         (nnir-registry-action): Update the registry using the original article
8861         group name.
8862         (nnir-mode): Install nnir-specific hooks for updating the registry.
8863
8864         * gnus-sum.el
8865         (gnus-article-original-subject, gnus-newsgroup-original-name):
8866         Remove obsolete variables.
8867         (gnus-summary-move-article): Remove use of obsolete variables.
8868         (gnus-summary-local-variables): Make move and delete hooks local to
8869         summary buffers.
8870
8871 2010-12-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8872
8873         * rtree.el: New file.
8874
8875 2010-12-01  Julien Danjou  <julien@danjou.info>
8876
8877         * message.el (message-user-organization): Do not use
8878         gnus-local-organization.
8879
8880         * gnus.el: Remove gnus-local-organization.
8881
8882         * gnus-msg.el: Remove nastygram thing.
8883
8884 2010-12-01  Teodor Zlatanov  <tzz@lifelogs.com>
8885
8886         * nnmaildir.el (nnmaildir-request-set-mark): Add article to add-mark
8887         funcall.
8888
8889 2010-12-01  Katsumi Yamaoka  <yamaoka@jpl.org>
8890
8891         * gnus-gravatar.el (gnus-gravatar-insert): Allow LWSP in the middle of
8892         names.
8893
8894         * shr.el (shr-find-fill-point): Don't break line between kinsoku-bol
8895         characters.
8896
8897         * gnus-gravatar.el (gnus-gravatar-insert): Delete unnecessary binding
8898         to t of inhibit-read-only since it is inside gnus-with-article-headers.
8899         Suggested by Štěpán Němec <stepnem@gmail.com>.
8900         (gnus-gravatar-transform-address): Use mail-extract-address-components
8901         that supports non-ASCII names rather than mail-header-parse-addresses.
8902
8903 2010-11-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8904
8905         * proto-stream.el (open-protocol-stream): All starttls connections are
8906         handled by the network handler.
8907
8908 2010-11-30  Julien Danjou  <julien@danjou.info>
8909
8910         * nnimap.el (nnimap-open-connection-1): Use gnus-string-match-p.
8911         (nnimap-open-connection-1): Fix PREAUTH.
8912
8913         * gnus-gravatar.el (gnus-gravatar-size): Set gnus-gravatar-size to nil.
8914
8915 2010-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
8916
8917         * shr.el (shr-char-breakable-p, shr-char-nospace-p)
8918         (shr-char-kinsoku-bol-p, shr-char-kinsoku-eol-p): New macros.
8919         (shr-insert): Use them.
8920         (shr-find-fill-point): Work better for kinsoku chars and apostrophes.
8921
8922 2010-11-29  Andrew Cohen  <cohen@andy.bu.edu>
8923
8924         * nnir.el (nnir-request-move-article): Bail out if original group
8925         doesn't support article moves.
8926         (nnir-get-active): Improve active list retrieval.
8927
8928 2010-11-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8929
8930         * shr.el (shr-find-fill-point): Don't break before apostrophes.
8931
8932 2010-11-29  Binjo  <binjo.cn@gmail.com>  (tiny change)
8933
8934         * nnimap.el (nnimap-open-connection-1): w32 open-network-stream doesn't
8935         seem to accept strings-with-numbers as port numbers.
8936
8937 2010-11-29  Andrew Cohen  <cohen@andy.bu.edu>
8938
8939         * gnus-sum.el (gnus-summary-delete-article): If delete fails don't
8940         change the registry.
8941
8942 2010-11-29  Katsumi Yamaoka  <yamaoka@jpl.org>
8943
8944         * nnir.el (nnir-run-gmane): Use mm-delete-duplicates instead of
8945         delete-dups that is not available in XEmacs 21.4.
8946
8947         * mm-util.el (mm-delete-duplicates): Add comment.
8948
8949 2010-11-28  Andrew Cohen  <cohen@andy.bu.edu>
8950
8951         * nnir.el (nnir-ignored-newsgroups): New variable.
8952         (nnir-get-active): Use it.
8953
8954 2010-11-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8955
8956         * proto-stream.el (proto-stream-open-network): Add some comments.
8957
8958         * nntp.el (nntp-open-connection): Provide a :success condition.
8959
8960         * nnimap.el (nnimap-open-connection-1): Ditto.
8961
8962         * proto-stream.el (proto-stream-open-network): See what the response to
8963         the STARTTLS command is.
8964
8965         * nnimap.el (nnimap-open-connection-1): Always upgrade to STARTTLS (for
8966         backwards compatibility).
8967         (nnimap-open-connection-1): Really respect nnimap-server-port.
8968
8969         * proto-stream.el (proto-stream-open-network): When doing opportunistic
8970         TLS upgrades we don't really care about the identity of the peer.
8971         (proto-stream-open-network): Force starttls.el to use gnutls-cli, since
8972         that what we've checked for.
8973         (proto-stream-always-use-starttls): Only default to t if
8974         open-gnutls-stream exists.
8975         (proto-stream-open-network): If STARTTLS failed, then just open a
8976         normal connection.
8977         (proto-stream-open-network): Wait until the greeting before doing
8978         STARTTLS.
8979
8980         * nntp.el (nntp-open-connection): Report what the connection error is.
8981
8982         * proto-stream.el (open-protocol-stream): Rename from
8983         open-proto-stream.
8984
8985 2010-11-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8986
8987         * nnimap.el (nnimap-stream): Change default to `undecided'.
8988         (nnimap-open-connection): If `nnimap-stream' is `undecided', try ssl
8989         first, and then network.
8990         (nnimap-open-connection-1): Respect nnimap-server-port.
8991         (nnimap-open-connection): Be more backwards-compatible.
8992
8993         * proto-stream.el (proto-stream-always-use-starttls): New variable.
8994         (proto-stream-open-starttls): De-duplicate the starttls code.
8995         (proto-stream-open-starttls): Folded back into the main function.
8996         (proto-stream-open-network): Fix typo in the gnutls path.
8997         (proto-stream-command): Refactor out.
8998
8999         * nntp.el (nntp-open-connection): Fix the STARTTLS command syntax.
9000
9001         * proto-stream.el (proto-stream-open-starttls): Actually implement the
9002         starttls.el STARTTLS.
9003
9004         * color.el (color-lab->srgb): Fix function call name.
9005
9006         * proto-stream.el (proto-stream-open-tls): Delete output from openssl
9007         if we're using tls.el.
9008         (proto-stream-open-network): If we don't have gnutls-cli or gnutls
9009         built in, then don't try to establish a STARTTLS connection.
9010
9011         * nntp.el (nntp-open-connection): Switch on STARTTLS on supported
9012         servers.
9013
9014         * proto-stream.el (open-proto-stream): Use network, not stream.
9015         (open-proto-stream): Add a way to specify what the end of a command is.
9016
9017         * nntp.el (nntp-open-connection): Use proto-streams for the relevant
9018         connections types.
9019         (nntp-open-network-stream): Remove.
9020         (nntp-open-ssl-stream): Remove.
9021         (nntp-open-tls-stream): Remove.
9022         (nntp-ssl-program): Remove.
9023
9024         * nnimap.el (nnimap-open-connection): Check for "OK" from the greeting.
9025
9026 2010-11-27  Andrew Cohen  <cohen@andy.bu.edu>
9027
9028         * nnir.el: Fix typos.
9029         (nnir-retrieve-headers-override-function): Rename variable to reflect
9030         new semantics.
9031         (nnir-article-group, nnir-article-number, nnir-article-rsv): New helper
9032         macros.
9033         (nnir-request-article, nnir-request-move-article): Use them.
9034         (nnir-categorize): New function.
9035         (nnir-run-query): Use it.
9036         (nnir-retrieve-headers): Rewrite to batch header retrieval.
9037         (nnir-run-gmane): nnir-retrieve-headers now returns the headers already
9038         sorted.
9039         (nnir-group-full-name): Use gnus-group-full-name instead.
9040         (nnir-artlist-artitem-group, nnir-artlist-artitem-number)
9041         (nnir-artlist-artitem-rsv, nnir-sort-groups-by-server): Obsolete.
9042
9043 2010-11-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9044
9045         * nnimap.el (nnimap-open-connection): Fix typo in STARTTLS command.
9046
9047         * proto-stream.el: New library to provide protocol-specific
9048         TLS/STARTTLS connections for IMAP, NNTP, SMTP, POP3 and similar
9049         protocols.
9050         (open-proto-stream): Complete the documentation.
9051         (proto-stream-open-network): Fix some typos.
9052
9053         * nnimap.el (nnimap-open-connection): Use it.
9054
9055 2010-11-27  Yuri Karaban  <tech@askold.net>  (tiny change)
9056
9057         * pop3.el (pop3-open-server): Read server greeting before starting TLS
9058         negotiation.
9059
9060 2010-11-26  Julien Danjou  <julien@danjou.info>
9061
9062         * color.el: Rename various rgb functions to srgb.
9063
9064 2010-11-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9065
9066         * nnimap.el (nnimap-get-groups): Allow non-quoted strings as mailbox
9067         names.
9068
9069 2010-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
9070
9071         * shr.el (shr-insert): Revert last change.
9072         (shr-find-fill-point): Never leave point being at bol;
9073         relax the kinsoku limitation when rendering tables.
9074
9075 2010-11-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9076
9077         * nnmail.el (nnmail-expiry-target-group): Protect against degenerate
9078         results from -accept-article.
9079
9080         * shr-color.el: Require cl when compiling.
9081
9082         * nnheader.el (nnheader-update-marks-actions): Fix typo in last
9083         checkin.
9084
9085         * gnus-art.el (gnus-url-mailto): Unfold URLs before using them.
9086
9087         * nnimap.el (nnimap-request-set-mark): Add is "+", not "-".
9088
9089         * gnus-sum.el (gnus-summary-push-marks-to-backend): Use 'set instead of
9090         'add and 'delete to set backend marks.
9091
9092         * nnmaildir.el (nnmaildir-request-set-mark): Be explicit about 'set.
9093
9094         * nnheader.el (nnheader-update-marks-actions): Refactor out.
9095
9096         * nntp.el (nntp-request-set-mark): Use it.
9097
9098         * nnfolder.el (nnfolder-request-set-mark): Ditto.
9099
9100         * nnml.el (nnml-request-set-mark): Ditto.
9101
9102         * nnimap.el (nnimap-last-response-string): Remove the unfolding -- it
9103         introduces regressions in article selection.
9104         (nnimap-find-uid-response): New function.
9105         (nnimap-request-accept-article): Use the UID returned, if any.
9106         (nnimap-request-move-article): Use the UID returned, if any.
9107         (nnimap-get-groups): Reimplement to work with folded lines.
9108         (nnimap-find-uid-response): The UID is the last element in the list.
9109         (nnimap-request-set-mark): Extend syntax with 'set.
9110
9111         * nnml.el (nnml-request-set-mark): Ditto.
9112
9113         * nnfolder.el (nnfolder-request-set-mark): Ditto.
9114
9115         * nntp.el (nntp-request-set-mark): Ditto.
9116
9117 2010-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
9118
9119         * message.el (message-called-interactively-p): A temporary macro.
9120         (message-goto-body): Use it temporarily.
9121
9122 2010-11-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9123
9124         * nnimap.el (nnimap-unfold-quoted-lines): Refactor out.
9125         (nnimap-last-response-string): Unfold quoted lines, if they exist.
9126         (nnimap-last-response-string): Fix last unfolding fix.
9127
9128 2010-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
9129
9130         * shr.el (shr-insert): Fix the way to fold lines.
9131
9132 2010-11-25  Julien Danjou  <julien@danjou.info>
9133
9134         * shr-color.el (shr-color->hexadecimal): Use color-rgb->hex.
9135
9136         * color.el: Rename from color-lab.el
9137         (color-rgb->hex): Add.
9138         (color-complement): Add.
9139         (color-complement-hex): Add.
9140
9141         * gnus-sum.el (gnus-summary-widget-forward): Add, and bind to [tab].
9142
9143 2010-11-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9144
9145         * shr-color.el (shr-color-visible): Don't bug out if the color names
9146         don't exist.
9147
9148 2010-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
9149
9150         * mml.el (mml-preview): Make sure to bind gnus-displaying-mime to nil,
9151         assuming that article displaying or another mml-preview may be
9152         interrupted for an error or for the like.
9153
9154         * shr.el (shr-get-background): Fix argument name.
9155
9156 2010-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9157
9158         * gnus-cache.el (gnus-summary-insert-cached-articles): Use it.
9159
9160         * gnus-sum.el (gnus-summary-include-articles): New function.
9161
9162         * message.el (message-goto-body): called-interactively-p needs a
9163         parameter, so use `any'.
9164
9165         * nnimap.el (nnimap-request-move-article): It's no longer necessary to
9166         clear marks before moving, since they're synced from the Gnus side
9167         first.
9168
9169         * gnus-sum.el (gnus-summary-push-marks-to-backend): New function.
9170         (gnus-summary-move-article): Copy over all marks before moving, so that
9171         IMAP doesn't think a new article has arrived.
9172
9173 2010-11-24  Julien Danjou  <julien@danjou.info>
9174
9175         * shr.el (shr-insert-background-overlay): Fix typo.
9176         (shr-render-td): Copy the background before rendering.
9177
9178         * shr-color.el (shr-color-visible): Fix docstring.
9179
9180         * shr.el (shr-tag-table): Add bgcolor support.
9181         (shr-render-td): Add bgcolor support.
9182         (shr-get-background): Add.
9183         (shr-insert-foreground-overlay): Use shr-get-background.
9184
9185         * message.el (message-goto-body): Use called-interactively-p.
9186         (message-in-body-p): message-goto-body returns point.
9187
9188 2010-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9189
9190         * mm-util.el (mm-enable-multibyte): Use `to' instead of t.  This fixes
9191         Fixes something or other in Emacs 23, and is backwards compatible.
9192
9193         * message.el (message-goto-body): Remove the <#secure special-casing,
9194         which is too special.
9195
9196         * shr.el (shr-parse-style): Drop !important from styles.
9197
9198 2010-11-24  Daniel Schoepe  <daniel.schoepe@googlemail.com>  (tiny change)
9199
9200         * gnus-sum.el (gnus-summary-articles-in-thread): Fix a bug that causes
9201         this function to return incorrect results when calling it with an
9202         explicit article argument different from
9203         (gnus-summary-article-number).
9204
9205 2010-11-24  Julien Danjou  <julien@danjou.info>
9206
9207         * shr.el (shr-insert-color-overlay): Replace deprecated syntax.
9208         (shr-tag-body): Add background support.
9209         (shr-descend): Add background support.
9210         (shr-tag-title): Add.
9211
9212         * shr-color.el (shr-color-visible): Really return original background
9213         if fixed.
9214
9215 2010-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9216
9217         * shr.el (shr-color-check): Protect against non-existent color names.
9218
9219 2010-11-24  Julien Danjou  <julien@danjou.info>
9220
9221         * color-lab.el: Require 'cl when compiling.
9222
9223         * shr.el (shr-insert-color-overlay): Remove specific rgb() check.
9224
9225         * shr-color.el (shr-color->hexadecimal): Only return the hexadecimal
9226         matched part.
9227
9228         * color-lab.el: Fix all expt calls to use float type.
9229
9230 2010-11-24  Katsumi Yamaoka  <yamaoka@jpl.org>
9231
9232         * shr.el (shr-insert-color-overlay): Pass rgb(rrr, ggg, bbb) type color
9233         expression to shr-color-check as is.
9234
9235         * shr-color.el (shr-color->hexadecimal): Ignore case of color names.
9236
9237         * color-lab.el: Add coding cookie.
9238         (float-pi): Use eval-and-compile.
9239
9240         * dgnushack.el (dgnushack-compile): Exclude shr-color.el from being
9241         compiled for Emacsen having no `libxml-parse-html-region' support.
9242
9243 2010-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9244
9245         * shr.el (shr-insert-color-overlay): Split stuff like
9246         "#444444 !important" to find the real color.
9247         (shr-tag-font): Resurrect shr-tag-font again, since it's needed to
9248         parse <font color="red"> entries.
9249
9250 2010-11-23  Andrew Cohen  <cohen@andy.bu.edu>
9251
9252         * nnheader.el (nnheader-parse-head): Bug fix.  Properly position
9253         point when parsing headers.
9254
9255         * nnspool.el (nnspool-insert-nov-head): Bug fix.  Make sure point
9256         is positioned properly when parsing headers.
9257
9258 2010-11-23  Julien Danjou  <julien@danjou.info>
9259
9260         * color-lab.el (boundp): Bind float-pi for Emacs < 23.3.
9261
9262         * shr-color.el (shr-color->hexadecimal): Add support for color names.
9263
9264         * shr.el (shr-parse-style): Replace \n with space in style parsing.
9265
9266         * shr-color.el (shr-color-hsl-to-rgb-fractions):
9267         Use shr-color-hue-to-rgb.
9268         (shr-color->hexadecimal): Call shr-color-hsl-to-rgb-fractions.
9269
9270 2010-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9271
9272         * shr.el (shr-color->hexadecimal): Autoload.
9273         (shr-descend): Add color to all tags.
9274
9275 2010-11-22  Julien Danjou  <julien@danjou.info>
9276
9277         * shr.el (shr-tag-color-check): Convert colors to hexadecimal with
9278         shr-color->hexadecimal.
9279
9280         * shr-color.el (shr-color->hexadecimal): Add converting functions for
9281         RGB() or HSL() color representation.
9282
9283         * shr.el (shr-tag-font): Add.
9284         (shr-tag-color-check): New function to get better colors.
9285         (shr-tag-insert-color-overlay): Factorize code between tag-font and
9286         tag-span.
9287
9288         * shr-color.el: New file.
9289
9290         * color-lab.el: New file.
9291
9292         * gnus-art.el (gnus-url-mailto): Do not downcase args.
9293
9294 2010-11-21  Andrew Cohen  <cohen@andy.bu.edu>
9295
9296         * nnir.el: Fix typo in comments.
9297         (nnir-run-imap): Simplify code.  No need to reverse artlist.
9298         (nnir-run-gmane): Use nnir-tmp-buffer for web results.
9299
9300 2010-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9301
9302         * gnus-srvr.el (gnus-server-show-server): New command and keystroke.
9303
9304         * nnimap.el (nnimap-get-capabilities): Refactor out.
9305         (nnimap-open-connection): Re-request capabilities after STARTTLS.
9306
9307 2010-11-21  Ralf Angeli  <angeli@caeruleus.net>
9308
9309         * mm-uu.el (mm-uu-type-alist): Prevent spurious empty line from
9310         appearing when `mm-uu-hide-markers' is nil.
9311
9312 2010-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9313
9314         * nnimap.el (nnimap-unselect-group): Make into its own function.
9315         (nnimap-request-rename-group): Unselect group before renaming.
9316         This had gotten lost somewhere.
9317         (nnimap-request-accept-article): Keep track of examined groups, and
9318         unselect the group before APPENDing to read-only groups.
9319         (nnimap-request-move-article): Clear flags before moving so that they
9320         can be re-set later.
9321
9322 2010-11-20  Katsumi Yamaoka  <yamaoka@jpl.org>
9323
9324         * gnus-gravatar.el (gnus-gravatar-transform-address): Decode name again.
9325         (gnus-gravatar-insert): Put avatar always in the beginning of the field.
9326
9327 2010-11-19  Katsumi Yamaoka  <yamaoka@jpl.org>
9328
9329         * gnus-art.el (gnus-mime-display-single):
9330         * gnus-html.el (gnus-html-wash-images, gnus-html-prefetch-images):
9331         * mm-decode.el (mm-shr): Assume that gnus-inhibit-images may be a group
9332         parameter.
9333
9334 2010-11-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9335
9336         * shr.el (shr-table-horizontal-line): Rename from shr-table-line.
9337         (shr-table-vertical-line): New variable.
9338         (shr-insert-table): Use it.
9339
9340 2010-11-18  Katsumi Yamaoka  <yamaoka@jpl.org>
9341
9342         * gnus-html.el (gnus-html-wash-images): Don't display images if
9343         gnus-inhibit-images is non-nil; register displayer for cid images.
9344         (gnus-html-display-image): Work for cid image.
9345         (gnus-html-insert-image): Allow arguments.
9346         (gnus-html-put-image): Inhibit read-only.
9347         (gnus-html-prefetch-images): Don't prefetch images if
9348         gnus-inhibit-images is non-nil.
9349
9350 2010-11-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9351
9352         * shr.el (shr-put-image): Break lines when inserting big pictures.
9353
9354 2010-11-17  Daniel Dehennin  <daniel.dehennin@baby-gnu.org>
9355
9356         * mml2015.el (mml2015-epg-encrypt): Fix two cons with missing
9357         sender, thanks Katsumi Yamaoka.
9358
9359 2010-11-17  Andrew Cohen  <cohen@andy.bu.edu>
9360
9361         * nnir.el (nnir-run-imap): Reverse the article list for each group
9362         rather than the whole list.
9363
9364 2010-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
9365
9366         * shr.el (shr-image-displayer): Protect function against non-existent
9367         image source.
9368
9369         * gnus-art.el (gnus-inhibit-images): New user option.
9370         (gnus-mime-display-single): Don't display image if it is non-nil.
9371
9372         * mm-decode.el (mm-shr): Bind shr-inhibit-images to the value of
9373         gnus-inhibit-images.
9374
9375         * shr.el (shr-image-displayer): New function.
9376         (shr-tag-img): Use it.
9377
9378 2010-11-16  Daniel Dehennin  <daniel.dehennin@baby-gnu.org>
9379
9380         * mml2015.el (mml2015-epg-sign): Use From header.
9381
9382 2010-11-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9383
9384         * gnus-html.el (gnus-html-wash-images): Register a displayer.
9385
9386         * gnus-util.el (gnus-find-text-property-region): Return markers.
9387
9388         * shr.el (shr-tag-img): Put a displayer in the text property.
9389
9390         * gnus-util.el (gnus-find-text-property-region): New utility function.
9391
9392         * gnus-html.el (gnus-html-display-image): Make the alt optional.
9393         (gnus-html-show-images): Remove.
9394
9395         * gnus-art.el (gnus-article-show-images): New, more general function.
9396
9397         * gnus-html.el: Use image-url instead of gnus-image-url to unify the
9398         image url text properties.
9399
9400         * shr.el: Ditto.
9401
9402         * gnus-agent.el (gnus-agentize): Only do the auto-agentizing if
9403         gnus-agent-auto-agentize-methods is set.  Which it isn't.
9404
9405 2010-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
9406
9407         * gnus-sum.el (gnus-summary-move-article): Fix `while' loop to make it
9408         work for two or more articles.
9409
9410 2010-11-12  Katsumi Yamaoka  <yamaoka@jpl.org>
9411
9412         * gnus-art.el (article-treat-non-ascii): Keep text properties not to
9413         divide an image that's in an html article to two or more when washing
9414         non-ASCII characters in alt text of it.
9415
9416 2010-11-11  Katsumi Yamaoka  <yamaoka@jpl.org>
9417
9418         * mm-decode.el (mm-dissect-buffer): Pass sender's mail address to
9419         smime-decrypt-region using function argument.
9420         (mm-possibly-verify-or-decrypt, mm-dissect-multipart): Relay it.
9421
9422         * mm-view.el (mm-view-pkcs7, mm-view-pkcs7-decrypt): Relay it.
9423
9424         * smime.el (smime-decrypt-region): Catch it.
9425
9426 2010-11-11  Stefan Monnier  <monnier@iro.umontreal.ca>
9427
9428         * smime.el (smime-mode-map): Move initialization into declaration.
9429         (gnus-run-mode-hooks): Don't autoload.
9430         (smime-mode): Use define-derived-mode.
9431
9432 2010-11-11  Glenn Morris  <rgm@gnu.org>
9433
9434         * smime.el (from): Restrict declaration to XEmacs.
9435
9436         * nnir.el (gnus-group-topic-name): Autoload.
9437
9438 2010-11-11  Katsumi Yamaoka  <yamaoka@jpl.org>
9439
9440         * shr.el (shr-insert): Don't break long line if it is because of
9441         kinsoku-bol characters in the line end.
9442
9443 2010-11-11  Andrew Cohen  <cohen@andy.bu.edu>
9444
9445         * nnir.el (nnir-request-move-article): Fix to provide original group
9446         and subject.
9447         (nnir-warp-to-article): Don't fail on articles whose headers haven't
9448         been retrieved.
9449
9450         * gnus-sum.el (gnus-summary-move-article): Use original group and
9451         subject for virtual articles such as those in an nnir summary buffer.
9452
9453 2010-11-11  Katsumi Yamaoka  <yamaoka@jpl.org>
9454
9455         * gnus-art.el (article-treat-non-ascii): Make it work for XEmacs (at
9456         least 21.5).
9457
9458         * smime.el (from): Declare it again for XEmacs.
9459
9460 2010-11-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9461
9462         * message.el (message-resend): Don't disable encoding unless it's
9463         already encoded.
9464
9465         * nnimap.el (nnimap-update-info): Fix problem with `g' chopping of
9466         low-numbered articles.
9467
9468 2010-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
9469
9470         * rfc2047.el (rfc2047-syntax-table): Simplify.
9471
9472         * lpath.el: Fbind set-char-table-range for XEmacs 21.4 and SXEmacs 22.1.
9473
9474         * gnus-art.el (article-treat-non-ascii): Use put-char-table instead of
9475         set-char-table-range for XEmacs.
9476
9477 2010-11-10  Glenn Morris  <rgm@gnu.org>
9478
9479         * time-date.el (time-to-seconds): Always an alias on Emacs,
9480         never a real function.
9481         (with-no-warnings): Remove compat stub, now unused.
9482         (time-less-p): Doc fix.
9483         (time-to-number-of-days): Simplify.
9484
9485         * smime.el (from): Remove unused declaration.
9486
9487         * gnus-util.el (with-no-warnings): Remove compat stub, now unused.
9488         (gnus-float-time): On Emacs, always an alias.
9489
9490         * ecomplete.el (with-no-warnings): Remove compat stub, now unused.
9491         (ecomplete-add-item): Use float-time on Emacs, else gnus-float-time.
9492
9493 2010-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
9494
9495         * dgnushack.el: Don't use ignore-errors in the top level form since it
9496         is unavailable in XEmacs even if cl is loaded.
9497
9498         * gnus-art.el (org-entities): Declare it to silence the byte compiler.
9499
9500 2010-11-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9501
9502         * shr.el (browse-url-mailto): Autoload.
9503
9504         * gnus-art.el (article-treat-non-ascii): New command and keystroke.
9505
9506         * message.el (message-subject-trailing-was-ask-regexp): A ] in a []
9507         regexp doesn't need quoting.
9508
9509 2010-11-09  Sven Joachim  <svenjoac@gmx.de>
9510
9511         * message.el (message-subject-trailing-was-ask-regexp)
9512         (message-subject-trailing-was-regexp): Match was: in addition to was.
9513
9514 2010-11-09  Glenn Morris  <rgm@gnu.org>
9515
9516         * nnbabyl.el (nnbabyl-request-move-article, nnbabyl-delete-mail)
9517         (nnbabyl-check-mbox): Use point-at-bol.
9518
9519 2010-11-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9520
9521         * shr.el (shr-browse-url): Call browse-url-mailto for mailto: links.
9522
9523         * message.el (message-mailto): New function.
9524         (message-mailto): Should accept other parameters.
9525         (message-mailto): Remove since it duplicates browse-url-mailto
9526         functionality.
9527
9528 2010-11-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9529
9530         * gnus-start.el (gnus-get-unread-articles): Ignore totally non-existent
9531         methods.
9532         (gnus-read-active-file): Ditto.
9533
9534         * gnus-group.el (gnus-group-read-ephemeral-group): Remove superfluous
9535         ": " from the prompt.
9536         (gnus-group-make-group): Ditto.
9537
9538 2010-11-07  Glenn Morris  <rgm@gnu.org>
9539
9540         * gnus-bookmark.el (gnus-bookmark-bmenu-show-infos)
9541         (gnus-bookmark-kill-line): Use point-at-eol.
9542
9543 2010-11-07  Katsumi Yamaoka  <yamaoka@jpl.org>
9544
9545         * gnus-gravatar.el (gnus-gravatar-transform-address): No need to skip
9546         asterisks in From header.
9547
9548 2010-11-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9549
9550         * gnus-ems.el (gnus-put-image): Use a blank text as the insertion
9551         string to avoid making the From headers syntactically invalid.
9552
9553         * message.el (message-send-mail): Don't insert courtesy messages if the
9554         message already has List-Post and List-ID messages.
9555
9556 2010-11-06  Glenn Morris  <rgm@gnu.org>
9557
9558         * gnus-art.el (gnus-treat-article): Give dynamic local variables
9559         `condition', `type', `length' a prefix.
9560         (gnus-treat-predicate): Update for above name changes.
9561
9562 2010-11-06  Andrew Cohen  <cohen@andy.bu.edu>
9563
9564         * nnir.el (gnus-summary-nnir-goto-thread): Remove function and
9565         binding.  Handled by `gnus-summary-refer-thread' instead.
9566         (nnir-warp-to-article): New backend function.
9567
9568         * nnimap.el (nnimap-request-thread): Force dependency updating.
9569
9570         * gnus-sum.el (gnus-fetch-headers): Allow more arguments.
9571         (gnus-summary-refer-thread): Rework to improve thread-referral.
9572
9573         * gnus-int.el (gnus-warp-to-article): New function.
9574
9575         * gnus-sum.el (gnus-summary-article-map): Bind it.
9576
9577 2010-11-04  Andrew Cohen  <cohen@andy.bu.edu>
9578
9579         * nnir.el (gnus-summary-nnir-goto-thread): Limit work done by
9580         gnus-summary-refer-thread.
9581
9582         * gnus-sum.el (gnus-build-all-threads): Force updating of dependency
9583         headers.
9584         (gnus-summary-limit-include-thread): Prevent articles in thread from
9585         being cut in gnus-cut-threads.
9586         (gnus-summary-refer-thread): Limit retrieved headers to those in
9587         thread.
9588
9589 2010-11-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9590
9591         * message.el (message-send-mail): Use the value of
9592         message-courtesy-message from the message buffer.
9593
9594         * gnus-html.el (gnus-html-browse-url): Implement mailto: URLs.
9595
9596         * shr.el (shr-browse-url): Implement mailto: URLs.
9597
9598         * gnus-sum.el (gnus-summary-show-article): Take `t' as the arg to mean
9599         "raw".
9600
9601         * nnimap.el (nnimap-find-article-by-message-id): Don't EXAMINE a group
9602         if it's already selected.
9603
9604         * mm-decode.el (mm-save-part): Put the entire path in the `M-n' slot.
9605
9606 2010-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
9607
9608         * shr.el (shr-tag-img): Use string-width and truncate-string-to-width
9609         to measure the length and truncate alt text.
9610
9611 2010-11-03  Glenn Morris  <rgm@gnu.org>
9612
9613         * nndiary.el (nndiary-generate-nov-databases-1)
9614         (nndiary-generate-active-info): Rename dynamic variable `files' to
9615         something less generic.
9616
9617 2010-11-03  Andrew Cohen  <cohen@andy.bu.edu>
9618
9619         * nnir.el (nnir-request-move-article): Call the underlying backend to
9620         move articles from nnir.
9621
9622 2010-11-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9623
9624         * gnus-cite.el (gnus-article-natural-long-line-p): Remove.
9625
9626 2010-11-02  Julien Danjou  <julien@danjou.info>
9627
9628         * nnir.el: Remove wais support.
9629
9630 2010-11-02  Glenn Morris  <rgm@gnu.org>
9631
9632         * gnus-html.el: Reorder requirements to quieten compiler.
9633
9634 2010-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
9635
9636         * gnus-cite.el (gnus-article-fill-cited-article): Make fill work
9637         properly for XEmacs as well.
9638         (gnus-article-fill-cited-article, gnus-article-foldable-buffer)
9639         (gnus-article-natural-long-line-p): Use window-width rather than
9640         frame-width.
9641
9642 2010-11-01  Andrew Cohen  <cohen@andy.bu.edu>
9643
9644         * nnir.el (nnir-run-gmane): Inhibit demon.  Return nil if no messages.
9645         (nnir-read-parms): Don't modify query.
9646         (nnir-run-query): Add ability to search topic on current line.
9647         (nnir-get-active): Clean up.
9648
9649 2010-11-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9650
9651         * gnus-cite.el (gnus-article-foldable-buffer): Protect against
9652         degenerate articles.
9653
9654         * gnus-sum.el (gnus-print-buffer): Rewrite to use with-temp-buffer.
9655         (gnus-print-buffer): Just print the buffer as is, without any copying
9656         to a buffer and then re-highlighting.
9657
9658         * nnimap.el (nnimap-request-group): Store the new updated info.
9659         (nnimap-request-group): Select the group when we don't know whether it
9660         exists or not.
9661
9662         * gnus-start.el (gnus-ask-server-for-new-groups): Return the new
9663         groups.
9664
9665         * gnus-group.el (gnus-group-find-new-groups): Display all the new
9666         groups.
9667
9668         * gnus-start.el (gnus-find-new-newsgroups): Return the list of new
9669         groups.
9670
9671         * gnus-cite.el (gnus-article-fill-cited-article): Minimize the
9672         long-lines case by only filling the long lines.
9673
9674         * nnimap.el (nnimap-parse-line): Don't bug out oddly formed replies
9675         (bug#7311).
9676
9677 2010-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
9678
9679         * shr.el: No need to declare `declare-function' since shr.el is for
9680         only Emacsen that provide `libxml-parse-html-region'.
9681
9682         * dgnushack.el: Remove `(defvar iswitchb-temp-buflist)', that is
9683         effective only in a file it is referred to.
9684
9685 2010-11-01  Glenn Morris  <rgm@gnu.org>
9686
9687         * mm-util.el (gnus-completing-read): Autoload.
9688         (mm-read-coding-system): Simplify Emacs definition.
9689
9690         * nnmail.el (gnus-activate-group):
9691         * nnimap.el (gnutls-negotiate):
9692         * nntp.el (netrc-parse): Fix declarations.
9693
9694 2010-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
9695
9696         * gnus-util.el (gnus-string-match-p): New function, that is an alias to
9697         string-match-p in Emacs >=23.
9698
9699         * gnus-msg.el (gnus-configure-posting-styles):
9700         * nnir.el (nnir-run-gmane): Use gnus-string-match-p.
9701
9702 2010-11-01  Glenn Morris  <rgm@gnu.org>
9703
9704         * nnir.el (declare-function): Add compat stub.
9705         (mm-url-insert, mm-url-encode-www-form-urlencoded): Declare.
9706         (nnir-run-gmane): Require 'mm-url.
9707
9708         * mm-util.el (mm-string-to-multibyte): Simplify.
9709
9710         * shr.el (declare-function): Add compat stub.
9711         (url-cache-create-filename): Declare.
9712         (mm-disable-multibyte, widget-convert-button): Autoload.
9713
9714         * smime.el (ldap-search): Declare.
9715         (smime-cert-by-ldap-1): Require ldap on Emacs.
9716
9717         * nnimap.el: Require nnmail, and gnus-sum when compiling.
9718         (nnimap-keepalive): Use gnus-float-time.
9719
9720         * mail-source.el (nnheader-message, gnus-float-time): Autoload.
9721         (mail-source-delete-crash-box): Use gnus-float-time.
9722
9723         * gnus-dired.el (gnus-completing-read): Autoload.
9724
9725         * mm-view.el (gnus-rescale-image): Autoload.
9726
9727         * mm-decode.el (gnus-completing-read, gnus-blocked-images): Autoload.
9728
9729         * gnus.el (gnus-sloppily-equal-method-parameters): Move defn before use.
9730
9731         * sieve-manage.el: Require 'cl when compiling.
9732
9733         * gnus-util.el (iswitchb-read-buffer): Declare rather than autoload.
9734         (gnus-iswitchb-completing-read): Require iswitchb.
9735         (gnus-select-frame-set-input-focus): Silence compiler.
9736
9737 2010-10-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9738
9739         * message.el (message-subject-trailing-was-query): Change default to t,
9740         since I think that's what most people want.
9741
9742         * nnimap.el (nnimap-request-accept-article): Erase buffer before
9743         appending for easier debugging.
9744         (nnimap-wait-for-connection): Take a regexp.
9745         (nnimap-request-accept-article): Wait for the continuation line before
9746         sending anything unless we're streaming.
9747
9748         * gnus-art.el (gnus-treat-article): Only inhibit body washing, and
9749         leave the header washing to take place.
9750
9751 2010-10-31  Daniel Dehennin  <daniel.dehennin@baby-gnu.org>
9752
9753         * gnus-msg.el (gnus-configure-posting-styles): Permit the use of
9754         regular expression match and replace in posting styles.
9755
9756 2010-10-31  Andrew Cohen  <cohen@andy.bu.edu>
9757
9758         * nnir.el (gnus-group-make-nnir-group, nnir-run-query): Allow searching
9759         an entire server.
9760         (nnir-get-active): New function.
9761         (nnir-run-imap): Use it.
9762         (nnir-run-gmane): Who knew, gmane search returns an article score!
9763
9764         * gnus-srvr.el (gnus-server-mode-map): Add binding "G" to search the
9765         server on the current line with nnir.
9766
9767 2010-10-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9768
9769         * gnus-cite.el (gnus-article-foldable-buffer): Refactor out.
9770         (gnus-article-foldable-buffer): Don't fold regions that have a ragged
9771         left edge.
9772         (gnus-article-foldable-buffer): Skip past the prefix when determining
9773         raggedness.
9774
9775         * gnus-sum.el (gnus-summary-show-article): Add `C-u C-u g' for showing
9776         the raw article, and change `C-u g' to show the article without doing
9777         treatments.
9778
9779         * gnus-art.el (gnus-mime-display-alternative): Actually pass the type
9780         on to `gnus-treat-article'.
9781         (gnus-inhibit-article-treatments): New variable.
9782
9783         * gnus.el: Autoload gnus-article-fill-cited-long-lines.
9784
9785         * gnus-art.el (gnus-treatment-function-alist): Have
9786         gnus-treat-fill-long-lines point to gnus-article-fill-cited-long-lines.
9787         (gnus-treat-fill-long-lines): Change default to fill all text/plain
9788         sections.
9789
9790         * gnus-cite.el (gnus-article-fill-cited-article): Remove unused `force'
9791         parameter.
9792         (gnus-article-fill-cited-long-lines): New function.
9793         (gnus-article-fill-cited-article): Allow filling only long sections.
9794
9795         * shr.el (shr-find-fill-point): Don't break lines between punctuation
9796         and non-punctuation (like after the apostrophe in "'We").
9797
9798         * gnus-sum.el (gnus-summary-select-article): Make sure
9799         gnus-original-article-buffer is alive.
9800
9801         * nndoc.el (nndoc-dissect-buffer): Reverse the order of the articles to
9802         reflect the order they're in in the digest.
9803
9804         * gnus.el (gnus-group-startup-message): Move point to the start of the
9805         buffer.
9806
9807         * nnimap.el (nnimap-capability): New function.
9808         (nnimap-open-connection): Only send AUTHENTICATE PLAIN if LOGINDISABLED
9809         is set.
9810
9811 2010-10-31  David Engster  <dengste@eml.cc>
9812
9813         * nnmairix.el (nnmairix-get-valid-servers): Return list of strings to
9814         conform with changes to gnus-completing-read.
9815
9816 2010-10-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9817
9818         * shr.el (shr-tag-img): Output "*" instead of "[img]".
9819
9820 2010-10-30  Andrew Cohen  <cohen@andy.bu.edu>
9821
9822         * nnir.el: Move defvar, defcustom around to keep file organized
9823         and keep byte-compiler quiet.
9824         (nnir-read-parms): Accept search-engine as arg.
9825         (nnir-run-query): Pass search-engine as arg.
9826         (nnir-search-engine): Remove.
9827
9828 2010-10-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9829
9830         * shr.el (shr-generic): The text nodes should be text, not :text.
9831
9832         * nnir.el (nnir-search-engine): Ressurect variable, since it's used
9833         later in the file.
9834
9835 2010-10-30  Andrew Cohen  <cohen@andy.bu.edu>
9836
9837         * nnir.el: General clean up.  Allow searching with multiple engines.
9838         Allow separate extra-parameters for each engine.
9839         Batch queries when possible.
9840         (nnir-imap-default-search-key, nnir-method-default-engines):
9841         Add customize interface.
9842         (nnir-run-gmane): New engine.
9843         (nnir-engines): Use it.  Qualify all prompts with engine name.
9844         (nnir-search-engine): Remove global variable.
9845         (nnir-run-hyrex): Restore for now.
9846         (nnir-extra-parms, nnir-search-history): New variables.
9847         (gnus-group-make-nnir-group): Use them.
9848         (nnir-group-server): Remove in favor of gnus-group-server.
9849         (nnir-request-group): Avoid searching twice.
9850         (nnir-sort-groups-by-server): New function.
9851
9852 2010-10-30  Julien Danjou  <julien@danjou.info>
9853
9854         * gnus-group.el: Remove gnus-group-fetch-control.
9855
9856         * gnus-start.el (gnus-find-new-newsgroups):
9857         Remove gnus-check-first-time-used.
9858
9859         * gnus.el: Remove gnus-backup-default-subscribed-newsgroups.
9860
9861 2010-10-30  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
9862
9863         * nnimap.el (nnimap-update-info): Allow 'ticked and other flags to be
9864         set on groups that don't have \* permanentflags.
9865
9866 2010-10-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9867
9868         * shr.el (shr-tag-span): Drop colorization of regions since we don't
9869         control the background color.
9870         (shr-tag-img): Ignore very small web bug type images.
9871         (shr-put-image): Add help-echo alt texts to the images.
9872         (shr-tag-video): Show the video poster image.
9873
9874 2010-10-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9875
9876         * shr.el (shr-table-depth): New variable.
9877         (shr-tag-table-1): Only insert the images after the top-level table.
9878
9879         * nnimap.el (nnimap-split-incoming-mail): Fix typo.
9880
9881         * gnus-util.el (gnus-list-memq-of-list): New function.
9882
9883         * nnimap.el (nnimap-split-incoming-mail): Note that the INBOX has been
9884         selected.
9885         (nnimap-unsplittable-articles): New slot.
9886         (nnimap-new-articles): Use it.
9887
9888 2010-10-29  Stephen Berman  <stephen.berman@gmx.net>  (tiny change)
9889
9890         * gnus-group.el (gnus-group-get-new-news-this-group): Don't have point
9891         move to the previous line on `M-g'.
9892
9893 2010-10-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9894
9895         * gnus-msg.el (gnus-inews-do-gcc): Don't have the backends do the slow
9896         *-request-group, which seems unnecessary.
9897
9898         * nnimap.el (nnimap-quote-specials): Function copied over from
9899         imap.el.
9900         (nnimap-open-connection): Use AUTHENTICATE PLAIN on servers that say
9901         they support that.  Suggested by Tom Regner.
9902
9903 2010-10-29  Julien Danjou  <julien@danjou.info>
9904
9905         * gnus-sum.el (gnus-summary-delete-marked-as-read): Remove obsolete
9906         defalias.
9907         (gnus-summary-delete-marked-with): Remove obsolete defalias.
9908
9909         * gnus.el: Remove `gnus-nntp-service' variable.
9910         (gnus-secondary-servers): Make obsolete.
9911         (gnus-nntp-server): Make obsolete.
9912
9913         * gnus-start.el (gnus-1): Remove x-splash calls.
9914
9915         * gnus-ems.el (gnus-x-splash): Remove.
9916
9917         * gnus.el (gnus-group-startup-message): Simplify/update code.
9918
9919         * gnus-xmas.el (gnus-xmas-define): Remove unused gnus-characterp
9920         definition.
9921
9922         * gnus-group.el (gnus-group-make-tool-bar): Check for display graphic
9923         capability before doing anything.
9924         (gnus-group-insert-group-line): Remove useless
9925         gnus-group-remove-excess-properties.
9926
9927 2010-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
9928
9929         * gnus-art.el (gnus-article-goto-part): Work for article narrowed by ^L.
9930
9931 2010-10-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9932
9933         * gnus-sum.el (gnus-summary-rescan-group): Try to restore the window
9934         config after reselecting.
9935
9936 2010-10-28  Julien Danjou  <julien@danjou.info>
9937
9938         * shr.el (shr-put-image): Use point even if only inserting text.
9939         (shr-put-image): Save excursion when inserting alt text on non-graphic
9940         display, so the behavior is the same when we are on a graphic display.
9941
9942         * nnir.el (nnir-run-swish-e): Remove hyrex support.
9943
9944 2010-10-28  Katsumi Yamaoka  <yamaoka@jpl.org>
9945
9946         * gnus-art.el (gnus-article-jump-to-part): Error on no part; fix prompt.
9947         (gnus-mime-copy-part): Check coding system, not charset.
9948         (gnus-mime-view-part-externally): Never remove part.
9949         (gnus-mime-view-part-internally): Don't remove part here.
9950         (gnus-article-part-wrapper): Make sure MIME tag is visible.
9951         (gnus-article-goto-part): Go to displayed or preferred subpart if it is
9952         multipart/alternative.
9953
9954         * mm-decode.el (mm-display-part): Take optional arg `force'.
9955
9956 2010-10-26  Julien Danjou  <julien@danjou.info>
9957
9958         * gnus-group.el (gnus-group-default-list-level): Add this function to
9959         compute the default list level.
9960         (gnus-group-default-list-level): Add possibility to use a function.
9961
9962 2010-10-27  Katsumi Yamaoka  <yamaoka@jpl.org>
9963
9964         * mm-decode.el (mm-shr): Add undisplayer to MIME handle.
9965
9966         * gnus-group.el (gnus-group-completing-read)
9967         (gnus-read-ephemeral-bug-group): Replace replace-regexp-in-string with
9968         gnus-replace-in-string.
9969
9970 2010-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
9971
9972         * shr.el (shr-tag-div): Add.
9973
9974         * lpath.el: Fbind current-idle-time for XEmacs 21.4 and SXEmacs 22.1.
9975
9976 2010-10-25  Julien Danjou  <julien@danjou.info>
9977
9978         * gnus-util.el: Remove `gnus-with-local-quit'.
9979
9980         * gnus-demon.el (gnus-demon-init): Use run-with-idle-timer function.
9981
9982 2010-10-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9983
9984         * gnus-sum.el (gnus-summary-select-article): Fix type error in checking
9985         the original article buffer.
9986
9987 2010-10-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9988
9989         * nnimap.el (nnimap-request-head): New function.
9990         (nnimap-request-move-article): Try to be slightly faster by not
9991         requesting the entire message when moving.
9992         (nnimap-transform-headers): Don't bug out on bodiless articles.
9993         (nnimap-send-command): Have no outstanding messages if the IMAP server
9994         doesn't support streaming.
9995         (nnimap-transform-headers): Fold {quoted} strings more sloppily.
9996
9997 2010-10-24  Julien Danjou  <julien@danjou.info>
9998
9999         * message.el (message-default-headers): Fix type.
10000
10001 2010-10-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10002
10003         * gnus-html.el (gnus-html-prefetch-images): Decode entities before
10004         prefetching images.
10005
10006         * gnus-sum.el (gnus-group-make-articles-read): Propagate marks to the
10007         backend for unknown groups.  This is mainly useful for nnimap groups.
10008
10009         * gnus-agent.el (gnus-agent-fetch-group): Don't download stuff if the
10010         group isn't covered by the agent.
10011
10012 2010-10-22  Andrew Cohen  <cohen@andy.bu.edu>
10013
10014         * nnir.el (nnir-method-default-engines): New variable.
10015         (nnir-run-query): Use it.
10016         (nnir-group-mode-hook): Remove key binding and move to gnus-group.el.
10017         (gnus-summary-nnir-goto-thread): Change group if needed.
10018
10019         * gnus-group.el (gnus-group-group-map): Add key binding for
10020         gnus-group-make-nnir-group.
10021
10022 2010-10-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10023
10024         * shr.el (shr-tag-object): Add.
10025
10026         * gnus-sum.el (gnus-summary-select-article): Make sure we have the
10027         original article buffer live.
10028         (gnus-summary-select-article-buffer):
10029         Mention gnus-widen-article-buffer.
10030
10031 2010-10-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10032
10033         * shr.el (shr-tag-strong): Add.
10034
10035 2010-10-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10036
10037         * gnus-group.el (gnus-group-completing-read): Remove all newlines from
10038         group names.  They mess up the group buffer badly.
10039
10040         * shr.el (shr-tag-img): Don't bug out on images that don't have a SRC.
10041
10042         * gnus-group.el (gnus-group-mark-group): Use gnus-group-position-point
10043         instead of the summary one.
10044
10045 2010-10-22  Katsumi Yamaoka  <yamaoka@jpl.org>
10046
10047         * mml.el (mml-preview): Work properly when editing article.
10048
10049         * gnus-start.el (gnus-read-active-file-1): Don't add method to
10050         gnus-have-read-active-file if it's already been in.
10051
10052 2010-10-22  Tom Tromey  <tromey@redhat.com>
10053
10054         * gnus-group.el (gnus-group-unsubscribe-group): Fix args passed to
10055         gnus-group-completing-read.
10056
10057 2010-10-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10058
10059         * message.el (message-mode-map): Don't bind M-; to comment region, to
10060         allow the global comment-dwim to work.
10061
10062 2010-10-21  Julien Danjou  <julien@danjou.info>
10063
10064         * message.el (message-setup-1): Allow message-default-headers to be a
10065         function.
10066
10067 2010-10-21  Katsumi Yamaoka  <yamaoka@jpl.org>
10068
10069         * shr.el (shr-tag-table): Simplify.
10070
10071 2010-10-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10072
10073         * gnus-html.el (gnus-html-prefetch-images): Only prefetch http images
10074         to avoid trying to snarf invalid stuff.
10075
10076         * gnus-sum.el (gnus-summary-edit-article-done): Bind free variable.
10077
10078         * gnus.el (gnus-message-archive-group): Quote value.
10079         (gnus-message-archive-group): Mark as changed.
10080
10081         * shr.el (shr-add-font): Don't put the font properties on the newline
10082         or the indentation.
10083
10084         * message.el (message-fix-before-sending): Change options when sending
10085         non-printable characters.
10086
10087         * gnus.el (gnus-message-archive-method): Change the default to
10088         monthly outgoing groups.
10089
10090         * gnus-sum.el (gnus-summary-edit-article-done): Try to replace articles
10091         that have gotten new numbers.
10092
10093         * nnimap.el (nnimap-request-replace-article): New function.
10094
10095 2010-10-21  Katsumi Yamaoka  <yamaoka@jpl.org>
10096
10097         * nnrss.el (nnrss-wash-html-in-text-plain-parts): Remove.
10098         (nnrss-request-article): Don't use special html washing code.
10099
10100 2010-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
10101
10102         * shr.el (shr-tag-table): Remove useless nconc.
10103
10104 2010-10-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10105
10106         * gnus-art.el (article-wash-html): Simplify and remove the charset
10107         stuff.  Use the normal html rendering code instead of the special html
10108         washing code.
10109
10110         * mm-view.el (mm-text-html-renderer-alist): Add the `shr' and
10111         `gnus-w3m' symbols.
10112         (mm-text-html-washer-alist): Remove.
10113
10114         * mm-decode.el (mm-inline-text-html-renderer): Remove.
10115         (mm-inline-media-tests): Remove use.
10116         (mm-text-html-renderer): Change default to the `shr' symbol.
10117
10118         * mm-view.el (mm-inline-text-html): Remove use.
10119
10120         * gnus-art.el (gnus-blocked-images): New function.  Allow the
10121         `gnus-blocked-images' to be a function.
10122         (gnus-article-wash-function): Remove.
10123
10124 2010-10-20  Julien Danjou  <julien@danjou.info>
10125
10126         * spam.el (spam-list-of-processors): Mark as obsolete.
10127
10128         * nnimap.el (nnimap-request-article): Fix BODYSTRUCTURE retrieval.
10129         (nnimap-insert-partial-structure): Fix boundary detection.
10130
10131 2010-10-20  Andreas Seltenreich  <seltenreich@gmx.de>
10132
10133         * gnus-draft.el (gnus-draft-check-draft-articles): Don't unnecessarily
10134         run file-truename on remote files.  This can be expensive and even
10135         prevent one from editing drafts if some unrelated buffer has a stale
10136         connection.
10137
10138 2010-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
10139
10140         * shr.el (shr-find-fill-point): Shorten line if the preceding char is
10141         kinsoku-eol regardless of shr-kinsoku-shorten.
10142         (shr-tag-table-1): Rename from shr-tag-table; make it a subroutine.
10143         (shr-tag-table): Support caption, thead, and tfoot.
10144
10145 2010-10-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10146
10147         * shr.el (shr-find-fill-point): Don't leave blanks at the start of some
10148         lines.
10149         (shr-save-contents): New command and keystroke.
10150
10151         * nndoc.el (nndoc-type-alist): Add git support.
10152         (nndoc-git-type-p): New function.
10153         (nndoc-transform-git-article): Ditto.
10154         (nndoc-transform-git-headers): Ditto.
10155         (nndoc-transform-git-headers): Generate Subject headers.
10156
10157         * shr.el (shr-parse-style): New function.
10158         (shr-tag-span): Ditto.
10159
10160         * nnmairix.el (nnmairix-summary-mode-hook): Move nnmairix's `$' command
10161         to `G G' to avoid collisions.
10162
10163 2010-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
10164
10165         * shr.el: Load kinsoku if necessary.
10166         (shr-kinsoku-shorten): New internal variable.
10167         (shr-find-fill-point): Make kinsoku shorten text line if
10168         shr-kinsoku-shorten is bound to non-nil.
10169         (shr-tag-table): Bild shr-kinsoku-shorten to t; refer to
10170         shr-indentation too when testing if table is wider than frame width.
10171         (shr-insert-table): Use `string-width' instead of `length' to measure
10172         text width.
10173         (shr-insert-table-ruler): Make sure indentation is done at bol.
10174
10175 2010-10-19  Stefan Monnier  <monnier@iro.umontreal.ca>
10176
10177         * nnimap.el (nnimap-request-move-article, nnimap-parse-line)
10178         (nnimap-process-expiry-targets): Use unibyte for buffers that hold
10179         undecoded network data.
10180
10181 2010-10-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10182
10183         * gnus-agent.el (gnus-agent-toggle-plugged): Use the right minor mode
10184         name in the mode line spec so that the mode line menu works
10185         (bug#2431).
10186
10187         * message.el (message-get-reply-headers): If we're fed `to-address',
10188         then always use that.
10189
10190         * gnus-art.el (gnus-article-make-menu-bar): The article/group menus
10191         aren't so wide as to need to switch off the edit menu.
10192
10193         * gnus-delay.el (gnus-delay-article): Remove superfluous `group'
10194         binding.  Suggested by Leo <sdl.web@gmail.com> (bug#6613).
10195
10196         * nnimap.el (nnimap-request-group): Don't SELECT the group twice on
10197         `M-g'.
10198         (nnimap-update-info): Update flags/read marks even if \* isn't part of
10199         the permanent marks.
10200
10201 2010-10-18  Andrew Cohen  <cohen@andy.bu.edu>
10202
10203         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
10204         Splitting according to references/in-reply-to obeys the ignore-groups
10205         variable, while splitting by sender and subject do not.
10206
10207 2010-10-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10208
10209         * gnus-art.el (gnus-article-dumbquotes-map): Make into a char/string
10210         alist, so that we can look for non-Unicode chars.
10211         (article-translate-strings): Allow both character and string maps.
10212
10213 2010-10-18  Katsumi Yamaoka  <yamaoka@jpl.org>
10214
10215         * shr.el (shr-insert): Don't insert space behind a wide character
10216         categorized as kinsoku-bol, or between characters both categorized as
10217         nospace.
10218
10219 2010-10-16  Andrew Cohen  <cohen@andy.bu.edu>
10220
10221         * gnus-sum.el (gnus-summary-refer-thread): Bug fix.  Add the thread
10222         headers to gnus-newsgroup-headers.
10223
10224 2010-10-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10225
10226         * shr.el (shr-tag-img): Don't align images -- since we're not
10227         rescaling, this often leads to ugly displays.
10228
10229 2010-10-15  Andrew Cohen  <cohen@andy.bu.edu>
10230
10231         * gnus-sum.el (gnus-summary-refer-thread): Unconditionally ignore
10232         duplicates.
10233
10234 2010-10-15  Kan-Ru Chen  <kanru@kanru.info>  (tiny change)
10235
10236         * gnus-diary.el (gnus-diary-check-message): Fix gnus-completing-read
10237         call.
10238
10239 2010-10-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10240
10241         * gnus.el: Autoload gnus-html-show-images.
10242
10243         * nnimap.el: Use nnheader-message throughout.
10244
10245         * shr.el (shr-tag-img): Ignore images with no data.
10246
10247 2010-10-15  Julien Danjou  <julien@danjou.info>
10248
10249         * mml.el (mml-generate-mime-1): Add `mml-enable-flowed' variable to add
10250         a possibility to disable format=flow encoding when using hard newlines.
10251
10252 2010-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
10253
10254         * shr.el (shr-insert): Remove space inserted before or after a
10255         breakable character or at the beginning or the end of a line.
10256         (shr-find-fill-point): Do kinsoku; find the second best point or give
10257         it up if there's no breakable point.
10258
10259 2010-10-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10260
10261         * nnimap.el (nnimap-open-connection): Message when opening connection
10262         for debugging purposes.
10263
10264         * gnus-art.el (gnus-article-setup-buffer): Set article mode truncation
10265         on every setup buffer call to allow this to change from article to
10266         article.
10267
10268         * shr.el (shr-tag-table): Experimental feature: Truncate lines in
10269         buffers where we have a wide table.
10270
10271 2010-10-14  Andrew Cohen  <cohen@andy.bu.edu>
10272
10273         * gnus-sum.el (gnus-summary-refer-thread): Implement a version that
10274         uses *-request-thread.
10275
10276 2010-10-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10277
10278         * nnimap.el (nnimap-open-connection): Remove %s from openssl
10279         incantation, which is no longer valid.
10280
10281 2010-10-14  Julien Danjou  <julien@danjou.info>
10282
10283         * shr.el: Fix defcustom type (char -> character).
10284
10285 2010-10-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10286
10287         * nnimap.el (nnimap-open-connection): tls-program should be a list of
10288         programs.
10289
10290 2010-10-14  Julien Danjou  <julien@danjou.info>
10291
10292         * shr.el (shr-tag-a): Use url-link as widget type.
10293
10294         * gnus-group.el (gnus-group-insert-group-line): Fix group argument to
10295         `gnus-group-get-icon'.
10296
10297 2010-10-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10298
10299         * nnimap.el (nnimap-close-server): Forget the nnimap data on close.
10300         This should make server editing work better.
10301
10302         * shr.el (shr-find-fill-point): Don't inloop on indented text.
10303
10304         * tls.el (tls-program): Remove spurious %s from openssl.
10305
10306         * nnimap.el (nnimap-open-connection): Fix open-tls-stream call.
10307         (nnimap-parse-flags): Fix regexp.
10308
10309         * shr.el (shr-find-fill-point): Use a filling algorithm that should
10310         probably work for CJVK text, too.
10311
10312         * nnimap.el (nnimap-extend-tls-programs): Remove.
10313         (nnimap-open-connection): Bind STARTTLS to openssl explicitly.
10314
10315         * tls.el (tls-starttls-switches): Remove starttls hack.
10316         (open-tls-stream): Ditto.
10317         (tls-find-starttls-argument): Ditto.
10318
10319 2010-10-13  Julien Danjou  <julien@danjou.info>
10320
10321         * nnimap.el (nnimap-parse-flags): Be more strict when looking for FETCH
10322         responses.
10323
10324 2010-10-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10325
10326         * mm-decode.el (mm-shr): Allow use from non-Gnus users.
10327
10328         * gnus-spec.el (gnus-parse-simple-format): princ doesn't really insert
10329         anything in Emacs.
10330
10331         * shr.el (shr-current-column): Remove buggy and unnecessary function.
10332
10333 2010-10-13  Julien Danjou  <julien@danjou.info>
10334
10335         * shr.el (shr-width): Make shr-width a defcustom with default to
10336         fill-column.
10337         (shr-tag-img): Use shr-width rather than fill-column.
10338
10339 2010-10-13  Katsumi Yamaoka  <yamaoka@jpl.org>
10340
10341         * dgnushack.el (byte-optimize-apply):
10342         * gnus-dired.el (gnus-dired-attach): Silence XEmacs 21.5 when compiling.
10343
10344         * gnus-gravatar.el (gnus-gravatar-transform-address): Adjust avatars'
10345         position when (X-)Faces exist.
10346         (gnus-treat-from-gravatar, gnus-treat-mail-gravatar): Force displaying
10347         avatars when called interactively.
10348
10349 2010-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
10350
10351         * gnus-gravatar.el (gnus-gravatar-too-ugly): Don't test if
10352         gnus-article-x-face-too-ugly is bound.
10353
10354 2010-10-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10355
10356         * rfc2231.el (rfc2231-parse-string): Ignore repeated parts.
10357
10358         * nnimap.el (nnimap-request-rename-group): Unselect by selecting a
10359         mailbox that doesn't exist.
10360
10361 2010-10-12  Julien Danjou  <julien@danjou.info>
10362
10363         * shr.el (shr-tag-img): Encode URL properly when retrieving.
10364         (shr-get-image-data): Encode URL properly when fetching from cache.
10365         (shr-tag-img): Use aligned-to spaces to align correctly images.
10366
10367         * gnus-gravatar.el (gnus-gravatar-insert): Check if buffer is alive
10368         before inserting the Gravatar.
10369
10370         * shr.el (shr-tag-img): Add align attribute support for <img>.
10371
10372 2010-10-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10373
10374         * gnus-gravatar.el (gnus-art): Require.
10375
10376         * gnus-sum.el (gnus-summary-mark-as-unread-forward)
10377         (gnus-summary-mark-as-unread-backward, gnus-summary-mark-as-unread):
10378         Remove long obsoleted functions.
10379
10380 2010-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
10381
10382         * lpath.el: Fbind gnutls-negotiate for Emacs 22 and XEmacsen.
10383
10384         * nnimap.el (gnutls-negotiate): Silence the byte compiler.
10385
10386         * gnus-art.el, gnus-cache.el, gnus-fun.el, gnus-group.el:
10387         * gnus-picon.el, gnus-spec.el, gnus-sum.el, gnus-util.el, gnus.el:
10388         * hashcash.el, imap.el, mail-source.el, message.el, mm-bodies.el:
10389         * mm-decode.el, mm-extern.el, mm-util.el, mm-view.el, mml-smime.el:
10390         * mml.el, mml1991.el, mml2015.el, nnfolder.el, nnheader.el, nnmail.el:
10391         * nnmaildir.el, nnrss.el, nntp.el, pgg-parse.el, pgg.el, rfc1843.el:
10392         * sieve-manage.el, smime.el, spam.el:
10393         Fix comment for declare-function.
10394
10395 2010-10-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10396
10397         * nnimap.el (nnimap-request-rename-group): Select group read-only
10398         before renaming it.
10399
10400         * shr.el (shr-insert): Fix up the white space only regexp.
10401
10402         * nnimap.el (nnimap-transform-split-mail): Not all articles have
10403         bodies.  Protect against this.  Reported by Michael Welsh Duggan.
10404
10405         * shr.el (shr-current-column): New function.
10406         (shr-find-fill-point): New function.
10407
10408 2010-10-11  Michael Welsh Duggan  <md5i@md5i.com>  (tiny change)
10409
10410         * sieve-manage.el (sieve-manage-open): Allow port names as well as port
10411         numbers.
10412
10413 2010-10-11  Julien Danjou  <julien@danjou.info>
10414
10415         * shr.el (shr-hr-line): Add.
10416         (shr-tag-hr): Use shr-hr-line to specify which character to use to
10417         display hr lines.
10418         (shr-max-columns): Do not change state to nil if we just inserting
10419         spaces.
10420
10421 2010-10-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10422
10423         * gnus-topic.el (gnus-topic-read-group): If after the last group,
10424         select the last group.
10425
10426 2010-10-11  Teodor Zlatanov  <tzz@lifelogs.com>
10427
10428         * gnus-int.el (gnus-run-hook-with-args): Autoload from gnus-util.el.
10429
10430 2010-10-10  Dan Nicolaescu  <dann@ics.uci.edu>
10431
10432         * dig.el (dig-mode-map): Declare and define in one step.
10433
10434 2010-10-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10435
10436         * nnimap.el (nnimap-update-qresync-info): \Flagged messages are read
10437         for Gnus.
10438         (nnimap-retrieve-group-data-early): utf7-encode the group parameters.
10439         (nnimap-update-qresync-info): Mark \Seen articles as read.
10440
10441         * gnus-sum.el (gnus-summary-set-local-parameters): Ignore the `active'
10442         non-variable, too.
10443
10444         * nnimap.el (nnimap-open-connection): Use gnutls STARTTLS, if
10445         available.
10446         (nnimap-update-info): Rely more on the current active than the param
10447         active to avoid marking articles as read too much.
10448
10449         * auth-source.el (auth-source-create): Use (user-login-name) for the
10450         user name default.
10451
10452         * nnimap.el (nnimap-update-info): If the server doesn't return any
10453         useful info, just use the previous info.
10454         (nnimap-update-info): Prefer old info over start-article.
10455         (nnimap-update-qresync-info): Finish implementing QRESYNC.
10456
10457 2010-10-10  Andrew Cohen  <cohen@andy.bu.edu>
10458
10459         * nnir.el (autoload): Clean up autoloads.
10460         (nnir-imap-default-search-key): Rename from nnir-imap-search-field.
10461         Use key rather than value.
10462         (nnir-imap-search-other): New variable.
10463         (nnir-read-parm): Use it.
10464         (nnir-imap-expr-to-imap): Use %S rather than imap-quote-specials.
10465         (gnus-summary-nnir-goto-thread): Modify to work with imap.
10466
10467 2010-10-10  Stefan Monnier  <monnier@iro.umontreal.ca>
10468
10469         * nnimap.el (nnimap-wait-for-response): If the user hits `C-g', kill
10470         the process, too.
10471
10472 2010-10-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10473
10474         * spam.el (gnus-summary-mode-map): Bind to "$".
10475         Suggested by Russ Allbery.
10476
10477         * shr.el: Rework the way things are indented by <li> slightly.
10478
10479         * gnus.el (gnus-group-set-parameter): Fix typo.
10480
10481         * nnimap.el: Start implementing QRESYNC support.
10482
10483 2010-10-09  Julien Danjou  <julien@danjou.info>
10484
10485         * nnir.el (nnir-engines): Fix too many arguments.
10486
10487 2010-10-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10488
10489         * nnmail.el (nnmail-expiry-target-group): Say that every expiry target
10490         group is the "last", so that the backends like nnfolder actually save
10491         their folders.
10492
10493         * nnimap.el (nnimap-open-connection): If we have gnutls loaded, then
10494         try to use that for the tls stream.
10495         (nnimap-retrieve-group-data-early): Rework the marks code to heed
10496         UIDVALIDITY and find out which groups are read-only and not.
10497         (nnimap-get-flags): Use the same marks parsing code as the rest of
10498         nnimap.
10499
10500 2010-10-09  Julien Danjou  <julien@danjou.info>
10501
10502         * nnir.el (nnir-read-parm): Fix call to gnus-completing-read.
10503
10504         * gnus-gravatar.el (gnus-gravatar-transform-address): Error errors when
10505         retrieving gravatars.
10506
10507         * shr.el (shr-table-corner): Add.
10508         (shr-table-line): Add.
10509         (shr-insert-table-ruler): Use the above defcustoms to insert tables.
10510
10511 2010-10-08  Julien Danjou  <julien@danjou.info>
10512
10513         * mm-decode.el (mm-text-html-renderer): Add mm-shr in choice list.
10514
10515 2010-10-08  Teodor Zlatanov  <tzz@lifelogs.com>
10516
10517         * gnus-util.el (gnus-alist-pull): Rename `gnus-pull'.
10518
10519         * gnus-sum.el (gnus-mark-article-as-unread)
10520         (gnus-summary-mark-article-as-unread, gnus-summary-remove-bookmark)
10521         (gnus-summary-set-bookmark): Use it.
10522
10523         * gnus-msg.el (gnus-setup-message): Use it.
10524
10525         * gnus-demon.el (gnus-demon-remove-handler): Use it.
10526
10527         * gnus.el (gnus-group-remove-parameter): Use it.
10528
10529         * gnus-group.el (gnus-group-make-web-group): Use it.
10530
10531         * gnus-demon.el (gnus-demon-remove-handler): Use it.
10532
10533         * nnregistry.el: Update docs to mention manual.
10534
10535         * gnus-registry.el: Update docs to mention nnregistry.el.
10536         (gnus-registry-initialize): Don't install nnregistry refer method
10537         automatically.
10538         (gnus-registry-install-nnregistry): Remove it.
10539
10540 2010-10-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10541
10542         * shr.el (shr-insert): Don't insert double spaces.
10543
10544 2010-10-08  Katsumi Yamaoka  <yamaoka@jpl.org>
10545
10546         * gnus-gravatar.el (gnus-treat-from-gravatar)
10547         (gnus-treat-mail-gravatar): Bind gnus-gravatar-too-ugly to nil when
10548         called interactively.
10549
10550         * gnus-art.el (gnus-mime-view-part-externally)
10551         (gnus-mime-view-part-internally): Make predicate function passed to
10552         gnus-mime-view-part-as-type assume argument is a mime type, not a list
10553         of a mime type.
10554
10555         * shr.el (shr-table-widths): Don't use cl function `reduce'.
10556
10557 2010-10-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10558
10559         * shr.el (require): Require cl when compiling.
10560         (shr-tag-hr): New function.
10561
10562         * nnimap.el (nnimap-update-info): Remove double setting of high.
10563         (nnimap-update-info): Don't ignore groups that have no UIDNEXT.
10564         This makes nnimap work properly on Courier again.
10565
10566         * gnus.el (gnus-carpal): The carpal mode has been removed, but define
10567         the variable for backwards compatibility.
10568
10569         * mm-decode.el (mm-save-part): If given a non-directory result, expand
10570         the file name before using to avoid setting mm-default-directory to
10571         nil.
10572
10573         * gnus-start.el (gnus-get-unread-articles): Require gnus-agent before
10574         bidning gnus-agent variables.
10575
10576         * shr.el (shr-render-td): Use a cache for the table rendering function
10577         to avoid getting an exponential rendering behavior in nested tables.
10578         (shr-insert): Rework the line-breaking algorithm.
10579         (shr-insert): Don't leave trailing spaces.
10580         (shr-insert-table): Also insert empty TDs.
10581         (shr-tag-blockquote): Ensure paragraphs after </ul>.
10582
10583 2010-10-07  Stefan Monnier  <monnier@iro.umontreal.ca>
10584
10585         * gnus-sum.el (gnus-number): Rename from `number'.
10586         (gnus-article-marked-p, gnus-summary-limit-to-display-predicate)
10587         (gnus-summary-limit-children): Update uses correspondingly.
10588
10589 2010-10-07  Katsumi Yamaoka  <yamaoka@jpl.org>
10590
10591         * gnus-gravatar.el (gnus-gravatar-too-ugly): New user option.
10592         (gnus-gravatar-transform-address): Don't show avatars of people of
10593         which mail addresses match gnus-gravatar-too-ugly.
10594
10595 2010-10-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10596
10597         * shr.el (shr-table-widths): Expand TD elements to fill available
10598         space.
10599
10600 2010-10-07  Julien Danjou  <julien@danjou.info>
10601
10602         * nnimap.el (nnimap-request-rename-group): Add this method.
10603
10604 2010-10-07  Katsumi Yamaoka  <yamaoka@jpl.org>
10605
10606         * gnus-html.el (gnus-html-schedule-image-fetching): Remove function
10607         name from XEmacs' function-arglist.
10608
10609         * gnus-gravatar.el (gnus-gravatar-insert): Don't add properties to
10610         gravatar under XEmacs.
10611
10612 2010-10-07  Teodor Zlatanov  <tzz@lifelogs.com>
10613
10614         * auth-source.el: Update docs with TODO items.
10615
10616         * gnus-sync.el: Update docs to explain state and plans.
10617
10618         * gnus-int.el (gnus-after-set-mark-hook, gnus-before-update-mark-hook):
10619         Hooks for mark updates.
10620         (gnus-request-set-mark, gnus-request-update-mark): Use them.
10621
10622         * gnus-util.el (gnus-run-hooks-with-args): Convenience function to run
10623         hooks with arguments, which is needed for mark update hooks.
10624
10625 2010-10-06  Julien Danjou  <julien@danjou.info>
10626
10627         * gnus.el (gnus-expand-group-parameter): Only return and act on what
10628         was matched.
10629
10630         * sieve-manage.el: Update example in `Commentary'.
10631
10632         * sieve.el (sieve-open-server): Use sieve-manage-authenticate.
10633
10634         * sieve-manage.el (sieve-manage-open): Use sieve-manage-default-port,
10635         not 2000.
10636         (sieve-manage-authenticate): Re-add function.
10637
10638 2010-10-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10639
10640         * shr.el (shr-insert): Get 'space transition right.
10641         (shr-render-td): Only delete space at the end of the TD.
10642
10643         * nnimap.el (nnimap-open-connection): Prepare to support
10644         open-gnutls-stream.
10645
10646         * shr.el: Rearrange function order to be more logical.
10647
10648 2010-10-06  Julien Danjou  <julien@danjou.info>
10649
10650         * nnrss.el (nnrss-check-group): Remove 404 URL in comment.
10651         (nnrss-discover-feed): Remove 404 URL in docstring.
10652
10653         * nnir.el: Fix Swish-E URL.
10654         Fix Namazu URL.
10655
10656         * message.el (message-change-subject): Remove 404 URL in a comment.
10657
10658 2010-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
10659
10660         * gnus-art.el (gnus-mime-view-part-as-type): Make it work when being
10661         called interactively.
10662
10663         * gnus-util.el (gnus-remove-if): Allow hash table.
10664         (gnus-remove-if-not): New function.
10665
10666         * gnus-art.el (gnus-mime-view-part-as-type):
10667         * gnus-score.el (gnus-summary-score-effect):
10668         * gnus-sum.el (gnus-read-move-group-name):
10669         Replace remove-if-not with gnus-remove-if-not.
10670
10671         * gnus-group.el (gnus-group-completing-read):
10672         Regard collection as a hash table if it is not a list.
10673
10674 2010-10-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10675
10676         * shr.el (shr-render-td): Allow blank/missing <TD>s.
10677
10678         * shr.el: Document the table-rendering algorithm.
10679
10680 2010-10-05  Katsumi Yamaoka  <yamaoka@jpl.org>
10681
10682         * dgnushack.el (dgnushack-compile): Exclude shr.el from being compiled
10683         for Emacsen having no `libxml-parse-html-region' support.
10684
10685 2010-10-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10686
10687         * gnus-html.el (gnus-html-schedule-image-fetching): Protect against
10688         invalid URLs.
10689
10690         * shr.el (shr-tag-img): Shorten ALT texts and allow them to be
10691         line-broken.
10692         (shr-tag-img): Ignore image fetching errors.
10693         (shr-overlays-in-region): Compute overlay positions correctly.
10694
10695         * mm-decode.el (mm-shr): Require shr.
10696
10697         * gnus-art.el (gnus-blocked-images): Move variable here.
10698
10699         * shr.el (shr-insert-table): Bind free variable.
10700
10701         * mm-decode.el (mm-shr): Bind shr-content-function.
10702
10703         * shr.el (shr-content-function): New variable.
10704
10705         * gnus-sum.el (gnus-article-sort-by-most-recent-date): New function,
10706         added for symmetry.
10707
10708         * nnir.el (nnir-retrieve-headers): Don't bug out on invalid data.
10709
10710         * gnus-group.el (gnus-group-make-group): Doc fix.
10711
10712         * nnimap.el (nnimap-request-newgroups): Return success.
10713
10714         * shr.el (shr-find-elements): New function.
10715         (shr-tag-table): Put all the images after the table.
10716         (shr-tag-table): Really inhibit images inside the table.
10717         (shr-collect-overlays): Copy over overlays from the TD elements to the
10718         main document.
10719
10720         * mm-decode.el (mm-shr): Bind shr-blocked-images to
10721         gnus-blocked-images.
10722
10723 2010-10-05  Julien Danjou  <julien@danjou.info>
10724
10725         * sieve-manage.el (sieve-sasl-auth): Use auth-source to authenticate.
10726
10727         * gnus-html.el (gnus-html-wash-images): Rescale image from cid too.
10728         (gnus-html-maximum-image-size): Add this function.
10729         (gnus-html-put-image): Use gnus-html-maximum-image-size.
10730
10731         * sieve-manage.el (sieve-manage-capability): Do not bug out when the
10732         server-value of the capability is nil.
10733
10734 2010-10-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10735
10736         * shr.el (shr-tag-em): Add <EM> tag.
10737
10738 2010-10-05  Florian Ragwitz  <rafl@debian.org>  (tiny change)
10739
10740         * sieve-manage.el (sieve-manage-default-stream): Make default stream
10741         customizable.
10742
10743         * gnus-html.el (gnus-html-wash-tags): Decode URL entities to avoid
10744         handing broken links to browse-url.
10745
10746 2010-10-05  Julien Danjou  <julien@danjou.info>
10747
10748         * gnus-util.el (gnus-emacs-completing-read)
10749         (gnus-iswitchb-completing-read): Use autoload rather than require.
10750
10751 2010-10-05  Katsumi Yamaoka  <yamaoka@jpl.org>
10752
10753         * lpath.el: Fbind libxml-parse-html-region and shr-insert-document for
10754         Emacs 22 and XEmacs; fbind help-function-arglist for XEmacs 21.4 and
10755         SXEmacs; fbind ido-completing-read, and bind iswitchb-mode and
10756         iswitchb-temp-buflist for XEmacs.
10757
10758         * gnus-util.el (gnus-completing-read-function): Exclude
10759         gnus-icompleting-read and gnus-ido-completing-read from candidates for
10760         XEmacs since iswitchb.el is very old and ido.el is unavailable in
10761         XEmacs.
10762
10763         * gnus-registry.el (gnus-registry-install-nnregistry): Rewrite so as
10764         not to use `delete-dups' that is unavailable in XEmacs 21.4.
10765
10766         * gnus-html.el: Don't require help-fns under XEmacs.
10767         (gnus-html-schedule-image-fetching): Work for XEmacs.
10768
10769         * mm-decode.el (mm-shr): Decode contents by charset.
10770
10771 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10772
10773         * nnimap.el (nnimap-open-connection): Give an error if nnimap-stream is
10774         unknown.
10775
10776         * shr.el (shr-tag-blockquote): Ensure paragraph after quote, too.
10777         (shr-get-image-data): Ensure against the cache file missing.
10778
10779         * nnimap.el (nnimap-finish-retrieve-group-infos): Message while waiting
10780         for data.
10781
10782         * spam-report.el (spam-report-url-ping-plain): Don't query about
10783         killing the process.
10784
10785         * shr.el (shr-render-td): Protect against too-wide text.
10786
10787 2010-10-04  Julien Danjou  <julien@danjou.info>
10788
10789         * mml-smime.el (mml-smime-openssl-encrypt-query): Fix choices.
10790         (mml-smime-openssl-sign-query): Fix gnus-completing-read call.
10791
10792         * gravatar.el (gravatar-retrieved): Kill buffer when gravatar has been
10793         retrieved.
10794
10795 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10796
10797         * shr.el (browse-url): Require.
10798         (shr-ensure-paragraph): Don't insert a new newline after empty-ish
10799         lines.
10800         (shr-show-alt-text, shr-browse-image): New commands.
10801         (shr-browse-url, shr-copy-url): New commands.
10802
10803         * gnus-sum.el (gnus-widen-article-window): New variable.
10804         (gnus-summary-select-article-buffer): Use it.
10805
10806         * message.el (message-idna-to-ascii-rhs-1): Don't bug out on addresses
10807         without @ signs.
10808
10809 2010-10-04  Michael Welsh Duggan  <md5i@md5i.com>  (tiny change)
10810
10811         * nnir.el (nnir-run-imap): Remove spurious space in search string.
10812
10813 2010-10-04  Julien Danjou  <julien@danjou.info>
10814
10815         * gnus-util.el (gnus-emacs-completing-read): Mapcar collection to list,
10816         for XEmacs.
10817
10818 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10819
10820         * gnus-salt.el: Remove all gnus-carpal stuff -- it's not useful.
10821
10822         * nnimap.el (nnimap-open-connection): Allow tls as a synonym for ssl.
10823         (nnimap-close-server): Implement.
10824
10825         * dgnushack.el (iswitchb): Require to shut up the compiler.
10826
10827         * shr.el (shr-ensure-paragraph): Fix the non-empty line case.
10828         (shr-insert): Tweak line breaking.
10829         (shr-insert): Handle <pre> better.
10830         (shr-tag-li): Get <li> indentation right.
10831         (shr-tag-li): Get <li> indentation even righter.
10832         (shr-tag-blockquote): Ensure paragraph start.
10833         (shr-make-table): Tweak table generation.
10834         (shr-make-table): Fix typo.
10835
10836         * shr.el: Implement table rendering.
10837
10838 2010-10-04  Julien Danjou  <julien@danjou.info>
10839
10840         * gnus-html.el (gnus-html-put-image): Fix resize image code.
10841
10842 2010-10-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10843
10844         * shr.el (shr-insert): Use string anchors instead of line anchors.
10845
10846 2010-10-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10847
10848         * shr.el: Add headings.
10849         (shr-ensure-paragraph): Actually work.
10850         (shr-tag-li): Make <ul> prettier.
10851         (shr-insert): Get white space at the beginning/end of elements right.
10852         (shr-tag-p): Collapse subsequent <p>s.
10853         (shr-ensure-paragraph): Don't insert double line feeds after blank
10854         lines.
10855         (shr-insert): \t is also space.
10856         (shr-tag-s): Fix "s" tag name function.
10857         (shr-tag-s): Fix face prop name.
10858
10859 2010-10-03  Julien Danjou  <julien@danjou.info>
10860
10861         * gnus-html.el (gnus-html-put-image): Use gnus-rescale-image.
10862
10863         * mm-view.el (gnus-window-inside-pixel-edges): Add autoload for
10864         gnus-window-inside-pixel-edges.
10865
10866         * gnus-ems.el (gnus-window-inside-pixel-edges): Move from gnus-html to
10867         gnus-ems.
10868
10869         * mm-view.el (mm-inline-image-emacs): Support image resizing.
10870
10871         * gnus-util.el (gnus-rescale-image): Add generic gnus-rescale-image
10872         function.
10873
10874         * mm-decode.el (mm-inline-large-images): Enhance defcustom and add
10875         resize choice.
10876
10877 2010-10-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10878
10879         * shr.el (shr-tag-p): Don't insert newlines on empty tags at the
10880         beginning of the buffer.
10881
10882         * gnus-sum.el (gnus-summary-select-article-buffer): Really select the
10883         article buffer again.
10884
10885         * shr.el (shr-tag-p): Don't insert newlines at the start of the buffer.
10886
10887         * mm-decode.el (mm-shr): Narrow before inserting, so that shr can know
10888         when it's at the start of the buffer.
10889
10890         * shr.el (shr-tag-blockquote): Convert name.
10891         (shr-rescale-image): Use the right image-size variant.
10892
10893         * gnus-sum.el (gnus-summary-select-article-buffer): If the article
10894         buffer isn't shown, then select the current article first instead of
10895         bugging out.
10896         (gnus-summary-select-article-buffer): Show both the article and summary
10897         buffers again.
10898
10899         * shr.el (shr-fontize-cont): Protect against regions with no text.
10900         Rename tag functions to shr-tag-* for enhanced security.
10901         (shr-tag-ul, shr-tag-ol, shr-tag-li, shr-tag-br): New functions.
10902
10903 2010-10-03  Chong Yidong  <cyd@stupidchicken.com>
10904
10905         * shr.el (shr-insert):
10906         * pop3.el (pop3-movemail):
10907         * gnus-html.el (gnus-html-wash-tags): Don't use plusp, as cl may not be
10908         loaded.
10909
10910 2010-10-03  Glenn Morris  <rgm@gnu.org>
10911
10912         * nnmairix.el (nnmairix-replace-illegal-chars): Drop Emacs 20 code.
10913
10914         * smime.el (smime-cert-by-ldap-1): Drop Emacs 21 code.
10915
10916         * gnus-art.el (gnus-next-page-map): Drop Emacs 20 compat cruft.
10917
10918         * gmm-utils.el (gmm-write-region): Drop Emacs 20 compat cruft.
10919
10920         * gnus-util.el (gnus-make-local-hook): Simplify.
10921
10922 2010-10-02  Julien Danjou  <julien@danjou.info>
10923
10924         * gnus-util.el (gnus-iswitchb-completing-read): New function.
10925         (gnus-ido-completing-read): New function.
10926         (gnus-emacs-completing-read): New function.
10927         (gnus-completing-read): Use gnus-completing-read-function.
10928         Add gnus-completing-read-function.
10929
10930 2010-10-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10931
10932         * shr.el (shr-insert-document): Autoload.
10933         (shr-img): Be silent.
10934         (shr-insert): Add a newline after every picture before text.
10935         (shr-add-font): Use overlays for combining faces.
10936         (shr-insert): Pass upwards the text start point.
10937
10938         * mm-decode.el (mm-text-html-renderer): Default to shr.el rendering, if
10939         possible.
10940         (mm-shr): New function.
10941
10942 2010-10-02  Julien Danjou  <julien@danjou.info>
10943
10944         * gnus-gravatar.el (gnus-gravatar-insert): Adjust character where we
10945         should go backward.
10946
10947 2010-10-02  Juanma Barranquero  <lekktu@gmail.com>
10948
10949         * shr.el (shr): Fix typo in provide call.
10950
10951 2010-10-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10952
10953         * shr.el: New file.
10954
10955         * gnus-html.el (gnus-html-schedule-image-fetching): Be silent.
10956
10957         * gnus-topic.el (gnus-topic-move-group): Fix the syntax of the
10958         completing read.
10959
10960 2010-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10961
10962         * gnus-start.el (gnus-check-bogus-newsgroups): Say how many groups
10963         we're being queried about.  Suggested by Dan Jacobson.
10964
10965         * nndoc.el (nndoc-type-alist): Do babyl before mime-parts.
10966         Suggested by Jason Eisner.
10967
10968         * gnus-async.el (gnus-async-delete-prefetched-entry): Remove from hash
10969         table, too.  Suggested by Stefan Wiens.
10970         (gnus-async-prefetched-article-entry): Use intern-soft to avoid growing
10971         the table unnecessary.  Suggested by Stefan Wiens.
10972
10973         * gnus-sum.el (gnus-summary-clear-local-variables): This is probably no
10974         longer needed, and probably doesn't work either, as pointed out by
10975         Stefan Wiens.
10976         (gnus-summary-exit): Remove call to the clearing function.
10977         (gnus-summary-exit-no-update): Ditto.
10978
10979         * gnus-art.el (gnus-summary-save-in-file): Use with-current-buffer
10980         instead of gnus-eval-in-buffer-window to avoid popping up frames.
10981         Reported by Stefan Monnier.
10982         (gnus-summary-save-in-rmail): Ditto.
10983
10984         * gnus-sum.el (gnus-summary-select-article-buffer): Show only the
10985         article buffer, instead of both the article buffer and the summary
10986         buffer.  Sort of suggested by Dan Jacobson.
10987
10988         * gnus-win.el (gnus-buffer-configuration): Add an only-article spec.
10989
10990         * nnmbox.el (nnmbox-read-mbox): Mark buffer for deletion on Gnus exit.
10991         Suggested by Dan Jacobson.
10992
10993         * mm-encode.el (mm-content-transfer-encoding-defaults): Try to make the
10994         documentation clearer.
10995
10996         * message.el (message-shorten-references): Comment on the number "21".
10997         Suggested by Stefan Monnier.
10998
10999         * gnus-sum.el (gnus-summary-scroll-up): Add more documentation.
11000         Suggested by Dan Jacobson.
11001
11002         * gnus.el (gnus-large-newsgroup):
11003         Mention gnus-large-ephemeral-newsgroup.  Suggested by Dan Jacobson.
11004
11005         * gnus-msg.el (gnus-summary-resend-message): When resending, don't
11006         externalize attachments.  Bug reported by Steve Wen.
11007
11008         * gnus.el (gnus-continuum-version): Make inactive, since it doesn't
11009         really message anything to the user.
11010
11011         * nnmail.el (nnmail-article-group): Allow using the fancy split method
11012         directly.
11013
11014         * nnimap.el (nnimap-request-group): Low higher than high to signal no
11015         messages in empty groups.
11016
11017 2010-10-01  Teodor Zlatanov  <tzz@lifelogs.com>
11018
11019         * nnimap.el (nnimap-request-group): Don't bug out when there's an empty
11020         non-UIDNEXT group.
11021
11022 2010-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11023
11024         * gnus-group.el (gnus-group-completing-read): Return the symbol name,
11025         not the value from the collection.
11026
11027         * nnimap.el (nnimap-update-info): Ignore groups that have no UIDNEXT
11028         values.  This sometimes happens on some groups that have no info.
11029         (nnimap-request-newgroups): New function.
11030
11031 2010-10-01  Teodor Zlatanov  <tzz@lifelogs.com>
11032
11033         * gnus-registry.el (gnus-registry-install-nnregistry): Move the feature
11034         check into `gnus-registry-initialize'.
11035         (gnus-registry-initialize): Ditto.
11036         Fix and extend header docs.
11037
11038 2010-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11039
11040         * gnus-html.el (gnus-html-prefetch-images): Adjust regexp to avoid
11041         regexp backtrace overflows.
11042
11043         * nnimap.el (nnimap-extend-tls-programs): Only extend those programs
11044         for starttls that tls.el implements; i.e. openssl.
11045
11046         * tls.el (tls-starttls-switches): Give up on using starttls with
11047         gnutls-cli.
11048         (tls-program): Add --insecure to be consistent with the defaults from
11049         openssl s_client.  Now all three commands are insecure.
11050
11051 2010-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
11052
11053         * lpath.el: Bind completion-styles-alist for XEmacs.
11054
11055         * gravatar.el: Don't load image.el that XEmacs doesn't provide.
11056         (gravatar-create-image): New function that's an alias to
11057         gnus-xmas-create-image, gnus-create-image, or create-image.
11058         (gravatar-data->image): Use it.
11059
11060 2010-09-30  Teodor Zlatanov  <tzz@lifelogs.com>
11061
11062         * gnus-registry.el (gnus-registry-install-nnregistry): New function to
11063         install the nnregistry refer method.
11064         (gnus-registry-install-hooks): Use it.
11065         (gnus-registry-unfollowed-groups): Add nnmairix to the default
11066         unfollowed groups.
11067
11068 2010-09-30  Jose A. Ortega Ruiz  <jao@gnu.org>  (tiny change)
11069
11070         * gnus-sum.el (gnus-summary-show-thread): Skip past invisible text when
11071         expanding threads.
11072
11073 2010-09-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11074
11075         * nnir.el: Use the server names without suffixes (bug#7009).
11076
11077         * nnimap.el (nnimap-open-connection): Reinstate the auto-upgrade from
11078         unencrypted to STARTTLS, if possible.
11079
11080 2010-09-30  Teemu Likonen  <tlikonen@iki.fi>  (tiny change)
11081
11082         * message.el (message-ignored-supersedes-headers): Strip Injection-*
11083         headers before superseding.
11084
11085 2010-09-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11086
11087         * nnrss.el (nnrss-use-local): Add documentation.
11088
11089         * nnimap.el (nnimap-extend-tls-programs): New function.
11090         (nnimap-open-connection): Use tls.el exclusively, and not starttls.el.
11091         (nnimap-wait-for-connection): Accept the greeting from the stupid
11092         output from openssl s_client -starttls, too.
11093
11094         * tls.el (tls-starttls-switches): New variable.
11095         (tls-find-starttls-argument): Use it.
11096         (open-tls-stream): Ditto.
11097
11098         * netrc.el (netrc-credentials): Return the value of the "default" entry.
11099         (netrc-machine): Ditto.
11100
11101         * nnimap.el (nnimap-find-article-by-message-id): Really return the
11102         article number.
11103         (nnimap-split-fancy): New variable.
11104         (nnimap-split-incoming-mail): Use it.
11105
11106         * nntp.el (nntp-server-list-active-group): Document.
11107
11108         * nnimap.el (nnimap-find-article-by-message-id): Use EXAMINE instead of
11109         SELECT to get the message-id.
11110
11111         * mail-source.el (mail-sources): Remove webmail support.
11112         (defvar): Ditto.
11113         (mail-source-fetcher-alist): Ditto.
11114         (mail-source-fetch-webmail): Remove.
11115
11116         * webmail.el: Remove -- doesn't seem relevant any more.
11117
11118         * gnus.el: Fix up make-obsolete-variable declarations throughout.
11119
11120         * nnimap.el (nnimap-request-accept-article): Get the Message-ID without
11121         the \r.
11122
11123 2010-09-30  Julien Danjou  <julien@danjou.info>
11124
11125         * gnus-agent.el (gnus-agent-add-group): Fix call to
11126         gnus-completing-read.
11127
11128 2010-09-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11129
11130         * nndoc.el (nndoc-retrieve-groups): New function.
11131
11132         * nnimap.el (nnimap-split-incoming-mail): If nnimap-split-methods is
11133         `default', use nnmail-split-methods.
11134         (nnimap-request-article): Downcase the NILs so that they are nil.
11135
11136         * gnus-sum.el (gnus-valid-move-group-p): Make sure that `group' is a
11137         symbol.
11138
11139         * nnimap.el (nnimap-open-connection): Revert the auto-network->starttls
11140         code, since if the user has requested network, that's what they ought
11141         to get.
11142         (nnimap-request-set-mark): Erase the buffer before issuing commands.
11143         (nnimap-split-rule): Mark as obsolete.
11144
11145         * pop3.el (pop3-send-streaming-command, pop3-stream-length):
11146         New variable.
11147
11148         * nnimap.el (nnimap-insert-partial-structure): Get the type from the
11149         correct slot, too.
11150
11151 2010-09-29  Julien Danjou  <julien@danjou.info>
11152
11153         * gnus.el (gnus-local-domain): Declare variable obsolete.
11154
11155         * gnus-util.el (gnus-icompleting-read): Require iswitchb.
11156         Fix history computing.
11157         (gnus-ido-completing-read): Require ido.
11158
11159 2010-09-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11160
11161         * gnus-registry.el: Don't prompt on load, which makes it impossible to
11162         build Gnus.
11163
11164         * nnimap.el (nnimap-insert-partial-structure): Be way more permissive
11165         when interpreting the structures.
11166         (nnimap-request-accept-article): Add \r\n to the lines to make this
11167         work with Cyrus.
11168
11169         * nndraft.el (nndraft-request-expire-articles): Use the group name
11170         instead if "nndraft".  Fix found by Nils Ackermann.
11171
11172 2010-09-29  Ludovic Courtès  <ludo@gnu.org>
11173
11174         * nnregistry.el: Add.
11175
11176 2010-09-29  Stefan Monnier  <monnier@iro.umontreal.ca>
11177
11178         * nnmail.el (group, group-art-list, group-art):
11179         Remove unneeded directives.
11180
11181 2010-09-29  Katsumi Yamaoka  <yamaoka@jpl.org>
11182
11183         * mm-util.el (mm-codepage-iso-8859-list, mm-charset-eval-alist)
11184         (mm-mime-charset):
11185         * rfc2047.el (rfc2047-syntax-table):
11186         * utf7.el (utf7-utf-16-coding-system): Comment fix.
11187
11188         * nnrss.el (nnrss-read-server-data, nnrss-read-group-data): Use `load'
11189         rather than `insert-file-contents' and `eval-region'.
11190
11191         * pgg.el (pgg-run-at-time-1): Define it for XEmacs only; fix if/else
11192         construction.
11193
11194         * smime-ldap.el (smime-ldap-search): Remove Emacs 21 compatible code.
11195
11196         * time-date.el: No need to require cl for Emacs 21.
11197
11198 2010-09-29  Julien Danjou  <julien@danjou.info>
11199
11200         * gnus-gravatar.el (gnus-gravatar-properties): Add this properties in
11201         replacement of `gnus-gravatar-relief' to mimic
11202         `gnus-faces-properties-alist'.
11203         Add :version property.
11204
11205 2010-09-28  Katsumi Yamaoka  <yamaoka@jpl.org>
11206
11207         * mail-source.el (mail-source-report-new-mail):
11208         * message.el (message-default-mail-headers):
11209         * mm-decode.el (mm-valid-image-format-p): Comment fix.
11210
11211         * mml2015.el (mml2015-use): Don't bind recursive-load-depth-limit.
11212
11213 2010-09-28  Julien Danjou  <julien@danjou.info>
11214
11215         * gnus-gravatar.el (gnus-gravatar-insert): Fix search in case
11216         mail-address contains the same string as real-name.
11217
11218         * gnus-ems.el (gnus-put-image): Revert Lars, change and insert
11219         non-blank in header, otherwise it'll get stripped.
11220
11221         * gnus-gravatar.el (gnus-gravatar-insert): Search backward for
11222         real-name, and then for mail address rather than doing : or , search.
11223
11224 2010-09-27  Julien Danjou  <julien@danjou.info>
11225
11226         * gnus-util.el (gnus-completing-read): Use gnus-use-ido to apply the
11227         right completing-read function.
11228         (gnus-use-ido): New variable
11229         (gnus-completing-read-with-default): Remove.
11230         * gnus-agent.el (gnus-agent-read-group): Remove prompt computing.
11231         (gnus-agent-add-group):
11232         * gnus-srvr.el (gnus-server-add-server, gnus-server-goto-server):
11233         * mm-view.el (mm-view-pkcs7-decrypt):
11234         * mm-util.el (mm-codepage-setup):
11235         * smime.el (smime-sign-buffer, smime-decrypt-buffer):
11236         * mml-smime.el (mml-smime-openssl-sign-query):
11237         * mml.el (mml-minibuffer-read-type, mml-minibuffer-read-disposition)
11238         (mml-insert-multipart):
11239         * gnus-msg.el (gnus-summary-yank-message):
11240         * gnus-int.el (gnus-start-news-server):
11241         * mm-decode.el (mm-interactively-view-part):
11242         * gnus-dired.el (gnus-dired-attach):
11243         * gnus.el (gnus-read-method):
11244         * gnus-bookmark.el (gnus-bookmark-jump):
11245         * gnus-art.el (gnus-mime-view-part-as-type)
11246         (gnus-mime-action-on-part, gnus-article-encrypt-body):
11247         * gnus-topic.el (gnus-topic-jump-to-topic, gnus-topic-move-matching)
11248         (gnus-topic-copy-matching, gnus-topic-sort-topics, gnus-topic-move):
11249         * nnmairix.el (nnmairix-create-server-and-default-group)
11250         (nnmairix-update-groups, nnmairix-get-server)
11251         (nnmairix-backend-to-server, nnmairix-goto-original-article)
11252         (nnmairix-get-group-from-file-path):
11253         * nnrss.el (nnrss-find-rss-via-syndic8):
11254         * gnus-group.el (gnus-group-completing-read, gnus-group-make-web-group)
11255         (gnus-group-make-useful-group, gnus-group-add-to-virtual)
11256         (gnus-group-browse-foreign-server):
11257         * gnus-sum.el (gnus-summary-goto-article, gnus-summary-limit-to-extra)
11258         (gnus-summary-execute-command, gnus-summary-respool-article)
11259         (gnus-read-move-group-name):
11260         * gnus-score.el (gnus-summary-increase-score)
11261         (gnus-summary-score-effect):
11262         * gnus-registry.el (gnus-registry-read-mark): Use gnus-completing-read.
11263
11264 2010-09-28  Katsumi Yamaoka  <yamaoka@jpl.org>
11265
11266         * lpath.el: Remove url-http-file-exists-p, w32-focus-frame, and
11267         x-focus-frame.
11268
11269         * nnimap.el (auth-source-forget-user-or-password)
11270         (auth-source-user-or-password): Autoload.
11271
11272         * message.el (message-from-style, message-interactive)
11273         (message-cite-prefix-regexp, message-sendmail-envelope-from)
11274         (message-yank-prefix, message-indentation-spaces, message-signature)
11275         (message-signature-file): Add comment.
11276
11277 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11278
11279         * gnus-sum.el (gnus-summary-read-group-1): Set gnus-newsgroup-highest.
11280         (gnus-summary-insert-new-articles): Use gnus-newsgroup-highest to get
11281         new articles.
11282
11283         * nnimap.el (nnimap-request-article): Don't partial-fetch single-part
11284         parts.
11285         (nnimap-request-article): Work with the t setting, too.
11286
11287         * gnus-sum.el (gnus-summary-exit): Kill the article buffer later, so
11288         that you don't get flashes of other buffers.
11289         (gnus-summary-show-complete-article): Intern before setting.
11290
11291 2010-09-27  David Engster  <dengste@eml.cc>
11292
11293         * nnmairix.el (nnmairix-replace-group-and-numbers): Deal with NOV as
11294         well as HEADERS.
11295         (nnmairix-retrieve-headers): Provide new argument for the above.
11296
11297 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11298
11299         * gnus-sum.el (gnus-summary-move-article): Don't alter
11300         gnus-newsgroup-active.  This makes `/ N' work after copying to the same
11301         group.
11302
11303         * nnimap.el (nnimap-update-info): Don't destructively alter active.
11304
11305         * message.el (message-cite-prefix-regexp): Revert my last edit.
11306
11307         * gnus-sum.el (gnus-summary-show-complete-article): Bind the server
11308         variable instead of the Gnus variable.
11309
11310         * nnimap.el (nnimap-find-wanted-parts-1): Use it.
11311
11312         * gnus-art.el (gnus-fetch-partial-articles): Move back to nnimap again.
11313
11314         * nnimap.el (nnimap-request-accept-article): Remove the "." at the end,
11315         since some servers don't like it.
11316         (nnimap-open-connection): Forget credentials if the server says the
11317         password was wrong.
11318         (nnimap-parse-line): Protect against invalid data.
11319
11320         * gnus-sum.el (gnus-summary-move-article): Add comment.
11321         (gnus-summary-insert-new-articles): Copy the old-high watermark so that
11322         nothing alters it while scanning for new messages.
11323
11324         * nnimap.el (nnimap-request-accept-article): Send a "." at the end,
11325         which may or may not help.
11326         (nnimap-open-connection): If we're doing a stream connection, and then
11327         discover we're on a STARTTLS-capable server, then open a STARTTLS
11328         connection instead.
11329
11330 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11331
11332         * nnimap.el (utf7): Require.
11333
11334         * message.el (message-cite-prefix-regexp): Remove "}" from citation
11335         prefix.
11336
11337 2010-09-27  Juanma Barranquero  <lekktu@gmail.com>
11338
11339         * nnmail.el (nnmail-fancy-expiry-targets): Fix typo in docstring.
11340
11341 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11342
11343         * nnimap.el (nnimap-request-accept-article): Message the error on
11344         error.
11345
11346 2010-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
11347
11348         * gnus-art.el (gnus-mime-delete-part): Fix Lisp type of byte(s).
11349
11350 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11351
11352         * nndoc.el (nndoc-request-list): Return success always.
11353
11354         * gnus-agent.el (gnus-agent-retrieve-headers): Don't propagate
11355         `fetch-old' -- we only want to fetch the articles we've requested.
11356         The rest are in the agent, probably.
11357         (gnus-agent-read-servers-validate): Change the level for the "Ignoring
11358         disappeared server" to something low.  It's not important.
11359
11360         * nnimap.el (nnimap-get-whole-article): Remove the data that may have
11361         arrived before the FETCH data.
11362
11363         * nnmh.el (nnmh-request-expire-articles): Don't try to fetch the expiry
11364         target here, because we don't know the Gnus name of the group.
11365
11366         * nndraft.el (nndraft-request-expire-articles): Fetch the expiry target
11367         for the correct group.
11368
11369         * gnus-ems.el (gnus-create-image): Ignore all image-creation errors.
11370
11371         * gnus.el (gnus): Give a final warning after startup.
11372
11373         * gnus-util.el (gnus-action-message-log): New variable.
11374         (gnus-message): Use it.
11375         (gnus-final-warning): New function.
11376
11377         * nnimap.el (nnimap-open-connection): Record the greeting.
11378         (nnimap): Add greeting.
11379
11380 2010-09-26  Julien Danjou  <julien@danjou.info>
11381
11382         * gnus-html.el (gnus-html-show-images): Fix gnus-html-display-image
11383         arguments.
11384         (gnus-html-wash-images): Fix spec computing to include start/end.
11385
11386         * gnus-art.el (gnus-article-treat-body-boundary): Fix length computing.
11387
11388 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11389
11390         * nnimap.el (nnimap-request-expire-articles): Compress ranges before
11391         deletion.
11392         (nnimap-retrieve-headers): Don't select the group, because that's
11393         already done by nnimap-possibly-change-group.
11394
11395         * gnus-picon.el (gnus-picon-inhibit-top-level-domains): New variable.
11396         (gnus-picon-transform-address): Use it.
11397
11398         * mail-source.el (mail-source-value): Revert previous patch.
11399
11400         * nnimap.el (nnimap-credentials): Allow inhibiting the password query
11401         on failure.
11402         (nnimap-open-connection): Look up both virtual and physical server name
11403         credentials.
11404
11405         * gnus-win.el: Revert previous patch, since it made Gnus backtrace.
11406
11407 2009-02-07  Dave Love  <fx@gnu.org>
11408
11409         * tls.el (open-tls-stream): Don't query killing process.
11410
11411 2009-02-08  Dave Love  <fx@gnu.org>
11412
11413         * gnus-win.el (gnus-window-to-buffer-helper)
11414         (gnus-all-windows-visible-p): Function needn't be a symbol.
11415
11416         * mail-source.el (mail-source-value): Function needn't be a symbol.
11417
11418 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11419
11420         * message.el (message-cite-prefix-regexp): Remove } from the cite
11421         prefix.
11422
11423         * gnus-art.el (gnus-treatment-function-alist): Do picons before
11424         highlight again, so that the highlight is correct.
11425
11426         * gnus-picon.el (gnus-picon): Remove again.
11427         (gnus-picon-create-glyph): Set the background XPM color explicitly.
11428
11429         * gnus-art.el (gnus-treatment-function-alist): Insert picons after
11430         doing the header highlightling, so that the background color of the
11431         picon is correct.
11432
11433         * gnus-picon.el (gnus-picon-xbm): Remove obsolete face.
11434         (gnus-picon): Ditto.
11435         (gnus-picon): Reinstate.  The background color for picons is white.
11436         (gnus-picon-insert-glyph): Make the background white.
11437
11438         * nnml.el (nnml-open-nov): Don't return dead buffers.
11439
11440         * auth-source.el (auth-source-create): Query the user for whether to
11441         store the credentials.
11442
11443         * netrc.el (netrc-store-data): New function.
11444
11445         * auth-source.el (auth-source-user-or-password): Use the existing auth
11446         sources, if any, for creation.
11447
11448         * gnus.el (gnus-group-fast-parameter): Return the last matching
11449         parameter instead of the first matching parameter.
11450
11451 2010-09-26  Julien Danjou  <julien@danjou.info>
11452
11453         * gnus-sum.el (gnus-auto-center-group): Transform into a defcustom.
11454
11455 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11456
11457         * mml2015.el (mml2015-use): Remove gpg support.
11458
11459         * mml1991.el (mml1991-function-alist): Remove gpg function.
11460         (mml1991-gpg-sign): Remove.
11461
11462 2010-09-26  Andreas Seltenreich  <seltenreich@gmx.de>
11463
11464         * gnus-srvr.el (gnus-browse-subscribe-newsgroup-method): New variable.
11465         (gnus-browse-unsubscribe-current-group): Document it.
11466         (gnus-browse-unsubscribe-group): Use it.
11467
11468 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11469
11470         * gnus-group.el (gnus-read-ephemeral-bug-group): Add the bug email
11471         address to the To list for easier response.
11472
11473         * gnus.el (gnus-play-startup-jingle): Remove.
11474         (gnus-splash): Don't play jingle.
11475         (gnus): Silence gnus-load message.
11476
11477         * gnus-art.el (gnus-treat-play-sounds): Remove.
11478
11479         * gnus.el (gnus-play-jingle): Remove audio support.
11480
11481         * gnus-cus.el (gnus-score-customize): Remove audio reference.
11482
11483         * earcon.el: Remove -- no users.
11484
11485         * gnus-audio.el: Remove -- no users of this package.
11486
11487         * gnus-sum.el (gnus-summary-limit-children): Remove nocem support.
11488
11489         * gnus-start.el (gnus-setup-news): Remove nocem support.
11490
11491         * gnus-group.el (gnus-group-get-new-news): Remove nocem call.
11492
11493         * gnus.el (gnus-use-nocem): Remove.
11494
11495         * gnus-demon.el (gnus-demon-add-nocem, gnus-demon-scan-nocem):
11496         Remove.
11497
11498         * gnus-nocem.el (gnus-nocem-issuers): Remove file.  Apparently nobody
11499         uses NoCeM any more.
11500
11501         * gnus-art.el (gnus-ctan-url): Seems not very useful -- removed.
11502         (gnus-button-ctan-handler): Ditto.
11503         (gnus-button-handle-ctan-bogus-regexp): Ditto.
11504         (gnus-button-ctan-directory-regexp): Ditto.
11505         (gnus-button-handle-ctan): Ditto.
11506         (gnus-button-tex-level): Ditto.
11507         (gnus-button-alist): Remove CTAN stuff.
11508
11509 2010-09-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11510
11511         * nnimap.el (nnimap-wait-for-response): Reverse logic in the
11512         nnimap-streaming test.
11513
11514         * gnus-start.el (gnus-get-unread-articles): Don't try to open failed
11515         servers twice.
11516
11517         * nnimap.el (nnimap-open-connection): Add more error reporting when
11518         nnimap fails early.
11519
11520         * nnheader.el (nnheader-get-report-string): New function.
11521         (nnheader-get-report): Use it.
11522
11523         * gnus-int.el (gnus-check-server): Say what the error was when opening
11524         failed.
11525
11526         * nnimap.el (nnimap-wait-for-response): Search further when we're not
11527         using streaming.
11528
11529 2010-09-25  Julien Danjou  <julien@danjou.info>
11530
11531         * gnus-html.el (gnus-html-rescale-image): Use our defalias
11532         gnus-window-inside-pixel-edges.
11533
11534 2010-09-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11535
11536         * gnus-srvr.el (gnus-server-copy-server): Add documentation.
11537
11538         * mm-decode.el (mm-save-part): Allow saving to other directories the
11539         normal Emacs way.
11540
11541         * nndoc.el (nndoc-type-alist): Move mime-parts after mbox.
11542         Suggested by Jay Berkenbilt.
11543
11544         * gnus-art.el (gnus-mime-delete-part): Fix plural for "byte" when
11545         there isn't a single byte.
11546
11547         * gnus-int.el (gnus-open-server): Don't query whether to go offline --
11548         just do it.  It doesn't really seem to matter what the user responds
11549         here, I think, so it's just a confusing question.
11550
11551         * nnimap.el (nnimap-retrieve-group-data-early): Fix typo in the
11552         non-streaming case.
11553
11554         * gnus-art.el (gnus-flush-original-article-buffer): Separate out.
11555         (gnus-article-encrypt-body): Use it.
11556
11557         * gnus-sum.el (gnus-summary-show-complete-article): New command and
11558         keystroke.
11559
11560         * nnimap.el (nnimap-find-wanted-parts-1):
11561         Use gnus-fetch-partial-articles.
11562
11563         * gnus-art.el (gnus-fetch-partial-articles): New variable.
11564
11565         * nnimap.el (nnimap-insert-partial-structure): New function.
11566         (nnimap-get-partial-article): New function.
11567         (nnimap-request-article): Use it.
11568         (nnimap-wait-for-response): Return whether the wait was successful.
11569         (nnimap-finish-retrieve-group-infos): Don't do anything if the
11570         retrieval wasn't successful.
11571         (nnimap-retrieve-group-data-early): Allow throttling servers.
11572         (nnimap-streaming): New variable.
11573         (nnimap-fetch-partial-articles): Remove.
11574
11575         * mm-decode.el (mm-with-part): Protect against killed buffers.
11576
11577         * nndraft.el (nndraft-retrieve-headers): Insert Lines and Chars headers
11578         for prettier summary display.
11579
11580 2010-09-25  Andrew Cohen  <cohen@andy.bu.edu>  (tiny change)
11581
11582         * nnir.el (nnir-run-imap): Allow sending IMAP search patterns directly.
11583
11584 2010-09-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11585
11586         * gnus.el (gnus-local-domain): Put gnus-local-domain back again, since
11587         apparently third-party libraries depend on it.
11588
11589         * nnimap.el (nnimap-open-connection): Wait for the response to STARTTLS
11590         before starting negotiation.
11591
11592         * gnus-art.el (gnus-treat-from-gravatar): Change default to nil for
11593         privacy reasons.
11594         (gnus-treat-mail-gravatar): Ditto.
11595
11596         * gnus-ems.el (gnus-put-image): Don't put any non-blank text into the
11597         buffer when inserting images.  Inserting text into the headers, for
11598         instance, can make them invalid.
11599
11600 2010-09-25  Julien Danjou  <julien@danjou.info>
11601
11602         * rfc1843.el: Remove useless rfc1843-old-gnus-decode-header-function
11603         variables.
11604
11605         * nnheader.el: Remove useless variables news-reply-yank-from and
11606         news-reply-yank-message-id.
11607
11608         * mml2015.el: Remove useless mc-default-scheme and mc-schemes
11609         variables.
11610
11611         * mml1991.el: Remove useless mml1991-verbose.
11612
11613         * gnus.el: Remove useless variable gnus-use-generic-from.
11614         Remove obsolete variable gnus-topic-indentation.
11615
11616         * gnus-uu.el: Remove useless gnus-uu-shar-file-name.
11617
11618         * gnus-sum.el: Remove useless gnus-newsgroup-none-id.
11619
11620         * gnus-picon.el: Remove useless gnus-picon-setup-p variable.
11621
11622         * gnus-group.el: Remove useless gnus-group-icon-cache.
11623         Remove useless gnus-ephemeral-group-server.
11624
11625         * gnus-bookmark.el: Remove useless gnus-bookmark-after-jump-hook.
11626
11627         * mml2015.el: Remove useless mml2015-verbose.
11628
11629         * mml-smime.el: Remove useless mml-smime-verbose.
11630
11631         * gnus.el: Remove useless gnus-local-domain.
11632
11633         * gnus-gravatar.el (gnus-gravatar-transform-address):
11634         Use gnus-gravatar-size.
11635
11636         * gnus-art.el: Remove useless gnus-treat-translate.
11637
11638 2010-09-24  Julien Danjou  <julien@danjou.info>
11639
11640         * gnus-sum.el: Add support for Gravatars.
11641
11642         * gnus-art.el: Add support for Gravatars.
11643
11644         * gnus-gravatar.el: Add this file.
11645
11646         * gravatar.el: Add this file.
11647
11648 2010-09-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11649
11650         * gnus-sum.el (gnus-summary-fetch-faq): Remove.
11651
11652         * gnus-group.el (gnus-group-fetch-faq): Remove.
11653
11654         * gnus.el (gnus-group-faq-directory): Remove.
11655
11656         * gnus-group.el (gnus-group-fetch-charter): Remove.
11657
11658         * gnus.el (gnus-group-charter-alist): Remove.
11659
11660         * gnus-group.el (gnus-group-archive-directory): Remove.
11661         (gnus-group-recent-archive-directory): Ditto.
11662         (gnus-group-make-archive-group): Remove.
11663
11664         * nnimap.el (nnimap-update-info): Protect against nil uidnexts.
11665
11666         * gnus-cache.el (gnus-cache-braid-heads): When braiding heads, don't
11667         use the same article number for all the cached articles.
11668
11669         * nnimap.el (nnimap-command): Register the last command time so
11670         that we can use it for idling NOOPs.
11671         (nnimap-open-connection): Start the keeplive timer.
11672         (nnimap-make-process-buffer): Store all the process buffers.
11673         (nnimap-keepalive): New function.
11674
11675         * starttls.el (starttls-open-stream): Add autoload cookie.
11676
11677 2010-09-24  Michael Welsh Duggan  <md5i@md5i.com>  (tiny change)
11678
11679         * nnimap.el (nnimap-split-incoming-mail): Fix paren typo in the 'junk
11680         handling.
11681
11682 2010-09-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11683
11684         * nnrss.el (nnrss-retrieve-groups): Change to the group before checking
11685         its data structures.
11686
11687         * gnus.el (gnus-sloppily-equal-method-parameters): Use copy-sequence
11688         instead of the cl.el copy-list.
11689         (gnus-sloppily-equal-method-parameters): Use equal instead of the cl
11690         equalp.
11691
11692 2010-09-24  Katsumi Yamaoka  <yamaoka@jpl.org>
11693
11694         * gmm-utils.el (gmm-tool-bar-from-list): Always use tool-bar-local-item
11695         and tool-bar-local-item-from-menu.
11696
11697         * gnus-agent.el (gnus-agent-make-mode-line-string): Always use
11698         mode-line-highlight face for Emacs.
11699
11700         * gnus-art.el (toplevel): Don't bind recursive-load-depth-limit while
11701         loading gnus-sum.elc; fix comment for canlock-verify.
11702         (gnus-article-jump-to-part): Use read-number.
11703         (gnus-insert-mime-button, gnus-insert-mime-security-button):
11704         Remove Emacs pre-21 compatible code for help-echo.
11705         (gnus-article-next-page-1): No need to adjust the number of lines.
11706         (gnus-article-describe-bindings): Always use help-buffer.
11707
11708         * gnus-audio.el (gnus-audio-inline-sound):
11709         * gnus-cus.el (gnus-custom-mode):
11710         * gnus-group.el (gnus-group-update-tool-bar): Comment fix.
11711
11712         * gnus-sum.el (gnus-remove-overlays): Doc fix.
11713
11714         * gnus-util.el (gnus-select-frame-set-input-focus): Remove Emacs 21
11715         compatible code.
11716
11717 2010-09-24  Glenn Morris  <rgm@gnu.org>
11718
11719         * message.el (message-output): Use gnus-output-to-rmail if a buffer is
11720         visiting the fcc file in rmail-mode.
11721
11722         * dns-mode.el: Move autoloaded auto-mode-alist entries to files.el.
11723
11724 2010-09-24  Katsumi Yamaoka  <yamaoka@jpl.org>
11725
11726         * nnir.el: Silence the byte compiler.
11727
11728         * gnus-html.el (gnus-html-encode-url-chars): New function, that's an
11729         alias to browse-url-url-encode-chars if any.
11730         (gnus-html-encode-url): Use it.
11731
11732 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11733
11734         * gnus-start.el (gnus-use-backend-marks): New variable.
11735         (gnus-get-unread-articles-in-group): Use it.
11736
11737         * gnus-sum.el (gnus-summary-local-variables): Prepare for list/range
11738         makeover.
11739
11740 2010-09-23  Andrew Cohen  <cohen@andy.bu.edu>
11741
11742         * nnimap.el (nnimap-retrieve-headers): Return 'headers.
11743
11744 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11745
11746         * gnus-start.el (gnus-fixup-nnimap-unread-after-getting-new-news):
11747         Remove.
11748         (gnus-setup-news-hook):
11749         Remove gnus-fixup-nnimap-unread-after-getting-new-news.
11750
11751         * gnus-int.el (gnus-request-update-info): Protect against backends not
11752         having the function.
11753
11754         * nnimap.el (nnimap-stream): Mention starttls.
11755         (nnimap-open-connection): Add starttls support.
11756
11757 2010-09-23  Andrew Cohen  <cohen@andy.bu.edu>
11758
11759         * nnir.el (nnir-run-imap): Fix up nnir to work with the new nnimap.
11760
11761 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11762
11763         * nnimap.el (nnimap-transform-headers): Don't bug out on invalid
11764         BODYSTRUCTUREs.
11765         (nnimap-transform-headers): Unfold quoted {42} headers.
11766
11767         * gnus-start.el (gnus-get-unread-articles): Allow backends to update
11768         the info.
11769         (gnus-get-unread-articles): Only call updatep on backends that support
11770         it.
11771
11772         * nnweb.el (nnweb-request-update-info): NOOP.
11773
11774         * nnmaildir.el (nnmaildir-request-marks): Rename from -update-info.
11775
11776         * nnfolder.el (nnfolder-request-marks): Rename from -update-info,
11777         since it only deals with marks.
11778
11779         * gnus-int.el (gnus-request-marks): Rename gnus-request-update-info to
11780         gnus-request-marks, and make a new gnus-request-update-info.
11781
11782         * nnimap.el (nnimap-update-info): When UIDNEXT is present, use that for
11783         the active instead of the high number, which is usually too low.
11784
11785 2010-09-23  Teodor Zlatanov  <tzz@lifelogs.com>
11786
11787         * netrc.el (netrc-parse): Remove encrypt.el mentions.
11788         * encrypt.el: Remove.
11789
11790 2010-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11791
11792         * nnimap.el (nnimap-update-info): Sync non-standard flags from the
11793         server in symbolic form.
11794
11795         * gnus-html.el (gnus-max-image-proportion): Increase proportion to 0.9.
11796
11797 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11798
11799         * nnimap.el (nnimap-parse-flags): Parse the data in any order.
11800         (nnimap-update-info): Fix up code slightly.
11801
11802         * gnus-int.el (gnus-open-server): Add tracing for performance
11803         debugging.
11804
11805         * gnus-group.el (gnus-group-highlight-line): Typo fix: beg, not start.
11806         (gnus-group-insert-group-line): Pass the real group name so that it
11807         gets the right data.
11808
11809         * gnus-start.el (gnus-get-unread-articles): Don't have
11810         `gnus-get-unread-articles-in-group' update info, since that can be
11811         really slow and doesn't seem to be needed?
11812
11813 2010-09-22  Dan Christensen  <jdc@uwo.ca>
11814
11815         * time-date.el (date-to-time): Try using parse-time-string first before
11816         using the slower timezone-make-date-arpa-standard.
11817
11818 2010-09-22  Julien Danjou  <julien@danjou.info>
11819
11820         * gnus-group.el (gnus-group-insert-group-line):
11821         Call gnus-group-highlight-line.
11822         (gnus-group-update-hook): Remove gnus-group-highlight-line from the
11823         default hook list.
11824         (gnus-group-update-eval-form): Add new function.
11825         (gnus-group-highlight-line): Use gnus-group-update-eval-form.
11826         (gnus-group-get-icon): Use gnus-group-update-eval-form.
11827
11828 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11829
11830         * nnimap.el (nnimap-request-expire-articles): If nnmail-expiry-wait is
11831         immediate, then expire all articles.
11832         (nnimap-update-info): Fix off-by-one errors.
11833         (nnimap-flags-to-marks): Would return no marks lists for group with no
11834         flags.  Instead return the other data.
11835
11836 2010-09-22  Julien Danjou  <julien@danjou.info>
11837
11838         * gnus-group.el (gnus-group-get-icon): Rename gnus-group-add-icon that
11839         Only return an icon.
11840         (gnus-group-insert-group-line): Compute icon to return.
11841
11842         * gnus-html.el (gnus-html-image-automatic-caching): Add custom var.
11843         (gnus-html-image-fetched): Only cache if
11844         gnus-html-image-automatic-caching is set.
11845         (gnus-html-image-fetched): Check for errors.
11846
11847 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11848
11849         * gnus-start.el (gnus-read-active-for-groups): Only run -request-scan
11850         once per method on `g'.  This ensures that backends like nnfolder don't
11851         open all their folders.
11852
11853         * nnimap.el (nnimap-split-incoming-mail): Delete 'junk.
11854         (nnimap-request-list): Nix out group in the correct buffer.
11855         (nnimap-parse-flags): Implement by using `read' instead of
11856         hand-parsing.
11857         (nnimap-flags-to-marks): Pass on permanent-flags.
11858         (nnimap-make-process-buffer): Record the server name.
11859         (nnimap-parse-flags): Fix typo.
11860         (nnimap-request-scan): Run split on the server in general, not just a
11861         single group.
11862
11863         * nnmail.el (nnmail-split-incoming): Take an optional junk-func
11864         parameter, and propagate this downwards.
11865
11866         * nnimap.el (nnimap-request-list): Set the current nnimap group to nil,
11867         since EXAMINE changes it on the server.
11868
11869         * gnus-int.el (gnus-request-expire-articles): Inhibit the daemon, since
11870         this command might take a while.
11871
11872 2010-09-22  Julien Danjou  <julien@danjou.info>
11873
11874         * gnus-html.el (gnus-html-put-image): Stop using markers.  They are
11875         harmful if you have 2 images side-by-side, they can't be properly
11876         update on text deletion.  Using text-property is safer here.
11877         (gnus-html-image-fetched): Search also for \r\n\r\n to get the start of
11878         data.
11879
11880 2010-09-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11881
11882         * nnimap.el (nnimap-expunge-inbox): Remove.
11883         (nnimap-mark-and-expunge-incoming): Use nnimap-expunge instead.
11884         (nnimap-expunge): Flip default to t.
11885
11886         * gnus.el (gnus-method-to-server): Don't push things to the cache
11887         unless it's unique.
11888         (gnus-server-to-method): Ditto.
11889
11890 2010-09-22  Teodor Zlatanov  <tzz@lifelogs.com>
11891
11892         * nnimap.el (nnimap-delete-article): Tell user if expunge won't happen.
11893
11894 2010-09-22  Julien Danjou  <julien@danjou.info>
11895
11896         * gnus-html.el (gnus-html-get-image-data): Search also for \r\n\r\n to
11897         get the start of data.
11898         (gnus-html-encode-url): Add this function to encode special chars in
11899         URL.
11900         (gnus-html-wash-images): Use gnus-html-encode-url to encode URL.
11901         (gnus-html-prefetch-images): Use gnus-html-encode-url to encode URL.
11902
11903         * gnus-group.el (gnus-group-update-hook): Call gnus-group-add-icon by
11904         default.
11905         (gnus-group-add-icon): Move to gnus-group.el, and rewrite so it works.
11906
11907         * gnus-html.el (gnus-html-wash-images): Use xml-substitute-special on
11908         images alt-text.
11909         (gnus-html-put-image): Put alt-text as help-echo.
11910
11911 2010-09-22  Katsumi Yamaoka  <yamaoka@jpl.org>
11912
11913         * mailcap.el (mailcap-parse-mailcap, mailcap-parse-mimetypes):
11914         * mm-util.el (mm-decompress-buffer):
11915         * nnir.el (nnir-run-find-grep):
11916         * pop3.el (pop3-list): Use 3rd arg of split-string.
11917
11918         * time-date.el (format-seconds): Comment fix.
11919
11920         * dgnushack.el (toplevel): Don't advise byte-optimize-form-code-walker
11921         and byte-optimize-form-code-walker.
11922         (dgnushack-make-auto-load): Don't advise make-autoload.
11923
11924         * lpath.el: Remove Emacs 21 stuff.
11925
11926 2010-09-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11927
11928         * gnus-sum.el (gnus-update-marks): Add sanity check to not delete marks
11929         outside the active range.  Suggested by Dan Christensen.
11930
11931         * gnus-start.el (gnus-get-unread-articles): Get the extended method
11932         slightly later to avoid double-getting it.
11933
11934         * nnml.el (nnml-generate-nov-file): Fix variable name clobbering from
11935         previous patch.
11936
11937         * gnus-sum.el (gnus-adjust-marked-articles): Fix another typo.
11938
11939 2010-09-21  Adam Sjøgren  <asjo@koldfront.dk>
11940
11941         * gnus-sum.el (gnus-adjust-marked-articles): Fix typo.
11942
11943 2010-09-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11944
11945         * gnus-int.el (gnus-open-server): Give a better error message in the
11946         "go offline" case.
11947
11948         * gnus-sum.el (gnus-adjust-marked-articles): Hack to avoid adjusting
11949         marks for nnimap, which is seldom the right thing to do.
11950
11951         * gnus.el (gnus-sloppily-equal-method-parameters): Refactor out.
11952         (gnus-same-method-different-name): New function.
11953
11954         * nnimap.el (parse-time): Require.
11955
11956         * gnus-start.el (gnus-get-unread-articles): Fix the prefixed select
11957         method in the presence of many similar methods.
11958
11959         * nnmail.el (nnmail-expired-article-p): Fix typo: time-subtract.
11960
11961         * nnimap.el (nnimap-find-expired-articles): Don't refer to
11962         nnml-inhibit-expiry.
11963
11964         * gnus-sum.el (gnus-summary-move-article): Use gnus-server-equal to
11965         find out whether methods are equal.
11966
11967         * nnimap.el (nnimap-find-expired-articles): New function.
11968         (nnimap-process-expiry-targets): New function.
11969         (nnimap-request-move-article): Request the article before looking at
11970         what the Message-ID is.  Fix found by Andrew Cohen.
11971         (nnimap-mark-and-expunge-incoming): Wait for the last sequence.
11972
11973         * nnmail.el (nnmail-expired-article-p): Allow returning the cutoff time
11974         for oldness in addition to being a predicate.
11975
11976         * nnimap.el (nnimap-request-group): When we have zero articles, return
11977         the right data to Gnus.
11978         (nnimap-request-expire-articles): Only delete articles immediately if
11979         the target is 'delete.
11980
11981         * gnus-sum.el (gnus-summary-move-article): When respooling to the same
11982         method, this would bug out.
11983
11984         * gnus-group.el (gnus-group-expunge-group): Rename from
11985         gnus-group-nnimap-expunge, and implemented as a normal interface
11986         function.
11987
11988         * gnus-int.el (gnus-request-expunge-group): New function.
11989
11990         * nnimap.el (nnimap-request-create-group): Implement.
11991         (nnimap-request-expunge-group): New function.
11992
11993 2010-09-21  Julien Danjou  <julien@danjou.info>
11994
11995         * gnus-html.el (gnus-html-image-cache-ttl): Add new variable.
11996         (gnus-html-cache-expired): Add new function.
11997         (gnus-html-wash-images): Use `gnus-html-cache-expired' to check
11998         wethever we should display image for fetch it.
11999         Compute alt-text earlier to pass it to the fetching function too.
12000         (gnus-html-schedule-image-fetching): Change function argument to only
12001         get one image at a time, not a list.
12002         (gnus-html-image-fetched): Use `url-store-in-cache' to store image in
12003         cache.
12004         (gnus-html-get-image-data): New function to retrieve image data from
12005         cache.
12006         (gnus-html-put-image): Change buffer argument to use image data rather
12007         than file, and place image above region rather than inserting a new
12008         one.  Do not take alt-text as argument, since it's useless now: we place
12009         the image above alt-text.
12010         (gnus-html-prune-cache): Remove.
12011         (gnus-html-show-images): Start to fetch image when we find one, do not
12012         push into a temporary list.
12013         (gnus-html-prefetch-images): Only fetch image if they have expired.
12014         (gnus-html-browse-image): Fix, use 'gnus-image-url.
12015         (gnus-html-image-map): Add "v" to browse-url on undisplayed image.
12016
12017 2010-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
12018
12019         * rfc2047.el (rfc2047-encode-parameter): Doc fix.
12020
12021 2010-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12022
12023         * gnus-group.el (gnus-group-line-format-alist): Have the ?U (unseen)
12024         spec inser "*" if the group isn't active instead of 0.
12025
12026         * nnimap.el (nnimap-request-group): Don't select the imap buffer before
12027         opening the server.
12028         (nnimap-request-delete-group): Implement group deletion.
12029         (nnimap-transform-headers): Return the size of the entire message in
12030         the Bytes header, not just the size of the first part.
12031         (nnimap-request-move-article): When moving an article from nnimap,
12032         request the article first so the accepting form has an article to
12033         accept.  Reported by Dan Christensen.
12034         (nnimap-command): Make sure that the error message doesn't error out.
12035
12036 2010-09-20  David Edmondson  <dme@dme.org>
12037
12038         * nnimap.el (nnimap-request-set-mark): Don't wait for a response when
12039         we haven't requested anything.
12040
12041 2010-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12042
12043         * nnimap.el (nnimap-fetch-inbox): Use "[]" as the parameter instead of
12044         "".  Fix found by Andrew Cohen.
12045
12046         * mail-parse.el (mail-header-encode-parameter): Use -encode-parameter
12047         instead of -encode-string.
12048
12049 2010-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
12050
12051         * gnus-html.el (gnus-html-image-fetched): Pass arg to kill-buffer.
12052
12053         * gnus-sum.el (gnus-summary-update-mark): Replace subst-char-in-string
12054         by mm-subst-char-in-string.
12055
12056 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12057
12058         * nnimap.el (nnimap-wait-for-connection): Avoid a race condition while
12059         waiting for the connection string.
12060
12061         * gnus-html.el (gnus-html-image-fetched): Protect against the data not
12062         arriving.
12063
12064         * gnus-start.el (gnus-ignored-newsgroups): Remove [] from the list of
12065         bogus characters.  This allows selecting certain Gmail groups.
12066
12067         * nnimap.el (nnimap-find-wanted-parts-1): New function.
12068         (nnimap-fetch-partial-articles): New variable.
12069         (nnimap-open-connection): When looking for credentials, also use the
12070         nnimap-server-port.
12071         (nnimap-request-article): Return the group/article number, so that Gnus
12072         `^' works as expected.
12073         (nnimap-find-wanted-parts-1): Return the MIME parts as IMAP wants them.
12074
12075         * gnus.el (gnus-similar-server-opened): Refactor a bit and add
12076         comments.
12077         (gnus-methods-sloppily-equal): New function.
12078         (gnus): When using the development version of Gnus, load the gnus-load
12079         file.
12080
12081         * gnus-start.el (gnus-get-unread-articles): Make sure that we call
12082         `gnus-open-server' on each method before trying to scan them etc.
12083         This ensures that all the backend parameters are set correctly.
12084
12085         * nnimap.el (nnimap-authenticator): New variable.
12086         (nnimap-open-connection): Allow anonymous login.
12087         (nnimap-transform-headers): The chars header is called Chars not Bytes.
12088         (nnimap-wait-for-response): Don't infloop if the IMAP connection drops.
12089
12090         * gnus-art.el (gnus-article-describe-briefly): Fix up typo in last
12091         patch, found by Knut Anders Hatlen.
12092
12093 2010-09-19  Andreas Schwab  <schwab@linux-m68k.org>
12094
12095         * gnus-agent.el (gnus-agent-batch-confirmation)
12096         (gnus-agent-expire-group, gnus-agent-expire): Pass proper format string
12097         to gnus-message.
12098         * gnus-art.el (gnus-article-describe-briefly): Likewise.
12099         * gnus-group.el (gnus-group-list-groups, gnus-group-describe-group)
12100         (gnus-group-edit-global-kill, gnus-group-describe-briefly): Likewise.
12101         * gnus-int.el (gnus-open-server): Likewise.
12102         * gnus-score.el (gnus-score-edit-current-scores, gnus-score-edit-file)
12103         (gnus-score-check-syntax): Likewise.
12104         * gnus-srvr.el (gnus-browse-describe-briefly): Likewise.
12105         * gnus-start.el (gnus-read-active-file-1, gnus-read-active-file-1):
12106         Likewise.
12107         * gnus-sum.el (gnus-summary-describe-briefly): Likewise.
12108
12109 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12110
12111         * gnus-html.el (gnus-html-prefetch-images): Fix up the url-retrieve
12112         calling conventions so that prefetch doesn't bug out.
12113
12114 2010-09-19  Julien Danjou  <julien@danjou.info>
12115
12116         * gnus-sum.el (gnus-summary-update-mark): Use `subst-char-in-string'
12117         rather than `subst-char-in-region' in order to be able to replace ASCII
12118         char by UTF-8 ones.
12119
12120         * gnus-html.el (gnus-html-prefetch-images): Use `url-retrieve' rather
12121         than curl.
12122         (gnus-html-image-fetched): Fix `gnus-html-put-image' call not setting
12123         the right URL and ALT text on images.
12124         (gnus-html-wash-tags): Fix tag case.
12125         Add support for `s' and `ins' tags.  Use gnus-emphasis-* faces.
12126         (gnus-article-html): Add -o display_ins_del=2 option.
12127         (gnus-html-wash-tags): Add better support for <ul> tags symbols.
12128
12129 2010-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12130
12131         * nnheader.el (nnheader-insert-nov): Protect against junk appearing in
12132         the extra mail headers, which sometimes seem to happen for unknown
12133         reasons.
12134
12135         * mail-parse.el (mail-header-encode-parameter): Define as
12136         rfc2045-encode-string instead of as rfc2231-encode-string, since some
12137         (or most, perhaps?) mail readers don't understand the latter, but do
12138         understand the former.
12139
12140         * gnus-agent.el (gnus-agent-auto-agentize-methods): Switch the default
12141         to nil, so that no methods are automatically agentized.  I think this
12142         is probably what most users want.
12143
12144         * gnus-html.el (gnus-html-schedule-image-fetching): Ignore all errors
12145         from url-retrieve, for instance about invalid URLs.
12146
12147         * nnimap.el (nnimap-finish-retrieve-group-infos): Protect against
12148         groups that have no articles.
12149         (nnimap-request-article): Check that we really got an article when we
12150         requested one.
12151
12152         * gnus-agent.el (gnus-agent-load-alist): Nix out the alist if the file
12153         doesn't exist.
12154
12155         * nnimap.el (nnimap-finish-retrieve-group-infos): Return data in the
12156         nntp buffer so the agent can save it.
12157         (nnimap-open-shell-stream): Bind `process-connection-type' to nil, so
12158         that CRLF doesn't get translated to \n.
12159         (nnimap-open-connection): Don't make 'shell commands only send \n.
12160
12161 2010-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
12162
12163         * nnml.el (nnml-files): Add prefix to dynamic var `files'.
12164         (nnml-generate-nov-databases-directory, nnml-generate-active-info):
12165         Update var name.
12166         (nnml-generate-nov-file): Use dolist.
12167         (nnml-directory-articles, nnml-current-group-article-to-file-alist):
12168         Use with-current-buffer.
12169
12170 2010-09-18  Julien Danjou  <julien@danjou.info>
12171
12172         * gnus-html.el (gnus-html-schedule-image-fetching): Fetch all images in
12173         parallel.
12174
12175 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12176
12177         * nnimap.el (nnimap-update-info): When doing partial marks update, get
12178         the range update right.
12179         (nnimap-request-group): Don't make `M-g' bug out on group with no
12180         marks.
12181         (nnoo): Require, so that other packages can require nnimap.
12182         (nnimap-wait-for-response): Be a bit more lax in finding the end of the
12183         command we're looking for.  This helps when the server sends more
12184         responses after we've gotten everything we expected.
12185         (nnimap): Add a `newlinep' field to keep track of end-of-line
12186         conventions.
12187         Don't send CRLF to things that don't want it.
12188         (nnimap-request-accept-article): Ditto.
12189
12190 2010-09-18  Julien Danjou  <julien@danjou.info>
12191
12192         * gnus-html.el (gnus-html-schedule-image-fetching): Use `url' rather
12193         than curl to retrieve images.
12194
12195 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12196
12197         * nnimap.el (nnimap-update-info): Extend the info so that we can set
12198         the marks.
12199         (nnimap-open-connection): Fix typo -- should be 'shell, not 'stream.
12200         (nnimap-wait-for-connection): New function.
12201         (nnimap-open-connection): If we have PREAUTH, don't query for login
12202         credentials.
12203         (nnimap-update-info): Fix off-by-one error when concatenating ranges
12204         when doing a partial update.
12205
12206 2010-09-18  Julien Danjou  <julien@danjou.info>
12207
12208         * gnus-html.el (gnus-html-wash-tags): Add support for i, b and u HTML
12209         tags.
12210
12211 2010-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12212
12213         * nnimap.el (nnimap-credentials): New function.
12214         (nnimap-open-connection): Use the new function to look for credentials
12215         also on the numeric equivalents of "imap" and "imaps".
12216
12217         * gnus-start.el (gnus-activate-group): Send the info to
12218         gnus-request-group.
12219
12220         * nnimap.el (nnimap-request-group): Have the "check" version of the
12221         function parse flags and update the info, so that a `M-g' get a total
12222         resync of all flags from the group.
12223
12224         * gnus-int.el (gnus-request-group): Take an optional `info' parameter
12225         to allow backends to alter the info on group selection.  Also alter all
12226         the backend -request-group functions to take the parameter.
12227
12228         * nnimap.el (nnimap-store-info): New function.
12229         (nnimap-update-info): Store the info for later usage.
12230         (nnimap-request-group): Use the stored info for the dont-check case, so
12231         that we don't retrieve all marks when we enter a group.
12232
12233         * nnimap.el: Use deffoo instead of defun for interface functions.
12234
12235         * gnus-start.el (gnus-get-unread-articles): Allow the backends to
12236         update the group info.  This makes the nndraft groups, for instance, go
12237         back to their old behavior.
12238
12239         * gnus-sum.el (gnus-select-newsgroup): Indent.
12240
12241         * nnimap.el (nnimap-possibly-change-group): Return nil if we can't log
12242         in.
12243         (nnimap-finish-retrieve-group-infos): Make sure we're not waiting for
12244         nothing.
12245
12246         * gnus-start.el (gnus-get-unread-articles): Don't try to scan groups
12247         from methods that are denied.
12248
12249         * gnus-int.el (gnus-method-denied-p): New function.
12250
12251         * nnimap.el (nnimap-open-connection): Use auth-sources to query and
12252         store the password instead of netrc.
12253         (nnimap-open-connection): Don't error out when we can't make a
12254         connections.
12255
12256         * auth-source.el (auth-source-create): In the password prompt, say what
12257         we're querying for.  Also prompt for user name if that hasn't been
12258         given.
12259
12260         * nnimap.el (nnimap-with-process-buffer): Remove.
12261
12262 2010-09-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12263
12264         * gnus-start.el (gnus-read-active-for-groups): Don't use the "finish"
12265         method when we're reading from the agent.
12266
12267         * nnagent.el (nnagent-retrieve-group-data-early): New dummy method.
12268
12269         * auth-source.el (auth-sources): Add ~/.authinfo to the default, since
12270         that's probably most useful for users.
12271
12272         * gnus-int.el (gnus-check-server): Save result so that it doesn't say
12273         "failed" all the time.
12274
12275         * gnus.el: Throughout all files, replace (save-excursion (set-buffer
12276         ...)) with (with-current-buffer ... ).
12277
12278         * nntp.el (nntp-open-server): Return whether the open was successful or
12279         not.
12280
12281         * gnus-sum.el (gnus-summary-first-subject): Have `unseen-or-unread'
12282         select an unread unseen article first.
12283
12284         * nnimap.el (nnimap-open-connection): If the user doesn't have a
12285         /etc/services, supply some sensible port defaults.
12286
12287         * dgnushack.el: Define netrc-credentials.
12288
12289 2010-09-17  Julien Danjou  <julien@danjou.info>
12290
12291         * mm-decode.el (mm-text-html-renderer): Document gnus-article-html.
12292
12293 2010-09-17  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
12294
12295         * nnimap.el (nnimap-get-groups): Don't bug out if the LIST command
12296         doesn't have any parameters.
12297
12298 2010-09-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12299
12300         * nnimap.el (nnimap-open-connection): Upcase all capabilities, and use
12301         only upcased checks.
12302
12303         * nnmail.el (nnmail-article-group): Fix typo in "bogus" section.
12304
12305         * nnimap.el (nnimap-open-shell-stream): New function.
12306         (nnimap-open-connection): Use it.
12307         (nnimap-transform-headers): Get the number of lines in each message.
12308         (nnimap-retrieve-headers): Query for BODYSTRUCTURE so that we get the
12309         number of lines.
12310         (nnimap-request-list): Not all servers return UIDNEXT.  Work past this
12311         problem.
12312
12313         * utf7.el (utf7-encode): Autoload.
12314
12315         * nnmail.el (nnmail-inhibit-default-split-group): New internal variable
12316         to allow the mail splitting to not return a default group.  This is
12317         useful for nnimap, which will leave unmatched mail in the inbox.
12318
12319         * nnimap.el: Rewritten.
12320
12321         * gnus.el (gnus-article-special-mark-lists): Add uid/active tuples, for
12322         nnimap usage.
12323
12324         * gnus-sum.el (gnus-summary-move-article): Pass the move-to group name
12325         if the move is internal, so that nnimap can do fast internal moves.
12326
12327         * gnus-start.el (gnus-get-unread-articles): Support early retrieval of
12328         data.
12329         (gnus-read-active-for-groups): Support finishing the early retrieval of
12330         data.
12331
12332         * gnus-range.el (gnus-range-nconcat): New function.
12333
12334         * gnus-int.el (gnus-finish-retrieve-group-infos)
12335         (gnus-retrieve-group-data-early): New functions.
12336
12337 2010-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
12338
12339         * nnrss.el (nnrss-retrieve-headers, nnrss-request-list-newsgroups)
12340         (nnrss-retrieve-groups):
12341         * pop3.el (pop3-open-server, pop3-read-response, pop3-list, pop3-retr)
12342         (pop3-quit): Use with-current-buffer.
12343
12344 2010-09-17  Katsumi Yamaoka  <yamaoka@jpl.org>
12345
12346         * pop3.el (pop3-wait-for-messages): Use pop3-accept-process-output
12347         instead of nnheader-accept-process-output.
12348
12349         * dgnushack.el (dgnushack-compile): Add comment.
12350
12351         * lpath.el: No need to fbind propertize for XEmacs 21.4.
12352
12353         * gnus-html.el (gnus-html-schedule-image-fetching)
12354         (gnus-html-prefetch-images): Replace process-kill-without-query by
12355         gnus-set-process-query-on-exit-flag.
12356
12357 2010-09-16  Romain Francoise  <romain@orebokech.com>
12358
12359         * gnus-html.el: Require gnus-art for `gnus-with-article-buffer'.
12360
12361 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12362
12363         * gnus-registry.el (gnus-registry-install-shortcuts): The second
12364         parameter to unintern is mandatory-ish in Emacs 24.
12365
12366         * gnus-html.el (gnus-html-schedule-image-fetching)
12367         (gnus-html-prefetch-images): Check for curl before using it.
12368
12369         * mm-decode.el (mm-text-html-renderer): Don't have gnus-article-html
12370         depend on curl, which isn't essential.
12371
12372         * imap.el: Revert back to version
12373         cb950ed8ff3e0f40dac437a51b269166f9ffb60d, since some of the changes
12374         seem problematic.
12375
12376 2010-09-14  Juanma Barranquero  <lekktu@gmail.com>
12377
12378         * gnus-registry.el (gnus-registry-install-shortcuts):
12379         Explicitly pass `obarray' to `unintern' to avoid a warning.
12380
12381 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12382
12383         * gnus-start.el (gnus-read-active-for-groups): Revert the previous
12384         change.
12385
12386         * nnrss.el (nnrss-request-list): Remove this function and related
12387         functions, including the moreover stuff.
12388
12389 2010-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12390
12391         * nnrss.el (nnrss-retrieve-groups): New function.
12392
12393 2010-09-14  Juanma Barranquero  <lekktu@gmail.com>
12394
12395         * .dir-locals.el: Add no-byte-compile cookie.
12396
12397 2010-09-14  Katsumi Yamaoka  <yamaoka@jpl.org>
12398
12399         * time-date.el (format-seconds): Comment fix.
12400
12401         * gnus-start.el (gnus-read-active-for-groups): Run gnus-activate-group
12402         for back end that doesn't support request-scan.
12403
12404 2010-09-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12405
12406         * gnus-start.el (gnus-read-active-file-1): If gnus-agent isn't set,
12407         then do request scans from the backends.
12408
12409         * netrc.el (netrc-credentials): New conveniency function.
12410
12411         * gnus-sum.el (gnus-summary-update-hook): Change default to nil, to
12412         avoid running a hook per line, since this takes a lot of time,
12413         profiling shows.
12414         (gnus-summary-prepare-threads): Call `gnus-summary-highlight-line'
12415         directly if gnus-visual-p is true.
12416
12417 2010-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
12418
12419         * gnus-start.el (gnus-read-active-for-groups): Check only subscribed
12420         groups; replace mapcar with dolist which is a bit faster; pass groups
12421         info to gnus-read-active-file-1.
12422         (gnus-read-active-file-1): Scan only specified groups if the new
12423         optional arg `infos' is given.
12424
12425 2010-09-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12426
12427         * mail-source.el (mail-source-fetch-pop): Use pop3-movemail again.
12428
12429         * pop3.el (pop3-movemail): Remove.
12430         (pop3-streaming-movemail): Rename to pop3-movemail.
12431
12432         * gnus-html.el (gnus-html-wash-tags): Refactor out the image bit, and
12433         don't restrict end-tag searches to the end of the line.
12434
12435 2010-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
12436
12437         * gnus-start.el (gnus-get-unread-articles): Set the number of unread
12438         articles of every unchecked group to t, which means unknown since the
12439         server has never been opened.
12440
12441 2010-09-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12442
12443         * gnus-html.el (gnus-html-show-alt-text): New command.
12444         (gnus-html-browse-image): Ditto.
12445         (gnus-html-wash-tags): Add the data to allow showing the ALT text and
12446         to browse the image directly.
12447         (gnus-html-wash-tags): Search for images first, so that <a><img> works
12448         better.
12449
12450         * gnus-async.el (gnus-async-article-callback):
12451         Call `gnus-html-prefetch-images' unconditionally.
12452
12453         * gnus-html.el (gnus-html-schedule-image-fetching): Decode entities
12454         before feeding URLs to curl.
12455
12456 2010-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
12457
12458         * gnus-html.el (gnus-html-wash-tags, gnus-html-put-image): Mark cid and
12459         internal images as deletable by `W D D'.
12460
12461         * gnus-async.el (gnus-html-prefetch-images): Autoload it when compiling.
12462         (gnus-async-article-callback): Fix typo.
12463
12464 2010-09-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12465
12466         * gnus-html.el (gnus-html-wash-tags): Limit end-tag matching to the
12467         current line to work around bugs in the output from w3m.
12468
12469         * gnus-async.el (gnus-async-article-callback): Always prefetch images
12470         for groups that want that.
12471
12472         * nntp.el (nntp-wait-for-string): Supply a timeout for
12473         accept-process-output to ensure progress.
12474
12475         * gnus-start.el (gnus-get-unread-articles): If being given an explicit
12476         level to get unread articles from, then use that for foreign groups,
12477         too.
12478
12479         * gnus-html.el (gnus-html-wash-tags): Remove <a name...> tags, which
12480         confuses the rest of the function.
12481
12482         * gnus-start.el (gnus-read-active-for-groups): Do a `gnus-request-scan'
12483         for the methods that support -retrieve-groups, too.
12484
12485         * nnml.el (nnml-save-nov): Remove some debugging-related messages.
12486
12487 2010-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
12488
12489         * dgnushack.el (dgnushack-compile, dgnushack-make-cus-load)
12490         (dgnushack-make-auto-load): Exclude .dir-locals.el file.
12491
12492         * pop3.el: Require cl when compiling.
12493         (pop3-number-of-responses): Search for "+OK", not "+OK ".
12494
12495 2010-09-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12496
12497         * gnus-start.el (gnus-get-unread-articles): Don't bother with groups
12498         that aren't going to be activated.
12499         (gnus-get-unread-articles): Fix up the last commit.
12500
12501         * gnus-html.el (gnus-article-html): Allow calling without specifying
12502         the handle.  In that case, dissect the buffer first.
12503
12504         * gnus-sum.el (gnus-set-mode-line): Don't pad the mode line string.
12505
12506         * nnimap.el (nnimap-open-connection): Revert the change that would look
12507         into authinfo for imaps instead of imap.
12508
12509         * gnus-start.el (gnus-activate-group): Take an optional parameter to
12510         say that you don't want to call gnus-request-group with don-check, but
12511         do check the reponse.  This is for virtual groups only.
12512         (gnus-get-unread-articles): Count the archive groups as secondary, so
12513         that they're activated the same way as before.
12514
12515         * imap.el (imap-message-map): Removed optional buffer parameter, since
12516         no callers use it.
12517         (imap-message-get): Ditto.
12518         (imap-message-put): Ditto.
12519         (imap-mailbox-map): Ditto.
12520         (imap-mailbox-put): Ditto.
12521         (imap-mailbox-get): Ditto.
12522         (imap-mailbox-get): Revert last change for this function.
12523
12524         * nnimap.el (nnimap-request-list): Servers may return \NoSelect
12525         case-insensitively.
12526         (nnimap-debug): Remove.
12527
12528         * net/imap.el (imap-fetch-safe): Remove function, and alter all
12529         callers to use `imap-fetch' instead.  According to the comments, this
12530         should be safe, since all other IMAP clients use the 1:* syntax.
12531         (imap-enable-exchange-bug-workaround): Remove.
12532         (imap-debug): Remove -- doesn't seem very useful.
12533
12534         * mail-source.el (mail-source-fetch): Don't message if we're fetching
12535         mail from a file, and the file doesn't exist.
12536
12537         * imap.el (imap-log): New convenience function used throughout instead
12538         of repeating the same code all over the place.
12539
12540         * pop3.el (pop3-streaming-movemail): Return t for success.
12541
12542         * nnimap.el (nnimap-open-connection): Look for the "imaps" entry in the
12543         .authinfo if we're using ssl connection.
12544
12545         * nnvirtual.el (nnvirtual-create-mapping): Use the active info we
12546         already have if we're in a main Gnus `g' run.
12547
12548         * gnus-start.el (gnus-method-rank): Get info for virtual groups last.
12549
12550 2010-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
12551
12552         * gnus-start.el (gnus-method-rank): Replace equalp with equal.
12553
12554         * nnmh.el (nnmh-request-list-1): Bind `file'.
12555
12556         * pop3.el (pop3-set-process-query-on-exit-flag): New function that's an
12557         alias to set-process-query-on-exit-flag or process-kill-without-query.
12558         (pop3-open-server): Use it.
12559
12560 2010-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12561
12562         * mail-source.el (mail-source-delete-crash-box): Always move the crash
12563         box to the Incoming file.  Fixes mistake in previous checkin.
12564
12565         * pop3.el (pop3-send-streaming-command): Off-by-one error on the
12566         request loop (for debugging purposes) removed.
12567
12568         * nnml.el (nnml-save-nov): Message around nnml-save-nov so that the
12569         culprit is more visible.
12570         (nnml-save-incremental-nov, nnml-open-incremental-nov)
12571         (nnml-add-incremental-nov): New functions to do "incremental" nov
12572         updates, where we just append to the end of the existing nov files
12573         without reading/writing them in full.
12574
12575         * mail-source.el (mail-source-delete-crash-box): Really only check the
12576         incoming files once in a while.
12577
12578         * pop3.el (pop3-streaming-movemail): Always close the pop3 connection.
12579
12580         * mail-source.el (mail-source-delete-crash-box): Only check the
12581         incoming files for deletion once per day to save a lot of file
12582         accesses.
12583
12584         * pop3.el (pop3-logon): Fix up unbound variable typo.
12585
12586         * mail-source.el (pop3-streaming-movemail): Autoload.
12587
12588         * pop3.el (pop3-streaming-movemail):
12589         Respect pop3-leave-mail-on-server.
12590
12591         * mail-source.el (mail-source-fetch-pop): Use streaming pop3
12592         retrieval.
12593
12594         * pop3.el (pop3-process-filter): Remove unused function.
12595         (pop3-streaming-movemail, pop3-send-streaming-command)
12596         (pop3-wait-for-messages, pop3-write-to-file)
12597         (pop3-number-of-responses): New functions for streaming pop3
12598         retrieval.
12599
12600         * gnus-start.el (gnus-get-unread-articles): Protect against groups that
12601         come from no known methods.
12602         (gnus-make-hashtable-from-newsrc-alist): Remove duplicates from .newsrc
12603         list.
12604
12605         * pop3.el (pop3-display-message-size-flag): Remove -- everybody wants
12606         message sizes.
12607         (pop3-movemail): Use erase-buffer instead of looping and deleting
12608         regions, which seems rather odd.
12609
12610         * gnus-agent.el (gnus-agent-load-local): Only read the agent.lib/local
12611         file once per `g' run.
12612
12613         * nnmh.el (nnmh-request-list-1): Output active lines also for empty
12614         directories.  This makes the draft queue directory work.
12615
12616         * gnus-start.el (gnus-get-unread-articles): Rewrite the way we request
12617         data from the backends, so that we only request the list of groups from
12618         each method once.  This should speed things up considerably.
12619
12620         * nnvirtual.el (nnvirtual-request-list): Remove function so that we can
12621         detect that it's not implemented.
12622
12623         * nnmh.el (nnmh-request-list-1): Fix up the recursion behavior so that
12624         we actually do recurse down into the tree, but don't stat all leaf
12625         nodes.
12626
12627         * gnus-html.el (gnus-html-show-images): If there are no images to show,
12628         then say so instead of bugging out.
12629
12630         * gnus-agent.el (gnus-agent-load-alist): Check whether the agentview
12631         files exist before trying to read them.
12632
12633         * gnus-html.el (gnus-html-wash-tags): Remove even more white space
12634         around <pre_int>.
12635
12636         * gnus-art.el (gnus-article-copy-string): Say what data we copied.
12637
12638         * nnmh.el (nnmh-request-list-1): Optimize for speed.
12639
12640 2010-09-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12641
12642         * mm-util.el (mm-image-load-path): Just return the image directories,
12643         not all directories in the path in addition to the image directories.
12644         (mm-image-load-path): Maintain a cache of the image directories so that
12645         the `g' command in Gnus doesn't have to stat dozens of directories each
12646         time.
12647
12648         * gnus-html.el (gnus-html-put-image): Allow images to be removed.
12649         (gnus-html-wash-tags): Add a new `i' command to insert images.
12650         (gnus-html-insert-image): New command and keystroke.
12651         (gnus-html-redisplay-with-images): New command and keystroke.
12652         (gnus-html-show-images): Rename command.
12653         (gnus-html-wash-tags): Remove more white space before <pre_int> image
12654         spacers.
12655         (gnus-html-wash-tags): Decode entities at the end, so that entities
12656         inside the tags don't mess up the rest of the "parsing".
12657
12658         * gnus-agent.el (gnus-agent-auto-agentize-methods): Change the default
12659         so that nnimap methods aren't agentized by default.  There's apparently
12660         many problems related to agent/imap behavior.
12661
12662         * gnus-art.el (gnus-article-copy-string): New command and key binding.
12663
12664         * gnus-html.el: Doc fix.
12665
12666 2010-09-03  Katsumi Yamaoka  <yamaoka@jpl.org>
12667
12668         * lpath.el: Fbind device-on-window-system-p, glyph-image, glyphp, and
12669         specifier-spec-list for Emacs 21.
12670
12671         * gnus-html.el (gnus-html-put-image): Use gnus-graphic-display-p,
12672         glyph-width and glyph-height instead of display-graphic-p and
12673         image-size; make avoidance of displaying small images work for XEmacs.
12674
12675         * gnus-util.el (gnus-graphic-display-p): Use device-on-window-system-p
12676         for XEmacs.
12677
12678         * gnus-ems.el (gnus-set-process-plist, gnus-process-plist): Change name
12679         of symbol that holds plist data.
12680         (gnus-process-plist): Remove plist of process after getting it.
12681
12682 2010-09-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12683
12684         * message.el (message-generate-hashcash): Change default to
12685         'opportunistic if hashcash is installed.
12686
12687         * gnus-html.el (gnus-html-rescale-image): Fix up typo in rescaling.
12688         (gnus-html-put-image): Only call image-size once, since it's somewhat
12689         time-consuming on remote X servers.
12690
12691 2010-09-02  Katsumi Yamaoka  <yamaoka@jpl.org>
12692
12693         * gnus-xmas.el (gnus-xmas-create-image): Don't try to examine image
12694         type on data, not a file name.
12695
12696         * lpath.el: Fbind w3-parse-buffer for Emacs <=22 and XEmacs; fbind
12697         window-pixel-edges for Emacs 21.
12698
12699         * gnus-html.el (gnus-article-html): Make work buffer multibyte for
12700         decoded contents.
12701         (gnus-html-put-image, gnus-html-rescale-image): Pass `file' argument.
12702
12703 2010-09-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12704
12705         * gnus-group.el (gnus-group-line-format): Remove %O (moderated) from
12706         group line format, since it isn't very interesting.
12707
12708         * gnus-agent.el (gnus-agent-short-article),
12709         (gnus-agent-long-article): Increase values for these two variables,
12710         since most people are likely to have more network connection and
12711         storage than before.
12712
12713         * gnus.el (gnus-refer-article-method): Change default to 'current.
12714         When referring an article, the common behavior is to refer it from the
12715         current select method, not the native select method.  The chances of
12716         the native select method having the message in question is rather slim
12717         these days.
12718
12719         * gnus-sum.el (gnus-auto-select-subject): Change default to
12720         `unseen-or-unread'.  I think it's likely that most people want to
12721         select an unseen article over a previously seen, but unread one.
12722
12723         * gnus.el (gnus-mode-non-string-length): Change default to 30.  nil
12724         means that in the article buffer none of the minor mode elements will
12725         be shown, usually, and this is not desirable in most cases.
12726
12727         * gnus-sum.el (gnus-summary-goto-unread): Change default to nil, so
12728         that commands like `d' (and the like) go to the next line in the
12729         buffer, instead of the next unread article.  I think this is the
12730         behavior that is most natural for most users.
12731         (gnus-single-article-buffer): Change default to nil, so that people can
12732         have as many article buffers open as they have summary buffer.  I think
12733         this is the most natural way for the groups to behave.
12734
12735         * message.el (message-generate-new-buffers): Change default to
12736         `unsent', so that all new message buffers start their names with the
12737         string "*unsent", and it's easier to find the buffers if you move from
12738         them.
12739
12740 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12741
12742         * gnus-html.el (gnus-html-wash-tags): Don't show images that are really
12743         small.  They're probably tracking images.
12744         (gnus-html-wash-tags): Remove all <pre_int> place holders.
12745         (gnus-html-rescale-image): Yet another try at getting the image sizing
12746         right.
12747
12748         * nntp.el (nntp-request-set-mark): Refuse to do marks if
12749         nntp-marks-file-name is nil.
12750
12751 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
12752
12753         * gnus-html.el (gnus-html-wash-tags)
12754         (gnus-html-schedule-image-fetching, gnus-html-image-url-blocked-p):
12755         Better logging.
12756
12757 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12758
12759         * nndoc.el (nndoc-type-alist): Add a new type for Google digests.
12760
12761         * gnus-html.el (gnus-html-wash-tags): Check the value of
12762         gnus-blocked-images in the summary buffer.
12763
12764 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
12765
12766         * gnus-html.el (gnus-html-image-url-blocked-p): Doc fix.
12767
12768 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12769
12770         * gnus-html.el (gnus-html-wash-tags): "A" is also used for links, just
12771         like "a", it seems like.
12772         (gnus-html-image-url-blocked-p): Take a parameter for blocked-images
12773         since it needs to be picked from the correct buffer.
12774
12775         * nnwfm.el: Remove.
12776
12777         * nnlistserv.el: Remove.
12778
12779 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
12780
12781         * gnus-html.el (gnus-html-image-url-blocked-p): New function.
12782         (gnus-html-prefetch-images, gnus-html-wash-tags): Use it.
12783
12784 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12785
12786         * nnkiboze.el: Remove.
12787
12788         * nndb.el: Remove.
12789
12790         * gnus-html.el (gnus-html-put-image): Use the deleted text as the image
12791         alt text.
12792         (gnus-html-rescale-image): Try to get the rescaling logic right for
12793         images that are just wide and not tall.
12794
12795         * gnus.el (gnus-string-or): Fix the syntax to not use eval or
12796         overshadow variable bindings.
12797
12798 2010-09-01  Teodor Zlatanov  <tzz@lifelogs.com>
12799
12800         * gnus-html.el (gnus-html-wash-tags)
12801         (gnus-html-schedule-image-fetching, gnus-html-prefetch-images):
12802         Add extra logging.
12803
12804 2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12805
12806         * gnus-html.el (gnus-html-wash-tags): Delete the IMG_ALT region.
12807         (gnus-max-image-proportion): New variable.
12808         (gnus-html-rescale-image): New function.
12809         (gnus-html-put-image): Rescale images.
12810
12811 2010-09-01  Stefan Monnier  <monnier@iro.umontreal.ca>
12812
12813         Fix up some byte-compiler warnings.
12814         * gnus.el (gnus-group-find-parameter, gnus-kill-save-kill-buffer):
12815         * gnus-cite.el (gnus-article-highlight-citation, gnus-dissect-cited-text)
12816         (gnus-article-fill-cited-article, gnus-article-hide-citation)
12817         (gnus-article-hide-citation-in-followups, gnus-cite-toggle):
12818         * gnus-group.el (gnus-group-set-mode-line, gnus-group-quit)
12819         (gnus-group-set-info, gnus-add-mark): Use with-current-buffer.
12820         (gnus-group-update-group): Use save-excursion and with-current-buffer.
12821
12822 2010-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
12823
12824         * gnus-html.el (gnus-article-html): Decode contents by charset.
12825
12826 2010-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
12827
12828         * gnus-html.el (gnus-html-cache-directory, gnus-html-cache-size)
12829         (gnus-html-frame-width, gnus-blocked-images):
12830         * message.el (message-prune-recipient-rules): Add custom version.
12831         * gnus-sum.el (gnus-auto-expirable-marks): Bump custom version.
12832
12833         * gnus-ems.el (gnus-process-get, gnus-process-put): New compatibility
12834         functions.
12835
12836         * gnus-html.el (gnus-html-curl-sentinel): Replace process-get with
12837         gnus-process-get.
12838
12839 2010-08-31  Julien Danjou  <julien@danjou.info>  (tiny change)
12840
12841         * nnimap.el (nnimap-request-newgroups): Use nnimap-request-list-method
12842         instead of lsub directly.
12843
12844 2010-08-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12845
12846         * nnwarchive.el: Remove.
12847
12848         * gnus-soup.el: Remove.
12849
12850         * nnsoup.el: Remove.
12851
12852         * nnultimate.el: Remove.
12853
12854         * gnus-html.el (gnus-blocked-images): New variable.
12855
12856         * message.el (message-prune-recipients): New function.
12857         (message-prune-recipient-rules): New variable.
12858
12859         * gnus-cite.el (gnus-article-natural-long-line-p): New function to
12860         guess whether a long line is natural text or not.
12861
12862         * gnus-html.el (gnus-html-schedule-image-fetching):
12863         Use gnus-process-plist and friends for compatibility.
12864
12865 2010-08-31  Stefan Monnier  <monnier@iro.umontreal.ca>
12866
12867         * gnus-html.el: Require packages that define macros used in this file.
12868         (gnus-article-mouse-face): Declare to silence byte-compiler.
12869         (gnus-html-curl-sentinel): Use with-current-buffer, inhibit-read-only, and
12870         process-get.
12871         (gnus-html-put-image): Use plist-get to avoid getf.
12872         (gnus-html-prefetch-images): Use with-current-buffer.
12873
12874 2010-08-31  Katsumi Yamaoka  <yamaoka@jpl.org>
12875
12876         * gnus-ems.el: Provide compatibility functions for
12877         gnus-set-process-plist.
12878
12879         * lpath.el: Bind completion-styles for Emacs 21 and XEmacs; bind
12880         header-line-format for XEmacs 21.4.
12881
12882         * gnus-sum.el (gnus-summary-stop-at-end-of-message):
12883         * gnus.el (gnus-valid-select-methods):
12884         * message.el (message-send-mail-partially-limit):
12885         * mm-decode.el (mm-text-html-renderer):
12886         * mml.el (mml-insert-mime-headers-always):
12887         * smiley.el (smiley-regexp-alist): Bump custom version.
12888
12889 2010-08-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12890
12891         * gnus-html.el: Require mm-url.
12892         (gnus-html-wash-tags): Clarify the code a bit by renaming the variable
12893         with the url to `url'.
12894         (gnus-html-wash-tags): Support cid: URLs/images.
12895
12896 2010-08-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12897
12898         * gnus-sum.el: As per discussion 3 years, 8 weeks, 3 days, 9 hours, 57
12899         minutes, 56 seconds ago on the ding list, remove the `w' and `i'
12900         bindings, as they aren't useful at all.  `w' is moved to `W w'.
12901
12902         * gnus-move.el: Remove file, since it doesn't really work.
12903
12904         * gnus-html.el (gnus-article-html): Tell w3m that the input is
12905         UTF-8.  This seems to fix problems with some German web feeds.
12906
12907         * gnus.el (gnus-group-startup-message): Put the xpm version of the logo
12908         at the top so that the proper colors are applied.
12909
12910         * gnus-xmas.el (gnus-xmas-create-image): Make this work on files that
12911         don't have dots in their names.
12912
12913         * gnus-art.el (gnus-article-view-part): Doc fix.
12914
12915         * gnus-html.el (gnus-html-put-image): Use gnus-create-image to be
12916         XEmacs-compatible.
12917         (gnus-html-put-image): Don't do images on non-graphic displays.
12918
12919         * nnslashdot.el: Remove this unused backend.
12920
12921         * gnus-undo.el (gnus-undo-register-1): Limit the undo actions to 100
12922         actions.
12923         (gnus-undo-register-1): Revert last change.
12924
12925         * gnus-group.el (gnus-group-completing-read): Protect against not
12926         having completion-styles bound.
12927
12928         * mml.el (mml-insert-mime-headers-always): Change the default to t, to
12929         make broken recipients happier.
12930
12931         * gnus-html.el (gnus-html-put-image): Use gnus-put-image.
12932
12933         * gnus-ems.el (gnus-put-image): Have gnus-put-image take an optional
12934         point parameter.
12935
12936         * gnus-xmas.el (gnus-xmas-put-image): Ditto.
12937
12938         * gnus-group.el (gnus-group-completing-read): Add 'substring to
12939         completion-styles for group selection.
12940
12941 2009-02-04  Andreas Schwab  <schwab@suse.de>
12942
12943         * gnus-score.el (gnus-score-string): Fix regex for matching extra
12944         headers and regexp-quote the match if necessary.
12945
12946 2009-03-24  Miles Bader  <miles@gnu.org>
12947
12948         * smiley.el (smiley-regexp-alist): Don't delete the semicolon before
12949         the blinking smiley.
12950
12951 2009-03-24  Simon Josefsson  <simon@josefsson.org>
12952
12953         * smiley.el (smiley-regexp-alist): Disallow ;;) from being treated as a
12954         blink smiley.
12955
12956 2010-08-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12957
12958         * gnus-start.el (gnus-dribble-read-file): Ensure that the directory
12959         where the dribbel file lives exists.
12960
12961         * message.el (message-send-mail-partially-limit): Change the default to
12962         nil, since most people don't want this.
12963
12964         * mm-url.el (mm-url-decode-entities): Also decode entities like
12965         &#x3212.
12966
12967 2009-07-16  Kevin Ryde  <user42@zip.com.au>  (tiny change)
12968
12969         * gnus-sum.el (gnus-summary-idna-message):
12970         * nnrss.el (nnrss-normalize-date, nnrss-discover-feed):
12971         Hyperlink urls in docstrings with URL `...'.
12972
12973 2010-08-29  Adam Sjøgren  <asjo@koldfront.dk>
12974
12975         * gnus-html.el (gnus-html-put-image): Use XEmacs-compatible image
12976         functions.
12977
12978 2010-08-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12979
12980         * gnus-art.el (gnus-article-add-button): Take an optional parameter to
12981         say what the mouseover text should be.
12982
12983         * gnus-html.el (gnus-html-prefetch-images): Use the summary-local
12984         version of the mm-w3m-safe-url-regexp variable to only download images
12985         in the groups where we want that to happen.
12986
12987         * gnus-sum.el (gnus-summary-stop-at-end-of-message): New variable.
12988
12989         * gnus-art.el (gnus-article-beginning-of-window): Make into defun for
12990         easier debugging.
12991         (gnus-article-beginning-of-window): Add kludge to allow spacing past
12992         big pictures in the article buffer.
12993
12994         * mm-decode.el (mm-text-html-renderer): Default the html renderer to
12995         gnus-article-html.
12996         (mm-text-html-renderer): gnus-article-html needs curl in addition to
12997         w3m.
12998
12999         * gnus-html.el: Start a new super-simple HTML renderer based on w3m.
13000
13001 2010-08-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13002
13003         * gnus.el (gnus-valid-select-methods): Remove reference to nngoogle,
13004         which doesn't exist.
13005
13006         * message.el (message-inhibit-ecomplete): New variable to allow some
13007         function to inhibit ecomplete address storage.
13008         (message-resend): Disable ecomplete message storage when resending
13009         messages.
13010
13011         * nntp.el (nntp-async-kluge): Remove the Emacs 20.3-related kluge.
13012
13013 2010-08-27  Katsumi Yamaoka  <yamaoka@jpl.org>
13014
13015         * gnus-sum.el (gnus-summary-move-article, gnus-summary-delete-article):
13016         Save excursion while copying, moving, and deleting articles in order to
13017         prevent the cursor from jumping to unforeseen place.
13018
13019 2010-08-17  Katsumi Yamaoka  <yamaoka@jpl.org>
13020
13021         * lpath.el: No need to bind bookmark-current-buffer,
13022         bookmark-yank-point and bookmark-make-record-function.
13023
13024 2010-08-17  Glenn Morris  <rgm@gnu.org>
13025
13026         * gnus-sync.el: Require gnus components whose functions are used.
13027
13028         * gnus-art.el (bookmark-make-record-function):
13029         * gnus-sum.el (bookmark-yank-point, bookmark-current-bookmark):
13030         Declare for compiler.
13031
13032         * mm-url.el (mml-compute-boundary): Autoload.
13033
13034 2010-08-15  Katsumi Yamaoka  <yamaoka@jpl.org>
13035
13036         * gnus-start.el (gnus-start-draft-setup): Move doc string forward.
13037
13038 2010-08-14  Teodor Zlatanov  <tzz@lifelogs.com>
13039
13040         Typo fix "hoo4a" -> "hook".
13041
13042         * gnus-sync.el (gnus-sync-install-hooks): Typo fix.
13043
13044 2010-08-14  Glenn Morris  <rgm@gnu.org>
13045
13046         * gnus-sync.el (gnus-sync): Fix defgroup version.
13047
13048 2010-08-13  Teodor Zlatanov  <tzz@lifelogs.com>
13049
13050         Doc fixes and keep unknown groups (ammended for nunion bug fix).
13051
13052         * gnus-sync.el: Fix docs.
13053         (gnus-sync-save): Keep unknown groups in `gnus-sync-newsrc-loader'.
13054         (gnus-sync-read): Don't wipe `gnus-sync-newsrc-loader' after reading.
13055
13056 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
13057
13058         Optimizations for gnus-sync.el.
13059
13060         * gnus-sync.el: Add docs about gnus-sync-backend
13061         possibilities.
13062         (gnus-sync-save): Remove unnecessary message.
13063         (gnus-sync-read): Optimize and show what groups were skipped.
13064
13065 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
13066
13067         Minor bug fixes for gnus-sync.el.
13068
13069         * gnus-sync.el (gnus-sync-unload-hook, gnus-sync-install-hooks):
13070         Don't read the sync on get-new-news.
13071
13072         * gnus-sync.el (gnus-sync-save): Define `variable' so the compiler is
13073         quiet.
13074
13075         * gnus-sync.el (gnus-sync-read): Use `gnus-sync-newsrc-offsets'
13076         (fix typo).
13077
13078 2010-07-30  Lawrence Mitchell  <wence@gmx.li>
13079
13080         Make saving and restoring of hidden threads work with overlays.
13081         Patch applied by Ted Zlatanov.
13082
13083         * gnus-sum.el (gnus-hidden-threads-configuration)
13084         (gnus-restore-hidden-threads-configuration): Update to deal with text
13085         properties, rather than searching for a magic character.
13086
13087 2010-08-12  Teodor Zlatanov  <tzz@lifelogs.com>
13088
13089         New gnus-sync.el library for synchronization of marks.
13090
13091         * gnus-sync.el: New library for synchronization of marks.
13092
13093         * gnus-util.el (gnus-grep-in-list): Move from gnus-registry.el and
13094         renamed from `gnus-registry-grep-in-list'.
13095
13096         * gnus-registry.el (gnus-registry-follow-group-p):
13097         Use `gnus-grep-in-list'.
13098
13099         * gnus-start.el (gnus-start-draft-setup): Make it interactive.
13100
13101 2010-08-06  Katsumi Yamaoka  <yamaoka@jpl.org>
13102
13103         * rfc2047.el (rfc2047-encode): Use utf-8 as a last resort if
13104         determining charset of text fails.
13105
13106 2010-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
13107
13108         * nnmail.el (nnmail-get-new-mail-1): Revert.
13109
13110         * nnml.el (nnml-active-number): Make sure names of newly created groups
13111         in nnml-group-alist are encoded.
13112
13113 2010-07-30  Katsumi Yamaoka  <yamaoka@jpl.org>
13114
13115         * nnmail.el (nnmail-get-new-mail-1): Encode group names possibly
13116         containing non-ASCII characters in active file for nnml back end.
13117
13118 2010-07-24  David Engster  <dengste@eml.cc>
13119
13120         * mml-smime.el (mml-smime-epg-verify): Also accept the older
13121         x-pkcs7-signature MIME type as signature (RFC 2311, C.1).
13122
13123 2010-07-21  Daiki Ueno  <ueno@unixuser.org>
13124
13125         * mml.el (mml-parse-1): Collect "certfile" attributes in "<#secure>"
13126         tag (Bug#6654).
13127
13128 2010-07-20  Katsumi Yamaoka  <yamaoka@jpl.org>
13129
13130         * gnus-sum.el (gnus-summary-bookmark-make-record): Bookmark position in
13131         the article buffer, not the summary buffer.
13132
13133 2010-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
13134
13135         * gnus-sum.el (gnus-summary-bookmark-make-record): Make it work for
13136         Emacs 23 as well.
13137
13138 2010-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
13139
13140         * lpath.el: Bind bookmark-current-buffer, bookmark-yank-point for all
13141         Emacs versions; bind bookmark-make-record-function for Emacs >=22.
13142
13143 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
13144
13145         Allow C-w when setting a bookmark in a Gnus Article buffer (Bug#5975).
13146         Patch applied by Karl Fogel.
13147
13148         * gnus-sum.el (gnus-summary-bookmark-make-record):
13149         Set `bookmark-yank-point' and `bookmark-current-buffer' to allow C-w.
13150
13151 2010-07-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
13152
13153         Allow bookmarks to be set from Gnus Article buffers (Bug#5975).
13154         Patch applied (with minor tweaks) by Karl Fogel.  Note this leaves
13155         C-w still not working correctly from Article buffers; Thierry's
13156         patch to fix that will be applied after this.
13157
13158         * gnus-art.el (bookmark-make-record-function): New local variable.
13159
13160         * gnus-sum.el (gnus-summary-bookmark-make-record): Allow setting from
13161         article buffer.
13162         (gnus-summary-bookmark-jump): Maybe jump to article buffer.
13163
13164 2010-07-13  Karl Fogel  <kfogel@red-bean.com>
13165
13166         * gnus-sum.el (bookmark-make-record-default): Adjust declaration, based
13167         on changes in bookmark.el.
13168
13169 2010-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
13170
13171         * gnus-xmas.el (gnus-xmas-read-event-char): Use display-message with
13172         `no-log' instead of message not to log prompt string.
13173
13174 2010-06-22  Mark A. Hershberger  <mah@everybody.org>
13175
13176         * mm-url.el (mm-url-encode-multipart-form-data): New function to handle
13177         the *other* type of HTML form submission.
13178
13179 2010-06-15  Michael Albinus  <michael.albinus@gmx.de>
13180
13181         * auth-source.el (auth-source-pick): If choice does not contain a
13182         questioned keyword, set the check to t.
13183
13184 2010-06-12  Romain Francoise  <romain@orebokech.com>
13185
13186         * gnus-util.el (gnus-date-get-time): Move up before first use.
13187
13188 2010-06-10  Katsumi Yamaoka  <yamaoka@jpl.org>
13189
13190         * gnus-art.el (gnus-mime-buttonized-part-id): New internal variable.
13191         (gnus-article-edit-part): Bind it to make last part that is substituted
13192         or deleted visible.
13193         (gnus-mime-display-single): Buttonize part of which id equals to
13194         gnus-mime-buttonized-part-id.
13195
13196 2010-06-10  Dan Christensen  <jdc@uwo.ca>
13197
13198         * gnus-util.el (gnus-user-date): Use gnus-date-get-time.
13199         (gnus-dd-mmm): Use gnus-date-get-time.
13200         * gnus-sum.el (gnus-thread-latest-date): Use gnus-date-get-time and
13201         simplify logic.
13202         (gnus-summary-limit-to-age): Use gnus-date-get-time.
13203         (gnus-sort-threads): Emit message if gnus-sort-threads-loop used.
13204
13205 2010-06-08  Michael Albinus  <michael.albinus@gmx.de>
13206
13207         * auth-source.el (top): Autoload `secrets-list-collections',
13208         `secrets-create-item', `secrets-delete-item'.
13209         (auth-sources): Fix tag string.
13210         (auth-get-source, auth-source-retrieve, auth-source-create)
13211         (auth-source-delete): New defuns.
13212         (auth-source-pick): Rewrite in order to avoid 2 passes.
13213         (auth-source-forget-user-or-password): New parameter USERNAME.
13214         (auth-source-user-or-password): New parameters CREATE-MISSING and
13215         DELETE-EXISTING.  Retrieve password interactively, if needed.
13216
13217 2010-06-07  Teemu Likonen  <tlikonen@iki.fi>  (tiny change)
13218
13219         * gnus-agent.el (gnus-agent-expire-unagentized-dirs): Don't ask about
13220         deleting unused directories when gnus-expert-user is t.
13221
13222 2010-06-02  Katsumi Yamaoka  <yamaoka@jpl.org>
13223
13224         * gnus-art.el (gnus-article-browse-delete-temp-files): Don't make query
13225         for each temp file when gnus-article-browse-delete-temp is ask.
13226
13227 2010-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
13228
13229         * gnus-uu.el, imap.el, nndoc.el, nnrss.el, rfc2047.el, utf7.el:
13230         Replace Lisp calls to delete-backward-char by calls to delete-char.
13231
13232 2010-05-20  Kevin Ryde  <user42@zip.com.au>
13233
13234         * gnus-start.el (gnus-level-unsubscribed): Doc fix.  (Bug#6206)
13235
13236 2010-05-19  Michael Albinus  <michael.albinus@gmx.de>
13237
13238         * password-cache.el (password-cache-remove): Fix docstring.
13239
13240 2010-05-14  Katsumi Yamaoka  <yamaoka@jpl.org>
13241
13242         * gnus-sum.el (gnus-summary-save-article): Don't bother to re-fetch
13243         article unless decoding article to be saved.
13244
13245 2010-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
13246
13247         * mml1991.el (mml1991-mailcrypt-encrypt, mml1991-gpg-encrypt):
13248         * mml2015.el (mml2015-gpg-encrypt): Disable multibyte in buffers
13249         generated within the mm-with-unibyte-current-buffer macro.
13250
13251 2010-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>
13252
13253         * gnus-art.el (gnus-bind-safe-url-regexp): Bind mm-w3m-safe-url-regexp
13254         to nil when we're in a mml-preview buffer and no group is selected.
13255
13256 2010-05-12  Andreas Seltenreich  <seltenreich@gmx.de>
13257
13258         * gnus-sum.el (gnus-summary-read-group-1): Don't jump to next group
13259         when catching the `C-g'.  Reported by "Leo".
13260
13261 2010-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
13262
13263         * message.el (message-forward-make-body-plain)
13264         (message-forward-make-body-mml): Use mm-multibyte-string-p instead of
13265         multibyte-string-p.
13266
13267         * lpath.el: Revert.
13268
13269 2010-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
13270
13271         * message.el (message-forward-make-body-mml): Assume original message
13272         is multibyte string; error on unibyte.
13273         (message-forward-make-body-plain): Ditto; don't add excessive newline
13274         in body end.
13275
13276         * lpath.el: Fbind multibyte-string-p for XEmacs 21.4 and SXEmacs.
13277
13278 2010-05-11  Andreas Seltenreich  <seltenreich@gmx.de>
13279
13280         * gnus-sum.el (gnus-summary-kill-thread): Use gnus-summary-mark-article
13281         instead of g-s-m-a-as-unread to set the expirable mark.  (Bug#5284)
13282
13283 2010-05-11  Katsumi Yamaoka  <yamaoka@jpl.org>
13284
13285         * mm-extern.el (mm-extern-url): Don't use
13286         mm-with-unibyte-current-buffer.
13287         (mm-extern-cache-contents): Use with-current-buffer instead of
13288         save-excursion + set-buffer.
13289
13290 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
13291
13292         * mm-util.el (mm-emacs-mule): Remove.
13293
13294 2010-05-10  Andreas Seltenreich  <seltenreich@gmx.de>
13295
13296         * gnus-sum.el (gnus-summary-mode): Don't make minor-mode-alist
13297         buffer-local as it's incompatible with Stefan Monnier's 2010-05-03
13298         change.
13299
13300 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
13301
13302         * mm-util.el (mm-with-unibyte-current-buffer): Redefine it so as not to
13303         bind the default value of enable-multibyte-characters to nil.
13304
13305 2010-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
13306
13307         * message.el (message-forward-make-body-plain)
13308         (message-forward-make-body-mml):
13309         Don't use mm-with-unibyte-current-buffer.
13310
13311 2010-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
13312
13313         * dns-mode.el (auto-mode-alist): Add entry for .zone files.
13314
13315 2010-05-07  Christian von Roques  <roques@mti.ag>  (tiny change)
13316
13317         * mml2015.el (mml2015-epg-find-usable-key): Skip disabled key
13318         (Bug#5592).
13319
13320 2010-05-07  Julien Danjou  <julien@danjou.info>
13321
13322         * gnus-art.el (gnus-mime-pipe-part): Add optional argument `cmd'; pass
13323         it to mm-pipe-part.
13324
13325         * mm-decode.el (mm-pipe-part): Add optional argument `cmd'; use it if
13326         it is given.
13327
13328 2010-05-07  Katsumi Yamaoka  <yamaoka@jpl.org>
13329
13330         * binhex.el (binhex-decode-region-internal):
13331         * dns.el (dns-read-string-name, dns-write, dns-read, dns-read-type):
13332         (dns-query):
13333         * nnweb.el (nnweb-gmane-search):
13334         * pgg-parse.el (pgg-parse-armor):
13335         * pgg.el (pgg-verify-region):
13336         * sha1.el (sha1-string-external):
13337         * uudecode.el (uudecode-decode-region-internal):
13338         * yenc.el (yenc-decode-region): Don't run set-buffer-multibyte for
13339         XEmacs.
13340
13341         * gnus-art.el (gnus-article-browse-html-parts):
13342         * gnus-group.el (gnus-read-ephemeral-gmane-group):
13343         (gnus-read-ephemeral-bug-grou): Use mm-make-temp-file instead of
13344         make-temp-file.
13345
13346         * gnus-dired.el (gnus-dired-mode): Bind gnus-dired-mode-hook,
13347         gnus-dired-mode-on-hook and gnus-dired-mode-off-hook for XEmacs when
13348         compiling.
13349
13350         * gnus-ml.el (gnus-mailing-list-mode): Bind gnus-mailing-list-mode-hook,
13351         gnus-mailing-list-mode-on-hook and gnus-mailing-list-mode-off-hook for
13352         XEmacs when compiling.
13353
13354         * gnus-salt.el (gnus-pick-mode): Bind gnus-pick-mode-on-hook and
13355         gnus-pick-mode-off-hook for XEmacs when compiling.
13356         (gnus-binary-mode): Bind gnus-binary-mode-on-hook and
13357         gnus-binary-mode-off-hook for XEmacs when compiling.
13358
13359         * gnus-sum.el (gnus-summary-limit-strange-charsets-predicate):
13360         Return nil if char-charset is not available.
13361
13362         * imap.el (imap-disable-multibyte)
13363         * sieve-manage.el (sieve-manage-disable-multibyte): Redefine them as
13364         macros.
13365
13366         * mm-url.el (mm-url-form-encode-xwfu): Use mm-encode-coding-string
13367         instead of encode-coding-string.
13368
13369         * mm-util.el (mm-enable-multibyte, mm-disable-multibyte): Use (featurep
13370         'xemacs) instead of mm-emacs-mule to switch function definitions.
13371         (mm-with-unibyte-current-buffer): Make it a progn macro for XEmacs.
13372
13373         * lpath.el: Fbind delete-overlay and overlay-lists for XEmacs;
13374         bind temporary-file-directory for XEmacs;
13375         fbind make-temp-file, set-buffer-multibyte, string-as-multibyte and
13376         timer-set-function for XEmacs 21.4 and SXEmacs;
13377         bind timer-list for XEmacs 21.4 and SXEmacs;
13378         fbind char-charset and find-charset-region for non-Mule XEmacs;
13379         fbind decode-coding-region, decode-coding-string, detect-coding-region,
13380         encode-coding-region and encode-coding-string for XEmacs having no
13381         file-coding feature.
13382
13383 2010-05-06  Tommi Vainikainen  <thv@iki.fi>  (tiny change)
13384
13385         * mml-sec.el (mml-secure-message-sign): Fix cut and paste error.
13386
13387 2010-05-06  Katsumi Yamaoka  <yamaoka@jpl.org>
13388
13389         * gnus-dired.el, gnus-draft.el, gnus-ml.el, gnus-salt.el, gnus-sum.el,
13390         gnus-undo.el, mml.el: Require easy-mmode for XEmacs when compiling.
13391
13392 2010-05-03  Juanma Barranquero  <lekktu@gmail.com>
13393
13394         * mm-util.el (mm-decompress-buffer): Use `delete-file';
13395         alias `jka-compr-delete-temp-file' no longer exists.
13396
13397 2010-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
13398
13399         Use define-minor-mode in Gnus where applicable.
13400         * mml.el (mml-mode): Use define-minor-mode.
13401         * gnus-undo.el (gnus-undo-mode-map): Initialize in declaration.
13402         (gnus-undo-mode): Use define-minor-mode.
13403         * gnus-sum.el (gnus-dead-summary-mode-map): Initialize in declaration.
13404         (gnus-dead-summary-mode): Use define-minor-mode.
13405         * gnus-salt.el (gnus-pick-mode-map, gnus-binary-mode-map):
13406         Initialize in declaration.
13407         (gnus-pick-mode, gnus-binary-mode): Use define-minor-mode.
13408         * gnus-ml.el (gnus-mailing-list-mode-map): Initialize in declaration.
13409         (gnus-mailing-list-mode): Use define-minor-mode.
13410         * gnus-draft.el (gnus-draft-mode-map): Initialize in declaration.
13411         (gnus-draft-mode): Use define-minor-mode.
13412         * gnus-dired.el (gnus-dired-mode-map): Initialize in declaration.
13413         (gnus-dired-mode): Use define-minor-mode.
13414
13415 2010-05-01  Andreas Seltenreich  <seltenreich@gmx.de>
13416
13417         * mml.el (mml-generate-mime-1, mml-compute-boundary-1): Update 'mml
13418         handles on recursive mml-to-mime translation and check them for
13419         boundary delimiter collisions.  Reported by Greg Troxel.
13420
13421 2010-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
13422
13423         * gnus-util.el: Don't load tm and apel XEmacs packages when compiling.
13424
13425 2010-04-23  Stefan Monnier  <monnier@iro.umontreal.ca>
13426
13427         * mm-util.el (mm-find-buffer-file-coding-system):
13428         * yenc.el (yenc-decode-region): Don't let-bind a read-only variable.
13429
13430 2010-04-22  Andreas Seltenreich  <seltenreich@gmx.de>
13431
13432         * message.el (message-generate-headers): Record insertion of optional
13433         headers as well.  Otherwise the check to prevent repeated insertion of
13434         optional headers is a no-op.
13435
13436 2010-04-17  Teodor Zlatanov  <tzz@lifelogs.com>
13437
13438         * smime.el: Don't mention CVS.
13439
13440         * nnrss.el (nnrss-fetch): Don't mention CVS.
13441
13442         * nnir.el: Don't mention CVS.
13443
13444 2010-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
13445
13446         * gnus-sum.el (gnus-summary-bookmark-make-record):
13447         Add `location' field.
13448
13449 2010-04-14  Katsumi Yamaoka  <yamaoka@jpl.org>
13450
13451         * lpath.el: Fbind bookmark-default-handler,
13452         bookmark-get-bookmark-record, bookmark-make-record-default,
13453         bookmark-prop-get for Emacs <23 and XEmacs.
13454
13455 2010-04-12  Stefan Monnier  <monnier@iro.umontreal.ca>
13456
13457         * gnus-sum.el: Add bookmark declarations to silence the compiler.
13458         (gnus-mark-xrefs-as-read, gnus-summary-limit-to-bodies):
13459         Use with-current-buffer to silence the byte-compiler.
13460         (gnus-summary-bookmark-make-record): Use derived-mode-p and don't
13461         bother to require `gnus'.
13462         (gnus-summary-bookmark-jump): Don't forget to autoload.  Simplify.
13463
13464 2010-04-12  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
13465
13466         * gnus-sum.el (gnus-summary-bookmark-make-record)
13467         (gnus-summary-bookmark-jump): New functions.
13468         (gnus-summary-mode): Setup bookmark support.
13469
13470 2010-04-01  Andreas Schwab  <schwab@linux-m68k.org>
13471
13472         * mm-uu.el (mm-uu-pgp-signed-extract-1): Use buffer-file-coding-system
13473         if set.
13474
13475 2010-03-31  Katsumi Yamaoka  <yamaoka@jpl.org>
13476
13477         * gnus-art.el (gnus-article-browse-html-save-cid-content): Rename from
13478         gnus-article-browse-html-save-cid-image; make it work recursively for
13479         forwarded messages as well.
13480         (gnus-article-browse-html-parts): Work when prefix arg is given.
13481         (gnus-article-browse-html-article): Doc fix.
13482
13483 2010-03-30  Chong Yidong  <cyd@stupidchicken.com>
13484
13485         * message.el (message-default-mail-headers)
13486         (message-default-headers): Carry the value mail-default-headers over
13487         into message-default-mail-headers, rather than message-default-headers.
13488
13489 2010-03-30  Martin Stjernholm  <mast@lysator.liu.se>
13490
13491         * mm-decode.el (mm-add-meta-html-tag): Add option to override the
13492         charset.
13493
13494         * gnus-art.el (gnus-article-browse-html-parts): Force the correct
13495         charset into the <meta> tag when the article is encoded to utf-8.
13496
13497 2010-03-30  Katsumi Yamaoka  <yamaoka@jpl.org>
13498
13499         * gnus-art.el (gnus-article-browse-delete-temp-files):
13500         Delete directories as well.
13501         (gnus-article-browse-html-parts): Work for images that do not specify
13502         file names; delete temp directory when quitting; insert header at the
13503         right place; use file: scheme for image files.
13504
13505 2010-03-30  Eric Schulte  <schulte.eric@gmail.com>
13506
13507         * gnus-art.el (gnus-article-browse-html-save-cid-image): New function.
13508         (gnus-article-browse-html-parts): Use it to make temporary cid image
13509         files in addition to html file so that browser may display them.
13510
13511 2010-03-29  Katsumi Yamaoka  <yamaoka@jpl.org>
13512
13513         * mm-decode.el (mm-add-meta-html-tag): Fix regexp matching meta tag.
13514
13515 2010-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
13516
13517         * auth-source.el (auth-source-pick): Fix for non-secrets specifier.
13518
13519 2010-03-27  Teodor Zlatanov  <tzz@lifelogs.com>
13520
13521         * auth-source.el (auth-sources): Change default to be simpler.
13522         Explain about Secret Service API sources.  Improve Customize options.
13523         (auth-source-pick): Change to accept any number of search parameters.
13524         Implement fallbacks iteratively, not recursively.  Add scoring on the
13525         second pass and sort by score.  Call Secret Service API when needed.
13526         (auth-source-user-or-password): Use it.  Call Secret Service API
13527         directly when needed to get the user name and the password.
13528
13529 2010-03-24  Juanma Barranquero  <lekktu@gmail.com>
13530
13531         * message.el (message-interactive): Doc fix.
13532         (message-qmail-inject-args): Reflow.
13533         (message-kill-to-signature): Fix typo in docstring.
13534
13535         * smiley.el (smiley-buffer): Fix typo in docstring.
13536
13537 2010-03-24  Glenn Morris  <rgm@gnu.org>
13538
13539         * mail-source.el (gnus-message): Declare.
13540         (mail-source-delete-old-incoming): Require gnus-util.
13541
13542 2010-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
13543
13544         * gnus-art.el (canlock-verify): Autoload it for Emacs 21.
13545
13546         * message.el (ecomplete-setup): Autoload it for Emacs <23.
13547
13548         * mml-sec.el (mml-secure-cache-passphrase): Default to t that is
13549         password-cache's default if it is not bound.
13550         (mml-secure-passphrase-cache-expiry): Default to 16 that is
13551         password-cache-expiry's default if it is not bound.
13552
13553         * pop3.el (pop3-list): Don't use 3rd arg of `split-string' which is not
13554         available in Emacs 21.
13555
13556         * lpath.el: Suppress compiler warnings for:
13557         canlock-insert-header and smtpmail-default-smtp-server for Emacs 21 and
13558         XEmacs;
13559         ecomplete-add-item, ecomplete-save, hashcash-wait-async,
13560         mail-add-payment, mail-add-payment-async, netrc-get, netrc-machine,
13561         netrc-machine-user-or-password and netrc-parse for Emacs 22 and XEmacs.
13562
13563 2010-03-23  Teodor Zlatanov  <tzz@lifelogs.com>
13564
13565         * auth-source.el (auth-sources): Fix up definition so extra parameters
13566         are always inline.
13567
13568 2010-03-22  Martin Stjernholm  <mast@lysator.liu.se>
13569
13570         * nnimap.el (nnimap-verify-uidvalidity): Fix bug where uidvalidity
13571         wasn't updated after mismatch.  Clear cached mailbox info correctly
13572         when uidvalidity changes.
13573         (nnimap-group-prefixed-name): New function to avoid some code
13574         duplication.
13575         (nnimap-verify-uidvalidity, nnimap-group-overview-filename)
13576         (nnimap-request-group): Use it.
13577         (nnimap-retrieve-groups, nnimap-verify-uidvalidity)
13578         (nnimap-update-unseen): Significantly improved speed of Gnus startup
13579         with many imap folders.  This is done by caching the group status from
13580         the imap server persistently in a group parameter `imap-status'.  (This
13581         was cached before too if `nnimap-retrieve-groups-asynchronous' was set,
13582         but not persistently, so every Gnus startup was still very slow.)
13583
13584 2010-03-22  Teodor Zlatanov  <tzz@lifelogs.com>
13585
13586         * assistant.el (assistant-render-text): Run `widget-setup' and don't
13587         delete the extra newline.  Otherwise editing of :string and :number
13588         types don't work.
13589
13590 2010-03-20  Teodor Zlatanov  <tzz@lifelogs.com>
13591
13592         * auth-source.el: Set up autoloads.  Bump to 23.2 because of the
13593         secrets.el dependency.
13594         (auth-sources): Add optional user name.  Add secrets.el configuration
13595         choice (unused right now).
13596
13597 2010-03-20  Teodor Zlatanov  <tzz@lifelogs.com>
13598
13599         * gnus-sum.el (gnus-summary-make-menu-bar):
13600         Let `gnus-registry-install-shortcuts' fill in the functions.
13601
13602         * gnus-registry.el (gnus-summary-misc-menu): Declare to avoid
13603         warnings.
13604         (gnus-registry-misc-menus): Variable to hold registry mark menus.
13605         (gnus-registry-install-shortcuts): Populate and use it in a
13606         `gnus-summary-menu-hook' lambda, under "Gnus"->"Registry Marks".
13607
13608 2010-03-20  Martin Stjernholm  <mast@lysator.liu.se>
13609
13610         * nnimap.el (nnimap-decode-group-name, nnimap-encode-group-name):
13611         In-place substitutions for the group name encoding/decoding.
13612         (nnimap-find-minmax-uid, nnimap-possibly-change-group)
13613         (nnimap-retrieve-headers-progress, nnimap-possibly-change-group)
13614         (nnimap-retrieve-headers-progress, nnimap-request-article-part)
13615         (nnimap-update-unseen, nnimap-request-list)
13616         (nnimap-retrieve-groups, nnimap-request-update-info-internal)
13617         (nnimap-request-set-mark, nnimap-split-to-groups)
13618         (nnimap-split-articles, nnimap-request-newgroups)
13619         (nnimap-request-create-group, nnimap-request-accept-article)
13620         (nnimap-request-delete-group, nnimap-request-rename-group)
13621         (nnimap-acl-get, nnimap-acl-edit): Use them.  Replace `mbx' with
13622         `encoded-mbx' for consistency.
13623         (nnimap-close-group): Call `imap-current-mailbox' instead of using the
13624         variable `imap-current-mailbox'.
13625
13626         * gnus-agent.el (gnus-agent-fetch-articles, gnus-agent-fetch-headers)
13627         (gnus-agent-regenerate-group): Use `gnus-agent-decoded-group-name'.
13628
13629 2010-03-20  Bojan Petrovic  <bpetrovi@f.bg.ac.rs>
13630
13631         * pop3.el (pop3-display-message-size-flag): Display message size byte
13632         counts during POP3 download.
13633         (pop3-movemail): Use it.
13634         (pop3-list): Implement listing of available messages.
13635
13636 2010-03-20  Mark Triggs  <mst@dishevelled.net>  (tiny change)
13637
13638         * nnir.el (nnir-get-article-nov-override-function): New function to
13639         override the normal NOV retrieval.
13640         (nnir-retrieve-headers): Use it.
13641
13642 2010-03-19  Michael Albinus  <michael.albinus@gmx.de>
13643
13644         * auth-source.el (netrc-machine-user-or-password): Autoload.
13645
13646 2010-03-19  Glenn Morris  <rgm@gnu.org>
13647
13648         Stop message.el from loading about 40 libraries it doesn't always need.
13649         The general approach is to autoload rather than require, and to
13650         require in the specific functions rather than the file.  (Bug#5642)
13651
13652         * gmm-utils.el: Don't require wid-edit.
13653         (widget-create-child-value, widget-convert, widget-default-get):
13654         Autoload.
13655
13656         * gnus-util.el: Don't require time-date, netrc.
13657         (message-fetch-field, gnus-group-name-decode): Declare rather than
13658         autoloading.
13659         (gnus-fetch-field): Require message.
13660         (gnus-decode-newsgroups): Require gnus-group.
13661
13662         * ietf-drums.el: Don't require time-date.
13663
13664         * message.el: Don't require hashcash, canlock, ecomplete.
13665         Do require mail-utils.  Require nnheader only when compiling.
13666         (smtpmail-default-smtp-server): Remove declaration.
13667         (message-send-mail-function): Check smtpmail-default-smtp-server
13668         is bound rather than requiring smtpmail.
13669         (message-auto-save-directory, message-insert-signature):
13670         Use expand-file-name rather than nnheader-concat.
13671         (nnheader-insert-file-contents): Autoload.
13672         (hashcash-wait-async): Declare.
13673         (message-send-mail): Only call gnus-setup-posting-charset if
13674         gnus-group-posting-charset-alist is bound.  Require hashcash if needed.
13675         (message-send-mail-with-sendmail): Require sendmail.
13676         (canlock-password, canlock-password-for-verify): Declare.
13677         (message-canlock-password): Require canlock.
13678         (nnheader-get-report): Autoload.
13679         (gnus-setup-posting-charset): Declare.
13680         (message-send-news): Require gnus-msg.
13681         (message-make-references, message-make-in-reply-to): Use mail-header-id
13682         rather than the alias mail-header-message-id.
13683         (ecomplete-add-item, ecomplete-save): Declare.
13684         (message-put-addresses-in-ecomplete): Require ecomplete.
13685         (ecomplete-display-matches): Autoload.
13686
13687         * mm-decode.el: Don't require mailcap, gnus-util.
13688         (gnus-map-function, gnus-replace-in-string, gnus-read-shell-command)
13689         (message-fetch-field, mailcap-parse-mailcaps, mailcap-mime-info):
13690         Autoload.
13691         (mailcap-mime-extensions): Declare.
13692
13693         * mm-encode.el: Don't require mailcap.
13694         (mailcap-extension-to-mime): Autoload.
13695
13696         * mml-sec.el: Don't require password-cache.
13697
13698         * mml.el (gnus-setup-posting-charset): Declare rather than autoload.
13699         (mailcap-parse-mimetypes, mailcap-mime-types): Declare.
13700         (mml-minibuffer-read-type): Require mailcap.
13701         (mml-preview): Require gnus-msg.
13702
13703         * mml1991.el: Require password-cache.
13704         (password-cache-expiry): Remove declaration.
13705
13706         * mml2015.el: Require password-cache.
13707         (password-cache-expiry): Remove declaration.
13708
13709         * nneething.el (mailcap): Require mailcap.
13710
13711         * nnheader.el (declare-function): Add compatibility stub.
13712         (message-remove-header): Declare rather than autoload.
13713         (nnheader-replace-header): Require message.
13714
13715         * nnimap.el (declare-function): Add compatibility stub.
13716         (netrc-parse, netrc-machine-user-or-password): Declare.
13717         (nnimap-open-connection): Require netrc.
13718
13719         * nntp.el (declare-function): Add compatibility stub.
13720         (netrc-parse, netrc-machine, netrc-get): Declare.
13721         (nntp-send-authinfo): Require netrc.
13722
13723         * rfc2047.el: Don't require qp.
13724         (quoted-printable-encode-region, quoted-printable-decode-string):
13725         Autoload.
13726
13727         * sieve-mode.el: Don't require easymenu.
13728         (easy-menu-add-item): Autoload it.
13729
13730         * spam-stat.el (time-to-number-of-days): Autoload it.
13731
13732 2010-03-19  Glenn Morris  <rgm@gnu.org>
13733
13734         * password-cache.el (password-cache, password-cache-expiry): Autoload.
13735
13736 2010-03-18  Glenn Morris  <rgm@gnu.org>
13737
13738         * hashcash.el (declare-function): Remove duplicate definition.
13739
13740 2010-03-17  Kevin Ryde  <user42@zip.com.au>
13741
13742         * mml.el (mml-read-tag): Unquote values with `read' to reverse
13743         prin1 in mml-insert-tag (just stripping the quotes gave wrong
13744         value if any backslash escapes).
13745
13746 2010-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
13747
13748         * mm-util.el (mm-charset-to-coding-system): Use coding-system-from-name
13749         if it is available.  (bug#5647)
13750
13751         * lpath.el: Suppress compiler warning for coding-system-from-name for
13752         Emacs 21 and XEmacs.
13753
13754 2010-03-14  Juri Linkov  <juri@jurta.org>
13755
13756         * hmac-def.el:
13757         * hmac-md5.el:
13758         * netrc.el: Fix keywords.
13759
13760 2010-02-26  Glenn Morris  <rgm@gnu.org>
13761
13762         * message.el (message-send-mail-function): Change the default, so that
13763         it inherits from a customized send-mail-function.  (Bug#5643)
13764
13765 2010-02-24  Stefan Monnier  <monnier@iro.umontreal.ca>
13766
13767         * gnus-art.el (gnus-treat-display-x-face): Don't burp if
13768         shell-command-to-string signals an error (bug#5299).
13769
13770 2010-02-24  Glenn Morris  <rgm@gnu.org>
13771
13772         * message.el (message-smtpmail-send-it)
13773         (message-send-mail-with-mailclient): Doc fixes.
13774
13775 2010-02-16  Glenn Morris  <rgm@gnu.org>
13776
13777         * message.el (message-default-mail-headers): Change the default value
13778         to ease the transition from mail-mode to message-mode.  (Bug#5555)
13779
13780 2010-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
13781
13782         * parse-time.el (parse-time-syntax): Define it for only XEmacs.
13783         (parse-time-string-chars): Implement 2009-08-16 change for Emacs.
13784
13785 2010-01-18  Chong Yidong  <cyd@stupidchicken.com>
13786
13787         * time-date.el (date-to-time): Doc fix (Bug#5408).
13788
13789 2010-01-17  Chong Yidong  <cyd@stupidchicken.com>
13790
13791         * message.el (message-mail): Just pass yank-action on to message-setup.
13792         (message-setup): Handle (FUN . ARGS) form of yank-action.
13793         (message-with-reply-buffer, message-widen-reply)
13794         (message-yank-original): Handle non-buffer values of
13795         message-reply-buffer (Bug#4080).
13796         (message-setup-1): Prefer to save message-reply-buffer as a buffer.
13797
13798 2010-01-17  Juanma Barranquero  <lekktu@gmail.com>
13799
13800         * nnmairix.el (nnmairix-group-delete-recreate-this-group):
13801         Fix typo in docstring.
13802
13803 2010-01-08  Jason Rumney  <jasonr@gnu.org>
13804
13805         * sieve-manage.el (sieve-manage-parse-capability-1): Loosely match OK
13806         response.
13807
13808 2010-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
13809
13810         * gnus-art.el (gnus-article-describe-bindings): Work for prefix keys.
13811
13812         * gnus-xmas.el (gnus-xmas-article-describe-bindings): Ditto.
13813
13814         * message.el (message-check-news-header-syntax): Protect against a
13815         string that `rfc822-addresses' returns when parsing fails.
13816
13817 2010-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
13818
13819         * gnus-util.el (gnus-invisible-p, gnus-next-char-property-change)
13820         (gnus-previous-char-property-change): New functions.
13821
13822         * gnus-sum.el (gnus-forward-line-ignore-invisible): Use them.
13823
13824 2010-01-05  Andreas Schwab  <schwab@linux-m68k.org>
13825
13826         * gnus-sum.el (gnus-forward-line-ignore-invisible): New function.
13827         (gnus-summary-recenter): Use it instead of forward-line.  (Bug#5257)
13828
13829 2010-01-02  Chong Yidong  <cyd@stupidchicken.com>
13830
13831         * message.el (message-exchange-point-and-mark): Rework last change to
13832         avoid using optional arg of exchange-point-and-mark, for backward
13833         compatibility.
13834
13835 2010-01-01  Chong Yidong  <cyd@stupidchicken.com>
13836
13837         * message.el (message-exchange-point-and-mark):
13838         Call exchange-point-and-mark with an argument rather than setting
13839         mark-active by hand (Bug#5175).
13840
13841 2009-12-18  Katsumi Yamaoka  <yamaoka@jpl.org>
13842
13843         * nntp.el (nntp-service-to-port): Work for service expressed with
13844         numeric string; replace [:digit:] with [0-9] for XEmacs.
13845
13846 2009-12-17  Glenn Morris  <rgm@gnu.org>
13847
13848         * gnus-group.el (gnus-bug-group-download-format-alist):
13849         Change emacs entry to debbugs.gnu.org.  Bump :version.
13850
13851 2009-12-13  Reiner Steib  <Reiner.Steib@gmx.de>
13852
13853         * mm-encode.el (mm-sign-option, mm-encrypt-option): Add :version tag.
13854
13855 2009-12-12  Reiner Steib  <Reiner.Steib@gmx.de>
13856
13857         * message.el (message-info): Explain why we use `Info-goto-node'.
13858
13859 2009-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
13860
13861         * lpath.el: Always bind default-file-name-coding-system for (S)XEmacs.
13862
13863 2009-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
13864
13865         * message.el (message-completion-in-region): New compatibility function.
13866         (message-expand-group): Use it.
13867
13868 2009-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
13869
13870         * gnus-group.el (gnus-group-prepare-flat): Check also whether groups
13871         with no unread article should be listed if the 2nd arg `predicate' is
13872         given.
13873
13874 2009-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
13875
13876         * lpath.el: Fbind recenter-top-bottom for Emacs 21, 22, and (S)XEmacs.
13877
13878 2009-11-29  Juri Linkov  <juri@jurta.org>
13879
13880         * gnus-sum.el (gnus-recenter): Use `recenter-top-bottom'
13881         when it is fboundp in GNU Emacs 23.1.  Put `isearch-scroll' property
13882         on `gnus-recenter'.  (Bug#4698, Bug#4981)
13883
13884 2009-11-26  Kevin Ryde  <user42@zip.com.au>
13885
13886         * sha1.el (sha1-string-external): default-directory "/" in case
13887         otherwise non-existent.  process-connection-type pipe for touch of
13888         efficiency recommended by elisp manual.  (An aside in Bug#3911.)
13889
13890 2009-11-25  Kevin Ryde  <user42@zip.com.au>
13891
13892         * dns-mode.el: Add "Keywords: comm".  It's only an editing mode, but
13893         it's comms related and sgml-mode.el has "comm" on that basis too.
13894
13895 2009-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
13896
13897         * rfc2047.el (rfc2047-decode-region): Don't quote decoded words
13898         containing tspecial characters if they have been already quoted.
13899
13900 2009-11-05  Dan Nicolaescu  <dann@ics.uci.edu>
13901
13902         * dns-mode.el (auto-mode-alist): Purecopy string.
13903
13904 2009-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
13905
13906         * hashcash.el (hashcash-generate-payment): Use with-current-buffer.
13907
13908 2009-10-24  Glenn Morris  <rgm@gnu.org>
13909
13910         * gnus-art.el (help-xref-stack-item): Define for compiler.
13911
13912 2009-10-21  Kevin Ryde  <user42@zip.com.au>
13913
13914         * dns.el: Add "Keywords: comm", as per net/net-utils.el.
13915
13916 2009-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
13917
13918         * gnus-sum.el (gnus-remove-overlays): eval-and-compile.
13919
13920 2009-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
13921
13922         * gnus-sum.el (gnus-summary-show-thread): Remove useless goto-char.
13923         (gnus-summary-show-thread, gnus-summary-hide-thread): Indent.
13924
13925 2009-10-16  Katsumi Yamaoka  <yamaoka@jpl.org>
13926
13927         * gnus.el (gnus-overlay-get): New alias to overlay-get.
13928         (gnus-overlays-in): New alias to overlays-in.
13929
13930         * gnus-sum.el (gnus-remove-overlays): Use gnus-overlays-in,
13931         gnus-overlay-get, and gnus-delete-overlay.
13932         (gnus-summary-show-thread): Make it work as well for systems in which
13933         next-single-char-property-change is not available.
13934         (gnus-summary-hide-thread): Use gnus-make-overlay and gnus-overlay-put.
13935
13936         * gnus-xmas.el (gnus-xmas-overlays-in): New function.
13937         (gnus-overlay-get): New alias to extent-property.
13938         (gnus-overlays-in): New alias to gnus-xmas-overlays-in.
13939
13940         * dgnushack.el: Autoload add-to-invisibility-spec for XEmacs 21.4 and
13941         SXEmacs.
13942
13943         * lpath.el: Fbind next-single-char-property-change for XEmacs 21.4 and
13944         SXEmacs.
13945
13946 2009-10-14  Reiner Steib  <Reiner.Steib@gmx.de>
13947
13948         * gnus-sum.el (gnus-remove-overlays): Add doc string and alias.
13949
13950 2009-10-14  Dan Nicolaescu  <dann@ics.uci.edu>
13951
13952         * gnus-sum.el (gnus-remove-overlays): Compatibility code for Emacs 21
13953         and XEmacs that don't have `remove-overlays'.
13954
13955 2009-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
13956
13957         * gnus-sum.el (gnus-summary-mode, gnus-summary-show-all-threads)
13958         (gnus-summary-show-thread, gnus-summary-hide-thread): Get rid of
13959         selective display.  Use overlays instead.
13960
13961 2009-10-04  Juanma Barranquero  <lekktu@gmail.com>
13962
13963         * spam-stat.el (spam-stat-strip-xref): Fix typo in docstring.
13964
13965 2009-09-29  Juanma Barranquero  <lekktu@gmail.com>
13966
13967         * spam-stat.el (spam-stat-load): Fix typo in message.
13968
13969 2009-09-24  Juanma Barranquero  <lekktu@gmail.com>
13970
13971         * dig.el (dig-invoke): Fix typo in docstring.
13972         (query-dig): Reflow docstring.
13973
13974 2009-09-23  Juanma Barranquero  <lekktu@gmail.com>
13975
13976         * gnus-art.el (gnus-article-encrypt-body):
13977         * message.el (message-check-recipients):
13978         * mm-util.el (mm-codepage-setup):
13979         * nnir.el (gnus-summary-nnir-goto-thread, nnir-run-waissearch)
13980         (nnir-run-swish++, nnir-run-swish-e): Fix typos in error messages.
13981
13982 2009-09-22  Daiki Ueno  <ueno@unixuser.org>
13983
13984         * mm-encode.el (mm-sign-option, mm-encrypt-option): New user option.
13985         * mml2015.el (mml2015-epg-sign, mml2015-epg-encrypt): Let users select
13986         keys from the menu if mm-{sign,encrypt}-option is 'guided.
13987         * mml-smime.el (mml-smime-epg-sign, mml-smime-epg-encrypt): Ditto.
13988         * mml1991.el (mml1991-epg-sign, mml1991-epg-encrypt): Ditto.
13989
13990 2009-09-21  Kevin Ryde  <user42@zip.com.au>
13991
13992         * dig.el: Add "Keywords: comm", as per net-utils.el.
13993
13994 2009-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
13995
13996         * dig.el (dig-mode): Use define-derived-mode.
13997
13998 2009-09-19  Glenn Morris  <rgm@gnu.org>
13999
14000         * pgg-pgp.el (pgg-pgp-encrypt-region): Add missing mapconcat separator.
14001
14002 2009-09-18  Glenn Morris  <rgm@gnu.org>
14003
14004         * gnus-diary.el (gnus-diary-check-message):
14005         * message.el (message-insert-formatted-citation-line):
14006         * nnbabyl.el (top-level):
14007         * nndiary.el (nndiary-schedule):
14008         Fix typos in condition-case handlers.
14009
14010 2009-09-15  Katsumi Yamaoka  <yamaoka@jpl.org>
14011
14012         * gnus-art.el (gnus-article-edit-part): Work for the buffer
14013         configuration that provides the sole article window in a frame;
14014         position point correctly after deleting a part.
14015
14016 2009-09-14  Adam Sjøgren  <asjo@koldfront.dk>
14017
14018         * spam.el (spam-unregister-on-reregister): Add boolean variable.
14019         (spam-resolve-registrations-routine): Use it to unregister articles
14020         that change status.
14021
14022 2009-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
14023
14024         * parse-time.el (parse-time-syntax): Restore it to keep compatibility
14025         with XEmacs.
14026         (parse-time-string-chars): Use it.
14027
14028 2009-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
14029
14030         * imap.el (imap-interactive-login): Better messages.
14031         (imap-open): Fix bug with renamed buffer on reconnect.
14032         (imap-authenticate): Add buffer-local imap-last-authenticator variable
14033         for easier debugging and cleaner code.  On successful (guessed based on
14034         server capabilities) secondary authentication, set imap-state
14035         correctly.
14036         (imap-last-authenticator): Define imap-last-authenticator as a variable
14037         to avoid warnings.
14038
14039 2009-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
14040
14041         * nnrss.el (nnrss-request-article): Remove binding of
14042         default-enable-multibyte-characters that has gotten needless by
14043         the 2007-07-13 change in rfc2047-encode-message-header.
14044
14045         * mml.el (mml-insert-multipart): Error on the message header.
14046         (mml-insert-part): Error on the message header; position point at
14047         the end of a MIME tag.
14048
14049 2009-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
14050
14051         * time-date.el (autoload): Expand define-obsolete-function-alias into
14052         defalias and make-obsolete for old Emacsen that Gnus supports.
14053         (with-no-warnings): Define it for old Emacsen.
14054         (time-to-seconds): Don't use (featurep 'xemacs) to check if float-time
14055         is available.
14056         (time-to-number-of-days): Don't use (featurep 'xemacs) to check if
14057         float-time is available; suppress compile warning for time-to-seconds.
14058
14059         * gnus-util.el (with-no-warnings): Define it for old Emacsen.
14060         (gnus-float-time): Alias to float-time if it exists.
14061
14062         * ecomplete.el (with-no-warnings): Define it for old Emacsen.
14063         (ecomplete-add-item): Don't use (featurep 'xemacs) to check if
14064         float-time is available; suppress compile warning for time-to-seconds.
14065
14066         * lpath.el: Fbind time-to-seconds for Emacs 21.; fbind float-time for
14067         XEmacs.
14068
14069 2009-09-09  Teodor Zlatanov  <tzz@lifelogs.com>
14070
14071         * imap.el (imap-message-map): Docstring fix.
14072
14073 2009-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
14074
14075         * mm-encode.el (mm-encode-buffer): Don't force 7bit encoding since MTA
14076         may break data.  Suggested by Dmitri Paduchikh <dpaduch@k66.ru>.
14077         Add the optional argument `encoding' that overrides the default.
14078
14079         * mml.el (mml-generate-mime-1): Pass encoding defined by a user to
14080         mm-encode-buffer.
14081
14082 2009-09-04  Glenn Morris  <rgm@gnu.org>
14083
14084         * qp.el (quoted-printable-encode-string): Use mm-enable-multibyte, or
14085         mm-disable-multibyte, rather than default-enable-multibyte-characters.
14086         * utf7.el (utf7-encode, utf7-decode): Use mm-with-multibyte-buffer, or
14087         mm-with-unibyte-buffer, rather than default-enable-multibyte-characters.
14088         * mm-util.el (mm-with-unibyte-current-buffer)
14089         (mm-find-buffer-file-coding-system):
14090         * yenc.el (yenc-decode-region): Use default-value rather than
14091         default-enable-multibyte-characters.
14092
14093 2009-09-03  Glenn Morris  <rgm@gnu.org>
14094
14095         * mm-util.el (mm-emacs-mule, mm-default-multibyte-p):
14096         * rfc2047.el (rfc2047-encode-message-header): Use default-value rather
14097         than default-enable-multibyte-characters.
14098
14099 2009-09-02  Karl Kleinpaste  <karl@kleinpaste.org>
14100
14101         * gnus-art.el (gnus-article-read-summary-keys):
14102         Fix gnus-buffer-configuration's value temporarily used.
14103
14104 2009-09-02  Glenn Morris  <rgm@gnu.org>
14105
14106         * gnus-util.el (gnus-float-time): New function.
14107         * gnus-delay.el (gnus-delay-article):
14108         * gnus-sum.el (gnus-thread-latest-date):
14109         * gnus-util.el (gnus-user-date): Use gnus-float-time.
14110         * nnspool.el (nnspool-request-newgroups):
14111         Use gnus-float-time rather than time-to-seconds.
14112         * ecomplete.el (ecomplete-add-item): In Emacs, use float-time.
14113
14114         * gnus-art.el (gnus-signature-face, gnus-header-from-face)
14115         (gnus-header-subject-face, gnus-header-newsgroups-face)
14116         (gnus-header-name-face, gnus-header-content-face):
14117         * gnus-cite.el (gnus-cite-attribution-face, gnus-cite-face-1)
14118         (gnus-cite-face-2, gnus-cite-face-3, gnus-cite-face-4)
14119         (gnus-cite-face-5, gnus-cite-face-6, gnus-cite-face-7)
14120         (gnus-cite-face-8, gnus-cite-face-9, gnus-cite-face-10)
14121         (gnus-cite-face-11):
14122         * gnus-picon.el (gnus-picon-xbm-face, gnus-picon-face):
14123         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
14124         (gnus-server-closed-face, gnus-server-denied-face)
14125         (gnus-server-offline-face):
14126         * gnus.el (gnus-group-news-1-face, gnus-group-news-1-empty-face)
14127         (gnus-group-news-2-face, gnus-group-news-2-empty-face)
14128         (gnus-group-news-3-face, gnus-group-news-3-empty-face)
14129         (gnus-group-news-4-face, gnus-group-news-4-empty-face)
14130         (gnus-group-news-5-face, gnus-group-news-5-empty-face)
14131         (gnus-group-news-6-face, gnus-group-news-6-empty-face)
14132         (gnus-group-news-low-face, gnus-group-news-low-empty-face)
14133         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face)
14134         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face)
14135         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face)
14136         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face)
14137         (gnus-summary-selected-face, gnus-summary-cancelled-face)
14138         (gnus-summary-high-ticked-face, gnus-summary-low-ticked-face)
14139         (gnus-summary-normal-ticked-face, gnus-summary-high-ancient-face)
14140         (gnus-summary-low-ancient-face, gnus-summary-normal-ancient-face)
14141         (gnus-summary-high-undownloaded-face)
14142         (gnus-summary-low-undownloaded-face)
14143         (gnus-summary-normal-undownloaded-face)
14144         (gnus-summary-high-unread-face, gnus-summary-low-unread-face)
14145         (gnus-summary-normal-unread-face, gnus-summary-high-read-face)
14146         (gnus-summary-low-read-face, gnus-summary-normal-read-face)
14147         (gnus-splash-face):
14148         * message.el (message-header-to-face, message-header-cc-face)
14149         (message-header-subject-face, message-header-newsgroups-face)
14150         (message-header-other-face, message-header-name-face)
14151         (message-header-xheader-face, message-separator-face)
14152         (message-cited-text-face, message-mml-face):
14153         * sieve-mode.el (sieve-control-commands-face)
14154         (sieve-action-commands-face, sieve-test-commands-face)
14155         (sieve-tagged-arguments-face):
14156         * spam.el (spam-face):
14157         Mark face aliases with "-face" in the name as obsolete.
14158
14159 2009-09-01  Glenn Morris  <rgm@gnu.org>
14160
14161         * gnus-salt.el (gnus-pick-mouse-pick-region): Use forward-line rather
14162         than goto-line.
14163
14164 2009-08-31  Katsumi Yamaoka  <yamaoka@jpl.org>
14165
14166         * mml.el (mml-attach-file, mml-attach-buffer, mml-attach-external):
14167         Don't move point if the command is invoked inside the message header.
14168
14169 2009-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
14170
14171         * imap.el (imap-send-command): Simplify.
14172         (imap-wait-for-tag): point-max -> buffer-size.
14173
14174 2009-08-29  Stefan Monnier  <monnier@iro.umontreal.ca>
14175
14176         * spam.el (spam-ifile-path, spam-bogofilter-path, spam-sa-learn-path)
14177         (spam-ifile-database-path, spam-bsfilter-path, spam-spamassassin-path):
14178         * nnmail.el (nnmail-spool-file, nnmail-fix-eudora-headers):
14179         * nnir.el (nnir-swish-e-index-file):
14180         * gnus-sum.el (gnus-summary-delete-marked-as-read)
14181         (gnus-summary-delete-marked-with, gnus-summary-mark-as-unread-forward)
14182         (gnus-summary-mark-as-unread-backward, gnus-summary-mark-as-unread):
14183         * gnus-msg.el (gnus-inews-mark-gcc-as-read):
14184         * gnus-art.el (gnus-article-hide-pgp-hook, gnus-treat-strip-pgp)
14185         (gnus-treat-display-xface): Add Emacs version of obsolescence.
14186
14187 2009-08-28  Katsumi Yamaoka  <yamaoka@jpl.org>
14188
14189         * mml.el (mml-attach-file, mml-attach-buffer, mml-attach-external):
14190         Don't save excursion.
14191
14192 2009-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
14193
14194         * nnheader.el (nnheader-find-file-noselect):
14195         * mm-util.el (mm-insert-file-contents):
14196         Use (default-value 'major-mode) instead of default-major-mode.
14197
14198 2009-08-27  Stefan Monnier  <monnier@iro.umontreal.ca>
14199
14200         * nnrss.el (nnrss-request-article): Avoid default-fill-column.
14201
14202 2009-08-26  Glenn Morris  <rgm@gnu.org>
14203
14204         * parse-time.el (parse-time-rules): Autoload riskiness here, rather
14205         than placing in files.el.
14206
14207 2009-08-25  Glenn Morris  <rgm@gnu.org>
14208
14209         * nnir.el (top-level): Don't require cl at run-time.
14210         (nnir-run-waissearch, nnir-run-swish-e, nnir-run-hyrex):
14211         Replace cl-function substitute with gnus-replace-in-string.
14212         (nnir-run-waissearch, nnir-run-swish++, nnir-run-swish-e)
14213         (nnir-run-hyrex, nnir-run-namazu): Replace cl-function sort* with sort.
14214         (nnir-run-find-grep): Replace cl-functions find-if and subseq with
14215         simplified expansions.
14216
14217 2009-08-25  Kevin Ryde  <user42@zip.com.au>
14218
14219         * dig.el (dig): Add autoload cookie.
14220
14221 2009-08-22  Glenn Morris  <rgm@gnu.org>
14222
14223         * gnus-art.el (gnus-button-patch): Use forward-line rather than
14224         goto-line.
14225
14226 2009-08-16  Chong Yidong  <cyd@stupidchicken.com>
14227
14228         * parse-time.el (parse-time-string-chars): Save match data.
14229
14230 2009-08-16  Jan Seeger  <jan.seeger@thenybble.de>  (tiny change)
14231
14232         * parse-time.el (parse-time-string-chars): Compute using character
14233         classes, to handle non-ascii characters (Bug#3190).
14234
14235 2009-08-12  Katsumi Yamaoka  <yamaoka@jpl.org>
14236
14237         * gnus-group.el (gnus-safe-html-newsgroups): New user option.
14238
14239         * gnus-art.el (gnus-bind-safe-url-regexp): New macro.
14240         (gnus-mime-view-all-parts, gnus-mime-view-part-internally)
14241         (gnus-mm-display-part, gnus-mime-display-single)
14242         (gnus-mime-display-alternative): Use gnus-bind-safe-url-regexp to
14243         override mm-w3m-safe-url-regexp according to gnus-safe-html-newsgroups.
14244
14245         * gnus-sum.el
14246         (gnus-mark-copied-or-moved-articles-as-expirable): New user option.
14247         (gnus-summary-move-article): Add expirable mark to articles copied or
14248         moved to group that has auto-expire turned on if the option is non-nil.
14249
14250 2009-07-24  Glenn Morris  <rgm@gnu.org>
14251
14252         * gnus-demon.el (gnus-demon-add-nntp-close-connection):
14253         Fix typo.  (Bug#3903)
14254
14255 2009-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
14256
14257         * gnus-art.el (gnus-article-mode-map): Bind the "e" key to
14258         gnus-article-read-summary-keys rather than gnus-summary-edit-article
14259         that should not be used for draft articles.
14260         (gnus-article-read-summary-keys): Use key-binding instead of lookup-key
14261         that has no concern in minor mode keys.
14262         (gnus-article-summary-command, gnus-article-summary-command-nosave):
14263         Abolish.
14264
14265 2009-07-16  Katsumi Yamaoka  <yamaoka@jpl.org>
14266
14267         * nnrss.el (nnrss-request-article): Allow mml-to-mime to generate MIME
14268         article without making inquiry to a user for unknown encoding.
14269
14270         * nnmaildir.el (nnmaildir--group-maxnum, nnmaildir--new-number)
14271         (nnmaildir--scan): Assume i-node and device number that file-attributes
14272         returns might be cons-cell.
14273
14274         * dgnushack.el: Autoload thing-at-point for XEmacs 21.5.
14275
14276         * lpath.el: Fbind cp-supported-codepages for XEmacs 21.5.
14277
14278 2009-07-16  Teodor Zlatanov  <tzz@lifelogs.com>
14279
14280         * auth-source.el: Remove docs now in auth.texi.  Don't use
14281         `gnus-message' for logging.  Add new variables `auth-source-debug' and
14282         `auth-source-hide-passwords' and use them.
14283
14284 2009-07-15  Glenn Morris  <rgm@gnu.org>
14285
14286         * gnus-spec.el (gnus-make-format-preserve-properties): Doc fix.
14287
14288 2009-07-10  Katsumi Yamaoka  <yamaoka@jpl.org>
14289
14290         * gnus-group.el (gnus-group-make-rss-group): Strip newlines and
14291         excessive whitespace from the default values of title and description.
14292
14293 2009-06-22  Katsumi Yamaoka  <yamaoka@jpl.org>
14294
14295         * mm-decode.el (mm-dissect-buffer): Use message-fetch-field instead of
14296         mail-fetch-field to fetch Content-Description header in order to
14297         exclude newlines.
14298
14299 2009-06-18  Ulrich Mueller  <ulm@gentoo.org>
14300
14301         * pgg-gpg.el (pgg-gpg-lookup-key-owner): Handle colon listings
14302         format used by GnuPG 2.0.11.
14303
14304 2009-06-01  Katsumi Yamaoka  <yamaoka@jpl.org>
14305
14306         * gnus-art.el (gnus-mime-delete-part): Specify gnus-decoded as charset
14307         to deleted part.
14308
14309 2009-05-30  David Engster  <dengste@eml.cc>
14310
14311         * nnmairix.el: Remove old documentation in the commentary block.
14312         (nnmairix-request-group): Do not update active file for nnml back ends.
14313         (nnmairix-retrieve-headers): Set gnus-nov-is-evil to t for nnimap back
14314         end so that overview files are ignored.
14315         (nnmairix-update-groups): Make updating the groups more robust by using
14316         marks.
14317         (nnmairix-determine-original-group-from-path): Circumvent mairix bug
14318         with dollar characters in message-id.
14319
14320 2009-04-28  Reiner Steib  <Reiner.Steib@gmx.de>
14321
14322         * spam.el: Use dns-query instead of query-dns.  Was renamed on
14323         2008-12-25 in dns.el.
14324
14325 2009-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
14326
14327         * rfc2047.el (rfc2047-decode-region): Don't skip past `start', which
14328         could happen if the text is only composed of spaces and/or tabs.
14329
14330 2009-03-03  Brian Sniffen  <bts@evenmere.org>  (tiny change)
14331
14332         * gnus-draft.el (gnus-draft-send): Bind gnus-message-setup-hook to nil
14333         when sending a queued message to avoid extra mml tags.
14334
14335 2009-03-02  Katsumi Yamaoka  <yamaoka@jpl.org>
14336
14337         * mml.el (mml-insert-mime): Don't break parts that mm-uu dissected.
14338
14339 2009-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
14340
14341         * lpath.el: Fbind rmail-swap-buffers-maybe for Emacs 21~22;
14342         fbind rmail-msg-restore-non-pruned-header, rmail-swap-buffers-maybe and
14343         rmail-toggle-header for XEmacs;
14344         bind rmail-default-file and rmail-default-rmail-file for XEmacs.
14345
14346 2009-02-25  Katsumi Yamaoka  <yamaoka@jpl.org>
14347
14348         * gnus-dired.el: Remove autoload for gnus-setup-message.
14349         (gnus-dired-attach): Fake this-command value to prevent Gnus from
14350         displaying Gnus logo; always use compose-mail.
14351
14352 2009-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
14353
14354         * gnus-dired.el: Tell autoload that gnus-setup-message is a macro.
14355
14356 2009-02-18  Katsumi Yamaoka  <yamaoka@jpl.org>
14357
14358         * gnus-nocem.el (gnus-nocem-groups): Remove invalid NoCeM groups.
14359         (gnus-nocem-issuers): List currently active issuers; fix custom type.
14360         (gnus-nocem-verifyer): Default to gnus-nocem-epg-verify if EasyPG is
14361         available.
14362         (gnus-nocem-epg-verify): New function.
14363
14364 2009-02-15  Reiner Steib  <Reiner.Steib@gmx.de>
14365
14366         * gnus-art.el (gnus-button-alist): Recognize Konqueror info links.
14367
14368 2009-02-15  Glenn Morris  <rgm@gnu.org>
14369
14370         * gnus-util.el (rmail-insert-rmail-file-header)
14371         (rmail-count-new-messages, rmail-show-message): Remove unnecessary
14372         autoloads.
14373         (rmail-default-rmail-file): Remove unnecessary declaration.
14374         (gnus-output-to-rmail): Handle mbox Rmail as well as Babyl Rmail.
14375
14376 2009-02-14  Glenn Morris  <rgm@gnu.org>
14377
14378         * gnus.el (rmail-default-rmail-file): Remove declaration of deleted
14379         variable (only used in gnus-util, which declares it anyway).
14380         (rmail-output-to-rmail-file): Remove autoload of deleted function,
14381         which was only needed by gnus-art (changed to not use it any more).
14382         (rmail-insert-rmail-file-header): Remove autoload of deleted function,
14383         only used in gnus-util, which autoloads it itself.
14384         (rmail-update-summary): Fix autoload.
14385
14386         * gnus-art.el (gnus-summary-save-in-mail): Use gnus-output-to-rmail
14387         rather than rmail-output-to-rmail-file.
14388
14389 2009-02-07  Glenn Morris  <rgm@gnu.org>
14390
14391         * message.el (rmail-msg-restore-non-pruned-header): Remove unneeded
14392         autoload of function that no longer exists.
14393         (rmail-toggle-header): Declare.
14394         (message-forward-rmail-make-body): Handle mbox Rmail.
14395
14396 2009-01-31  Glenn Morris  <rgm@gnu.org>
14397
14398         * gnus-sum.el (gnus-summary-next-article): XEmacs-friendly version of
14399         2009-01-09 change.
14400
14401 2009-01-31  Dave Love  <fx@gnu.org>
14402
14403         * imap.el (imap-fetch-safe): Bind debug-on-error.
14404         (imap-debug): Add imap-fetch-safe.
14405
14406 2009-01-26  Teodor Zlatanov  <tzlatanov@jumptrading.com>
14407
14408         * auth-source.el (auth-source-forget-user-or-password): Clarify docs.
14409         (auth-source-forget-all-cached): New convenience function.
14410         (auth-source-user-or-password): Accept list of modes or a single mode.
14411
14412         * mail-source.el (mail-source-bind, mail-source-set-1): Use list of
14413         auth-source modes.
14414
14415         * netrc.el (netrc-machine-user-or-password): Use list of
14416         auth-source modes.
14417
14418         * nnimap.el (nnimap-open-connection): Use list of
14419         auth-source modes.
14420
14421         * nntp.el (nntp-send-authinfo): Use list of
14422         auth-source modes.
14423
14424 2009-01-16  Teodor Zlatanov  <tzz@lifelogs.com>
14425
14426         * auth-source.el: Update docs to reflect epa-file-enable is to be used
14427         now.
14428
14429 2009-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
14430
14431         * nnmail.el (nnmail-pathname-coding-system): Default to the `file-name'
14432         coding system in XEmacs; add a workaround for XEmacs.
14433
14434         * lpath.el: Fbind coding-system-aliasee.
14435
14436 2009-01-14  Katsumi Yamaoka  <yamaoka@jpl.org>
14437
14438         * mm-util.el (mm-coding-system-priorities): Protect against nil value
14439         of current-language-environment.
14440
14441 2009-01-13  Reiner Steib  <Reiner.Steib@gmx.de>
14442
14443         * nnfolder.el (nnfolder-read-folder): Check if most-positive-fixnum is
14444         available at runtime.
14445
14446 2009-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
14447
14448         * gnus-art.el (article-date-ut): Fix end point of narrowing.
14449
14450 2009-01-11  Aidan Kehoe  <kehoea@parhasard.net>
14451
14452         * nnfolder.el (nnfolder-read-folder): The (lsh -1 -1) trick to generate
14453         the greatest positive fixnum value doesn't work under an XEmacs with
14454         bignum support; use the most-positive-fixnum constant instead,
14455         available since Emacs 21.1 with cl and XEmacs 21.1.
14456
14457 2009-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
14458
14459         * gnus-sum.el (gnus-summary-next-article): Revert last change by which
14460         XEmacs gets not to work.
14461
14462 2009-01-09  Katsumi Yamaoka  <yamaoka@jpl.org>
14463
14464         * mm-util.el (mm-coding-system-priorities): Allow the value like
14465         "Japanese (UTF-8)" of current-language-environment.
14466
14467 2009-01-09  Glenn Morris  <rgm@gnu.org>
14468
14469         * gnus-sum.el (gnus-summary-next-article): Replace last-command-char
14470         with last-command-event.
14471
14472 2009-01-08  Reiner Steib  <Reiner.Steib@gmx.de>
14473
14474         * imap.el (imap-enable-exchange-bug-workaround): Explain auto-detection
14475         in the doc string.
14476
14477         * message.el (message-fix-before-sending): Amend comment.
14478
14479 2009-01-08  Dave Love  <fx@gnu.org>
14480
14481         * imap.el (imap-message-appenduid-1): Fix typo in imap-fetch-safe call.
14482
14483 2009-01-07  David Engster  <dengste@eml.cc>
14484
14485         * gnus-msg.el (gnus-inews-do-gcc): Fix last patch to deal with
14486         simplified server definitions by converting it via
14487         gnus-server-to-method.
14488
14489 2009-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
14490
14491         * gnus-sum.el (gnus-summary-set-local-parameters): Always evaluate
14492         parameter's operands.
14493
14494 2009-01-06  David Engster  <dengste@eml.cc>
14495
14496         * gnus-msg.el (gnus-inews-do-gcc): Reduce to short group name when on
14497         primary select method (for gnus-group-mark-article-as-read).
14498
14499 2009-01-06  Tassilo Horn  <tassilo@member.fsf.org>
14500
14501         * gnus-art.el (gnus-treat-display-face): Fix docstring link to point to
14502         `(gnus)Face', not `(gnus)X-Face'.
14503
14504 2009-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
14505
14506         * mm-util.el (mm-ucs-to-char): New function.
14507
14508         * mm-url.el (mm-url-decode-entities): Use it.
14509
14510         * lpath.el: Fbind decode-char, int-to-char, ucs-to-char and
14511         unicode-to-char.
14512
14513 2009-01-05  Dave Love  <fx@gnu.org>
14514
14515         * time-date.el: Require cl for `declare'.
14516
14517 2009-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
14518
14519         * time-date.el (format-seconds): Explain `assoc-string'.  Suggested by
14520         Dave Love.
14521
14522 2009-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
14523
14524         * message.el (message-fix-before-sending): Add `eight-bit' to
14525         illegible-text check.
14526
14527 2009-01-03  Michael Olson  <mwolson@gnu.org>
14528
14529         * nnimap.el (nnimap-retrieve-headers-progress): Handle edge case where
14530         `headers' is nil.  This can occur if the IMAP server does not have
14531         permissions to read messages from a folder, but can write new messages
14532         to the folder.
14533         (nnimap-request-article-part): Do not insert `data' if it is nil.
14534
14535         * imap.el (imap-parse-fetch): Courier can insert spurious blank
14536         characters which will confuse `read', so skip past them.
14537
14538 2009-01-01  Dave Love  <fx@gnu.org>
14539
14540         * imap.el (imap-string-to-integer): Fix typo.
14541         (imap-fetch-safe): New function.
14542         (imap-message-copyuid-1, imap-message-appenduid-1): Use it.
14543
14544         * nnimap.el (nnimap-find-minmax-uid): Use imap-fetch-safe.
14545
14546         * imap.el (imap-process-connection-type, imap-debug, imap-open):
14547         (imap-parse-greeting): Fix doc strings.
14548         (imap-tls-open, imap-search, imap-message-appenduid-1): Add FIXMEs.
14549         (imap-parse-flag-list): Make messages unique.
14550         (imap-parse-body): Fix comments.  Add comment on Exchange 2007.
14551
14552         * nnimap.el: Fix author email.
14553         (nnimap-split-rule): Add FIXME comment.
14554         (nnimap-debug): Fix doc string.
14555
14556 2008-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
14557
14558         * dns.el (dns-set-servers): Check "Address".  Fix typo.
14559
14560 2008-12-25  Reiner Steib  <Reiner.Steib@gmx.de>
14561
14562         * dns.el (dns-set-servers): Renamed from dns-parse-resolv-conf.  Call
14563         nslookup if resolv.conf isn't available.
14564         (dns-query): Rename from query-dns.
14565         (dns-query-cached): Rename from query-dns-cached.
14566
14567 2008-12-25  Katsumi Yamaoka  <yamaoka@jpl.org>
14568
14569         * gnus-sum.el (gnus-summary-set-article-display-arrow): Make
14570         overlay-arrow-position and overlay-arrow-string buffer-local; no need
14571         to check if those variables exist (first appeared in Emacs 18.50).
14572
14573 2008-12-24  Katsumi Yamaoka  <yamaoka@jpl.org>
14574
14575         * mm-util.el (mm-line-number-at-pos): New function.
14576
14577         * spam-report.el (spam-report-process-queue): Use it.
14578
14579 2008-12-24  David Engster  <dengste@eml.cc>
14580
14581         * gnus-sum.el (gnus-summary-set-local-parameters): Don't bind
14582         parameters that haven't existed as variables as buffer-local variables.
14583
14584 2008-12-23  Dave Love  <fx@gnu.org>
14585
14586         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days): Don't use
14587         cadar.
14588
14589         * sieve-manage.el (sieve-manage-starttls-p): Rename from
14590         imap-starttls-p.
14591         (sieve-manage-starttls-open): Rename from imap-starttls-open.
14592
14593 2008-12-22  Dave Love  <fx@gnu.org>
14594
14595         * imap.el: Fix author email.  Doc fixes.
14596         (imap-parse-body): Work around assertion failure in bogus Exchange 2007
14597         reply.
14598
14599 2008-12-22  Reiner Steib  <Reiner.Steib@gmx.de>
14600
14601         * spam-report.el (spam-report-gmane-max-requests): New constant.
14602         (spam-report-gmane-wait): New variable.
14603         (spam-report-gmane-ham, spam-report-gmane-spam)
14604         (spam-report-url-ping-plain, spam-report-process-queue): Wait only if
14605         spam-report-gmane-wait is non-nil should be sufficient to avoid DOS-ing
14606         the server.
14607
14608         * nnheader.el (nnheader-read-timeout, nnheader-accept-process-output):
14609         Add explanations.
14610
14611         * pop3.el (pop3-accept-process-output, pop3-read-timeout): Use
14612         nnheader-accept-process-output and nnheader-read-timeout if available.
14613         (pop3-movemail): Use it.
14614
14615         * message.el (message-check-news-body-syntax): Fix signature check if
14616         there's an attachment.
14617
14618 2008-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
14619
14620         * mm-util.el: Add comments to the mm- emulating functions.
14621
14622 2008-12-21  Reiner Steib  <Reiner.Steib@gmx.de>
14623
14624         * gnus-start.el (gnus-before-startup-hook): Fix doc string.
14625         Reported by Stephen Berman <stephen.berman@gmx.net>.
14626
14627 2008-12-18  Katsumi Yamaoka  <yamaoka@jpl.org>
14628
14629         * mm-util.el (mm-substring-no-properties): New function.
14630         (mm-read-charset, mm-subst-char-in-string, mm-replace-in-string)
14631         (mm-special-display-p): Enable those lambda forms to be byte compiled.
14632         (mm-string-to-multibyte): Doc fix.
14633
14634         * mml.el (mml-attach-file): Use mm-substring-no-properties.
14635
14636 2008-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
14637
14638         * mml.el (mml-attach-file): Strip text properties from file name.
14639         (Bug#1574)
14640
14641 2008-12-16  Glenn Morris  <rgm@gnu.org>
14642
14643         * mm-util.el (mm-charset-override-alist): Declare for compiler.
14644
14645 2008-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
14646
14647         * mml.el (mml-generate-mime-1): Prefer the MIME charset that Emacs
14648         knows since the charset specified might be a bogus alias that
14649         mm-charset-synonym-alist provides.
14650
14651 2008-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
14652
14653         * mm-util.el (mm-charset-synonym-alist): Add bogus names "UTF8" and
14654         "ISO_8859-1".
14655
14656         * gnus-start.el (gnus-backup-startup-file): Improve doc string.
14657
14658 2008-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
14659
14660         * mm-util.el (mm-charset-eval-alist):
14661         Define it before mm-charset-to-coding-system.
14662         (mm-charset-to-coding-system): Add optional argument `silent';
14663         define it before mm-charset-override-alist.
14664         (mm-charset-override-alist): Add `(gb2312 . gbk)' to the
14665         default value if it can be used in Emacs currently running;
14666         silence mm-charset-to-coding-system.
14667
14668 2008-12-10  Katsumi Yamaoka  <yamaoka@jpl.org>
14669
14670         * rfc2047.el (rfc2047-charset-to-coding-system): Add new argument
14671         `allow-override' which says whether to use `mm-charset-override-alist'.
14672         (rfc2047-decode-encoded-words): Use it.
14673
14674         * mm-util.el (mm-charset-override-alist): Fix custom type;
14675         add `(gb2312 . gbk)' to choices.
14676
14677 2008-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
14678
14679         * mm-view.el (mm-inline-text-html-render-with-w3m): Make it simple and
14680         fast.
14681
14682         * gnus-art.el (gnus-article-wash-html-with-w3m): Ditto.
14683
14684         * lpath.el: Bind w3m-link-map for Emacs 21, 22, and XEmacs.
14685
14686 2008-12-04  Naohiro Aota  <nao.aota@gmail.com>
14687
14688         * mm-view.el (mm-inline-text-html-render-with-w3m): Put special keymap
14689         on links.
14690
14691         * gnus-art.el (gnus-article-wash-html-with-w3m): Ditto.
14692
14693 2008-12-03  Lute Kamstra  <lute@gnu.org>
14694
14695         * sha1.el: Remove leading * from docstrings of defcustoms,
14696         deffaces, defconsts and defuns.
14697
14698 2008-12-03  Katsumi Yamaoka  <yamaoka@jpl.org>
14699
14700         * message.el (message-idna-to-ascii-rhs-1): Protect against local
14701         users' addresses that don't have domain parts.
14702         (message-idna-to-ascii-rhs): Use message-narrow-to-headers-or-head
14703         rather than message-narrow-to-head since there will be the message
14704         header separator.
14705
14706 2008-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
14707
14708         * nnimap.el (nnimap-retrieve-headers-progress): Don't use nnimap-demule
14709         since the result is inserted in a unibyte buffer anyway.
14710         (nnimap-demule-use-string-to-multibyte): Remove.
14711         (nnimap-demule): Alias it to mm-string-to-multibyte.
14712
14713 2008-11-29  Reiner Steib  <Reiner.Steib@gmx.de>
14714
14715         * nnimap.el (nnimap-demule-use-string-to-multibyte): New temporary
14716         variable for debugging bug#464 and bug#1174.
14717         (nnimap-demule): Use it.
14718
14719 2008-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
14720
14721         * gnus-score.el (gnus-score-find-trace): Handle default score in total
14722         score calculation correctly.
14723
14724 2008-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
14725
14726         * message.el (message-send-mail): Just set the buffer to unibyte
14727         rather than use mm-with-unibyte-current-buffer which does a lot more.
14728         (message-send-mail-partially): Don't bother with
14729         mm-with-unibyte-current-buffer since it's already been made unibyte by
14730         message-send-mail.
14731
14732 2008-11-11  Teodor Zlatanov  <tzz@lifelogs.com>
14733
14734         * nnrss.el (nnrss-make-hash-index): Debug message of full item.
14735
14736 2008-11-10  Teodor Zlatanov  <tzz@lifelogs.com>
14737
14738         * netrc.el (netrc-parse): If a list is passed in as FILE, return it.
14739
14740 2008-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
14741
14742         * starttls.el (starttls-any-program-available): Rewritten so it doesn't
14743         require itself and to remove `with-no-warnings'.
14744
14745 2008-11-03  Teodor Zlatanov  <tzz@lifelogs.com>
14746
14747         * starttls.el (starttls-any-program-available): Get the name of the
14748         available TLS layer program.
14749         (starttls-open-steam-gnutls, starttls-open-stream): Put port number as
14750         well as the host name in the "opening" message.
14751
14752         * auth-source.el (auth-source-cache, auth-source-do-cache)
14753         (auth-source-user-or-password): Cache passwords and logins by default,
14754         allow override with `auth-source-do-cache'.
14755         (auth-source-forget-user-or-password): Allow users to remove cache
14756         entries if needed.
14757
14758 2008-11-01  Juanma Barranquero  <lekktu@gmail.com>
14759
14760         * md4.el (md4-buffer): Fix typo in docstring.
14761         (md4, md4-64): Doc fixes.
14762         (md4-pack-int32): Reflow docstring.
14763
14764 2008-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
14765
14766         * ietf-drums.el (ietf-drums-remove-comments): Localize second
14767         condition-case to only the forward-sexp call.
14768
14769 2008-10-31  Teodor Zlatanov  <tzz@lifelogs.com>
14770
14771         * ietf-drums.el (ietf-drums-remove-comments): Fix bug with single
14772         quotes contained.  Make it more robust regardless by an extra
14773         condition-case wrapper.
14774
14775 2008-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
14776
14777         * lpath.el: No need to fbind codepage-setup for Emacs 23.
14778
14779 2008-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
14780
14781         * nnml.el (nnml-request-expire-articles): Check if the function set to
14782         `nnmail-expiry-target' returns the symbol `delete'.
14783
14784         * nnfolder.el (nnfolder-request-expire-articles): Ditto.
14785
14786         * nnmail.el (nnmail-expiry-target): Fix custom type.
14787
14788 2008-10-02  Glenn Morris  <rgm@gnu.org>
14789
14790         * mm-util.el (mm-codepage-setup): Tweak codepage error.
14791         Silence compiler warning.
14792
14793 2008-10-01  Magnus Henoch  <mange@freemail.hu>
14794
14795         * tls.el (open-tls-stream): Show the actual command being
14796         executed, instead of the format string.
14797
14798 2008-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
14799
14800         * lpath.el: Fbind codepage-setup for Emacs 23.
14801
14802 2008-09-30  Chong Yidong  <cyd@stupidchicken.com>
14803
14804         * mml.el (mml-menu): Don't assume mml2015 is bound.
14805
14806 2008-09-29  Katsumi Yamaoka  <yamaoka@jpl.org>
14807
14808         * gnus-art.el (gnus-article-read-summary-keys): Check if summary window
14809         exists.
14810
14811 2008-09-27  Glenn Morris  <rgm@gnu.org>
14812
14813         * gnus-util.el (mail-header-remove-comments): Autoload it.
14814
14815 2008-09-27  Andreas Schwab  <schwab@suse.de>
14816
14817         * gnus-util.el (gnus-split-references): Strip comments.
14818         (gnus-parent-id): Likewise.
14819
14820 2008-09-26  Reiner Steib  <Reiner.Steib@gmx.de>
14821
14822         * message.el (message-confirm-send): Fix version.
14823
14824 2008-09-25  Katsumi Yamaoka  <yamaoka@jpl.org>
14825
14826         * message.el (message-idna-to-ascii-rhs-1): Use
14827         mail-extract-address-components rather than mail-header-parse-addresses
14828         that is an alias by default to ietf-drums-parse-addresses that does not
14829         support non-ASCII names in headers' contents.
14830
14831 2008-09-25  Teodor Zlatanov  <tzz@lifelogs.com>
14832
14833         * message.el (message-confirm-send): Fix variable documentation to
14834         avoid the "y/n" wording.
14835
14836 2008-09-25  Francis Litterio  <flitterio@gmail.com>  (tiny change)
14837
14838         * message.el (message-set-auto-save-file-name): Save to a different
14839         filename so multiple messages (especially drafts) can be recovered.
14840
14841 2008-09-24  Teodor Zlatanov  <tzz@lifelogs.com>
14842
14843         * message.el (message-confirm-send): Add appropriate version.
14844
14845 2008-09-22  Teodor Zlatanov  <tzz@lifelogs.com>
14846
14847         * mm-view.el (mm-pkcs7-enveloped-magic): Fix extra parenthesis in
14848         defvar.
14849
14850 2008-09-22  Daiki Ueno  <ueno@unixuser.org>
14851
14852         * mm-view.el (mm-pkcs7-signed-magic): Use literals.
14853         (mm-pkcs7-enveloped-magic): Ditto.
14854
14855 2008-09-17  Simon Josefsson  <simon@josefsson.org>
14856
14857         * sieve-manage.el (sieve-manage-is-string): Accept literals too.
14858         Reported by Arnt Gulbrandsen <arnt@oryx.com>.
14859
14860 2008-09-16  Teodor Zlatanov  <tzz@lifelogs.com>
14861
14862         * gnus-registry.el (gnus-registry-use-long-group-names): Make t the
14863         default, it's better.
14864
14865 2008-09-11  Teodor Zlatanov  <tzz@lifelogs.com>
14866
14867         * gnus-sum.el (gnus-summary-insert-line): Trap errors on setting the
14868         summary line gnus-number property and ignore them (with a warning
14869         message).
14870
14871 2008-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
14872
14873         * gnus-group.el (gnus-group-make-useful-group): Don't use the compiler
14874         macro caddr in the interactive form since it won't be expanded.
14875
14876 2008-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
14877
14878         * gnus-art.el (gnus-mime-set-charset-parameters): Add new argument
14879         `charset'; fix name of function called recursively.
14880         (gnus-mime-view-part-as-charset): Don't bind gnus-newsgroup-charset.
14881
14882 2008-09-09  Katsumi Yamaoka  <yamaoka@jpl.org>
14883
14884         * gnus-art.el (gnus-mime-strip-charset-parameters): Remove.
14885         (gnus-mime-set-charset-parameters): New function.
14886         (gnus-mime-view-part-as-charset): Use it to correctly display part
14887         specifying wrong charset.
14888
14889 2008-09-08  David Engster  <dengste@eml.cc>
14890
14891         * nnmairix.el (nnmairix-create-server-and-default-group): Require match
14892         in completing-read for back end server.
14893
14894 2008-09-03  Teodor Zlatanov  <tzz@lifelogs.com>
14895
14896         * message.el (message-confirm-send): New variable to confirm sending a
14897         message.
14898         (message-send): Use it.
14899
14900 2008-08-30  Teodor Zlatanov  <tzz@lifelogs.com>
14901
14902         * gnus-spec.el (gnus-parse-simple-format): Revert last patch.
14903
14904 2008-08-29  Katsumi Yamaoka  <yamaoka@jpl.org>
14905
14906         * gnus-spec.el (gnus-parse-simple-format): Remove trailing whitespace.
14907
14908 2008-08-21  Teodor Zlatanov  <tzz@lifelogs.com>
14909
14910         * gnus-registry.el (gnus-registry-max-track-groups): New variable to
14911         prevent tracking too many groups.
14912         (gnus-registry-split-fancy-with-parent, gnus-registry-fetch-groups):
14913         Use it.
14914
14915 2008-08-11  Ralf Angeli  <angeli@caeruleus.net>
14916
14917         * gnus-art.el (gnus-article-next-page): Respect `scroll-margin' when
14918         moving point to the bottom of the window in order to avoid recentering.
14919
14920 2008-08-11  Katsumi Yamaoka  <yamaoka@jpl.org>
14921
14922         * lpath.el: Bind scroll-margin for XEmacs 21.4 and SXEmacs.
14923
14924         * gnus-art.el (gnus-article-next-page, gnus-article-prev-page)
14925         (gnus-article-next-page-1): Use compiler directive (featurep 'xemacs).
14926         (gnus-article-beginning-of-window): Fix calculation.
14927
14928 2008-08-08  Katsumi Yamaoka  <yamaoka@jpl.org>
14929
14930         * gnus-msg.el (gnus-summary-supersede-article)
14931         (gnus-summary-resend-message-edit): Bind mail-parse-charset to the
14932         value of gnus-newsgroup-charset to decode non-MIME encoded text in
14933         message header.
14934
14935 2008-08-02  Chong Yidong  <cyd@stupidchicken.com>
14936
14937         * pgg-gpg.el (pgg-gpg-process-region): Accept any remaining
14938         pending output coming after the status change.
14939
14940 2008-07-31  Dan Nicolaescu  <dann@ics.uci.edu>
14941
14942         * message.el:
14943         * gnus-start.el:
14944         * gnus-registry.el: Remove VMS support.
14945
14946 2008-07-30  Katsumi Yamaoka  <yamaoka@jpl.org>
14947
14948         * rfc2104.el (rfc2104-string-make-unibyte): Define it as a compiler
14949         macro.
14950         (rfc2104-hash): Use it.
14951
14952 2008-07-30  Reiner Steib  <Reiner.Steib@gmx.de>
14953
14954         * gnus-sum.el (gnus-summary-sort-by-most-recent-number)
14955         (gnus-summary-sort-by-most-recent-date): New commands.
14956         (gnus-summary-mode-map, gnus-summary-make-menu-bar): Add key bindings
14957         and menu entries.
14958
14959 2008-07-29  Katsumi Yamaoka  <yamaoka@jpl.org>
14960
14961         * gnus-art.el (gnus-summary-save-in-pipe): Generate work buffer always;
14962         don't redisplay article for raw contents; remove plural articles stuff.
14963
14964         * gnus-sum.el (gnus-summary-pipe-output): Pipe raw articles by symbolic
14965         prefix `r'; use gnus-summary-save-in-pipe directly instead of relying
14966         on gnus-summary-save-article; display results properly.
14967
14968 2008-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
14969
14970         * lpath.el: No need to fbind ns-focus-frame.
14971
14972 2008-07-24  Katsumi Yamaoka  <yamaoka@jpl.org>
14973
14974         * gnus-art.el (gnus-summary-save-in-pipe): Add optional argument `raw'.
14975
14976 2008-07-22  Katsumi Yamaoka  <yamaoka@jpl.org>
14977
14978         * gnus-art.el (gnus-summary-save-in-pipe):
14979         Consider gnus-save-all-headers.
14980
14981 2008-07-21  Dan Nicolaescu  <dann@ics.uci.edu>
14982
14983         * gnus-util.el (ns-focus-frame): Remove declaration.
14984         (gnus-select-frame-set-input-focus): Undo previous change.  Treat ns
14985         like x.
14986
14987 2008-07-21  Thien-Thi Nguyen  <ttn@gnuvola.org>
14988
14989         * rfc2104.el (rfc2104-zero): Delete defconst.
14990         (rfc2104-hex-alist): Likewise.
14991         (rfc2104-hex-to-int): Delete func.
14992         (rfc2104-hexstring-to-bitstring): Likewise.
14993         (rfc2104-nybbles): New defconst.
14994         (rfc2104-hash): Rewrite for speed.
14995
14996 2008-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
14997
14998         * tls.el (open-tls-stream): Make it work with the 2nd argument
14999         BUFFER that is a string but does not exist as a buffer object, as
15000         mentioned in the doc-string.
15001
15002 2008-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
15003
15004         * lpath.el: Fbind ns-focus-frame for Emacs 21, 22, XEmacs 21.4, and
15005         SXEmacs.
15006
15007 2008-07-16  Glenn Morris  <rgm@gnu.org>
15008
15009         * gnus-util.el (ns-focus-frame): Declare for compiler.
15010
15011 2008-07-10  Katsumi Yamaoka  <yamaoka@jpl.org>
15012
15013         * gnus-art.el (gnus-article-save): Ignore gnus-visible-headers that is
15014         set as a group parameter.
15015         (gnus-summary-save-in-pipe): Work when it is called independently.
15016         (gnus-summary-pipe-to-muttprint): Don't modify
15017         gnus-summary-pipe-output-default-command.
15018
15019 2008-07-10  Stefan Monnier  <monnier@iro.umontreal.ca>
15020
15021         * message.el (message-send-mail-with-sendmail):
15022         Display the error message.
15023
15024 2008-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
15025
15026         * gnus-art.el (gnus-default-article-saver):
15027         Add gnus-summary-save-in-pipe to choices.
15028         (gnus-summary-save-in-pipe): Add :decode and :headers properties; use
15029         gnus-summary-pipe-output-default-command as the default command.
15030         (gnus-summary-pipe-to-muttprint): Update gnus-summary-muttprint-program
15031         instead of gnus-last-shell-command.
15032
15033         * gnus-sum.el (gnus-summary-pipe-output-default-command):
15034         New user option.
15035         (gnus-summary-muttprint-program): Mention the value will be changed.
15036         (gnus-summary-save-article): Force showing of all headers.
15037         (gnus-summary-pipe-output): Work with the 2nd argument HEADERS.
15038
15039 2008-07-01  Rupert Swarbrick  <rswarbrick@googlemail.com>  (tiny change)
15040
15041         * gnus-score.el (gnus-score-find-trace): Add "Total score" line.
15042
15043 2008-07-02  Juanma Barranquero  <lekktu@gmail.com>
15044
15045         * nnimap.el (nnimap-id):
15046         * sieve-manage.el (sieve-manage-open): Doc fixes.
15047
15048 2008-07-02  Francesc Rocher  <rocher@member.fsf.org>
15049
15050         * gnus.el (gnus-group-startup-message): Prefer SVG or PNG image,
15051         if available.
15052
15053 2008-06-25  Stefan Monnier  <monnier@iro.umontreal.ca>
15054
15055         * mm-util.el (mm-with-multibyte, mm-with-unibyte): Remove.
15056
15057         * nnkiboze.el (nnkiboze-generate-group):
15058         Use explicit mm-disable-multibyte rather than mm-with-unibyte.
15059
15060         * nnmairix.el: Require CL.
15061
15062 2008-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
15063
15064         * dgnushack.el: Autoload get-display-table and put-display-table for
15065         XEmacs 21.5.
15066
15067         * lpath.el: Fbind get-display-table and put-display-table for XEmacs
15068         21.4 and SXEmacs.
15069
15070 2008-06-15  David Engster  <dengste@eml.cc>
15071
15072         * nnimap.el (nnimap-request-delete-group): Unselect group if necessary.
15073
15074 2008-06-14  Aidan Kehoe  <kehoea@parhasard.net>
15075
15076         * gnus-util.el (gnus-put-display-table, gnus-get-display-table):
15077         New macros that expand to an `aset'/`aref' call under Emacs, and to a
15078         runtime choice under XEmacs.
15079
15080         * gnus-sum.el (gnus-summary-set-display-table):
15081         Use `gnus-put-display-table', `gnus-get-display-table',
15082         `gnus-set-display-table' for the display table, instead of `aset'.
15083
15084         * gnus-xmas.el (gnus-xmas-summary-set-display-table):
15085         Use `gnus-put-display-table', `gnus-get-display-table',
15086         `gnus-set-display-table' for the display table.
15087
15088 2008-06-14  Reiner Steib  <Reiner.Steib@gmx.de>
15089
15090         * nnmairix.el: Add autoloads.
15091
15092 2008-06-14  Reiner Steib  <Reiner.Steib@gmx.de>
15093
15094         * nnmairix.el (nnmairix-delete-recreate-group)
15095         (nnmairix-update-and-clear-marks): Fix error messages.
15096
15097 2008-06-14  David Engster  <dengste@eml.cc>
15098
15099         * nnmairix.el: Upgrade to version 0.6.
15100         (nnmairix-group-toggle-propmarks-this-group)
15101         (nnmairix-group-toggle-readmarks-this-group)
15102         (nnmairix-group-delete-recreate-this-group)
15103         (nnmairix-group-toggle-allowfast-this-group, nnmairix-propagate-marks)
15104         (nnmairix-remove-tick-mark-original-article): New commands.
15105         (nnmairix-mairix-search-options, nnmairix-propagate-marks-upon-close)
15106         (nnmairix-propagate-marks-to-nnmairix-groups)
15107         (nnmairix-only-use-registry, nnmairix-allowfast-default)
15108         (nnmairix-marks-cache, nnmairix-version-output): New variables.
15109         (nnmairix-request-set-mark, nnmairix-request-update-info): New back end
15110         functions needed for marks propagation and manipulation of read marks.
15111         (nnmairix-update-groups): New function.
15112         (nnmairix-get-groups-from-server, nnmairix-delete-recreate-group)
15113         (nnmairix-determine-original-group-from-registry)
15114         (nnmairix-determine-original-group-from-path)
15115         (nnmairix-get-group-from-file-path, nnmairix-map-range)
15116         (nnmairix-check-mairix-version, nnmairix-group-toggle-parameter):
15117         New helper functions.
15118         (nnmairix-group-mode-hook, nnmairix-summary-mode-hook): Insert new
15119         keystrokes for new commands.
15120         (nnmairix-delete-and-create-on-change): Doc string cleanup.
15121         (nnmairix-request-group): Check allow-fast group parameter.
15122         (nnmairix-request-create-group): Set allow-fast group parameter if
15123         nnmairix-allowfast-default is set.
15124         (nnmairix-close-group): Propagate marks upon closing if needed.
15125         (nnmairix-group-toggle-threads-this-group): Use new.
15126         nnmairix-group-toggle-parameter helper function.
15127         (nnmairix-search): Better check for empty search result.
15128         (nnmairix-goto-original-article): Use new helper functions for
15129         determining original article.
15130         (nnmairix-show-original-article): Make sure message-id is in brackets.
15131         (nnmairix-call-mairix-binary): Change variable name.
15132         (nnmairix-update-and-clear-marks): Use nnmairix-delete-recreate-group
15133         helper function.
15134         (nnmairix-widget-toggle-activate): Fix doc string.
15135
15136 2008-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
15137
15138         * nnir.el: Require edmacro when compiling with XEmacs.
15139         (nnir-run-find-grep): Don't use 3rd arg of `split-string' which is not
15140         available in Emacs 21.
15141
15142 2008-06-11  Glenn Morris  <rgm@gnu.org>
15143
15144         * gnus-util.el (x-focus-frame):
15145         * gnus.el (image-size):
15146         * mm-decode.el (image-size): Declare.
15147
15148         * gnus-picon.el (declare-function): Add compat definition.
15149         (image-size): Declare.
15150
15151         * gnus-group.el (tool-bar-map):
15152         * gnus-sum.el (tool-bar-map): Define for compiler.
15153
15154         * gnus-ems.el (gnus-x-splash): Check tool-bar-mode is bound.
15155
15156         * nnfolder.el (gnus-intersection): Remove unnecessary autoload.
15157
15158         * gnus-agent.el, gnus-cache.el, gnus-ems.el, gnus-group.el:
15159         * gnus-logic.el, gnus-msg.el, gnus-util.el, gnus.el, mail-source.el:
15160         * message.el, mm-decode.el, mm-encode.el, mm-view.el, mml.el:
15161         * mml1991.el, mml2015.el, nnfolder.el, nnheader.el, nnimap.el:
15162         * nnmail.el, nnml.el, nnrss.el, nntp.el, nnvirtual.el:
15163         * sieve-manage.el, spam-report.el, spam.el:
15164         Remove unnecessary eval-and-compile of autoloads.
15165
15166 2008-06-08  Michael Albinus  <michael.albinus@gmx.de>
15167
15168         * auth-source.el: Precise Tramp doc.
15169
15170 2008-06-07  Glenn Morris  <rgm@gnu.org>
15171
15172         * nnmairix.el: Remove unnecessary eval-when-compile.
15173
15174 2008-06-06  Katsumi Yamaoka  <yamaoka@jpl.org>
15175
15176         * lpath.el: Fbind propertize for XEmacs 21.4.
15177
15178 2008-06-05  Reiner Steib  <Reiner.Steib@gmx.de>
15179
15180         * nnir.el: Move here from ../contrib.
15181
15182 2008-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
15183
15184         * gnus-util.el (gnus-read-shell-command): New function.
15185         * mm-decode.el (mm-pipe-part):
15186         * gnus-art.el (gnus-summary-save-in-pipe): Use it.
15187
15188 2008-06-05  Katsumi Yamaoka  <yamaoka@jpl.org>
15189
15190         * message.el (message-disassociate-draft): Revert 2008-03-18 change.
15191
15192 2008-06-03  Glenn Morris  <rgm@gnu.org>
15193
15194         * pop3.el (nnheader-accept-process-output): Autoload it.
15195
15196 2008-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
15197
15198         * rfc2231.el (rfc2231-decode-encoded-string): Don't decode things that
15199         are not 2-digit hexadecimal characters that follow `%'s.
15200
15201 2008-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
15202
15203         * message.el (message-bogus-recipient-p): Fix type in doc string.
15204         Reported by Stephen Eglen <S.J.Eglen@damtp.cam.ac.uk>.
15205         (message-bogus-addresses): Rename from message-bogus-address-regexp.
15206         Improve custom options.
15207         (message-bogus-recipient-p): Adjust accordingly.
15208
15209 2008-05-27  Chong Yidong  <cyd@stupidchicken.com>
15210
15211         * parse-time.el (parse-time-months, parse-time-weekdays): Add
15212         long-form month and day names.
15213
15214 2008-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
15215
15216         * dgnushack.el: Autoload debug, eudc-expand-inline and
15217         pgg-snarf-keys-region for XEmacs.
15218
15219         * lpath.el: Fbind w3m-region, bind ps-print-color-p for XEmacs.
15220
15221         * nnmairix.el: Require edmacro when compiling with XEmacs.
15222
15223 2008-05-24  Reiner Steib  <Reiner.Steib@gmx.de>
15224
15225         * gnus-sum.el (gnus-summary-initial-limit): Use unless instead of if.
15226         (gnus-fetch-old-headers): Warn about setting it to t for Gmane groups.
15227
15228 2008-05-20  Teodor Zlatanov  <tzz@lifelogs.com>
15229
15230         * auth-source.el: Add more docs.
15231
15232         * netrc.el (netrc-machine): Always match if the port is not given.
15233
15234 2008-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15235
15236         * nnheader.el (nnheader-read-timeout): Change the default timeout from
15237         0.1 seconds to 0.01 seconds.  This will make nntp and pop3 article
15238         retrieval faster in some cases, but might make CPU usage larger.
15239         If this has any bad side effects, we might revert this change.
15240
15241         * pop3.el (pop3-movemail): Change the sit-for from 0.1 to 0.01, which
15242         seems to make mail retrieval much, much faster.
15243         (pop3-movemail): Use nnheader-accept-process-output instead of sleeping
15244         unconditionally.
15245
15246         * gnus-draft.el (gnus-group-send-queue):
15247         Bind message-send-mail-partially-limit to nil to avoid being prompted.
15248
15249 2008-05-16  Reiner Steib  <Reiner.Steib@gmx.de>
15250
15251         * mml.el (mml-attach-buffer): Prompt for `disposition'.
15252
15253         * message.el (message-bogus-address-regexp): Fix and improve custom
15254         type.
15255         (message-setup-hook): Add message-check-recipients as custom option.
15256
15257 2008-05-15  Reiner Steib  <Reiner.Steib@gmx.de>
15258
15259         * message.el (message-cite-function): Remove bogus autoload which crept
15260         in during merge from v5-10.
15261
15262 2008-05-14  Teodor Zlatanov  <tzz@lifelogs.com>
15263
15264         * nnimap.el (nnimap-open-connection): Fix login/password bug.
15265
15266         * nnrss.el (nnrss-normalize-date): Accept Unix-style epoch timestamps.
15267
15268         * auth-source.el: Preliminary Tramp docs.
15269         (auth-sources): Change the default auth-sources to use
15270         EPA .gpg files.
15271
15272 2008-05-09  Teodor Zlatanov  <tzz@lifelogs.com>
15273
15274         * nntp.el: Autoload `auth-source-user-or-password'.
15275         (nntp-send-authinfo): Use it.
15276
15277         * nnimap.el: Autoload `auth-source-user-or-password'.
15278         (nnimap-open-connection): Use it.
15279
15280         * auth-source.el: Add docs on using with url-auth.  Import gnus-util
15281         for the gnus-message function.
15282         (auth-source-user-or-password): Use it.
15283
15284 2008-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
15285
15286         * rfc2104.el (rfc2104-hexstring-to-bitstring): Rename it back from
15287         rfc2104-hexstring-to-byte-list.  Return a unibyte string.
15288         (rfc2104-hash): Use it.
15289
15290 2008-05-08  Juanma Barranquero  <lekktu@gmail.com>
15291
15292         * gnus-art.el (gnus-article-toggle-truncate-lines):
15293         Don't use `iff' in docstring.
15294
15295 2008-05-07  Teodor Zlatanov  <tzz@lifelogs.com>
15296
15297         * gnus-registry.el: Adjusted copyright dates and added a keyword.
15298
15299         * gnus-util.el (gnus-extract-address-component-name)
15300         (gnus-extract-address-component-email): Convenience functions around
15301         `gnus-extract-address-components'.
15302
15303         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
15304         Use `gnus-extract-address-component-email' to fix bug of comparing full
15305         sender name to `user-mail-address'.
15306
15307 2008-05-05  Teodor Zlatanov  <tzz@lifelogs.com>
15308
15309         * gnus-registry.el (gnus-registry-grep-in-list): Fix logic, use
15310         catch/throw to optimize.
15311         (gnus-registry-find-keywords): Just use member to find a keyword.
15312
15313 2008-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
15314
15315         * gnus-srvr.el (gnus-enter-server-buffer): Make sure the server-buffer
15316         is current before calling gnus-server-prepare.
15317         (gnus-server-setup-buffer, gnus-server-update-server)
15318         (gnus-server-read-server, gnus-browse-exit): Use with-current-buffer.
15319
15320 2008-05-04  Juri Linkov  <juri@jurta.org>
15321
15322         * mailcap.el (mailcap-replace-in-string): New compatibility alias.
15323         (mailcap-file-default-commands): Use mailcap-replace-in-string
15324         instead of replace-regexp-in-string, and mailcap-delete-duplicates
15325         instead of delete-dups.  Use [ \t\n]* for whitespace in regexp.
15326
15327 2008-05-03  Reiner Steib  <reiner.steib@gmx.de>
15328
15329         * gnus-sum.el (gnus-propagate-marks): Fix custom version.
15330
15331 2008-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
15332
15333         * gnus.el: Bump version to 0.11.
15334
15335 2008-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
15336
15337         * gnus.el: No Gnus v0.10 is released.
15338
15339 2008-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15340
15341         * gnus-sum.el (gnus-summary-save-parts): Inhibit even more treatment
15342         hooks.
15343         (gnus-update-read-articles): Speed up non-marks-using users.
15344         (gnus-use-marks): Define gnus-use-marks.
15345         (gnus-propagate-marks): Rename variable to something more sensible.
15346
15347 2008-05-02  Juanma Barranquero  <lekktu@gmail.com>
15348
15349         * gmm-utils.el (gmm, gmm-verbose, gmm-lazy, gmm-customize-mode)
15350         (gmm-image-load-path-for-library): Fix typos in docstrings.
15351         (gmm-message): Reflow docstring.
15352
15353 2008-04-28  Teodor Zlatanov  <tzz@lifelogs.com>
15354
15355         * mail-source.el (mail-source-set-1, mail-source-bind):
15356         Move auth-source code out of the macro to clean it up and fix bugs.
15357
15358 2008-04-26  Teodor Zlatanov  <tzz@lifelogs.com>
15359
15360         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Don't split
15361         by sender if it's equal to user-mail-address, it's likely to be
15362         useless.
15363
15364         * mail-source.el (mail-source-bind): Don't use user or password if they
15365         are not bound.  Unintern them if they are nil.  Don't use server unless
15366         it's bound, and default it to empty string otherwise.
15367
15368 2008-04-25  Teodor Zlatanov  <tzz@lifelogs.com>
15369
15370         * mail-source.el: Load auth-source.el.
15371         (mail-source-bind): Add comments.  Call auth-source-user-or-password to
15372         get user name or password, if auth-sources is set up.
15373
15374         * gnus-registry.el (gnus-registry-split-strategy): New variable for
15375         strategy of splitting with parent.
15376         (gnus-registry-split-fancy-with-parent)
15377         (gnus-registry-post-process-groups): Use it and fix prior
15378         bug (returning a list as the split result).
15379
15380         * auth-source.el (auth-sources): Remove server parameter.
15381         (auth-source-pick, auth-source-user-or-password)
15382         (auth-source-user-or-password-imap)
15383         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
15384         (auth-source-user-or-password-sftp)
15385         (auth-source-user-or-password-smtp): Remove server parameter.
15386
15387 2008-04-25  Juanma Barranquero  <lekktu@gmail.com>
15388
15389         * smime.el (smime-sign-region, smime-encrypt-region)
15390         (smime-decrypt-region):
15391         Remove redundant calls to `generate-new-buffer-name'.
15392
15393 2008-04-24  Luca Capello  <luca@pca.it>  (tiny change)
15394
15395         * mm-encode.el (mm-safer-encoding): Add optional argument `type'.
15396         Don't use QP for message/rfc822.
15397         (mm-content-transfer-encoding): Pass `type' to mm-safer-encoding.
15398
15399 2008-04-24  Stefan Monnier  <monnier@iro.umontreal.ca>
15400
15401         * sieve-manage.el (sieve-string-bytes): Remove.
15402         (sieve-manage-putscript): Use length instead: `string-bytes' gives the
15403         correct byte-length only if the process's coding-system is the same as
15404         the one used internally by Emacs to represent strings.
15405
15406 2008-04-22  Juri Linkov  <juri@jurta.org>
15407
15408         * mailcap.el (mailcap-file-default-commands): New function.
15409
15410 2008-04-13  Reiner Steib  <Reiner.Steib@gmx.de>
15411
15412         * message.el (message-signature-separator, message-cite-function):
15413         Change custom version.
15414
15415 2008-04-13  Naohiro Aota  <nao.aota@gmail.com>  (tiny change)
15416
15417         * tls.el (tls-program): Add -ign_eof argument to call the openssl
15418         commands.
15419         (tls-checktrust): Ditto.
15420
15421 2008-04-13  Reiner Steib  <Reiner.Steib@gmx.de>
15422
15423         * mm-decode.el (mm-display-external): Make temp file read-only.
15424
15425 2008-04-12  Reiner Steib  <Reiner.Steib@gmx.de>
15426
15427         * gnus-diary.el (gnus-article-edit-mode-map, message-mode-map): Remove
15428         binding for `gnus-diary-version'.  Bind `gnus-diary-check-message' to
15429         `C-c C-f d'.
15430
15431 2008-04-12  Adrian Aichner  <adrian@xemacs.org>
15432
15433         * gnus-sum.el (gnus-summary-goto-subject): Typo fix.
15434
15435 2008-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
15436
15437         * gnus.el: Bump version to 0.9.
15438
15439 2008-04-10  Reiner Steib  <Reiner.Steib@gmx.de>
15440
15441         * gnus.el: No Gnus v0.8 is released.
15442
15443 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
15444
15445         * mail-source.el (mail-source-value):
15446         Prefer fboundp to functionp so it works with macros as well.
15447
15448 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
15449
15450         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
15451         Fix last change in case the element is not even a symbol.
15452
15453 2008-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
15454
15455         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
15456         Prefer fboundp to functionp so it works with macros as well.
15457
15458 2008-04-09  Teodor Zlatanov  <tzz@lifelogs.com>
15459
15460         * auth-source.el: Add docs.
15461         (auth-sources): Modify format to support server.
15462         (auth-source-pick, auth-source-user-or-password)
15463         (auth-source-user-or-password-imap)
15464         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
15465         (auth-source-user-or-password-sftp)
15466         (auth-source-user-or-password-smtp): Add server parameter.
15467
15468 2008-04-08  Teodor Zlatanov  <tzz@lifelogs.com>
15469
15470         * gnus-registry.el: Initialize the registry when gnus-registry-install
15471         is t.
15472
15473 2008-04-08  Katsumi Yamaoka  <yamaoka@jpl.org>
15474
15475         * compface.el (uncompface): Make buffer unibyte.
15476
15477 2008-04-07  Stefan Monnier  <monnier@iro.umontreal.ca>
15478
15479         * mail-source.el (mail-source-value):
15480         Prefer fboundp to functionp so it works with macros as well.
15481
15482 2008-04-05  Glenn Morris  <rgm@gnu.org>
15483
15484         * gnus-ems.el (mm-disable-multibyte): Autoload it.
15485
15486 2008-04-05  Stefan Monnier  <monnier@iro.umontreal.ca>
15487
15488         * mm-util.el (mm-with-unibyte-buffer, mm-with-multibyte-buffer):
15489         Prefer mm-(en|dis)able-multibyte to default-enable-multibyte-characters.
15490
15491         * nnheader.el (nnheader-init-server-buffer): Change buffer's
15492         multibyteness after rather than before erasing it.
15493
15494         * gnus-art.el (gnus-mime-replace-part): Remove unnecessary use of
15495         mm-with-multibyte.
15496         (gnus-request-article-this-buffer): Make sure the proper decoding is
15497         used if gnus-original-article-buffer happens to be unibyte.
15498
15499         * gnus-ems.el (gnus-x-splash): Prefer mm-disable-multibyte to
15500         default-enable-multibyte-characters.
15501
15502         * gnus-fun.el (gnus-display-x-face-in-from): Remove unnecessary use of
15503         default-enable-multibyte-characters.
15504
15505         * mm-decode.el (mm-inline-media-tests): Add entry for x-diff.
15506
15507         * nnweb.el (nnweb-init): Avoid nn-with-unibyte.
15508
15509 2008-04-03  Stefan Monnier  <monnier@iro.umontreal.ca>
15510
15511         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
15512         Fix last change in case the element is not even a symbol.
15513
15514 2008-04-02  Simon Josefsson  <simon@josefsson.org>
15515
15516         * imap.el (imap-enable-exchange-bug-workaround): New variable.
15517         (imap-message-copyuid-1): Use it.
15518         (imap-message-appenduid-1): Likewise.  Based on patch by Nathan
15519         J. Williams in
15520         <http://permalink.gmane.org/gmane.emacs.gnus.general/65855>.
15521
15522         * nnimap.el (nnimap-enable-minmax-bug-workaround): Remove, replaced by
15523         imap-enable-exchange-bug-workaround.
15524         (nnimap-find-minmax-uid): Use imap-enable-exchange-bug-workaround.
15525
15526 2008-04-01  Simon Josefsson  <simon@josefsson.org>
15527
15528         * nnimap.el (nnimap-find-minmax-uid): Revert last fix, the "fix" turns
15529         a 100 byte status-checks into a 2-3MB transfer for each group.
15530         (nnimap-enable-minmax-bug-workaround): New variable to toggle whether
15531         to enable bug workaround or not.
15532         (nnimap-find-minmax-uid): Only enable workaround conditionally.
15533
15534 2008-03-31  Glenn Morris  <rgm@gnu.org>
15535
15536         * message.el (mml2015-use): Declare for compiler.
15537         (message-info): Require mml2015 when appropriate.
15538
15539 2008-03-31  Katsumi Yamaoka  <yamaoka@jpl.org>
15540
15541         * Makefile.in (EMACS_COMP): Quote directory name that might contain
15542         whitespace.
15543
15544 2008-03-30  Stefan Monnier  <monnier@iro.umontreal.ca>
15545
15546         * nntp.el (nntp-netcat-command): Rename from nntp-via-netcat-command.
15547         (nntp-netcat-switches): Rename from nntp-via-netcat-switches.
15548         (nntp-open-telnet, nntp-open-rlogin): Use with-current-buffer.
15549         (nntp-service-to-port): New function.
15550         (nntp-open-via-rlogin-and-netcat, nntp-open-via-telnet-and-telnet)
15551         (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet): Use it.
15552         (nntp-open-netcat-stream): New function.
15553         (nntp-open-via-rlogin-and-netcat): Don't use a pty.
15554
15555 2008-03-29  Sven Joachim  <svenjoac@gmx.de>
15556
15557         * gnus-sum.el (gnus-summary-make-menu-bar): Add missing dots.
15558
15559 2008-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
15560
15561         * message.el (message-make-in-reply-to): Use mm-with-multibyte-buffer.
15562
15563 2008-03-28  Magnus Henoch  <mange@freemail.hu>
15564
15565         * dns.el (dns-write): Use set-buffer-multibyte.
15566
15567 2008-03-28  Michael Harnois  <mdharnois@gmail.com>  (tiny change)
15568
15569         * nnimap.el (nnimap-find-minmax-uid): Fix Exchange 2007 IMAP problem.
15570
15571 2008-03-24  Reiner Steib  <Reiner.Steib@gmx.de>
15572
15573         * message.el (message-signature-separator): Change default.
15574         Improve custom type.
15575         (message-cite-function): Change default to
15576         message-cite-original-without-signature.
15577
15578         * gnus-sum.el (gnus-summary-make-menu-bar): Add message-cite-function
15579         toggle.
15580
15581         * message.el (message-check-news-body-syntax): Fix signature check.
15582         (message-setup-1): Mark buffer as unmodified _after_ running
15583         message-setup-hook and handling message-alternative-emails.
15584         (message-shorten-references): Be more strict when building list of
15585         valid references to comply with GNKSA.
15586
15587         * gnus-group.el (gnus-read-ephemeral-bug-group)
15588         (gnus-read-ephemeral-debian-bug-group)
15589         (gnus-read-ephemeral-emacs-bug-group): Use the correct variable.
15590
15591         * message.el (message-info): Don't use booleanp which isn't supported
15592         in Emacs 21 and XEmacs.
15593
15594 2008-03-22  Reiner Steib  <Reiner.Steib@gmx.de>
15595
15596         * gnus-group.el (gnus-gmane-group-download-format): Rename from
15597         gnus-group-gmane-group-download-format.
15598         (gnus-group-read-ephemeral-gmane-group): Rename from
15599         gnus-group-read-ephemeral-gmane-group.
15600         (gnus-read-ephemeral-gmane-group-url): Rename from
15601         gnus-group-read-ephemeral-gmane-group-url.
15602         (gnus-bug-group-download-format-alist): New variable.
15603         (gnus-read-ephemeral-bug-group, gnus-read-ephemeral-debian-bug-group)
15604         (gnus-read-ephemeral-emacs-bug-group): New commands.
15605
15606 2008-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
15607
15608         * gnus-art.el (gnus-article-browse-html-article): Fix documentation.
15609         (gnus-visible-headers): Improve custom type.
15610
15611 2008-03-20  Reiner Steib  <Reiner.Steib@gmx.de>
15612
15613         * mml.el (mml-menu): Add workarounds for XEmacs.
15614
15615         * gnus-art.el (gnus-article-browse-html-article): Inhibit display of
15616         X-Boundary header.
15617
15618         * message.el (message-simplify-recipients): Fix previous commit.
15619
15620 2008-03-20  Stefan Monnier  <monnier@iro.umontreal.ca>
15621
15622         * mm-util.el (mm-set-buffer-multibyte): New function.
15623         * mm-decode.el (mm-copy-to-buffer): Use it.
15624
15625         * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
15626         Prefer fboundp to functionp so it works with macros as well.
15627
15628 2008-03-19  Glenn Morris  <rgm@gnu.org>
15629
15630         * tls.el (open-tls-stream): Restore use of `tls-end-of-info'.
15631         Accidentally removed in the sync process with Emacs.
15632
15633 2008-03-19  Reiner Steib  <Reiner.Steib@gmx.de>
15634
15635         * message.el (message-alter-recipients-discard-bogus-full-name):
15636         New function.
15637         (message-alter-recipients-function): New variable.
15638         (message-get-reply-headers): Use it.
15639         (message-replace-header): New helper function.
15640         (message-recipients-without-full-name): New variable.
15641         (message-simplify-recipients): New command.
15642
15643         * mml.el (mml-menu): Add toggle for gnus-gcc-externalize-attachments.
15644
15645         * message.el (message-info): Handle EasyPG manual.
15646
15647         * mml.el (mml-menu): Add entry for EasyPG.
15648
15649 2008-03-18  Nils Ackermann  <nils@ackermath.info>  (tiny change)
15650
15651         * nnmh.el (nnmh-request-expire-articles): Prefer expiry-target group
15652         parameter.
15653
15654         * message.el (message-disassociate-draft): Specify drafts group name
15655         fully.
15656
15657 2008-03-17  Teodor Zlatanov  <tzz@lifelogs.com>
15658
15659         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
15660         Eliminate unnecessary duplicates from the match list.
15661
15662 2008-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
15663
15664         * dgnushack.el: Autoload Info-index and Info-index-next for XEmacs.
15665
15666         * lpath.el: Fbind Info-index and Info-index-next for Emacs 21, 22.
15667
15668         * gnus-art.el (gnus-button-handle-info-keystrokes): Don't use optional
15669         args of `how-many' of which the XEmacs version doesn't take; declare
15670         Info-index-next as function.
15671
15672 2008-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
15673
15674         * gnus-score.el (gnus-score-headers): Fix handling of
15675         gnus-inhibit-slow-scoring.
15676
15677         * gnus-art.el (gnus-article-browse-html-article): Fix type in doc
15678         string.
15679         (gnus-button-url-regexp): Improve handling of parenthesis.
15680         (gnus-button-alist): Extend gnus-button-handle-info-keystrokes entry.
15681         (gnus-button-handle-info-keystrokes): Handle index entries.
15682
15683 2008-03-15  Glenn Morris  <rgm@gnu.org>
15684
15685         * parse-time.el (parse-time-string): Simplify.
15686
15687 2008-03-14  Katsumi Yamaoka  <yamaoka@jpl.org>
15688
15689         * mail-source.el (mail-source-delete-old-incoming) Fix regexp to find
15690         Incoming* files.
15691
15692 2008-03-13  Teodor Zlatanov  <tzz@lifelogs.com>
15693
15694         * auth-source.el (auth-sources): Rename from auth-source-choices.
15695         (auth-source-pick): Use it.
15696
15697 2008-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
15698
15699         * binhex.el (binhex-decode-region-internal):
15700         * uudecode.el (uudecode-decode-region-internal):
15701         * dns.el (dns-read-string-name, dns-read, dns-read-type, query-dns):
15702         * sha1.el (sha1-string-external): Use set-buffer-multibyte rather than
15703         setting default-enable-multibyte-characters.
15704
15705 2008-03-12  Teodor Zlatanov  <tzz@lifelogs.com>
15706
15707         * auth-source.el (auth-source-protocols)
15708         (auth-source-protocols-customize, auth-source-choices): Add and
15709         modified variable customizations and defaults.
15710         (auth-source-pick, auth-source-user-or-password)
15711         (auth-source-protocol-defaults, auth-source-user-or-password-imap)
15712         (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
15713         (auth-source-user-or-password-sftp)
15714         (auth-source-user-or-password-smtp): Use new variables and provide an
15715         interface to netrc.el.
15716
15717 2008-03-12  Katsumi Yamaoka  <yamaoka@jpl.org>
15718
15719         * nntp.el (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet)
15720         (nntp-open-via-rlogin-and-netcat, nntp-open-via-telnet-and-telnet):
15721         Make sure the nntp port to specify is a string.
15722
15723 2008-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
15724
15725         * nntp.el: Use with-current-buffer.
15726         (nntp-send-buffer): Just set the buffer to unibyte rather than use the
15727         dubious mm-with-unibyte-current-buffer.
15728         (nntp-with-open-group-function): New function extracted from
15729         nntp-with-open-group macro.
15730         (nntp-with-open-group): Use the function, so it's easier to debug.
15731         Add indentation and debugging info.
15732         (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet):
15733         Recommend the use of the netcat alternatives.
15734
15735         * rfc2047.el (rfc2047-decode-string): Don't use `m'.
15736         Avoid mm-string-as-multibyte as well.
15737
15738         * nnweb.el (nnweb-insert-html):
15739         Remove use of nnheader-string-as-multibyte.
15740
15741         * nnheader.el (nnheader-init-server-buffer): Use with-current-buffer.
15742         (nnheader-string-as-multibyte): Remove.
15743
15744         * mm-view.el: Use inhibit-read-only.
15745         (mm-inline-text-html-render-with-w3, mm-inline-message): Use dolist.
15746         (mm-pkcs7-signed-magic, mm-pkcs7-enveloped-magic): Use just string
15747         or unibyte-string.
15748
15749         * mm-uu.el (mm-uu-copy-to-buffer): Preserve (uni/multi)byteness.
15750         (mm-uu-yenc-extract): Use with-current-buffer.
15751
15752         * gnus-soup.el (gnus-soup-send-packet): Don't use
15753         mm-with-unibyte-current-buffer since the buffer is unibyte anyway.
15754
15755         * nnmh.el: Use with-current-buffer.
15756         (nnmh-request-list-1): Use mm-string-to-multibyte rather than
15757         mm-string-as-multibyte on the output of mm-encode-coding-string.
15758
15759         * nnimap.el (nnimap-retrieve-headers-progress): Use a unibyte buffer.
15760         (nnimap-request-move-article): Use with-current-buffer.
15761
15762         * mm-decode.el (mm-with-part): Set the buffer to unibyte before
15763         inserting the handle-buffer's text, so the implicit multibyte->unibyte
15764         conversion uses string-make-unibyte rather than string-as-unibyte.
15765
15766         * gnus-msg.el: Use with-current-buffer.
15767
15768         * message.el (message-ignored-resent-headers): Add "Delivered-To".
15769
15770 2008-03-10  Daiki Ueno  <ueno@unixuser.org>
15771
15772         * mml2015.el (mml2015-epg-passphrase-callback): Type cast KEY-ID to a
15773         string for caching if it is 'PIN.
15774
15775 2008-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
15776
15777         * lpath.el: Consider the case without Emacs/W3.
15778
15779 2008-03-08  Glenn Morris  <rgm@gnu.org>
15780
15781         * time-date.el (date-to-time, time-subtract, time-add)
15782         (safe-date-to-time): Doc fixes.
15783
15784 2008-03-08  Reiner Steib  <Reiner.Steib@gmx.de>
15785
15786         * mail-source.el (mail-source-delete-old-incoming-confirm):
15787         Change default to nil.
15788         (mail-source-delete-old-incoming): Make confirmation prompt more clear.
15789
15790 2008-03-07  Katsumi Yamaoka  <yamaoka@jpl.org>
15791
15792         * lpath.el: Rearrange.
15793
15794         * gnus-art.el (gnus-narrow-to-page): Position point properly.
15795         (gnus-article-goto-prev-page): Work for articles having ^L's.
15796
15797         * gnus-sum.el (gnus-summary-end-of-article): Remove needless narrowing.
15798
15799         * mm-view.el (mm-w3m-standalone-supports-m17n-p): Fix typo.
15800
15801 2008-03-07  Karl Fogel  <kfogel@red-bean.com>
15802
15803         * gnus-bookmark.el: Adjust for renames in bookmark.el.
15804         (gnus-bookmark-make-record): Was `gnus-bookmark-make-cell'.
15805         (gnus-bookmark-jump): Adjust some variable names.
15806
15807 2008-03-06  Teodor Zlatanov  <tzz@lifelogs.com>
15808
15809         * auth-source.el: New package.
15810         (auth-source-choices): Add customization entry point variable.
15811
15812         * gnus-registry.el (gnus-registry-user-format-function-M): Fix concat
15813         bug.
15814
15815 2008-03-05  Teodor Zlatanov  <tzz@lifelogs.com>
15816
15817         * gnus-registry.el (gnus-registry-install): Allow 'ask as an option.
15818         (gnus-registry-initialize, gnus-registry-install-p): Use it.
15819         (gnus-registry-install-shortcuts): Rename from
15820         gnus-registry-install-shortcuts-and-menus.  Installs the shortcuts in
15821         the `gnus-registry-mark-map' keymap dynamically from
15822         `gnus-registry-marks'.  The generated functions update the summary line
15823         when a registry mark is added or deleted, and will call
15824         `gnus-registry-install-p' (see the comments in the code).
15825         (gnus-registry-user-format-function-M): Use concat intelligently.
15826
15827         * gnus-sum.el (gnus-summary-make-menu-bar): Add menu entries for all
15828         the registry mark functions.
15829
15830 2008-03-05  Glenn Morris  <rgm@gnu.org>
15831
15832         * gnus-art.el (gnus-article-mode-line-format-alist): Move to gnus-sum.
15833         * gnus-sum.el (gnus-article-mode-line-format-alist): Move here from
15834         gnus-art.
15835         (top-level): No need to load own source when compiling.
15836
15837 2008-03-04  Reiner Steib  <Reiner.Steib@gmx.de>
15838
15839         * gnus-sum.el (gnus-print-buffer): Honor ps-print-color-p.
15840         Suggested by <chris.anderton@zetnet.co.uk>.
15841
15842 2008-03-04  Glenn Morris  <rgm@gnu.org>
15843
15844         * gnus-sum.el (top-level): No need to require gnus when compiling,
15845         since unconditionally required near start of file.
15846         (gnus-summary-display-while-building): Move definition before use.
15847
15848 2008-03-04  Teodor Zlatanov  <tzz@lifelogs.com>
15849
15850         * gnus-registry.el (gnus-registry-user-format-function-M):
15851         Add formatting function.
15852
15853 2008-03-03  Teodor Zlatanov  <tzz@lifelogs.com>
15854
15855         * gnus-registry.el (gnus-registry-marks): Change format to be nicer
15856         with plists.
15857         (gnus-registry-do-marks, gnus-registry-install-shortcuts-and-menus):
15858         Use new format.
15859
15860 2008-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
15861
15862         * gnus-art.el (gnus-article-describe-bindings): Work for the version of
15863         `where-is-internal' that returns a range of key sequences.
15864
15865 2008-03-03  Stefan Monnier  <monnier@iro.umontreal.ca>
15866
15867         * mm-bodies.el (mm-decode-content-transfer-encoding): Simplify.
15868
15869         * gnus-sum.el: Use inhibit-read-only and with-current-buffer.
15870         (gnus-summary-jump-to-group): Consider windows on other displayed
15871         frames as well.  Similar changes might be needed elsewhere, but that's
15872         the one I've bumped into during my use.
15873
15874         * nndoc.el (nndoc-oe-dbx-type-p):
15875         * gnus-msg.el (gnus-debug):
15876         * gnus-group.el (gnus-update-group-mark-positions):
15877         Use mm-string-to-multibyte.
15878
15879 2008-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
15880
15881         * mml2015.el (mml2015-extract-cleartext-signature): Explain that it
15882         doesn't handle NotDashEscaped.
15883
15884         * mml.el (mml-menu): Improve help entries.  Move Sign/Encrypt Part.
15885         (mml-dnd-attach-options): Fix typo in custom choice.
15886
15887         * gnus-group.el (gnus-group-read-ephemeral-gmane-group):
15888         Change nndoc-article-type to mbox.
15889         (gnus-group-read-ephemeral-gmane-group-url): Support permalink.
15890
15891         * mm-decode.el (mm-text-html-renderer): Prefer w3m over w3.  Fall back
15892         to nil, instead of html2text.
15893
15894         * imap.el (imap-debug): Add `imap-ping-server'.
15895
15896         * gnus-bookmark.el: Add FIXMEs.
15897
15898         * message.el (message-form-letter-separator)
15899         (message-send-form-letter-delay): New variables.
15900         (message-send-form-letter): Use them.  New command to send form
15901         letters.  Requested by Uwe Siart.
15902         (message-send-mail-function): Doc fix.  Add "Other" custom option.
15903
15904 2008-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
15905
15906         * Update copyright years.
15907
15908 2008-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
15909
15910         Sync from EMACS_22_BASE.
15911
15912         * parse-time.el: Rename elt->parse-time-elt and val->parse-time-val.
15913
15914 2008-02-29  Andreas Seltenreich  <andreas@gate450.dyndns.org>
15915
15916         * nnweb.el (nnweb-google-parse-1): Fix date parsing on articles with
15917         empty author.
15918
15919 2008-02-29  Teodor Zlatanov  <tzz@lifelogs.com>
15920
15921         * gnus-registry.el (gnus-registry-marks): Add variable for
15922         customization of marks and their appearance.
15923         (gnus-registry-read-mark): Use it.
15924         (gnus-registry-do-marks): Add utility function to loop through
15925         `gnus-registry-marks'.
15926         (gnus-registry-install-shortcuts-and-menus): Add function to install
15927         shortcuts and menus.
15928         (gnus-registry-initialize): Use it.
15929         (gnus-registry-default-mark): Clarify documentation.
15930
15931 2008-02-29  Glenn Morris  <rgm@gnu.org>
15932
15933         * gnus-art.el, gnus-bookmark.el, gnus-dired.el, gnus-draft.el:
15934         * gnus-group.el, gnus-msg.el, gnus-score.el, gnus-sum.el, gnus-util.el:
15935         * gnus.el, mail-source.el, message.el, mm-decode.el, mm-uu.el, mml.el:
15936         * nnmail.el, pop3.el, smiley.el, smime.el, spam-report.el:
15937         Change defcustom :version from 23.0 to 23.1.
15938
15939 2008-02-28  Teodor Zlatanov  <tzz@lifelogs.com>
15940
15941         * gnus-registry.el (gnus-registry-follow-group-p)
15942         (gnus-registry-post-process-groups): Add functions to aid registry
15943         splitting and improve logging.  Clarify behavior in function
15944         documentation.
15945         (gnus-registry-split-fancy-with-parent): Use them.
15946
15947 2008-02-28  Stefan Monnier  <monnier@iro.umontreal.ca>
15948
15949         * gnus-art.el: Use with-current-buffer.
15950
15951 2008-02-27  David Engster  <dengste@eml.cc>
15952
15953         * nnmairix.el (nnmairix-request-group-with-article-number-correction):
15954         Express real group name in the response.
15955
15956 2008-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
15957
15958         * nnmairix.el (nnmairix-group-regexp, nnmairix-valid-backends)
15959         (nnmairix-last-server, nnmairix-current-server): Defvar them.
15960         (nnmairix-goto-original-article): Defvar gnus-registry-install and
15961         autoload gnus-registry-fetch-group when compiling.
15962         (nnmairix-request-group-with-article-number-correction):
15963         Remove unreferenced argument passed to nnmairix-call-backend.
15964
15965 2008-02-27  Reiner Steib  <Reiner.Steib@gmx.de>
15966
15967         * mm-uu.el (mm-uu-type-alist): Fix message-marks non-hide arguments.
15968         (mm-uu-extract): Improve face for low color ttys.
15969         Reported by Sascha Wilde.
15970
15971 2008-02-27  Glenn Morris  <rgm@gnu.org>
15972
15973         * nnmairix.el: Change defcustom :version from 23.0 to 23.1.
15974         (nnmairix-group-regexp, nnmairix-valid-backends): Convert from free
15975         variables to defconsts.  Convert comments to doc-strings.
15976         (nnmairix-last-server, nnmairix-current-server): Convert from free
15977         variables to defvars.  Convert comments to doc-strings.
15978         (gnus-registry-fetch-group): Autoload.
15979         (nnmairix-replace-group-and-numbers): Use mapc rather than mapcar.
15980         (nnmairix-widget-get-values, nnmairix-widget-make-query-from-widgets)
15981         (nnmairix-widget-build-editable-fields): Use car cddr rather than
15982         caddr.
15983         (nnmairix-request-group): Bind nnmairix-fast and nnmairix-group around
15984         nnmairix-request-group-with-article-number-correction call.
15985         (nnmairix-fast, nnmairix-group): New, less general names, for free
15986         variables passed from nnmairix-request-group to
15987         nnmairix-request-group-with-article-number-correction.  Declare.
15988         (nnmairix-request-group-with-article-number-correction):
15989         Use nnmairix-fast, nnmairix-group rather than fast, group.
15990
15991 2008-02-26  David Engster  <dengste@eml.cc>
15992
15993         * nnmairix.el: New file.  Mairix back end for Gnus.  Initial import of
15994         version 0.5.
15995
15996 2008-02-26  Teodor Zlatanov  <tzz@lifelogs.com>
15997
15998         * gnus-registry.el (gnus-registry-register-message-ids): Use `id'
15999         instead of making an extra function call.  Don't add the current group
16000         to articles only when they have the group.  Use
16001         `gnus-registry-fetch-groups' instead of `gnus-registry-fetch-group'.
16002         Reported by David <de_bb@arcor.de>.
16003
16004 2008-02-24  Miles Bader  <miles@gnu.org>
16005
16006         * mm-util.el (mm-hack-charsets, mm-iso-8859-15-compatible)
16007         (mm-iso-8859-x-to-15-table, mm-iso-8859-x-to-15-region)
16008         (mm-find-mime-charset-region):
16009         * mm-bodies.el (mm-encode-body):
16010         * mml.el (mml-parse-1): Revert removal of `mm-hack-charsets'.
16011
16012 2008-02-20  Katsumi Yamaoka  <yamaoka@jpl.org>
16013
16014         * lpath.el: Fbind pgg-display-output-buffer for systems in which EasyPG
16015         has been installed; bind pgg-parse-crc24 for only non-Mule XEmacs.
16016
16017 2008-02-16  Reiner Steib  <Reiner.Steib@gmx.de>
16018
16019         * mail-source.el (mail-source-delete-incoming): Change default.
16020         Supplement doc string.
16021
16022         * gnus-util.el (gnus-y-or-n-p, gnus-y-or-n-p): Update comments.
16023
16024 2008-02-14  Glenn Morris  <rgm@gnu.org>
16025
16026         * time-date.el (format-seconds): New function.
16027
16028 2008-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
16029
16030         * nnmail.el (nnmail-message-id-cache-file): Derive from
16031         `gnus-home-directory'.
16032
16033 2008-02-11  Reiner Steib  <Reiner.Steib@gmx.de>
16034
16035         * gnus-topic.el (gnus-topic-select-group, gnus-topic-read-group):
16036         Document negative prefix.
16037
16038         * gnus-group.el (gnus-group-read-group): Document negative prefix.
16039
16040 2008-02-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16041
16042         * message.el (message-unsent-separator): Add the Exim bounce
16043         separator.
16044
16045 2008-02-10  Daiki Ueno  <ueno@unixuser.org>
16046
16047         * mml2015.el (mml2015-epg-sign): Remove skipped signers from the signer
16048         list.
16049         (mml2015-epg-encrypt): Remove skipped recipients/signers from the
16050         recipient/signer list.
16051
16052 2008-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
16053
16054         * Makefile.in (datarootdir): Define.
16055         (EMACS_COMP, install-el, install-elc, install-el-elc): Quote directory
16056         name that might contain whitespace.
16057
16058 2008-02-10  Reiner Steib  <Reiner.Steib@gmx.de>
16059
16060         * mm-util.el (mm-codepage-setup): If cp-supported-codepages isn't
16061         fbound (Emacs 23 unicode), signal an error.
16062
16063 2008-02-08  Glenn Morris  <rgm@gnu.org>
16064
16065         * gnus-art.el (pgg-display-output-buffer): Declare as function.
16066
16067 2008-02-07  Tassilo Horn  <tassilo@member.fsf.org>
16068
16069         * nnimap.el (nnimap-open-connection): Add "143" and "993" as default
16070         ports to the calls to `netrc-machine-user-or-password' in addition to
16071         "imap" and "imaps".
16072
16073 2008-02-01  Zhang Wei  <id.brep@gmail.com>
16074
16075         * rfc2047.el (rfc2047-charset-encoding-alist): Add gbk and GB18030.
16076
16077         * mm-util.el (mm-mime-mule-charset-alist): Add gbk and GB18030.
16078
16079 2008-02-01  Kenichi Handa  <handa@m17n.org>
16080
16081         * rfc2104.el (rfc2104-hexstring-to-byte-list): Rename from
16082         rfc2104-hexstring-to-bitstring and changed to return a byte list.
16083         (rfc2104-hash): Convert the result of concat to unibyte string.
16084
16085 2008-02-01  Dave Love  <fx@gnu.org>
16086
16087         * gnus-start.el (gnus-read-newsrc-el-file): Don't bind
16088         coding-system-for-read.
16089         (gnus-gnus-to-quick-newsrc-format): Insert coding cookie.
16090
16091 2008-02-03  Reiner Steib  <Reiner.Steib@gmx.de>
16092
16093         * gnus.el (gnus-group-startup-message): Add `find-image' call before
16094         image-load-path is let-bound.  Reported by Harald Hanche-Olsen
16095         <hanche@math.ntnu.no>.
16096
16097 2008-02-01  Katsumi Yamaoka  <yamaoka@jpl.org>
16098
16099         * gnus-art.el (gnus-article-describe-bindings): Work for draft group.
16100
16101         * gnus-xmas.el (gnus-xmas-article-describe-bindings): Ditto.
16102
16103 2008-01-28  Dan Nicolaescu  <dann@ics.uci.edu>
16104
16105         * sieve.el (sieve-make-overlay, sieve-overlay-put, sieve-overlays-at):
16106         * message.el (message-beginning-of-line): Use featurep instead of bound
16107         tests in order to resolve conditionals at compile time.
16108
16109 2008-01-24  Michael Sperber  <sperber@deinprogramm.de>
16110
16111         * mail-source.el (mail-sources): Add `group' choice.
16112
16113         * nnmail.el (nnmail-get-new-mail-1): Abstract this out to add another
16114         parameter `in-group' to control into which group the articles go.
16115         Add treatment of `group' mail-source.
16116
16117 2008-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
16118
16119         * gnus-art.el (gnus-insert-mime-button): Don't decode description.
16120
16121         * mm-decode.el (mm-dissect-buffer): Decode description.
16122
16123         * mml.el (mml-to-mime): Encode message header first.
16124
16125 2008-01-18  Katsumi Yamaoka  <yamaoka@jpl.org>
16126
16127         * gnus-art.el (gnus-article-describe-bindings): Make it possible to use
16128         xrefs, i.e. [back] and [forward] buttons, in *Help* buffer.
16129
16130         * lpath.el: Fbind help-buffer for Emacs 21 and XEmacs; bind
16131         help-xref-stack-item for Emacs 21, Emacs 22.1, and XEmacs.
16132
16133 2008-01-18  Teodor Zlatanov  <tzz@lifelogs.com>
16134
16135         * gnus-registry.el (gnus-registry-trim): Use append, not concat.
16136
16137 2008-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
16138
16139         * gnus-art.el (gnus-article-read-summary-keys): Work for some `A'
16140         prefix keys.
16141         (gnus-article-read-summary-send-keys): Use gnus-character-to-event.
16142         (gnus-article-describe-bindings): Simplify; move XEmacs stuff to
16143         gnus-xmas.el.
16144
16145         * gnus-xmas.el: Bind gnus-agent-summary-mode when compiling.
16146         (gnus-xmas-article-describe-bindings): New function.
16147         (gnus-xmas-redefine): Make gnus-article-describe-bindings alias to
16148         gnus-xmas-article-describe-bindings.
16149
16150         * lpath.el: Don't fbind character-to-event and map-keymap for Emacs 21.
16151
16152 2008-01-16  Teodor Zlatanov  <tzz@lifelogs.com>
16153
16154         * gnus-registry.el (gnus-registry-marks, gnus-registry-default-mark):
16155         Add new variables for article mark management.
16156         (gnus-registry-extra-entries-precious, gnus-registry-trim): Define a
16157         list of extra data entries which, when present, will indicate that the
16158         article ID should not be trimmed from the registry.
16159         (gnus-registry-mark-article, gnus-registry-article-marks): Remove these
16160         functions.
16161         (gnus-registry-read-mark): New function to read a mark name from the
16162         user.
16163         (gnus-registry-set-article-mark, gnus-registry-remove-article-mark)
16164         (gnus-registry-set-article-mark-internal): New functions to add and
16165         remove marks.
16166         (gnus-registry-get-article-marks): New function to show the marks for
16167         an article, or retrieve them for further use.
16168
16169 2008-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
16170
16171         * gnus-art.el (gnus-article-describe-bindings): Show all `S' prefix
16172         keys when no argument is given.
16173
16174 2008-01-14  Reiner Steib  <Reiner.Steib@gmx.de>
16175
16176         * imap.el (imap-ping-server): New variable.
16177         (imap-opened): On add extra ping if imap-ping-server is non-nil.
16178         (imap-ping-server): Minor doc string fixes.
16179
16180 2008-01-14  Knut Anders Hatlen  <kahatlen@gmail.com>  (tiny change)
16181
16182         * imap.el (imap-ping-server): New function.
16183         (imap-opened): Call imap-ping-server.
16184
16185 2008-01-12  Reiner Steib  <Reiner.Steib@gmx.de>
16186
16187         * gnus-sum.el (gnus-article-sort-by-random)
16188         (gnus-thread-sort-by-random): Fix doc strings.
16189         Reported by jidanni@jidanni.org.
16190
16191 2008-01-11  Katsumi Yamaoka  <yamaoka@jpl.org>
16192
16193         * gnus-art.el (gnus-article-describe-bindings): New function.
16194         (gnus-article-read-summary-keys): Use it.
16195         (gnus-article-mode-map): Bind `C-h b' to it.
16196
16197 2008-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
16198
16199         * gnus-art.el (gnus-article-read-summary-keys): Work for `C-h' on
16200         XEmacs.
16201         (gnus-article-describe-key, gnus-article-describe-key-briefly):
16202         Protect against non-character events.
16203
16204         * lpath.el: Fbind map-keymap for Emacs 21.
16205
16206 2008-01-09  Reiner Steib  <Reiner.Steib@gmx.de>
16207
16208         * gnus-group.el (gnus-group-read-ephemeral-gmane-group-url):
16209         New command.
16210         (gnus-group-read-ephemeral-gmane-group): Use optional argument RANGE
16211         instead of END.  Change name of the temp file.
16212         (gnus-group-gmane-group-download-format): Add doc string.  Make it
16213         customizable.
16214
16215 2008-01-09  Katsumi Yamaoka  <yamaoka@jpl.org>
16216
16217         * gnus-art.el (gnus-article-send-map): New keymap for `S' prefix keys;
16218         bind `S W' to gnus-article-wide-reply-with-original; set default
16219         binding to gnus-article-read-summary-send-keys.
16220         (gnus-article-read-summary-keys): Fix the order of keys; display
16221         continuation keys correctly in the echo area; describe bindings
16222         correctly when keys end with `C-h'.
16223         (gnus-article-read-summary-send-keys): New function.
16224         (gnus-article-describe-key, gnus-article-describe-key-briefly):
16225         Work for gnus-article-read-summary-send-keys; display continuation keys
16226         correctly in the echo area.
16227         (gnus-article-reply-with-original): Ignore prefix argument.
16228         (gnus-article-wide-reply-with-original): New function.
16229
16230         * lpath.el: Fbind character-to-event and set-keymap-default-binding for
16231         Emacs 21.
16232
16233 2008-01-08  Katsumi Yamaoka  <yamaoka@jpl.org>
16234
16235         * gnus-bookmark.el (gnus-bookmark-mouse-available-p): Don't test for
16236         display-color-p.  Reported by Reiner Steib <Reiner.Steib@gmx.de>.
16237
16238 2008-01-06  Reiner Steib  <Reiner.Steib@gmx.de>
16239
16240         * gnus-group.el (gnus-group-gmane-group-download-format): New variable.
16241         (gnus-group-read-ephemeral-gmane-group): New command.
16242
16243 2008-01-06  Dan Nicolaescu  <dann@ics.uci.edu>
16244
16245         * gnus.el (gnus-use-long-file-name): Remove reference to xenix.
16246
16247 2007-12-28  Reiner Steib  <Reiner.Steib@gmx.de>
16248
16249         * message.el (message-send-mail-function): Increase custom version.
16250
16251         * mml-sec.el, sieve-manage.el, smime.el: Simplify loading of
16252         password-cache or password.  Suggested by Glenn Morris <rgm@gnu.org>.
16253
16254 2007-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
16255
16256         * imap.el (imap-authenticate): Use current-buffer instead of buffer,
16257         for the cases where imap-authenticate is called with a nil buffer
16258         parameter.
16259
16260 2007-12-19  Katsumi Yamaoka  <yamaoka@jpl.org>
16261
16262         * gnus-art.el (gnus-article-browse-html-parts): Work for two or more
16263         html parts correctly; support forwarded messages.
16264         (gnus-article-browse-html-article): Remove work buffers.
16265
16266         * netrc.el: Bind encrypt-file-alist for Emacs 21 and XEmacs when
16267         compiling.
16268         (netrc-bound-and-true-p): New macro.
16269         (netrc-parse): Use it instead of bound-and-true-p that is not available
16270         in XEmacs 21.4.
16271
16272 2007-12-19  Teodor Zlatanov  <tzz@lifelogs.com>
16273
16274         * gnus-registry.el (gnus-registry-mark-article)
16275         (gnus-registry-article-marks): Add functionality to mark articles
16276         through the Gnus registry.
16277
16278         * encrypt.el: Clarify documentation for the new pgg method.
16279         (encrypt-file-alist): Add PGG option.
16280         (encrypt-insert-file-contents, encrypt-write-file-contents): Use PGG
16281         functionality.  Abstract password key and messaging to external
16282         functions.
16283         (encrypt-password-key, encrypt-get-passphrase-if-needed)
16284         (encrypt-message-method-and-cipher): Add new convenience external
16285         functions.
16286         (encrypt-pgg-encode-buffer, encrypt-pgg-decode-buffer)
16287         (encrypt-pgg-process-buffer): Add PGG functionality glue.
16288
16289         * netrc.el: Autoload encrypt when encrypt-file-alist is set.
16290         (netrc-parse): Use encrypt-file-alist to determine if
16291         encrypt-find-model or encrypt-insert-file-contents should be used.
16292
16293         * encrypt.el: Clarify documentation.  Load password-cache or
16294         password, whichever one is found first, instead of autoloading.
16295
16296 2007-12-19  Glenn Morris  <rgm@gnu.org>
16297
16298         * mml.el (message-options-set, message-narrow-to-head)
16299         (message-in-body-p, message-mail-p, message-encode-message-body):
16300         Autoload.
16301         (message-remove-header, message-narrow-to-headers-or-head)
16302         (message-subscribed-p, message-make-mail-followup-to)
16303         (message-position-on-field, message-news-p)
16304         (message-options-set-recipient, message-generate-headers)
16305         (message-sort-headers): Declare as functions.
16306
16307 2007-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
16308
16309         * gnus-draft.el (gnus-draft-send-message): Mention process/prefix
16310         convention in doc string.
16311
16312 2007-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
16313
16314         * gnus-art.el (gnus-article-browse-html-parts): Add message header and
16315         title to html parts.
16316         (gnus-article-browse-html-article): Pass message header to it.
16317
16318         * mm-decode.el (mm-display-external): Use mm-add-meta-html-tag.
16319
16320 2007-12-16  Reiner Steib  <Reiner.Steib@gmx.de>
16321
16322         * mml-sec.el, sieve-manage.el, smime.el: Make loading of password-cache
16323         or password compatible with XEmacs.
16324
16325 2007-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
16326
16327         * gnus-art.el (article-verify-x-pgp-sig): Add reference to X-PGP-Sig
16328         format document.
16329         (gnus-mime-delete-part): Don't write description line if empty.
16330         (gnus-article-encrypt-body): Add confirmation for gnus-novice-user.
16331
16332 2007-12-14  Johan Bockgård  <bojohan@gnu.org>
16333
16334         * gnus-sum.el (gnus-summary-mark-unread-as-read)
16335         (gnus-summary-mark-read-and-unread-as-read)
16336         (gnus-summary-mark-current-read-and-unread-as-read)
16337         (gnus-summary-mark-unread-as-ticked): Doc fix.
16338         `gnus-mark-article-hook', not `gnus-summary-mark-article-hook'.
16339
16340 2007-12-14  Reiner Steib  <Reiner.Steib@gmx.de>
16341
16342         * gnus-sum.el (gnus-summary-prev-article): Fix doc string.
16343         Reported by Christoph Conrad <christoph.conrad@gmx.de>.
16344
16345 2007-12-14  Reiner Steib  <Reiner.Steib@gmx.de>
16346
16347         * gnus-util.el (gnus-y-or-n-p, gnus-yes-or-no-p): Alias to y-or-n-p and
16348         yes-or-no-p.
16349
16350 2007-12-11  Katsumi Yamaoka  <yamaoka@jpl.org>
16351
16352         * mm-decode.el (mm-add-meta-html-tag): New function.
16353         (mm-save-part-to-file, mm-pipe-part): Use it.
16354
16355         * gnus-art.el (gnus-article-browse-delete-temp-files):
16356         Use gnus-y-or-n-p instead of y-or-n-p.
16357         (gnus-article-browse-html-parts): Work with message/external-body; use
16358         mm-add-meta-html-tag.
16359
16360 2007-12-11  Glenn Morris  <rgm@gnu.org>
16361
16362         * gnus-cache.el: Require gnus-sum not just when compiling.
16363
16364         * gnus-fun.el (gnus-display-x-face-in-from): Require gnus-art.
16365
16366         * gnus-int.el (gnus-server-opened, gnus-status-message):
16367         Move definitions before use.
16368
16369         * mm-decode.el: Require gnus-util.
16370         (mm-remove-part): Only call delete-annotation on XEmacs.
16371
16372         * mm-uu.el (gnus-original-article-buffer): Define for compiler.
16373
16374         * nnmail.el: Require gnus-int.
16375
16376         * spam.el: Move `require's before `eval-when-compile's.
16377
16378         * gnus-ems.el (gnus-alive-p):
16379         * gnus-fun.el (message-goto-eoh):
16380         * gnus-util.el (gnus-group-name-decode):
16381         * mail-source.el (gnus-compress-sequence):
16382         * message.el (Info-goto-node, format-spec):
16383         * mm-bodies.el (message-options-get):
16384         * mm-decode.el (mm-view-pkcs7):
16385         * mm-util.el (gmm-write-region):
16386         * mml-smime.el (mml-compute-boundary)
16387         (gnus-completing-read-with-default):
16388         * mml.el (widget-button-press, gnus-make-hashtable):
16389         * mml1991.el (mm-decode-content-transfer-encoding)
16390         (mm-encode-content-transfer-encoding)
16391         (message-options-get, message-options-set):
16392         * mml2015.el (gnus-buffer-live-p, gnus-get-buffer-create):
16393         * nnfolder.el (gnus-request-group):
16394         * nnheader.el (ietf-drums-unfold-fws):
16395         * rfc1843.el (mail-header-parse-content-type, message-narrow-to-head):
16396         * smime.el (gnus-run-mode-hooks):
16397         * spam-stat.el (gnus-message): Autoload.
16398
16399         * gnus-cache.el, gnus-fun.el, gnus-group.el, gnus.el, mail-source.el:
16400         * mm-bodies.el, mm-decode.el, mm-extern.el, mm-util.el:
16401         * mml-smime.el, mml.el, mml1991.el, mml2015.el, nndb.el, nnfolder.el:
16402         * nnmail.el, nnmaildir.el, nnrss.el, rfc1843.el, spam.el:
16403         Add declare-function compatibility definition.
16404
16405         * gnus-cache.el (nnvirtual-find-group-art):
16406         * gnus-fun.el (article-narrow-to-head, gnus-article-goto-header)
16407         (gnus-add-image, gnus-add-wash-type):
16408         * gnus-group.el (nnkiboze-score-file):
16409         * gnus-sum.el (turn-on-gnus-mailing-list-mode)
16410         (gnus-cache-write-active, mm-uu-dissect, idna-to-unicode):
16411         * gnus-util.el (gnus-find-method-for-group, gnus-group-name-charset)
16412         (message-tokenize-header, gnus-get-buffer-create)
16413         (mm-enable-multibyte, gnus-put-text-property, gnus-overlay-put)
16414         (gnus-make-overlay, mm-disable-multibyte, gnus-add-text-properties):
16415         * gnus.el (gnus-group-decoded-name):
16416         * mail-source.el (imap-capability):
16417         * mm-bodies.el (message-options-set):
16418         * mm-decode.el (gnus-configure-windows):
16419         * mm-extern.el (message-goto-body):
16420         * mm-util.el (mm-delete-duplicates, mm-detect-coding-region):
16421         * mml-smime.el (epg-key-sub-key-list, epg-sub-key-capability)
16422         (epg-sub-key-validity, message-options-set):
16423         * mml.el (widget-event-point, gnus-configure-windows):
16424         * mml1991.el (mc-encrypt-generic, gpg-sign-encrypt, gpg-encrypt):
16425         * mml2015.el (epg-check-configuration, epg-configuration)
16426         (message-options-set):
16427         * nndb.el (nndb-request-article):
16428         * nnfolder.el (gnus-request-create-group):
16429         * nnmail.el (gnus-activate-group, gnus-group-mark-article-read):
16430         * nnmaildir.el (gnus-group-mark-article-read):
16431         * nnrss.el (w3-parse-buffer, gnus-group-make-rss-group):
16432         * rfc1843.el (message-fetch-field):
16433         * spam.el (gnus-extract-address-components):
16434         Declare as functions.
16435
16436 2007-12-10  Katsumi Yamaoka  <yamaoka@jpl.org>
16437
16438         * gnus-art.el (gnus-article-browse-html-parts): Decode CTE.
16439
16440         * pgg.el (pgg-run-at-time, pgg-cancel-timer): Use eval-and-compile.
16441
16442         * lpath.el: Fbind run-mode-hooks for Emacs 21;
16443         bind show-trailing-whitespace for XEmacs.
16444
16445 2007-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
16446
16447         * hashcash.el, imap.el, pgg.el, pgg-parse.el (declare-function): Add
16448         new no-op macro for backward compatibility.
16449
16450         * imap.el (imap-string-to-integer): New function.
16451
16452 2007-12-09  Glenn Morris  <rgm@gnu.org>
16453
16454         * gnus-uu.el (gnus-uu-yenc-article): Use insert-buffer-substring.
16455
16456         * gnus-art.el, gnus-spec.el, gnus-sum.el, gnus-util.el:
16457         * message.el, mm-view.el, sieve-manage.el, smime.el:
16458         Add declare-function compatibility definition.
16459
16460         * gnus-art.el (w3-region, w3m-region, Info-menu):
16461         * gnus-spec.el (gnus-summary-from-or-to-or-newsgroups):
16462         * gnus-sum.el (gnus-get-predicate):
16463         * gnus-util.el (mm-append-to-file, w32-focus-frame):
16464         * message.el (mail-abbrev-in-expansion-header-p):
16465         * mm-view.el (w3-do-setup, w3-region, w3-prepare-buffer)
16466         (w3m-detect-meta-charset, w3m-region):
16467         * sieve-manage.el (password-read, password-cache-add)
16468         (password-cache-remove):
16469         * smime.el (password-read-and-add): Declare as functions.
16470
16471 2007-12-08  David Kastrup  <dak@gnu.org>
16472
16473         * gnus-sum.el (gnus-summary-simplify-subject-query):
16474         * ecomplete.el (ecomplete-display-matches): Fix buggy call to
16475         `message'.
16476
16477 2007-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
16478
16479         * dgnushack.el (dgnushack-emacs-compile-defcustom-p): New function; use
16480         it to bind idna-program, installation-directory, defined-colors, and
16481         face-attribute for XEmacs of the version that compiles defcustom forms.
16482
16483 2007-12-07  Glenn Morris  <rgm@gnu.org>
16484
16485         * gnus-art.el (article-make-date-line): Revert previous change.
16486
16487 2007-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
16488
16489         * gnus-start.el (gnus-load): Rename local variable to avoid confusion.
16490
16491 2007-12-06  Christian Plate  <cplate@web.de>  (tiny change)
16492
16493         * nnmaildir.el (nnmaildir-request-update-info): Improve performance.
16494         Call gnus-add-to-range ranges only once with a prepared article-list.
16495
16496 2007-12-06  Paul Jarc  <prj@po.cwru.edu>
16497
16498         * nnmaildir.el (nnmaildir-request-list, nnmaildir-retrieve-groups)
16499         (nnmaildir-request-group, nnmaildir-retrieve-headers): Escape spaces in
16500         group names with backslashes.
16501         Reported by Tassilo Horn <tassilo@member.fsf.org>.
16502
16503 2007-12-06  Deepak Goel  <deego3@gmail.com>
16504
16505         * gnus-art.el (article-make-date-line):
16506         * gnus-start.el (gnus-load):
16507         * pop3.el (pop3-read-response): Fix buggy call to `error'.
16508
16509 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
16510
16511         * gnus-art.el (gnus-use-idna):
16512         * gnus-start.el (gnus-site-init-file):
16513         * message.el (message-use-idna):
16514         * mm-uu.el (mm-uu-hide-markers):
16515         * smiley.el (smiley-style): Revert changes that suppress warnings.
16516
16517 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
16518
16519         * gnus-art.el (gnus-article-browse-html-parts): Add meta html tag to
16520         specify charset to html source.
16521         Reported by Christoph Conrad <christoph.conrad@gmx.de>.
16522
16523 2007-12-05  Katsumi Yamaoka  <yamaoka@jpl.org>
16524
16525         * gnus-art.el (gnus-use-idna): Don't directly refer to the value of
16526         idna-program in order to suppress byte compile warning issued by XEmacs
16527         that came to byte compile the default value section of defcustom forms
16528         recently.
16529
16530         * gnus-start.el (gnus-site-init-file): Don't directly refer to the
16531         value of installation-directory.
16532
16533         * message.el (message-use-idna): Don't directly refer to the value of
16534         idna-program.
16535
16536         * mm-uu.el (mm-uu-hide-markers): Don't directly call defined-colors.
16537
16538         * smiley.el (smiley-style): Don't directly call face-attribute.
16539
16540 2007-12-04  Reiner Steib  <Reiner.Steib@gmx.de>
16541
16542         * gnus-group.el (gnus-group-highlight-line): Add FIXME.
16543
16544         * gnus-dired.el: Reduce Gnus dependencies.
16545         (gnus-ems, gnus-msg, gnus-util, message, mm-decode, mml):
16546         Don't require.  Use autoloads instead.
16547         (mml-attach-file, mm-default-file-encoding, mailcap-extension-to-mime)
16548         (mailcap-mime-info, mm-mailcap-command, ps-print-preprint)
16549         (message-buffers, gnus-setup-message, gnus-print-buffer): Autoload.
16550         (gnus-dired-mode): Adjust doc string.
16551         (gnus-dired-mail-mode): New variable.
16552         (gnus-dired-mode-map): Avoid using `gnus-define-keys'.
16553         (gnus-dired-mode): Avoid using `gnus-run-hooks'.
16554         (gnus-dired-mail-buffers): New function.  Return mail or message
16555         composition buffers.
16556         (gnus-dired-attach): Use it.
16557         (gnus-dired-find-file-mailcap): Call `mailcap-mime-info' with
16558         NO-DECODE.
16559         (gnus-dired-print): Use `gnus-print-buffer' depending on
16560         `gnus-dired-mail-mode'.
16561
16562 2007-12-04  Katsumi Yamaoka  <yamaoka@jpl.org>
16563
16564         * rfc2047.el (rfc2047-encoded-word-regexp)
16565         (rfc2047-encoded-word-regexp-loose): Move forward; add comments
16566         explaining what regexp patterns are for.
16567
16568 2007-12-04  Glenn Morris  <rgm@gnu.org>
16569
16570         * password.el: Move to password-cache.el.
16571
16572         * mml1991.el (password-read, password-cache-add, password-cache-remove):
16573         * mml2015.el (password-read, password-cache-add, password-cache-remove):
16574         * mml-smime.el (password-read, password-cache-add)
16575         (password-cache-remove):
16576         No need to autoload, since mml-sec requires password.
16577
16578         * gnus.el (gnus-spam-resend-to, gnus-ham-resend-to):
16579         * message.el (gnus-extract-address-components):
16580         * mml-smime.el (gnus-extract-address-components): Define for compiler.
16581
16582         * mml-sec.el, sieve-manage.el, smime.el: Require password-cache or
16583         password.
16584
16585 2007-12-03  Reiner Steib  <Reiner.Steib@gmx.de>
16586
16587         * mailcap.el: Reduce dependencies.
16588         (mail-header-parse-content-type): Autoload.
16589         (mailcap-delete-duplicates): New alias.
16590         (mailcap-mime-info): Add optional argument NO-DECODE.
16591         (mailcap-mime-types): Use mailcap-delete-duplicates.
16592
16593         * message.el (message-ignored-supersedes-headers): Add "X-ID".
16594
16595 2007-12-03  Nathan J. Williams  <nathanw@MIT.EDU>  (tiny change)
16596
16597         * imap.el (imap-mailbox-status-asynch): Upcase STATUS items.
16598         (imap-parse-status): Upcase status-att for servers that sends them
16599         lower-case (e.g., MS Exchange 2007).
16600
16601 2007-12-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16602
16603         * gnus-sum.el (gnus-uu-extract-map): Add a command for the yenc
16604         function.
16605
16606         * gnus-uu.el (gnus-uu-decode-yenc): New command.
16607         (gnus-uu-yenc-article): New function.
16608
16609         * yenc.el (yenc-first-part-p, yenc-last-part-p): New functions.
16610
16611         * mm-uu.el (mm-uu-yenc-extract): Get the data from the original buffer.
16612
16613 2007-12-02  Glenn Morris  <rgm@gnu.org>
16614
16615         * binhex.el (binhex): New custom group.
16616         (binhex-decoder-program, binhex-decoder-switches)
16617         (binhex-use-external): Move to the binhex custom group.
16618
16619         * uudecode.el (uudecode): New custom group.
16620         (uudecode-decoder-program, uudecode-decoder-switches)
16621         (uudecode-use-external): Move to the uudecode custom group.
16622
16623         * netrc.el (top-level): Don't load `encrypt' features.
16624         (netrc-parse): Don't use encrypt.
16625         (netrc-find-service-name, netrc-find-service-number): Don't use caddr.
16626
16627         * encrypt.el: Remove file.
16628
16629 2007-12-01  Reiner Steib  <Reiner.Steib@gmx.de>
16630
16631         * message.el (message-cite-prefix-regexp): Remove `-' and `+' to avoid
16632         matches on patches.
16633
16634         * gnus-art.el (gnus-article-browse-html-article):
16635         Mention `mm-text-html-renderer' in the doc string.
16636
16637         * rfc2047.el (rfc2047-encode-max-chars): Refer to RFC 2047 in doc
16638         string.  Add comments.
16639
16640         * message.el (message-idna-to-ascii-rhs-1): Don't call `idna-to-ascii'
16641         if rhs is ASCII.
16642
16643 2007-12-01  Glenn Morris  <rgm@gnu.org>
16644
16645         * mail-source.el (top-level): Require format-spec before
16646         eval-when-compile.
16647
16648 2007-11-30  Glenn Morris  <rgm@gnu.org>
16649
16650         * encrypt.el: Require password, rather than autoloading password-read.
16651
16652 2007-11-29  Glenn Morris  <rgm@gnu.org>
16653
16654         * imap.el (sasl-find-mechanism, sasl-mechanism-name)
16655         (sasl-make-client, sasl-next-step, sasl-step-data)
16656         (sasl-step-set-data): Declare as functions.
16657
16658 2007-11-28  Reiner Steib  <Reiner.Steib@gmx.de>
16659
16660         * tls.el (tls-hostmismatch, open-tls-stream): Checkdoc cleanup.
16661
16662 2007-11-28  Elias Oltmanns  <eo@nebensachen.de>
16663
16664         * tls.el (open-tls-stream): Actually consult tls-checktrust to see if
16665         certs should be verified and what is to be done in the event of a
16666         verification failure.
16667
16668         * gnus.el (gnus-method-to-server): Add an optional parameter so the
16669         caller can indicate whether the cache should be disregarded for this
16670         call.  This way the result of the call is reproducible at all times and
16671         can be considered a canonical server name for the supplied method.
16672         (gnus-agent-method-p): Canonicalize server names by pushing their
16673         method through `gnus-method-to-server' using the no-cache argument.
16674
16675         * gnus-srvr.el (gnus-server-insert-server-line):
16676         Call `gnus-method-to-server' with `no-cache' argument.
16677
16678         * gnus-agent.el (gnus-agent-toggle-plugged): Don't call
16679         gnus-agent-possibly-synchronize-flags as this should be called when the
16680         server is actually being opened.
16681         (gnus-agent-possibly-synchronize-flags)
16682         (gnus-agent-possibly-synchronize-flags-server): Move check for the
16683         flags file of an agentized server to the latter function.
16684
16685         * gnus-int.el (gnus-agent-possibly-synchronize-flags-server): Autoload.
16686         (gnus-open-server): Call gnus-agent-possibly-synchronize-flags-server
16687         after a connection has been established successfully.
16688
16689 2007-11-28  Katsumi Yamaoka  <yamaoka@jpl.org>
16690
16691         * gnus-art.el (article-display-face): Force to display face if called
16692         interactively; check if gnus-article-x-face-too-ugly matches author.
16693         (article-display-x-face): Display face even if From header is missing
16694         as article-display-face does.
16695
16696 2007-11-27  Dan Nicolaescu  <dann@ics.uci.edu>
16697
16698         * hashcash.el (message-narrow-to-headers-or-head)
16699         (message-fetch-field, message-goto-eoh)
16700         (message-narrow-to-headers): Declare as functions.
16701
16702 2007-11-27  Reiner Steib  <Reiner.Steib@gmx.de>
16703
16704         * mail-source.el (mail-sources): Default to fetch from file for
16705         compatibility with default of nnmail-spool-file.
16706
16707 2007-11-27  Katsumi Yamaoka  <yamaoka@jpl.org>
16708
16709         * rfc2047.el (rfc2047-allow-irregular-q-encoded-words): New variable.
16710         (rfc2047-encodable-p): Use rfc2047-encoded-word-regexp instead of "=?"
16711         to look for encoded word that should be encoded again.
16712         (rfc2047-encoded-word-regexp): Make B encoding pattern strict.
16713         (rfc2047-encoded-word-regexp-loose): New constant that has loose Q
16714         encoding pattern.
16715         (rfc2047-decode-region): Switch strict regexp and loose one according
16716         to rfc2047-allow-irregular-q-encoded-words.
16717
16718 2007-11-25  Romain Francoise  <romain@orebokech.com>
16719
16720         * gnus-msg.el (gnus-summary-reply): Delete extra paren.
16721
16722 2007-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
16723
16724         * tls.el (tls-program): Provide more custom choices from
16725         `tls-checktrust'.  Refer to `tls-checktrust' in doc string.
16726         (tls-process-connection-type, tls-success): Remove "*" in doc string.
16727
16728 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
16729
16730         * nnmail.el (nnmail-spool-file): Remove obsolete variable.
16731         (nnmail-get-new-mail): Remove code using `nnmail-spool-file'.
16732
16733         * gnus-start.el (defvar, gnus-get-unread-articles): Remove code using
16734         `nnmail-spool-file'.
16735
16736         * nnkiboze.el (nnkiboze-generate-groups): Don't bind obsolete
16737         `nnmail-spool-file'.
16738
16739         * gnus-move.el (gnus-change-server): Ditto.
16740
16741         * gnus-kill.el (gnus-batch-score): Ditto.
16742
16743         * gnus-cache.el (gnus-jog-cache): Ditto.
16744
16745         * gnus-msg.el (gnus-summary-reply):
16746         Ignore gnus-confirm-mail-reply-to-news for wide and very wide replies.
16747
16748 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
16749
16750         * tls.el (tls-checktrust, tls-hostmismatch, tls-untrusted): Add custom
16751         version.  Minor improvement to doc strings.
16752         (tls-program): Add comment.
16753
16754 2007-11-24  Elias Oltmanns  <eo@nebensachen.de>
16755
16756         * tls.el (tls-certtool-program, tls-hostmismatch): New variables.
16757         (tls-checktrust): New variable.  Check if GNU TLS complained about a
16758         mismatch between the hostname provided in the certificate and the name
16759         of the host connnecting to.
16760         (open-tls-stream): Use them.  Check certificates against trusted root
16761         certificates.
16762
16763 2007-11-24  Reiner Steib  <Reiner.Steib@gmx.de>
16764
16765         * gnus-cache.el (gnus-cache-generate-nov-databases):
16766         Use nnml-generate-nov-databases-directory instead of
16767         nnml-generate-nov-databases-1.
16768
16769 2007-11-24  Glenn Morris  <rgm@gnu.org>
16770
16771         * message.el (message-tool-bar-retro): Update for rename
16772         mail_send.xpm->mail-send.xpm.
16773
16774 2007-11-22  Reiner Steib  <Reiner.Steib@gmx.de>
16775
16776         * smime.el (smime-cert-by-ldap-1): Use `ldap-search' instead of
16777         `smime-ldap-search' for Emacs 22 and up.
16778
16779 2007-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
16780
16781         * gnus-art.el (gnus-article-truncate-lines): Use `truncate-lines'.
16782
16783         * message.el (message-send-mail-function): Fix error convention.
16784         (message-mailer-swallows-blank-line, message-send-mail-with-sendmail)
16785         (message-widen-reply, message-send-mail, message-talkative-question)
16786         (message-with-reply-buffer, message-generate-new-buffer-clone-locals)
16787         (message-clone-locals, message-send-news): Use with-current-buffer.
16788         (message-insert-or-toggle-importance): Remove unused var `valid'.
16789         (message-make-references): Remove unused var `new-references'.
16790         (message-make-mail-followup-to): Remove unused var `subscribed-lists'.
16791
16792 2007-11-22  Juanma Barranquero  <lekktu@gmail.com>
16793
16794         * spam.el (spam-find-spam, spam-enter-list): Doc fixes.
16795         (spam-split-symbolic-return-positive): Reflow docstring.
16796         (spam-backends, spam-summary-exit-behavior)
16797         (spam-mark-ham-unread-before-move-from-spam-group)
16798         (spam-summary-score-preferred-header, spam-sa-learn-spam-switch)
16799         (spam-sa-learn-ham-switch, spam-sa-learn-unregister-switch)
16800         (spam-clear-cache, spam-backend-check, spam-install-backend)
16801         (spam-install-statistical-backend, spam-list-of-processors)
16802         (spam-group-processor-p, spam-split, spam-bogofilter-score)
16803         (spam-bsfilter-score, spam-check-bsfilter, spam-crm114-score)
16804         (spam-check-crm114, spam-initialize, spam-unload-hook):
16805         Fix typos in docstrings.
16806
16807 2007-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
16808
16809         * gnus-start.el (gnus-get-unread-articles): Mark groups as having never
16810         been checked if they have never been read and those group levels are
16811         higher than the one that a user specified.
16812
16813 2007-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
16814
16815         * gnus-start.el (gnus-get-unread-articles): Don't prevent from checking
16816         foreign groups unless a group level is specified by a user.
16817         Reported by Dan Nicolaescu <dann@ics.uci.edu>.
16818
16819 2007-11-21  Reiner Steib  <Reiner.Steib@gmx.de>
16820
16821         * message.el (message-send-mail-function): Require sendmail.
16822
16823 2007-11-20  Reiner Steib  <Reiner.Steib@gmx.de>
16824
16825         * message.el (message-send-mail-function): Check for smtpmail too.
16826
16827         * utf7.el (utf7-encode, utf7-decode): Use coding system
16828         `utf-7'/`utf-7-imap' from utf-7.el' if available.
16829
16830         * message.el (message-send-mail-function): New function.
16831         (message-send-mail-function): Set default using
16832         message-send-mail-function.  Adjust doc string.
16833         (message-send-mail-with-mailclient): New function.
16834
16835 2007-11-16  Dan Nicolaescu  <dann@ics.uci.edu>
16836
16837         * smime.el (from):
16838         * rfc2047.el (message-posting-charset):
16839         * qp.el (mm-use-ultra-safe-encoding):
16840         * pop3.el (parse-time-months):
16841         * nnrss.el (mm-text-html-renderer, mm-text-html-washer-alist):
16842         * nnml.el (files):
16843         * nnheader.el (gnus-newsgroup-name, nnheader-file-coding-system)
16844         (jka-compr-compression-info-list, ange-ftp-path-format)
16845         (efs-path-regexp):
16846         * nndiary.el (files):
16847         * mml2015.el (mc-default-scheme, mc-schemes, pgg-default-user-id)
16848         (pgg-errors-buffer, pgg-output-buffer, epg-user-id-alist)
16849         (epg-digest-algorithm-alist, inhibit-redisplay)
16850         (password-cache-expiry):
16851         * mml1991.el (pgg-default-user-id, pgg-errors-buffer)
16852         (pgg-output-buffer, password-cache-expiry):
16853         * mml.el (mml-dnd-protocol-alist, ange-ftp-name-format)
16854         (efs-path-regexp):
16855         * mml-smime.el (epg-user-id-alist, epg-digest-algorithm-alist)
16856         (inhibit-redisplay):
16857         * mm-uu.el (file-name, start-point, end-point, entry)
16858         (gnus-newsgroup-name, gnus-newsgroup-charset):
16859         * mm-util.el (mm-mime-mule-charset-alist, latin-unity-coding-systems)
16860         (latin-unity-ucs-list):
16861         * mm-bodies.el (mm-uu-yenc-decode-function, mm-uu-decode-function)
16862         (mm-uu-binhex-decode-function):
16863         * message.el (gnus-message-group-art, gnus-list-identifiers)
16864         (rmail-enable-mime-composing, gnus-local-organization)
16865         (gnus-post-method, gnus-select-method, gnus-active-hashtb)
16866         (gnus-read-active-file, facemenu-add-face-function)
16867         (facemenu-remove-face-function, gnus-article-decoded-p)
16868         (tool-bar-mode):
16869         * mail-source.el (display-time-mail-function):
16870         * gnus-util.el (nnmail-pathname-coding-system)
16871         (nnmail-active-file-coding-system, gnus-emphasize-whitespace-regexp)
16872         (gnus-original-article-buffer, gnus-user-agent)
16873         (rmail-default-rmail-file, mm-text-coding-system, tool-bar-mode)
16874         (xemacs-codename, sxemacs-codename, emacs-program-version):
16875         * gnus-sum.el (tool-bar-mode, gnus-tmp-header, number):
16876         * gnus-start.el (gnus-agent-covered-methods)
16877         (gnus-agent-file-loading-local, gnus-agent-file-loading-cache)
16878         (gnus-current-headers, gnus-thread-indent-array, gnus-newsgroup-name)
16879         (gnus-newsgroup-headers, gnus-group-list-mode)
16880         (gnus-group-mark-positions, gnus-newsgroup-data)
16881         (gnus-newsgroup-unreads, nnoo-state-alist)
16882         (gnus-current-select-method, mail-sources)
16883         (nnmail-scan-directory-mail-source-once, nnmail-split-history)
16884         (nnmail-spool-file, gnus-cache-active-hashtb):
16885         * gnus-mh.el (mh-lib-progs):
16886         * gnus-ems.el (gnus-tmp-unread, gnus-tmp-replied)
16887         (gnus-tmp-score-char, gnus-tmp-indentation, gnus-tmp-opening-bracket)
16888         (gnus-tmp-lines, gnus-tmp-name, gnus-tmp-closing-bracket)
16889         (gnus-tmp-subject-or-nil, gnus-check-before-posting, gnus-mouse-face)
16890         (gnus-group-buffer):
16891         * gnus-cite.el (font-lock-defaults-computed, font-lock-keywords)
16892         (font-lock-set-defaults):
16893         * gnus-art.el (tool-bar-map, w3m-minor-mode-map)
16894         (gnus-face-properties-alist, charset, gnus-summary-article-menu)
16895         (gnus-summary-post-menu, total-parts, type, condition, length):
16896         * gnus-agent.el (gnus-agent-read-agentview):
16897         * flow-fill.el (show-trailing-whitespace):
16898         * gnus-group.el (tool-bar-mode, nnrss-group-alist): Remove unnecessary
16899         eval-and-compile wrappers for byte compiler pacifiers.
16900
16901         * mm-view.el (mm-inline-image-xemacs): Only do something for XEmacs.
16902         (mm-display-inline-fontify): Check for featurep 'xemacs not
16903         extent-list.
16904
16905         * mm-decode.el (mm-display-external): Check for featurep 'xemacs not
16906         itimer-list.
16907         (mm-create-image-xemacs): Only do something for XEmacs.
16908         (mm-image-fit-p): Check for featurep 'xemacs not glyph-width.
16909
16910         * mm-util.el (mm-find-buffer-file-coding-system): Add check for XEmacs.
16911
16912         * gnus-registry.el (gnus-adaptive-word-syntax-table):
16913         * gnus-fun.el (gnus-face-properties-alist): Pacify byte compiler.
16914
16915 2007-11-15  Juanma Barranquero  <lekktu@gmail.com>
16916
16917         * nnimap.el (nnimap-split-download-body):
16918         * gnus-demon.el (gnus-demon):
16919         * gnus-uu.el (gnus-uu-default-view-rules): Fix typos in docstrings.
16920
16921 2007-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
16922
16923         * nntp.el (nntp-insert-buffer-substring, nntp-copy-to-buffer):
16924         New macros.
16925         (nntp-wait-for, nntp-retrieve-articles, nntp-async-trigger)
16926         (nntp-retrieve-headers-with-xover): Use nntp-insert-buffer-substring to
16927         copy data from unibyte buffer to multibyte current buffer.
16928         (nntp-retrieve-headers, nntp-retrieve-groups): Use nntp-copy-to-buffer
16929         to copy data from unibyte current buffer to multibyte buffer.
16930         (nntp-make-process-buffer): Make process buffer unibyte.
16931
16932         * pop3.el (pop3-open-server): Fix typo in Lisp code.
16933
16934 2007-11-14  Denys Duchier  <denys.duchier@univ-orleans.fr>  (tiny change)
16935
16936         * pop3.el (pop3-open-server): Accept and process data more robustly at
16937         connection start to avoid spurious "POP SSL connection failed" errors.
16938
16939 2007-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
16940
16941         * gnus-start.el (gnus-active-to-gnus-format): Use unibyte buffer to
16942         read group names.
16943
16944 2007-11-12  Reiner Steib  <Reiner.Steib@gmx.de>
16945
16946         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Adjust :version.
16947
16948 2007-11-12  Katsumi Yamaoka  <yamaoka@jpl.org>
16949
16950         * nnmail.el (nnmail-parse-active): Make group names unibyte.
16951         (nnmail-save-active): Use a unibyte buffer when saving active file,
16952         which may contain non-ASCII group names.
16953
16954         * nnml.el (nnml-request-group): Decode group names in messages.
16955
16956 2007-11-05  Reiner Steib  <Reiner.Steib@gmx.de>
16957
16958         * message.el (message-citation-line-function)
16959         (message-insert-formatted-citation-line): Fix spelling of
16960         `message-insert-formated-citation-line'.
16961
16962 2007-11-03  Reiner Steib  <Reiner.Steib@gmx.de>
16963
16964         * gnus-sum.el (gnus-summary-highlight): Mark as risky local variable.
16965
16966 2007-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
16967
16968         * nnml.el (nnml-request-rename-group): Bind file-name-coding-system to
16969         nnmail-pathname-coding-system.
16970
16971         * gnus-group.el (gnus-group-rename-group): Encode non-ASCII group name
16972         that a user enters; decode group names in messages.
16973
16974         * gnus-msg.el (gnus-inews-do-gcc): Encode non-ASCII group names.
16975
16976 2007-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
16977
16978         * mm-util.el (mm-charset-eval-alist): Mark as risky local variable.
16979
16980         * gnus.el (gnus-group-charter-alist): Mark as risky local variable.
16981
16982         * gnus-art.el (gnus-button-alist, gnus-header-button-alist): Mark as
16983         risky local variable.
16984
16985         * gnus-group.el (gnus-group-icon-list): Mark as risky local variable.
16986
16987 2007-11-01  Teodor Zlatanov  <tzz@lifelogs.com>
16988
16989         * encrypt.el: Improve documentation to fix function name typo.
16990         Reported by Daiki Ueno <ueno@unixuser.org>.
16991
16992 2007-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
16993
16994         * gnus-art.el (gnus-article-next-page): Honor gnus-article-over-scroll
16995         even if the point is not in the last page of an article.
16996         (gnus-article-prev-page): Honor gnus-article-over-scroll when moving
16997         back to the previous page.
16998
16999 2007-10-30  Reiner Steib  <Reiner.Steib@gmx.de>
17000
17001         * qp.el (quoted-printable-decode-string): Fix typo in doc string.
17002
17003 2007-10-30  Katsumi Yamaoka  <yamaoka@jpl.org>
17004
17005         * gnus-ems.el (gnus-x-splash): Work even if there's no scroll bar.
17006
17007 2007-10-29  Stefan Monnier  <monnier@iro.umontreal.ca>
17008
17009         * message.el (message-check-news-body-syntax):
17010         Avoid mm-string-as-multibyte.
17011         (message-hide-headers): Don't assume (point-min)==1.
17012
17013 2007-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
17014
17015         * message.el (message-remove-blank-cited-lines): Fix if remove is
17016         given.
17017         (message-bogus-address-regexp): New variable.
17018         (message-bogus-recipient-p): New function.
17019         (message-check-recipients): New command.
17020         (message-syntax-checks): Add `bogus-recipient'.
17021         (message-fix-before-sending): Add `bogus-recipient'.
17022
17023         * gnus-art.el (gnus-button-mid-or-mail-heuristic-alist): Add "alpine".
17024         (gnus-treat-body-boundary): Don't test window-system.
17025
17026 2007-10-28  Leo Liu  <sdl.web@gmail.com>
17027
17028         * gnus-art.el (gnus-treat-emphasize): Don't test window-system.
17029
17030 2007-10-28  Miles Bader  <miles@gnu.org>
17031
17032         * nnheader.el (nnheader-uniquify-message-id): Make sure this is defined
17033         at compile-time too.
17034
17035 2007-10-27  Reiner Steib  <Reiner.Steib@gmx.de>
17036
17037         * gnus-msg.el (gnus-message-setup-hook):
17038         Add `message-remove-blank-cited-lines' to options.
17039
17040 2007-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
17041
17042         * message.el (message-remove-blank-cited-lines): New function.
17043         Suggested by Karl Plästerer.
17044
17045 2007-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
17046
17047         * hashcash.el (mail-add-payment): Replace mapcar called for effect with
17048         mapc.
17049
17050         * imap.el (imap-open): Replace mapcar called for effect with mapc.
17051         (top-level): Use mapc to set functions to be traced for debugging.
17052
17053         * legacy-gnus-agent.el (gnus-agent-convert-agentview): Replace mapcar
17054         called for effect with while loop.
17055
17056         * message.el (message-talkative-question): Replace mapcar called for
17057         effect with mapc.
17058
17059         * mm-util.el: Use mapc instead of mapcar to make compatible functions.
17060         (mm-find-mime-charset-region, mm-find-charset-region): Replace mapcar
17061         called for effect with dolist.
17062
17063         * mml.el (mml-insert-mime): Replace mapcar called for effect with mapc.
17064
17065         * nndiary.el: Use dolist instead of mapcar to add diary headers to
17066         gnus-extra-headers and nnmail-extra-headers.
17067
17068         * nnimap.el (nnimap-request-update-info-internal): Replace mapcar
17069         called for effect with dolist.
17070         (top-level): Use mapc to set functions to be traced for debugging.
17071
17072         * nnmail.el (nnmail-read-incoming-hook): Doc fix.
17073         (nnmail-split-fancy-with-parent): Replace mapcar called for effect with
17074         dolist.
17075
17076         * nnmaildir.el (nnmaildir--delete-dir-files, nnmaildir-request-close):
17077         Replace mapcar called for effect with mapc.
17078         (nnmaildir--scan, nnmaildir-request-scan, nnmaildir-retrieve-groups)
17079         (nnmaildir-request-update-info, nnmaildir-request-delete-group)
17080         (nnmaildir-retrieve-headers, nnmaildir-request-set-mark)
17081         (nnmaildir-close-group): Replace mapcar called for effect with dolist.
17082
17083         * nnrss.el (nnrss-make-hash-index): Use gnus-remove-if instead of
17084         remove-if that's a cl function.
17085
17086         * webmail.el (webmail-debug): Replace mapcar called for effect with
17087         dolist.
17088
17089         * gnus-xmas.el (gnus-group-add-icon): Replace mapcar called for effect
17090         with mapc.
17091
17092 2007-10-24  Katsumi Yamaoka  <yamaoka@jpl.org>
17093
17094         * gnus-agent.el (gnus-agent-read-agentview, gnus-agent-save-alist)
17095         (gnus-agent-expire-unagentized-dirs): Replace mapcar called for effect
17096         with while loop.
17097
17098         * gnus-art.el: Use mapc instead of mapcar to make gnus-article-*
17099         functions from article-* functions.
17100         (gnus-multi-decode-header): Replace mapcar called for effect with
17101         dolist.
17102
17103         * gnus-bookmark.el (gnus-bookmark-bmenu-list)
17104         (gnus-bookmark-show-details): Replace mapcar called for effect with
17105         while loop.
17106
17107         * gnus-diary.el (gnus-diary-update-group-parameters): Replace mapcar
17108         called for effect with while loop.
17109
17110         * gnus-group.el (gnus-group-suspend): Replace mapcar called for effect
17111         with dolist.
17112
17113         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
17114         Replace mapcar called for effect with dolist.
17115
17116         * gnus-spec.el (gnus-correct-length): Make it simple and fast.
17117
17118         * gnus-sum.el (gnus-multi-decode-encoded-word-string)
17119         (gnus-build-sparse-threads, gnus-summary-limit-include-expunged):
17120         Replace mapcar called for effect with dolist.
17121         (gnus-simplify-buffer-fuzzy): Replace mapcar called for effect with
17122         mapc.
17123
17124         * gnus-topic.el (gnus-topic-find-groups, gnus-topic-move-group):
17125         Replace mapcar called for effect with dolist.
17126         (gnus-topic-list): Replace mapcar called for effect with mapc.
17127
17128         * gnus.el: Use mapc instead of mapcar to add autoloads.
17129
17130 2007-10-23  Richard Stallman  <rms@gnu.org>
17131
17132         * gnus-group.el (gnus-group-highlight): Mark as risky.
17133
17134 2007-10-23  Katsumi Yamaoka  <yamaoka@jpl.org>
17135
17136         * gnus.el (gnus-server-to-method): Return method found first in
17137         gnus-newsrc-alist.
17138
17139         * gnus-art.el (gnus-article-highlight-signature)
17140         (gnus-insert-prev-page-button, gnus-insert-next-page-button): Make a
17141         button overlay without the front stickiness.
17142
17143 2007-10-22  Kevin Greiner  <kevin.greiner@compsol.cc>
17144
17145         * gnus-agent.el (gnus-agent-expire-group-1): The check for an unsorted
17146         overview buffer needed a catch to receive its throw.
17147         (gnus-agent-flush-cache): Declare as interactive to make this function
17148         easier to use.
17149
17150 2007-10-20  Reiner Steib  <Reiner.Steib@gmx.de>
17151
17152         * html2text.el (html2text-fix-paragraph): Use `forward-line' instead of
17153         `next-line'.
17154
17155 2007-10-18  Katsumi Yamaoka  <yamaoka@jpl.org>
17156
17157         * nnmail.el (nnmail-fancy-expiry-target): Use rmail-dont-reply-to to
17158         exclude address matching message-dont-reply-to-names.
17159
17160 2007-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
17161
17162         * gnus-util.el (gnus-string<): New function.
17163
17164         * gnus-sum.el (gnus-article-sort-by-author)
17165         (gnus-article-sort-by-recipient, gnus-article-sort-by-subject): Use it.
17166
17167 2007-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>
17168
17169         * gnus-win.el (gnus-configure-windows): Focus on the frame for which
17170         the frame-focus tag is set in gnus-buffer-configuration.
17171
17172 2007-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
17173
17174         * gnus-art.el (gnus-article-add-button): Make a button overlay without
17175         the front stickiness.
17176
17177 2007-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
17178
17179         * gnus-art.el (gnus-button-alist): Exclude newline in RFC2396-compliant
17180         url pattern; remove duplicate one.
17181         (gnus-article-extend-url-button): New function.
17182         (gnus-article-add-buttons): Use it.
17183         (gnus-button-push): Use concatenated url that it makes.
17184
17185 2007-10-04  Juanma Barranquero  <lekktu@gmail.com>
17186
17187         * sieve-manage.el (sieve-manage-interactive-login): Doc fix.
17188
17189 2007-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
17190
17191         * gnus-uu.el (gnus-uu-reginize-string, gnus-uu-expand-numbers):
17192         Don't hardcode point-min==1.
17193
17194 2007-10-08  Reiner Steib  <Reiner.Steib@gmx.de>
17195
17196         * mm-util.el (mm-charset-synonym-alist): Alias gbk to cp936.
17197         Fix comment about "iso8859-1".
17198
17199 2007-10-08  Daiki Ueno  <ueno@unixuser.org>
17200
17201         * mm-decode.el (mm-possibly-verify-or-decrypt): Replace PARTS with the
17202         ones returned from the verify-function.
17203
17204         * mm-uu.el (mm-uu-pgp-signed-extract-1):
17205         Call mml2015-extract-cleartext-signature if extraction failed.
17206
17207 2007-10-07  Daiki Ueno  <ueno@unixuser.org>
17208
17209         * mm-uu.el (mm-uu-pgp-signed-extract-1): Delete the first line
17210         beginning with "-----BEGIN PGP SIGNED MESSAGE-----" if extraction
17211         failed.
17212
17213 2007-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
17214
17215         * Relicense "GPLv2 or later" files to "GPLv3 or later".
17216
17217 2007-10-03  Reiner Steib  <Reiner.Steib@gmx.de>
17218
17219         * pgg.el, pgg-def.el, pgg-gpg.el: Revert to the version in v5-10.  The
17220         trunk version of PGG was unmaintained.  The author of PGG, Daiki Ueno,
17221         recommends to use EasyPG instead of PGG.
17222
17223         * pgg.el: Revert to revision 6.23.2.16.
17224
17225         * pgg-def.el: Revert to revision 6.6.2.14.
17226
17227         * pgg-gpg.el: Revert to revision 6.23.2.34.
17228
17229 2007-09-27  Teodor Zlatanov  <tzz@lifelogs.com>
17230
17231         * gnus-sum.el (gnus-summary-kill-thread): Allow universal prefix zero
17232         to mark a thread as expirable.  Add variable `hide' to handle hiding of
17233         thread for both the null and zero (kill/expire thread) universal prefix
17234         cases.
17235         (gnus-summary-expire-thread): Add new function to expire a thread,
17236         using gnus-summary-kill-thread.
17237         (gnus-summary-mode-map, gnus-summary-thread-map): Add 'M-C-e' and 'T e'
17238         shortcuts for gnus-summary-expire-thread.
17239         (gnus-summary-mode-map, gnus-summary-thread-map): Remove `M-C-e' and `T
17240         e' bindings for gnus-summary-expire-thread.  Add `T E' binding.
17241
17242 2007-09-25  Teodor Zlatanov  <tzz@lifelogs.com>
17243
17244         * gnus-registry.el (gnus-registry-store-extra-entry): Allow for nil
17245         extras value, so an extras entry can be deleted.
17246         (gnus-registry-delete-extra-entry): Use it.
17247         (gnus-registry-fetch-extra-flags, gnus-registry-has-extra-flag)
17248         (gnus-registry-store-extra-flags, gnus-registry-delete-extra-flags)
17249         (gnus-registry-delete-all-extra-flags): Allow for arbitrary flag symbol
17250         storage through the gnus-registry, and provide an appropriate API for
17251         it.
17252
17253 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
17254
17255         * gnus-sum.el (gnus-newsgroup-maximum-articles): Move from gnus.el.
17256         Suggested by Leo <sdl.web@gmail.com>.
17257
17258         * gnus.el: Do.
17259
17260 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
17261
17262         * gnus.el (gnus-newsgroup-maximum-articles): Rename from
17263         gnus-maximum-newsgroup.  Suggested by Leo <sdl.web@gmail.com>.
17264
17265         * gnus-agent.el (gnus-agent-fetch-headers): Do.
17266
17267         * gnus-sum.el (gnus-articles-to-read, gnus-list-of-unread-articles)
17268         (gnus-list-of-read-articles, gnus-sequence-of-unread-articles): Do.
17269
17270 2007-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
17271
17272         * nnmbox.el (nnmbox-request-article): Don't assume delim regexp matches
17273         newline.
17274         (nnmbox-request-accept-article): Don't change article in source buffer;
17275         narrow to header to use message-fetch-field rather than
17276         nnmail-fetch-field; use with-current-buffer instead of save-excursion.
17277         (nnmbox-request-replace-article): Quote lines that'll be misidentified
17278         as delimiters; make sure article ends with newline.
17279         (nnmbox-delete-mail): Correct last position of article to be deleted;
17280         ignore X-Gnus-Newsgroup header in article body.
17281         (nnmbox-save-mail): Quote lines looking like delimiters at the right
17282         positions; make sure article ends with newline.
17283
17284         * message.el (message-display-abbrev): Don't infloop when a user
17285         inserts SPC in the beginning of header.
17286
17287         * lpath.el: Don't bind define-ccl-program for non-Mule XEmacs; bind
17288         coding-system-for-read and coding-system-for-write for XEmacs having no
17289         file-coding feature.
17290
17291         * dgnushack.el: Bind or autoload define-ccl-program for XEmacs.
17292
17293 2007-09-12  Teodor Zlatanov  <tzz@lifelogs.com>
17294
17295         * gnus-registry.el (gnus-registry-unfollowed-groups): Add INBOX to the
17296         list of groups not followed by default.  Fix type to be regexp.
17297         (gnus-registry-grep-in-list): Fix inverted parameters to string-match.
17298
17299 2007-09-06  Tassilo Horn  <tassilo@member.fsf.org>
17300
17301         * hmac-def.el (define-hmac-function): Switch from old-style to
17302         new-style backquotes.
17303
17304         * md4.el (md4-make-step): Likewise.
17305
17306 2007-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
17307
17308         * gnus-start.el (gnus-gnus-to-newsrc-format): Use a unibyte buffer and
17309         raw-text coding system when saving .newsrc file, which may contain
17310         non-ASCII group names.
17311
17312 2007-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
17313
17314         * gnus-cus.el (gnus-score-extra): New widget.
17315         (gnus-score-extra-convert): New function.
17316         (gnus-score-customize): Use it for Extra.
17317
17318 2007-08-31  Daiki Ueno  <ueno@unixuser.org>
17319
17320         * mml2015.el (mml2015-extract-cleartext-signature): New function.
17321         (mml2015-mailcrypt-clear-verify): Use it.
17322         (mml2015-gpg-clear-verify): Use it.
17323         (mml2015-pgg-clear-verify): Use it.
17324         (mml2015-epg-clear-verify): Replace the current part with the output
17325         from GnuPG; don't extract the plaintext by itself.
17326
17327         * mm-uu.el (mm-uu-pgp-beginning-signature): Abolish.
17328         (mm-uu-pgp-signed-extract-1): Bind coding-system-for-read when calling
17329         mml2015-clear-verify-function; don't touch the armor headers or
17330         dash-escaped text here.
17331
17332 2007-08-24  Katsumi Yamaoka  <yamaoka@jpl.org>
17333
17334         * gnus-art.el (gnus-article-edit-part): Don't jump to nonexistent part.
17335         (gnus-mime-view-part-as-type-internal): Default to text/plain for text
17336         parts, or application/octet-stream as a last resort.
17337         (gnus-mime-view-part-as-type): Don't toggle display.
17338         (gnus-mime-view-part-as-charset): Don't turn off display before
17339         querying charset.
17340
17341         * mm-view.el (mm-inline-text-html-render-with-w3): Don't add XEmacs
17342         stuff to undisplayer function in Emacs.
17343         (mm-inline-text-html-render-with-w3m): Remove Emacs/W3 stuff.
17344
17345         * mml.el (mml-generate-mime-1): Prefer utf-8 when encoding
17346         text/calendar parts.
17347
17348 2007-08-23  Katsumi Yamaoka  <yamaoka@jpl.org>
17349
17350         * gnus-art.el (gnus-mime-display-single): Use utf-8 by default for
17351         decoding text/calendar parts.
17352
17353         * message.el (message-forward-make-body-mime): Always mark body as
17354         having no illegible text; remove signed-or-encrypted argument.
17355         (message-forward-make-body): Don't pass signed-or-encrypted arg to it.
17356
17357         * mml.el (mml-generate-mime): Make sure it uses multibyte temp buffer.
17358         (mml-generate-mime-1): Don't encode body if it is specified to be in
17359         raw form; don't make buffer be unibyte when inserting multibyte string.
17360
17361 2007-08-23  Stefan Monnier  <monnier@iro.umontreal.ca>
17362
17363         * sha1.el: Fix up comment style.
17364         (sha1-F0, sha1-F1, sha1-F2, sha1-F3, sha1-S1, sha1-S5, sha1-S30)
17365         (sha1-OP, sha1-add-to-H): Use new-style backquotes.
17366
17367         * hex-util.el: Fix up comment style.
17368         (hex-char-to-num, num-to-hex-char): Use new-style backquotes.
17369
17370         * gnus-salt.el: Use with-current-buffer.
17371         (gnus-pick-setup-message): Fix long-standing typo.
17372
17373 2007-08-17  Katsumi Yamaoka  <yamaoka@jpl.org>
17374
17375         * imap.el (imap-logout-timeout): New variable.
17376         (imap-logout, imap-logout-wait): New functions.
17377         (imap-kerberos4-open, imap-gssapi-open, imap-close): Use them.
17378
17379         * nnimap.el (nnimap-logout-timeout): New server variable.
17380         (nnimap-open-server, nnimap-close-server): Bind imap-logout-timeout to
17381         nnimap-logout-timeout.
17382
17383         * gnus-art.el (gnus-article-summary-command-nosave)
17384         (gnus-article-read-summary-keys): Don't use 3rd arg of pop-to-buffer.
17385
17386 2007-08-14  Katsumi Yamaoka  <yamaoka@jpl.org>
17387
17388         * gnus.el (gnus-maximum-newsgroup): New variable.
17389
17390         * gnus-agent.el (gnus-agent-fetch-headers): Limit the range of articles
17391         according to gnus-maximum-newsgroup.
17392
17393         * gnus-sum.el (gnus-articles-to-read, gnus-list-of-unread-articles)
17394         (gnus-list-of-read-articles, gnus-sequence-of-unread-articles):
17395         Limit the range of articles according to gnus-maximum-newsgroup.
17396
17397 2007-08-14  Tassilo Horn  <tassilo@member.fsf.org>
17398
17399         * gnus-art.el (gnus-sticky-article): Fix problems described in
17400         <b4mps1qitio.fsf@jpl.org> on ding.  Thanks to Katsumi.
17401         Don't perform gnus-configure-windows here; reuse existing sticky
17402         article buffer.
17403
17404         * gnus-sum.el (gnus-summary-display-article): Setup article buffer if
17405         it doesn't exist in gnus-article-mode.
17406
17407 2007-08-13  Katsumi Yamaoka  <yamaoka@jpl.org>
17408
17409         * gnus-agent.el (gnus-agent-decoded-group-names): New variable.
17410         (gnus-agent-decoded-group-name): New function.
17411         (gnus-agent-group-path, gnus-agent-group-pathname): Use it.
17412         (gnus-agent-expire-group-1): Use it; decode group name in messages.
17413
17414 2007-08-12  Tassilo Horn  <tassilo@member.fsf.org>
17415
17416         * gnus-sum.el (gnus-summary-article-map, gnus-summary-make-menu-bar):
17417         Add binding for gnus-sticky-article.
17418         (gnus-summary-exit): Don't kill sticky article buffers.
17419
17420         * gnus-art.el (gnus-sticky-article-mode): New mode to generate a sticky
17421         article buffer.
17422         (gnus-sticky-article, gnus-kill-sticky-article-buffer)
17423         (gnus-kill-sticky-article-buffers): New commands.
17424
17425 2007-08-10  Katsumi Yamaoka  <yamaoka@jpl.org>
17426
17427         * nntp.el (nntp-xref-number-is-evil): New server variable.
17428         (nntp-find-group-and-number): If it is non-nil, don't trust article
17429         numbers in the Xref header.
17430
17431 2007-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
17432
17433         * gnus-agent.el (gnus-agent-read-group): New function.
17434         (gnus-agent-flush-group, gnus-agent-expire-group)
17435         (gnus-agent-regenerate-group): Use it.
17436         (gnus-agent-expire-unagentized-dirs): Bind file-name-coding-system to
17437         nnmail-pathname-coding-system.
17438
17439 2007-08-06  Katsumi Yamaoka  <yamaoka@jpl.org>
17440
17441         * gnus-ems.el (gnus-x-splash): Bind inhibit-read-only to t.
17442
17443         * gnus-sum.el (gnus-summary-insert-articles): Mark inserted articles
17444         that are unread as unread, and also as selected so that information of
17445         marks having been changed by a user may be updated when exiting group.
17446
17447 2007-08-04  Reiner Steib  <Reiner.Steib@gmx.de>
17448
17449         * gnus-art.el (article-hide-headers): Bind inhibit-read-only to t.
17450
17451 2007-08-03  Katsumi Yamaoka  <yamaoka@jpl.org>
17452
17453         * gnus-art.el (gnus-mime-display-single): Pass part number that is
17454         calculated ignoring signature parts to gnus-treat-article.
17455
17456 2007-08-02  Katsumi Yamaoka  <yamaoka@jpl.org>
17457
17458         * gnus-art.el (gnus-mime-security-verify-or-decrypt): Don't narrow to
17459         a point here in order to keep the window start.
17460         (gnus-insert-mime-security-button): Make a button overlay without the
17461         front stickiness.
17462         (gnus-mime-display-security): Goto the end of a button.
17463
17464         * gnus-group.el (gnus-group-name-at-point): Fix regexps.
17465
17466 2007-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
17467
17468         * gnus-group.el (gnus-group-name-at-point): Rewrite; rename from
17469         group-name-at-point.
17470         (gnus-group-completing-read): New function that offers decoded
17471         non-ASCII group names for completion.
17472         (gnus-fetch-group, gnus-group-read-ephemeral-group)
17473         (gnus-group-jump-to-group, gnus-group-make-group-simple)
17474         (gnus-group-unsubscribe-group, gnus-group-fetch-charter)
17475         (gnus-group-fetch-control): Use it.
17476         (gnus-fetch-group): Use group-name-at-point for the initial value
17477         rather than the default value; use gnus-alive-p.
17478
17479         * gnus-msg.el (gnus-group-mail, gnus-group-news, gnus-group-post-news)
17480         (gnus-summary-mail-other-window, gnus-summary-news-other-window)
17481         (gnus-summary-post-news): Use gnus-group-completing-read.
17482
17483         * gnus-sum.el (gnus-select-newsgroup): Decode group name in error msg.
17484         (gnus-read-move-group-name): Decode group name for completion.
17485
17486 2007-07-31  Teodor Zlatanov  <tzz@lifelogs.com>
17487
17488         * gnus-srvr.el (gnus-server-close-all-servers): Close servers not only
17489         in gnus-inserted-opened-servers but also in gnus-server-alist (Katsumi
17490         Yamaoka slightly modified the code).
17491
17492 2007-07-24  Katsumi Yamaoka  <yamaoka@jpl.org>
17493
17494         * nnmail.el (nnmail-group-names-not-encoded-p): New variable.
17495         (nnmail-split-incoming): Bind it.
17496
17497         * nnml.el (nnml-group-name-charset): New function.
17498         (nnml-decoded-group-name): Use it; don't decode group name if
17499         nnmail-group-names-not-encoded-p is non-nil.
17500         (nnml-encoded-group-name): New function.
17501         (nnml-group-pathname): Inline nnml-decoded-group-name.
17502         (nnml-request-expire-articles): Decode group name in message.
17503         (nnml-request-delete-group): Ditto; bind file-name-coding-system to
17504         nnmail-pathname-coding-system.
17505         (nnml-save-mail, nnml-active-number): Work with decoded group names and
17506         not decoded ones according to nnmail-group-names-not-encoded-p.
17507         (nnml-generate-active-info): Use nnml-encoded-group-name.
17508
17509 2007-08-08  Glenn Morris  <rgm@gnu.org>
17510
17511         * gmm-utils.el, gnus-async.el, gnus-msg.el, gnus-score.el
17512         * gnus-util.el, imap.el, mailcap.el, nnimap.el: Replace `iff' in
17513         doc-strings and comments.
17514
17515 2007-07-25  Glenn Morris  <rgm@gnu.org>
17516
17517         * Relicense all FSF files to GPLv3 or later.
17518
17519 2007-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
17520
17521         * gnus-sum.el (gnus-summary-move-article):
17522         Make gnus-summary-respool-article work.
17523
17524 2007-07-21  Reiner Steib  <Reiner.Steib@gmx.de>
17525
17526         * mm-uu.el (mm-uu-type-alist): Refer to mm-uu-configure-list in doc
17527         string.
17528
17529 2007-07-20  Michaël Cadilhac  <michael@cadilhac.name>
17530
17531         * nnrss.el (nnrss-ignore-article-fields): New variable.  List of fields
17532         that should be ignored when comparing distant RSS articles with local
17533         ones.
17534         (nnrss-make-hash-index): New function.  Create a hash index according
17535         to the ignored fields.
17536         (nnrss-check-group): Use it.
17537
17538 2007-07-20  Katsumi Yamaoka  <yamaoka@jpl.org>
17539
17540         * gnus-agent.el (gnus-agent-group-pathname): Take notice of the method.
17541
17542         * gnus-art.el (article-decode-group-name): Decode Xref header too.
17543
17544         * gnus-group.el (gnus-group-make-group): Encode group name here unless
17545         the new optional argument ENCODED is non-nil.
17546         (gnus-group-make-doc-group): Use gnus-group-name-charset to determine
17547         coding system for encoding group name.
17548         (gnus-group-make-rss-group): Pass un-encoded group name to
17549         gnus-group-make-group.
17550         (gnus-group-set-info): Tell gnus-group-make-group that group name is
17551         encoded.
17552
17553         * gnus-sum.el (gnus-summary-move-article, gnus-read-move-group-name):
17554         Encode group name to which articles are moved or copied.
17555         (gnus-summary-edit-article): Use gnus-group-name-charset to determine
17556         coding system for encoding Newsgroup, Followup-To and Xref headers.
17557
17558         * nnagent.el (nnagent-request-set-mark): Use unibyte buffer to compose
17559         marks; use nnheader-file-coding-system to write a file.
17560         (nnagent-retrieve-headers): Bind file-name-coding-system to
17561         nnmail-pathname-coding-system.
17562
17563         * nnmail.el (nnmail-insert-xref): Don't break non-ASCII group name.
17564
17565         * nnml.el (nnml-decoded-group-name, nnml-group-pathname): New functions.
17566         (nnml-request-article, nnml-request-create-group)
17567         (nnml-request-rename-group, nnml-find-id)
17568         (nnml-possibly-change-directory, nnml-possibly-create-directory)
17569         (nnml-save-mail, nnml-active-number, nnml-marks-changed-p)
17570         (nnml-save-marks): Use nnml-group-pathname instead of
17571         nnmail-group-pathname.
17572
17573         (nnml-request-create-group, nnml-request-expire-articles)
17574         (nnml-request-move-article, nnml-request-delete-group)
17575         (nnml-deletable-article-p, nnml-possibly-create-directory)
17576         (nnml-get-nov-buffer, nnml-generate-nov-databases-directory)
17577         (nnml-open-marks): Bind file-name-coding-system to
17578         nnmail-pathname-coding-system.
17579
17580         (nnml-request-article): Pass server argument to nnml-find-group-number.
17581         (nnml-request-create-group, nnml-active-number, nnml-save-marks):
17582         Pass server argument to nnml-possibly-create-directory.
17583         (nnml-request-accept-article): Pass server argument to
17584         nnml-active-number and nnml-save-mail.
17585         (nnml-find-group-number): Pass server argument to nnml-find-id.
17586         (nnml-request-update-info): Pass server argument to
17587         nnml-marks-changed-p.
17588
17589         (nnml-find-id, nnml-find-group-number, nnml-possibly-create-directory)
17590         (nnml-save-mail, nnml-active-number): Add server argument.
17591
17592         (nnml-request-delete-group): Warn if group is missing.
17593         (nnml-get-nov-buffer): Decode group name.
17594         (nnml-generate-active-info): Encode group name.
17595         (nnml-open-marks): Decode group name in messages.
17596
17597 2007-07-19  Katsumi Yamaoka  <yamaoka@jpl.org>
17598
17599         * gnus-art.el (gnus-article-part-wrapper): Work with the nearest part
17600         if it is not specified.
17601         (gnus-article-pipe-part, gnus-article-save-part)
17602         (gnus-article-interactively-view-part, gnus-article-copy-part)
17603         (gnus-article-view-part-as-charset, gnus-article-view-part-externally)
17604         (gnus-article-inline-part, gnus-article-save-part-and-strip)
17605         (gnus-article-replace-part, gnus-article-delete-part)
17606         (gnus-article-view-part-as-type): Pass raw prefix argument to
17607         gnus-article-part-wrapper.
17608
17609 2007-07-18  Katsumi Yamaoka  <yamaoka@jpl.org>
17610
17611         * gnus-agent.el (gnus-agent-save-active):
17612         Bind nnheader-file-coding-system to gnus-agent-file-coding-system.
17613
17614         * gnus-cache.el (gnus-cache-save-buffers)
17615         (gnus-cache-possibly-enter-article, gnus-cache-request-article)
17616         (gnus-cache-retrieve-headers, gnus-cache-change-buffer)
17617         (gnus-cache-possibly-remove-article, gnus-cache-articles-in-group)
17618         (gnus-cache-braid-nov, gnus-cache-braid-heads)
17619         (gnus-cache-generate-active, gnus-cache-rename-group)
17620         (gnus-cache-delete-group, gnus-cache-update-file-total-fetched-for)
17621         (gnus-cache-update-overview-total-fetched-for):
17622         Bind file-name-coding-system to nnmail-pathname-coding-system.
17623         (gnus-cache-decoded-group-names, gnus-cache-unified-group-names):
17624         New variables.
17625         (gnus-cache-decoded-group-name): New function.
17626         (gnus-cache-file-name): Use it.
17627         (gnus-cache-generate-active): Use non-decoded group name for active.
17628
17629         * gnus-util.el (gnus-write-buffer): Bind file-name-coding-system at the
17630         right place.
17631         (gnus-write-active-file): Don't break non-ASCII group names.
17632
17633         * nntp.el (nntp-marks-changed-p): Bind file-name-coding-system to
17634         nnmail-pathname-coding-system.
17635
17636         * lpath.el: Bind default-file-name-coding-system,
17637         file-name-coding-system and language-info-alist for XEmacs.
17638
17639         * gnus-uu.el (gnus-uu-decode-save): Typo.
17640
17641 2007-07-16  Katsumi Yamaoka  <yamaoka@jpl.org>
17642
17643         * gnus-srvr.el (gnus-server-font-lock-keywords): Quote faces.
17644
17645 2007-07-14  David Kastrup  <dak@gnu.org>
17646
17647         * gnus-art.el (gnus-mime-delete-part): Don't go through article-edit
17648         finishing actions if we did not edit the article.
17649
17650 2007-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
17651
17652         * gnus-agent.el (gnus-agent-rename-group, gnus-agent-delete-group)
17653         (gnus-agent-fetch-articles, gnus-agent-unfetch-articles)
17654         (gnus-agent-crosspost, gnus-agent-backup-overview-buffer)
17655         (gnus-agent-flush-group, gnus-agent-flush-cache)
17656         (gnus-agent-fetch-headers, gnus-agent-load-alist)
17657         (gnus-agent-read-agentview, gnus-agent-expire-group-1)
17658         (gnus-agent-retrieve-headers, gnus-agent-request-article)
17659         (gnus-agent-regenerate-group)
17660         (gnus-agent-update-files-total-fetched-for)
17661         (gnus-agent-update-view-total-fetched-for):
17662         Bind file-name-coding-system to nnmail-pathname-coding-system.
17663         (gnus-agent-group-pathname): Don't encode file names by
17664         nnmail-pathname-coding-system.
17665         (gnus-agent-save-local): Bind file-name-coding-system correctly; bind
17666         coding-system-for-write instead of buffer-file-coding-system to
17667         gnus-agent-file-coding-system.
17668
17669         * gnus-msg.el (gnus-inews-make-draft, gnus-inews-insert-archive-gcc):
17670         Decode group name.
17671
17672         * gnus-srvr.el (gnus-browse-foreign-server): Make group names unibyte.
17673
17674         * gnus-start.el (gnus-update-active-hashtb-from-killed)
17675         (gnus-read-newsrc-el-file): Make group names unibyte.
17676
17677         * nnmail.el (nnmail-group-pathname): Don't encode file names by
17678         nnmail-pathname-coding-system.
17679
17680         * nnrss.el (nnrss-file-coding-system): Doc fix; make it begin with *.
17681         (nnrss-request-delete-group): Bind file-name-coding-system to
17682         nnmail-pathname-coding-system.
17683         (nnrss-read-server-data, nnrss-read-group-data):
17684         Bind file-name-coding-system correctly.
17685         (nnrss-check-group): Pass nnrss-file-coding-system to md5.
17686
17687         * nntp.el: Require gnus-group for the function gnus-group-name-charset.
17688         (nntp-server-to-method-cache): New variable.
17689         (nntp-group-pathname): New function that decodes non-ASCII group names.
17690         (nntp-possibly-create-directory, nntp-marks-changed-p)
17691         (nntp-save-marks, nntp-open-marks): Use it.
17692         (nntp-possibly-create-directory, nntp-open-marks):
17693         Bind file-name-coding-system to nnmail-pathname-coding-system.
17694         (nntp-open-marks): Decode group names when bootstrapping marks.
17695
17696         * rfc2047.el (rfc2047-encode-message-header): Make XEmacs decode
17697         Newsgroups and Followup-To headers.
17698
17699 2007-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
17700
17701         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
17702         (gnus-server-closed-face, gnus-server-denied-face)
17703         (gnus-server-offline-face): Remove variable.
17704         (gnus-server-font-lock-keywords): Use faces that are not aliases.
17705
17706         * gnus-util.el (gnus-message-with-timestamp-1): Use log-message instead
17707         of modifying message-stack directly for XEmacs.
17708
17709         * mm-util.el (mm-decode-coding-string, mm-encode-coding-string)
17710         (mm-decode-coding-region, mm-encode-coding-region): Don't modify string
17711         if the coding-system argument is nil for XEmacs.
17712
17713         * nnrss.el (nnrss-compatible-encoding-alist): Inherit the value of
17714         mm-charset-override-alist.
17715
17716         * rfc2047.el: Don't require base64; require rfc2045 for the function
17717         rfc2045-encode-string.
17718         (rfc2047-encode-parameter): Use rfc2045-encode-string to quote or not
17719         to quote the parameter value.
17720
17721 2007-07-06  Katsumi Yamaoka  <yamaoka@jpl.org>
17722
17723         * gnus-group.el (gnus-group-name-charset): Allow a method of the short
17724         form in gnus-group-name-charset-method-alist.
17725
17726         * gnus-eform.el (gnus-edit-form): Add optional argument layout which
17727         overrides the default layout edit-form.
17728
17729         * gnus-win.el (gnus-buffer-configuration): Add edit-server.
17730
17731         * gnus-srvr.el (gnus-server-edit-server): Use edit-server layout.
17732
17733 2007-07-04  Katsumi Yamaoka  <yamaoka@jpl.org>
17734
17735         * gnus-sum.el (gnus-summary-catchup): Don't recognize cached articles
17736         as unfetched articles.
17737
17738 2007-07-02  Reiner Steib  <Reiner.Steib@gmx.de>
17739
17740         * gnus-start.el (gnus-level-unsubscribed): Improve doc string.
17741
17742 2007-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
17743
17744         * nnagent.el (nnagent-request-set-mark): Also set the marks for the
17745         original back end that keeps marks in the local system.
17746
17747 2007-06-26  Katsumi Yamaoka  <yamaoka@jpl.org>
17748
17749         * gnus-art.el (gnus-article-summary-command-nosave): Don't set the 3rd
17750         arg of pop-to-buffer for XEmacs.
17751         (gnus-article-read-summary-keys): Ditto; don't restore window
17752         configuration if summary command ends up with neither article buffer
17753         nor summary buffer; describe bindings if summary keys end with C-h.
17754
17755 2007-06-22  Katsumi Yamaoka  <yamaoka@jpl.org>
17756
17757         * message.el (message-fix-before-sending): Skip raw message part to be
17758         forwarded while checking illegible text.
17759         (message-forward-make-body-mime, message-forward-make-body):
17760         Mark signed or encrypted raw message as having no illegible text.
17761
17762 2007-06-19  Katsumi Yamaoka  <yamaoka@jpl.org>
17763
17764         * gnus-util.el (gnus-add-timestamp-to-message): New user option.
17765         (gnus-message-with-timestamp-1): New macro.
17766         (gnus-message-with-timestamp): New function.
17767         (gnus-message): Use them.
17768
17769         * nnheader.el (nnheader-message): Use them.
17770
17771 2007-06-16  Reiner Steib  <Reiner.Steib@gmx.de>
17772
17773         * gnus-start.el (gnus-gnus-to-quick-newsrc-format): Add newlines to
17774         .newsrc.eld file.
17775
17776 2007-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
17777
17778         * gnus-agent.el (gnus-agent-fetch-headers)
17779         (gnus-agent-retrieve-headers):
17780         Bind gnus-decode-encoded-address-function to identity.
17781
17782         * nntp.el (nntp-send-xover-command): Recognize an xover command is
17783         available also when the server returns simply a dot.
17784
17785         * gnus-ems.el (gnus-x-splash): Redisplay window before measuring it.
17786
17787 2007-06-08  Katsumi Yamaoka  <yamaoka@jpl.org>
17788
17789         * gnus-ems.el (gnus-x-splash): Fix calculation; error in tty.
17790
17791 2007-06-07  Katsumi Yamaoka  <yamaoka@jpl.org>
17792
17793         * gnus-ems.el (gnus-x-splash): Make it work.
17794
17795         * gnus-start.el (gnus-1): Relax restrictions that prevent gnus-x-splash
17796         from being used.
17797
17798         * lpath.el: Bind line-spacing and tool-bar-mode for XEmacs.
17799
17800 2007-06-05  Katsumi Yamaoka  <yamaoka@jpl.org>
17801
17802         * gnus-xmas.el (gnus-xmas-define): Make gnus-make-overlay ignore the
17803         4th and the 5th arguments.
17804
17805         * gnus-art.el (gnus-insert-mime-button): Make a button overlay without
17806         the front stickiness.
17807         (gnus-article-summary-command-nosave): Correct the order of the
17808         arguments passed to pop-to-buffer.
17809         (gnus-article-read-summary-keys): Ditto; make it work properly when the
17810         summary command ends up with the article buffer.
17811
17812         * mm-decode.el (mm-insert-part): Separate the extracted parts that have
17813         the same faces.
17814
17815 2007-06-07  Juanma Barranquero  <lekktu@gmail.com>
17816
17817         * gnus-art.el (gnus-split-methods): Fix typo in docstring.
17818
17819 2007-06-06  Juanma Barranquero  <lekktu@gmail.com>
17820
17821         * gnus-diary.el (gnus-diary-time-format, gnus-summary-sort-by-schedule):
17822         * gnus-sum.el (gnus-summary-highlight):
17823         * pgg.el (pgg-sign-region, pgg-sign):
17824         * mail-source.el (mail-source-delete-old-incoming-confirm):
17825         * nndiary.el (nndiary-reminders): Fix typos in docstrings.
17826
17827 2007-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
17828
17829         * gnus-art.el (gnus-mime-view-part-externally)
17830         (gnus-mime-view-part-internally): Fix predicate function passed to
17831         completing-read.
17832
17833         * mm-decode.el (mm-image-fit-p): Return t if argument is not an image.
17834
17835         * gnus.el (gnus-update-message-archive-method): Add :version.
17836
17837 2007-06-01  Katsumi Yamaoka  <yamaoka@jpl.org>
17838
17839         * gnus.el (gnus-update-message-archive-method): New variable.
17840
17841         * gnus-start.el (gnus-setup-news): Update saved "archive" method
17842         according to gnus-message-archive-method if
17843         gnus-update-message-archive-method is non-nil.
17844
17845 2007-05-29  Katsumi Yamaoka  <yamaoka@jpl.org>
17846
17847         * gnus-sum.el (gnus-summary-limit-to-address): New function.
17848         Suggested by Loic Dachary <loic@dachary.org>.
17849         (gnus-summary-limit-map, gnus-summary-make-menu-bar): Add it.
17850
17851 2007-05-28  Katsumi Yamaoka  <yamaoka@jpl.org>
17852
17853         * message.el (message-pop-to-buffer): Add switch-function argument.
17854         (message-mail): Pass switch-function argument to it.
17855
17856 2007-05-25  Reiner Steib  <Reiner.Steib@gmx.de>
17857
17858         * mm-decode.el (mm-file-name-rewrite-functions): Make it customizable.
17859         Improve doc string.
17860
17861 2007-05-25  Katsumi Yamaoka  <yamaoka@jpl.org>
17862
17863         * gnus-art.el (gnus-header-from, gnus-header-subject, gnus-header-name)
17864         (gnus-header-content):
17865         * gnus-cite.el (gnus-cite-10):
17866         * gnus-srvr.el (gnus-server-closed):
17867         * gnus.el (gnus-group-mail-1, gnus-group-mail-1-empty)
17868         (gnus-group-mail-2, gnus-group-mail-2-empty, gnus-group-mail-3)
17869         (gnus-group-mail-3-empty, gnus-group-mail-low)
17870         (gnus-group-mail-low-empty, gnus-splash):
17871         * message.el (message-header-to, message-header-cc)
17872         (message-header-subject, message-header-other, message-header-name)
17873         (message-header-xheader, message-separator, message-cited-text)
17874         (message-mml): Lighten colors of faces used for dark background.
17875
17876 2007-05-24  Simon Josefsson  <simon@josefsson.org>
17877
17878         * nnimap.el (nnimap-need-unselect-to-notice-new-mail): Change default
17879         to t as an experiment.  Suggested by Greg Troxel <gdt@work.lexort.com>.
17880
17881 2007-05-24  Katsumi Yamaoka  <yamaoka@jpl.org>
17882
17883         * message.el (message-narrow-to-headers-or-head):
17884         Ignore mail-header-separator in the body.
17885
17886 2007-05-23  Katsumi Yamaoka  <yamaoka@jpl.org>
17887
17888         * mm-decode.el (mm-image-fit-p): Return t if image size is just the
17889         same as window size.
17890
17891 2007-05-22  Kevin Ryde  <user42@zip.com.au>
17892
17893         * message.el (message-font-lock-keywords): Use message-header-xheader
17894         face for "X-Foo", its apparent intended purpose.  Move "X-" pattern
17895         ahead of the anything pattern, to get it recognized.
17896
17897 2007-05-22  Katsumi Yamaoka  <yamaoka@jpl.org>
17898
17899         * dgnushack.el: Autoload ad-add-advice for XEmacs.  bbdb-com.el that
17900         spam.el loads uses it in the compiled defadvice form.
17901
17902 2007-05-12  Michaël Cadilhac  <michael@cadilhac.name>
17903
17904         * gnus-sum.el (gnus-articles-to-read)
17905         (gnus-summary-insert-old-articles): Don't truncate group name for
17906         `read-string'.
17907
17908         * gnus-util.el (gnus-limit-string): Delete this function.
17909
17910         * gnus-sum.el (gnus-simplify-subject-fully):
17911         Use `truncate-string-to-width' instead.
17912
17913 2007-05-11  Michaël Cadilhac  <michael@cadilhac.name>
17914
17915         * gnus-sum.el (gnus-summary-next-group-on-exit): New variable.
17916         Tell if, on summary exit, the next group has to be selected.
17917         (gnus-summary-exit): Use it.
17918
17919 2007-05-10  Reiner Steib  <Reiner.Steib@gmx.de>
17920
17921         * gnus-art.el (gnus-article-mode): Fix comment about displaying
17922         non-break space.
17923
17924 2007-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>
17925
17926         * nnfolder.el (nnfolder-request-group, nnfolder-request-create-group):
17927         Check if group is not a directory.
17928         (nnfolder-request-expire-articles): Don't delete articles if the target
17929         group is not available.
17930
17931         * nnml.el (nnml-request-create-group): Properly check if group is not a
17932         file.
17933         (nnml-request-expire-articles): Don't delete articles if the target
17934         group is not available.
17935
17936         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
17937         Don't quote characters that are within parentheses.
17938
17939 2007-05-09  Katsumi Yamaoka  <yamaoka@jpl.org>
17940
17941         * gnus-sum.el (gnus-auto-select-on-ephemeral-exit): New variable.
17942         (gnus-handle-ephemeral-exit): Select article according to it.
17943
17944 2007-05-08  Reiner Steib  <Reiner.Steib@gmx.de>
17945
17946         * message.el (message-insert-formated-citation-line): Remove newline.
17947         (message-citation-line-format): Add final \n here so that the user can
17948         avoid a blank line.
17949
17950 2007-05-03  Dan Christensen  <jdc@uwo.ca>
17951
17952         * nndoc.el (nndoc-type-alist, nndoc-lanl-gov-announce-type-p)
17953         (nndoc-transform-lanl-gov-announce, nndoc-generate-lanl-gov-head):
17954         Update lanl/arXiv support.
17955
17956 2007-05-02  Reiner Steib  <Reiner.Steib@gmx.de>
17957
17958         * gnus.el: Bump version number.
17959
17960 2007-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17961
17962         * gnus.el (gnus-version-number): Bump version.
17963
17964 2007-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
17965
17966         * gnus.el: No Gnus v0.6 is released.
17967
17968 2007-04-27  Didier Verna  <didier@xemacs.org>
17969
17970         * gnus-util.el (gnus-orify-regexp): Move and rename to ...
17971         * gmm-utils.el (gmm-regexp-concat): ... here.
17972         * message.el: Don't require 'gnus-util.
17973         (message-dont-reply-to-names): Handle name change above.
17974         * gnus-sum.el (gnus-ignored-from-addresses): Ditto.
17975
17976 2007-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
17977
17978         * mm-util.el (mm-charset-synonym-alist): Don't make it a user option
17979         since the initial value varies according to the system.
17980
17981 2007-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
17982
17983         * mm-util.el (mm-charset-synonym-alist): Defcustom.
17984
17985 2007-04-25  NAKAJI Hiroyuki  <nakaji@jp.freebsd.org>  (tiny change)
17986
17987         * mm-util.el (mm-charset-synonym-alist): Map iso8859-1 to iso-8859-1.
17988
17989 2007-04-24  Didier Verna  <didier@xemacs.org>
17990
17991         Improve the type of gnus-ignored-from-addresses.
17992         * gnus-util.el (gnus-orify-regexp): New function.
17993         * message.el (gnus-util): Require it.
17994         * message.el (message-dont-reply-to-names): Use gnus-orify-regexp.
17995         * gnus-sum.el (gnus-ignored-from-addresses): New function.
17996         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Use it.
17997
17998 2007-04-24  Didier Verna  <didier@xemacs.org>
17999
18000         * gnus-sum.el:
18001         * gnus-utils.el: Fix some trailing whitespaces.
18002
18003 2007-04-23  Katsumi Yamaoka  <yamaoka@jpl.org>
18004
18005         * gnus-msg.el (gnus-summary-resend-message-edit): Add Gcc header.
18006         (gnus-summary-resend-bounced-mail): Ditto; search whole body for parent
18007         article's Message-ID; refer parent article in summary buffer.
18008
18009         * message.el (message-bounce): Call mime-to-mml.
18010
18011         * dgnushack.el (byte-optimize-form-code-walker): Fix the form which was
18012         not helpful to Emacs 21.1 and 21.2 for detecting a bug that does not
18013         optimize and/or forms properly.
18014
18015 2007-04-22  Reiner Steib  <Reiner.Steib@gmx.de>
18016
18017         * dgnushack.el (with-syntax-table): XEmacs bug has been fixed.  Add
18018         URL.
18019
18020 2007-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
18021
18022         * gnus-msg.el (gnus-summary-supersede-article): Add Gcc header.
18023
18024 2007-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
18025
18026         * gnus-art.el (gnus-mime-strip-charset-parameters): New function.
18027         (gnus-mime-view-part-as-charset): Use it; redisplay subpart currently
18028         displayed of multipart/alternative part if it is invoked from summary
18029         buffer.
18030
18031         * mm-view.el (mm-inline-text-html-render-with-w3m)
18032         (mm-inline-text-html-render-with-w3m-standalone)
18033         (mm-inline-render-with-function): Use mail-parse-charset by default.
18034
18035 2007-04-18  Levin Du  <zslevin@gmail.com>  (tiny change)
18036
18037         * parse-time.el (parse-time-string-chars): Check if CHAR
18038         is less than the length of parse-time-syntax.
18039
18040 2007-04-17  Katsumi Yamaoka  <yamaoka@jpl.org>
18041
18042         * gnus-uu.el (gnus-uu-digest-mail-forward): Pull articles processed
18043         from gnus-newsgroup-processable.
18044
18045 2007-04-16  Didier Verna  <didier@xemacs.org>
18046
18047         * gnus-msg.el (gnus-configure-posting-styles):
18048         Handle message-signature-directory properly with :file syntax.
18049         Reported by "Leo".
18050
18051 2007-04-11  Didier Verna  <didier@xemacs.org>
18052
18053         New user option: message-signature-directory.
18054         * gnus-msg.el (gnus-configure-posting-styles): Support it.
18055         * message.el (message-insert-signature): Ditto.
18056         * message.el (message-signature-file): Doc update.
18057         * message.el (message-signature-directory): New.
18058
18059 2007-04-10  Katsumi Yamaoka  <yamaoka@jpl.org>
18060
18061         * gnus-msg.el (gnus-inews-yank-articles):
18062         Use message-exchange-point-and-mark instead of exchange-point-and-mark.
18063
18064 2007-04-09  Katsumi Yamaoka  <yamaoka@jpl.org>
18065
18066         * message.el (message-yank-original): Make sure cited text ends with
18067         newline; don't exchange point and mark.
18068
18069 2007-04-07  Chong Yidong  <cyd@stupidchicken.com>
18070
18071         * tls.el (open-tls-stream): Properly handle case where there
18072         is no associated buffer.
18073
18074 2007-04-03  Thien-Thi Nguyen  <ttn@gnu.org>
18075
18076         * gnus-msg.el (gnus-inews-yank-articles): Fix bug: After
18077         message-yank-original, make sure (< mark TEXT point).
18078
18079 2007-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
18080
18081         * message.el (message-fill-column): New variable.
18082         (message-mode): Use it.  Add comment on a possible new hook.
18083
18084         * nnmail.el (nnmail-spool-file): Mark as obsolete.
18085         (nnmail-get-new-mail): Reformat.
18086
18087         * gnus-registry.el (gnus-registry-cache-save): Add FIXME comment.
18088
18089         * gmm-utils.el: Fix Commentary.
18090         (gmm-tool-bar-from-list): Fix typo in doc string.
18091
18092 2007-03-27  Thien-Thi Nguyen  <ttn@gnu.org>
18093
18094         * message.el (message-yank-original): Don't switch point and mark
18095         unnecessarily to put point and mark as documented.
18096
18097 2007-03-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18098
18099         * message.el (message-put-addresses-in-ecomplete): Only fetch headers
18100         from the message heads.
18101
18102 2007-03-25  Kevin Greiner  <kevin.greiner@compsol.cc>
18103
18104         * gnus-art.el (gnus-article-set-window-start): Do nothing when the
18105         article buffer does not have a window.  This may not be the best
18106         solution but is certainly better than setting the start of the null,
18107         that is the current, window.
18108
18109 2007-03-24  Reiner Steib  <Reiner.Steib@gmx.de>
18110
18111         * gnus-draft.el (gnus-draft-setup-hook): New hook.
18112         (gnus-draft-setup): Run it.
18113
18114         * gnus-score.el (gnus-inhibit-slow-scoring): New variable, renamed from
18115         gnus-score-fast-scoring.  Allow regexp.
18116         (gnus-score-headers): Use it.
18117
18118         * gnus-util.el (gnus-emacs-version): Include "no MULE" in no-MULE
18119         XEmacs.
18120
18121         * gnus-art.el (gnus-article-browse-html-article): Fix typo in doc
18122         string.
18123         (gnus-button-alist): Also catch `<f1> k ...'.
18124         (gnus-treat-display-x-face): Fix doc string.
18125
18126 2007-03-25  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18127
18128         * gnus-msg.el (gnus-setup-message, gnus-inews-add-send-actions): Move
18129         evaluation of gnus-extended-version to ensure correct generation of the
18130         User-Agent header when message-generate-headers-first is used.
18131
18132 2007-03-24  Simon Josefsson  <simon@josefsson.org>
18133
18134         * hashcash.el (hashcash-generate-payment-async): Don't crash if
18135         hashcash-path is nil.  Don't call callback with incorrect number of
18136         parameters if val is 0.
18137
18138 2007-03-20  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18139
18140         * message.el (message-required-news-headers):
18141         * gnus-util.el (gnus-intern-safe): Fix typo in docstring.
18142
18143 2007-03-18  Thien-Thi Nguyen  <ttn@gnu.org>
18144
18145         * tls.el (open-tls-stream): In handshake-waiting loop,
18146         don't wait more if there is output available to process.
18147
18148 2007-03-17  Thien-Thi Nguyen  <ttn@gnu.org>
18149
18150         * tls.el (tls-program): Doc fix.
18151
18152 2007-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
18153
18154         * message.el (message-generate-new-buffers): Change the meaning of the
18155         nil value; add `standard' to the choices; treat t as `unique'; improve
18156         doc string.
18157         (gnus-select-frame-set-input-focus): Autoload.
18158         (message-buffer-name): Search for the existing message buffer if
18159         message-generate-new-buffers is nil or `standard'; treat the value t of
18160         message-generate-new-buffers as `unique'.
18161         (message-pop-to-buffer): Raise the frame already displaying the message
18162         buffer; clear the echo area after querying.
18163         (message-setup): Pass the `continue' argument to compose-mail.
18164         (message-mail): Prefer `switch-function' if it is given; search for the
18165         existing message buffer if the `continue' argument is non-nil; pass
18166         continue and switch-function arguments to compose-mail by way of
18167         message-setup.
18168         (message-mail-other-window): Adjust argument of message-setup.
18169         (message-mail-other-frame): Ditto.
18170
18171 2007-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>
18172
18173         * gnus-cite.el (font-lock-set-defaults): Autoload it for Emacs.
18174         (gnus-message-citation-mode): Require font-lock for XEmacs; make sure
18175         to turn font-lock on when turning gnus-message-citation-mode on.
18176
18177 2007-03-06  Daiki Ueno  <ueno@unixuser.org>
18178
18179         * mml-smime.el (mml-smime-use): New variable; default to use openssl.
18180         (mml-smime-function-alist): New variable; add epg as the backend.
18181         * mml-sec.el (mml-smime-sign): Don't require mml-smime, autoload
18182         mml-smime- functions instead.
18183         * mm-view.el: Require smime.
18184
18185 2007-03-05  Didier Verna  <didier@xemacs.org>
18186
18187         * gnus-topic.el (gnus-topic-hierarchical-parameters): Perform merging
18188         instead of just inheritance for posting styles.
18189         * gnus.el (gnus-group-fast-parameter): Fix typo in comment.
18190
18191 2007-02-24  Chris Moore  <dooglus@gmail.com>
18192
18193         * pgg-pgp5.el (pgg-pgp5-encrypt-region):
18194         * pgg-pgp.el (pgg-pgp-encrypt-region):
18195         * pgg-gpg.el (pgg-gpg-encrypt-region):
18196         Check pgg-encrypt-for-me if no other recipients.
18197
18198 2007-02-24  John Paul Wallington  <jpw@pobox.com>
18199
18200         * tls.el (tls-certtool-program): Fix custom type.
18201
18202 2007-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
18203
18204         * gnus-cite.el (gnus-message-search-citation-line): Use point-at-bol
18205         and point-at-eol instead of line-(beginning|end)-position.
18206
18207         * assistant.el (assistant-parse-buffer): Ditto.
18208
18209         * netrc.el (netrc-parse-services): Ditto.
18210
18211 2007-02-28  Daiki Ueno  <ueno@unixuser.org>
18212
18213         * mml2015.el (mml2015-epg-find-usable-key): New function.
18214         (mml2015-epg-sign): Use it.
18215         (mml2015-epg-encrypt): Use it.
18216
18217 2007-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
18218
18219         * message.el (message-make-in-reply-to): Quote name containing
18220         non-ASCII characters.  It will make the RFC2047 encoder cause an error
18221         if there are special characters.  Reported by NAKAJI Hiroyuki
18222         <nakaji@jp.freebsd.org>.
18223
18224 2007-02-27  Didier Verna  <didier@xemacs.org>
18225
18226         Include the group parameters as well as the topic ones in the
18227         inheritance filter process.
18228         * gnus-topic.el (gnus-topic-hierarchical-parameters): New optional
18229         argument GROUP-PARAMS-LIST.
18230         * gnus-topic.el (gnus-group-topic-parameters): Use it.
18231
18232 2007-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
18233
18234         * nntp.el (nntp-never-echoes-commands)
18235         (nntp-open-connection-functions-never-echo-commands): New variables.
18236         (nntp-send-command): Use them.
18237
18238 2007-02-20  Daiki Ueno  <ueno@unixuser.org>
18239
18240         * mml2015.el (mml2015-epg-verify): Simplify.
18241
18242 2007-02-19  Katsumi Yamaoka  <yamaoka@jpl.org>
18243
18244         * mml.el (mml-content-disposition-alist): New user option.
18245         (mml-content-disposition): New function.
18246         (mml-insert-mime-headers, mml-minibuffer-read-disposition): Use it.
18247         (mml-attach-file, mml-dnd-attach-file): Pass file name to it.
18248
18249 2007-02-19  Daiki Ueno  <ueno@unixuser.org>
18250
18251         * mml2015.el (mml2015-epg-verify): Convert LF to CRLF before signature
18252         verification.
18253
18254 2007-02-15  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18255
18256         * nnweb.el (nnweb-google-parse-1): Fix date parsing to also match on
18257         articles posted in the last 24 hours.
18258
18259 2007-02-14  Chong Yidong  <cyd@stupidchicken.com>
18260
18261         * smiley.el (smiley-regexp-alist): Add "dead" smiley.
18262
18263 2007-02-14  Michaël Cadilhac  <michael@cadilhac.name>
18264
18265         * nntp.el (nntp-send-command): Don't wait for echoes when
18266         nntp-open-ssl-stream is used.
18267
18268 2007-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
18269
18270         * gnus-cite.el (gnus-test-font-lock-add-keywords)
18271         (gnus-message-add-citation-keywords)
18272         (gnus-message-remove-citation-keywords): Remove.
18273         (gnus-message-citation-mode): Instead of modifying font-lock-keywords
18274         directly, make the variables in font-lock-defaults buffer-local, add
18275         gnus-message-citation-keywords to them and then update the value of
18276         font-lock-keywords.
18277
18278 2007-02-09  Katsumi Yamaoka  <yamaoka@jpl.org>
18279
18280         * message.el (message-cite-original-1): Don't call
18281         gnus-article-highlight-citation.
18282
18283         * gnus-cite.el (gnus-cite-parse): Work with two or more MS-type
18284         citations; fix line count.
18285
18286 2007-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
18287
18288         * gnus-cite.el (gnus-test-font-lock-add-keywords): New function.
18289         (gnus-message-add-citation-keywords)
18290         (gnus-message-remove-citation-keywords): Use it; fix the emulating
18291         versions of font-lock-add-keywords and font-lock-remove-keywords to
18292         work with XEmacs correctly.
18293
18294 2007-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
18295
18296         * gnus-cite.el (gnus-cite-face-list): Set the values of
18297         gnus-message-max-citation-depth and gnus-message-citation-keywords.
18298         (gnus-message-max-citation-depth): Use defvar rather than defconst.
18299         (gnus-message-cite-prefix-regexp): New variable.
18300         (gnus-message-search-citation-line): Use it; protect against long
18301         citation prefix; fill match data with nil rather than 0 for XEmacs; set
18302         the 0th match data for Emacs.
18303         (gnus-message-citation-keywords): Set LAXMATCH flag in every HIGHLIGHT.
18304         (gnus-message-add-citation-keywords): Append keywords rather than
18305         prepending; emulate font-lock-add-keywords if it is not available.
18306         (gnus-message-remove-citation-keywords):
18307         Emulate font-lock-remove-keywords if it is not available.
18308
18309         * gnus-msg.el (gnus-message-highlight-citation): Default to t.
18310
18311         * message.el (message-cite-prefix-regexp): Set the value of
18312         gnus-message-cite-prefix-regexp.
18313
18314 2007-02-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18315
18316         * nnweb.el (nnweb-google-parse-1): Update parser.
18317
18318 2007-01-29  Juanma Barranquero  <lekktu@gmail.com>
18319
18320         * gnus-art.el (gnus-button-prefer-mid-or-mail): Fix typo in docstring.
18321
18322 2007-01-28  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18323
18324         * nnslashdot.el (nnslashdot-request-article): Update end-of-article
18325         regexp.
18326
18327 2007-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
18328
18329         * uudecode.el (uudecode-string-to-multibyte): New function emulating
18330         string-to-multibyte.
18331         (uudecode-decode-region-internal): Use it.
18332
18333         * lpath.el: Fbind string-as-multibyte for XEmacs.
18334
18335 2007-01-23  Reiner Steib  <Reiner.Steib@gmx.de>
18336
18337         * gnus-score.el (gnus-home-score-file, gnus-home-adapt-file):
18338         Fix custom choice.
18339
18340         * gnus-art.el (gnus-signature-limit): Fix custom choice.
18341
18342 2007-01-22  Daiki Ueno  <ueno@unixuser.org>
18343
18344         * mm-util.el (mm-inhibit-file-name-handlers): Add epa-file-handler.
18345
18346         * mm-decode.el (mm-save-part-to-file): Use `mm-write-region' instead of
18347         `write-region' to respect `mm-inhibit-file-name-handlers'.
18348
18349 2007-01-19  Reiner Steib  <Reiner.Steib@gmx.de>
18350
18351         * nnsoup.el (nnsoup-directory, nnsoup-packer, nnsoup-packet-directory):
18352         Use gnus-home-directory instead of "~/" or "$HOME".
18353
18354 2007-01-17  Teodor Zlatanov  <tzz@lifelogs.com>
18355
18356         * encrypt.el (encrypt-insert-file-contents): Add better prompt
18357         to mention filename.
18358         Add comments at beginning regarding usage.
18359         (encrypt-write-file-contents): Change interactive so a string is
18360         acceptable.  If the file has no associated model, show an error instead
18361         of a nonsense prompt.
18362
18363 2007-01-16  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
18364
18365         * spam.el (spam-bsfilter-ham-switch): Fix typo.
18366         Thanks to Yoshihiko Yamada for kind notification of this typo.
18367
18368 2007-01-12  Kenichi Handa  <handa@m17n.org>
18369
18370         * uudecode.el (uudecode-decode-region-internal): Make it work in a
18371         multibyte buffer.
18372
18373 2007-01-14  Reiner Steib  <Reiner.Steib@gmx.de>
18374
18375         * gnus-score.el (gnus-score-fast-scoring): New variable.
18376         (gnus-score-headers): Use it.
18377
18378         * gnus-sum.el (gnus-auto-select-first): Improve doc string.
18379
18380         * message.el (message-cite-original-1):
18381         Call gnus-article-highlight-citation if requested.
18382         (message-make-from): Allow name and address as optional arguments.
18383
18384         * gnus-cite.el (gnus-article-highlight-citation): Add SAME-BUFFER arg.
18385
18386         * gnus-art.el (gnus-article-browse-html-article): Add warning about web
18387         bugs to doc string.
18388         (gnus-button-alist): Add mid\\|message-id.
18389         (gnus-button-fetch-group): Extend for use in
18390         `browse-url-browser-function'.
18391         (gnus-button-url-regexp): Try to catch paired parentheses like in
18392         Wikipedia URLs.
18393
18394         * gnus-sum.el (gnus-summary-reparent-children): Another doc string fix.
18395         Suggested by Simon Krahnke <overlord@gmx.li>.
18396
18397 2007-01-13  Romain Francoise  <romain@orebokech.com>
18398
18399         * nnml.el (nnml-use-compressed-files): Fix typo in docstring.
18400         Update copyright.
18401
18402 2007-01-13  Patric Mueller  <bhaak@bigfoot.com>  (tiny change)
18403
18404         * gnus-sum.el (gnus-summary-reparent-children): Fix typo in doc string.
18405
18406 2007-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
18407
18408         * gnus-registry.el (gnus-registry-unfollowed-groups)
18409         (gnus-registry-split-fancy-with-parent): Fix documentation.
18410
18411 2007-01-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18412
18413         * spam-report.el (spam-report-gmane-internal): Speed up spam reporting
18414         from nnweb groups.
18415
18416 2006-12-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18417
18418         * spam-report.el (spam-report-gmane-internal): Add necessary "/" to
18419         Xref urls.  Erase buffer before requesting head.
18420
18421         * mm-decode.el (mm-display-external): Use itimer function for XEmacs.
18422
18423 2007-01-07  Reiner Steib  <Reiner.Steib@gmx.de>
18424
18425         * gnus-soup.el (gnus-soup): New custom group.  Make user variables
18426         customizable.
18427
18428 2007-01-05  Daiki Ueno  <ueno@unixuser.org>
18429
18430         * mml2015.el (mml2015-epg-sign): Ask user whether to skip or abort if
18431         no signing key is found.
18432         (mml2015-epg-encrypt): Ask user whether to skip or abort if
18433         no encrypting and/or signing key is found.
18434
18435 2007-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
18436
18437         * spam-report.el (spam-report-gmane-spam): Remove redundant message.
18438
18439 2007-01-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18440
18441         * nnweb.el (nnweb-gmane-create-mapping): Put back code to merge the
18442         headers read from disk with the ones newly found in the current search.
18443         This should no longer cause problems, because the article numbers in
18444         Gmane's `nov.php' output are ignored since the previous change.
18445
18446 2007-01-02  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18447
18448         * gmm-utils.el (gmm-tool-bar-style): Fix custom type.
18449
18450 2007-01-01  Katsumi Yamaoka  <yamaoka@jpl.org>
18451
18452         * lpath.el: Fbind clear-string and cp-supported-codepages; don't fbind
18453         replace-regexp-in-string; bind url-version; fbind display-images-p and
18454         timer-set-function for XEmacs; bind timer-list for XEmacs; fbind
18455         find-face and set-itimer-function for Emacs; bind itimer-list for
18456         Emacs.
18457
18458         * mm-decode.el (mm-display-external): Use itimer function for XEmacs.
18459
18460 2007-01-01  Romain Francoise  <romain@orebokech.com>
18461
18462         * gnus-sum.el (gnus-summary-make-menu-bar): Fix typo.
18463
18464 2006-12-31  Steve Youngs  <steve@sxemacs.org>
18465
18466         * gnus-cite.el: Load easy-mmode at compile time for (S)XEmacs to get
18467         `define-minor-mode' macro definition expanded properly.
18468         (gnus-message-citation-mode): This is now OK for (S)XEmacs so don't
18469         exclude it there.
18470
18471         * gnus-msg.el (gnus-message-highlight-citation): Revert Reiner's patch
18472         of 2006-12-30.  The default is nil on (S)XEmacs already because of the
18473         `fboundp' test.
18474         (gnus-message-citation-mode): Revert Reiner's patch of 2006-12-30.
18475         This is OK to autoload in (S)XEmacs now.
18476
18477 2006-12-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18478
18479         * gnus-sum.el (gnus-summary-limit-to-singletons): New command and
18480         keystroke.
18481         (gnus-summary-limit-to-singletons): Fix typo.
18482
18483         * spam-report.el (spam-report-gmane-internal): Fall back on Xref if all
18484         else fails.
18485
18486 2006-12-30  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18487
18488         * gnus-cite.el (turn-off-gnus-message-citation-mode): Fix typo in
18489         docstring.
18490
18491         * gnus-sum.el (gnus-summary-insert-ticked-articles): New command.
18492         (gnus-summary-make-menu-bar, gnus-summary-buffer-map): Bind it.
18493         (gnus-summary-insert-dormant-articles): Fix typo in message.
18494
18495 2006-12-30  Reiner Steib  <Reiner.Steib@gmx.de>
18496
18497         * gnus-msg.el (gnus-message-highlight-citation): Ensure default to be
18498         nil for XEmacs.
18499         (gnus-message-citation-mode): Don't autoload in XEmacs.
18500
18501         * gnus-cite.el (gnus-message-citation-mode): Don't define in XEmacs.
18502
18503 2006-12-29  Jouni K. Seppänen  <jks@iki.fi>
18504
18505         * nnimap.el (nnimap-expunge-search-string):
18506         Mention nnimap-search-uids-not-since-is-evil in docstring.
18507
18508 2006-12-28  Reiner Steib  <Reiner.Steib@gmx.de>
18509
18510         * spam.el: Revert to make-obsolete-variable because
18511         define-obsolete-variable-alias is not supported in Emacs 21.
18512
18513         * spam.el (spam-ifile-path, spam-ifile-database-path)
18514         (spam-bogofilter-path): Use define-obsolete-variable-alias instead of
18515         make-obsolete-variable.
18516         (spam-bsfilter-path, spam-bsfilter-program)
18517         (spam-spamassassin-path, spam-spamassassin-program)
18518         (spam-sa-learn-path, spam-sa-learn-program): Rename variables.
18519         Don't use "path" inappropriately.
18520         (spam-check-spamassassin, spam-spamassassin-register-with-sa-learn)
18521         (spam-check-bsfilter, spam-bsfilter-register-with-bsfilter): Use new
18522         variable names.
18523
18524 2006-12-28  Daiki Ueno  <ueno@unixuser.org>
18525
18526         * gnus-sum.el (gnus-summary-next-article): Make sure we are in the
18527         summary buffer.
18528
18529         * password.el (password-cache-remove): Use clear-string to burn
18530         password, if available.
18531
18532 2006-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
18533
18534         * gnus-msg.el (gnus-message-citation-mode): Fix autoload.
18535
18536         * gnus-cite.el (gnus-message-highlight-citation): Move to gnus-msg.el.
18537
18538         * gnus-msg.el (gnus-setup-message): Add gnus-message-citation-mode.
18539         (gnus-message-highlight-citation): Move defcustom here from
18540         gnus-cite.el.
18541         (gnus-message-citation-mode): Autoload.
18542
18543         * gnus-cite.el: Adjust Oliver's code to Gnus namespace.  Add some
18544         checks to make it compile with XEmacs.
18545         (gnus-message-citation-mode): New minor mode.
18546         (gnus-message-max-citation-depth, gnus-message-citation-keywords)
18547         (gnus-message-highlight-citation): New variables.
18548         (gnus-message-search-citation-line)
18549         (gnus-message-add-citation-keywords)
18550         (gnus-message-remove-citation-keywords)
18551         (turn-on-gnus-message-citation-mode)
18552         (turn-off-gnus-message-citation-mode): New functions.
18553
18554 2006-12-26  Oliver Scholz  <epameinondas@gmx.de>
18555
18556         * gnus-cite.el: Enable highlighting of different citation levels in
18557         message-mode.
18558
18559 2006-12-26  Reiner Steib  <Reiner.Steib@gmx.de>
18560
18561         * message.el (message-make-fqdn): Fix comment.
18562         (message-bogus-system-names): Add ".local".
18563
18564         * spam.el (spam-ifile-path, spam-ifile-program)
18565         (spam-ifile-database-path, spam-ifile-database)
18566         (spam-bogofilter-path, spam-bogofilter-program): Rename variables.
18567         Don't use "path" inappropriately.
18568         (spam-spamoracle-database, spam-get-ifile-database-parameter): Fix doc
18569         strings.
18570         (spam-check-ifile, spam-ifile-register-with-ifile)
18571         (spam-check-bogofilter, spam-bogofilter-register-with-bogofilter):
18572         Use new variable names.
18573
18574         * gnus-art.el (gnus-treat-display-x-face, gnus-treat-display-face)
18575         (gnus-treat-display-smileys): Simplify using
18576         gnus-image-type-available-p.
18577
18578         * gnus-ems.el (gnus-image-type-available-p): Use display-images-p if
18579         available.
18580
18581         * gnus-xmas.el (gnus-xmas-image-type-available-p):
18582         Use `display-images-p' if available.
18583
18584 2006-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
18585
18586         * nnrss.el (nnrss-fetch): Replace buffer's contents with the decoded
18587         one after turning on the buffer's multibyteness instead of decoding
18588         them directly in the unibyte buffer that causes unexpected conversion
18589         in Emacs 23 (unicode).
18590
18591 2006-12-21  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18592
18593         * message.el (message-generate-hashcash): Fix custom type.
18594
18595 2006-12-20  Reiner Steib  <Reiner.Steib@gmx.de>
18596
18597         * gnus-sum.el (gnus-summary-recenter): Remove debug messages.
18598
18599 2006-12-20  Reiner Steib  <Reiner.Steib@gmx.de>
18600
18601         * gnus-group.el (gnus-group-tool-bar-gnome): Exchange connect and
18602         disconnect icons.  Add help text.
18603
18604 2006-12-20  Teodor Zlatanov  <tzz@lifelogs.com>
18605
18606         * spam.el (spam-extra-header-to-number): CRM114 spam score is
18607         negated to be consistent with the others we handle.
18608
18609 2006-12-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18610
18611         * gnus-art.el (gnus-article-setup-buffer): Actually set the local
18612         version of gnus-summary-buffer to something, so that we can use two
18613         article buffers at the same time.
18614
18615 2006-12-18  Teodor Zlatanov  <tzz@lifelogs.com>
18616
18617         * spam.el (spam-necessary-extra-headers): Make spam-use-regex-headers
18618         trigger all the extra headers.
18619         (spam-extra-header-to-number): Don't require spam-use-crm114 for header
18620         sorting.
18621
18622 2006-12-14  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18623
18624         * nnweb.el (nnweb-gmane-create-mapping): Keep the mapping stable for
18625         solid groups.
18626
18627 2006-12-17  Chong Yidong  <cyd@stupidchicken.com>
18628
18629         * pgg-gpg.el (pgg-gpg-use-agent): Default to t.
18630
18631 2006-12-13  Reiner Steib  <Reiner.Steib@gmx.de>
18632
18633         * legacy-gnus-agent.el: Add Copyright notice.
18634
18635 2006-12-12  Chong Yidong  <cyd@stupidchicken.com>
18636
18637         * gnus-sum.el (gnus-make-thread-indent-array): Fix last change.
18638
18639 2006-12-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18640
18641         * nnweb.el (nnweb-gmane-search): Placeholder TOPDOC setting.
18642
18643         * gnus-sum.el (gnus-summary-recenter): Force setting the window start
18644         to make it work reliably in CVS Emacs.
18645         (gnus-summary-limit-strange-charsets-predicate)
18646         (gnus-summary-limit-to-predicate): New functions.
18647
18648 2006-12-08  Chong Yidong  <cyd@stupidchicken.com>
18649
18650         * gnus-sum.el (gnus-make-thread-indent-array): New optional arg
18651         specifying array size.
18652         (gnus-summary-insert-line, gnus-summary-prepare-threads): Regrow indent
18653         array if it is too small.
18654         (gnus-sort-threads-recursive): Rename from gnus-sort-thread-1.
18655         (gnus-sort-threads-loop): New function.
18656
18657 2006-12-06  Chris Moore  <dooglus@gmail.com>
18658
18659         * gnus-sum.el (gnus-sort-threads, gnus-summary-limit-children):
18660         Use `max' to avoid the value of `max-lisp-eval-depth' decreasing.
18661
18662 2006-12-04  Jouni K. Seppänen  <jks@iki.fi>
18663
18664         * mm-url.el (mm-url-predefined-programs): Call curl with correct
18665         options.
18666
18667 2006-12-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18668
18669         * spam-report.el (spam-report-url-ping-plain): Wait for output to avoid
18670         DOS-ing the recipient.
18671
18672         * nnweb.el (nnweb-gmane-create-mapping): Use the article number from
18673         the headers when creating the mapping to avoid mismappings.
18674         (nnweb-gmane-create-mapping): Always nix out old mapping.
18675
18676 2006-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
18677
18678         * message.el (message-signed-or-encrypted-p): Bind mm-decrypt-option
18679         and mm-verify-option to never.
18680
18681 2006-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
18682
18683         * message.el (message-signed-or-encrypted-p): New function.
18684         (message-forward-make-body): Use it.
18685
18686         * mml2015.el (mml2015-pgg-clear-verify, mml2015-epg-clear-verify):
18687         Replace encode-coding-string with mm-encode-coding-string.
18688
18689 2006-11-29  Katsumi Yamaoka  <yamaoka@jpl.org>
18690
18691         * nneething.el (nneething-decode-file-name):
18692         Replace decode-coding-string with mm-decode-coding-string.
18693
18694         * gnus-int.el (gnus-open-server): Say failed server's name.
18695
18696 2006-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
18697
18698         * pgg-pgp.el (pgg-pgp-process-region): Change `args' from a list of
18699         strings to a single string.  Quote `errors-file-name'.
18700         (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region, pgg-pgp-sign-region)
18701         (pgg-pgp-verify-region, pgg-pgp-insert-key, pgg-pgp-snarf-keys-region):
18702         Adjust calls.  Use `shell-quote-argument'.
18703
18704 2006-11-24  Juanma Barranquero  <lekktu@gmail.com>
18705
18706         * gnus-agent.el (gnus-agent-expire-unagentized-dirs)
18707         (gnus-agent-regenerate-group): Fix space/tab mixup in messages.
18708
18709         * gnus-art.el (gnus-article-x-face-command, gnus-numeric-save-name):
18710         * gnus-group.el (gnus-group-sort-function, gnus-group-line-format)
18711         (gnus-group-mode, gnus-group-read-group, gnus-group-delete-group)
18712         (gnus-group-make-directory-group, gnus-group-transpose-groups):
18713         * gnus-start.el (gnus-options-subscribe, gnus-options-not-subscribe)
18714         (gnus-subscribe-newsgroup, gnus-1):
18715         * gnus-sum.el (gnus-summary-make-false-root, gnus-make-threads):
18716         * gnus.el (gnus-nntp-server, gnus-use-cross-reference)
18717         (gnus-valid-select-methods, total-expire, gnus-summary-line-format)
18718         (gnus-group-read-only-p): Fix space/tab mixup in docstrings.
18719
18720 2006-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18721
18722         * gnus-sum.el (gnus-summary-limit-to-headers): New command and
18723         keystroke.
18724         (gnus-summary-limit-to-bodies): Implement headersp.
18725
18726 2006-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18727
18728         * dns.el (query-dns): Protect against "Process dns deleted" strings.
18729
18730 2006-11-21  Katsumi Yamaoka  <yamaoka@jpl.org>
18731
18732         * mm-util.el (mm-string-to-multibyte): Alias to identity in XEmacs.
18733
18734 2006-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18735
18736         * message.el (message-generate-hashcash): Expand range of values to
18737         include `opportunistic'.
18738         (message-send-mail): Use it.
18739
18740 2006-11-18  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18741
18742         * mm-uu.el (mm-uu-pgp-signed-extract-1): Make last fix more thorough
18743         and comment it.
18744
18745         * nnslashdot.el (nnslashdot-retrieve-headers-1): Update regexp.
18746
18747 2006-11-15  Reiner Steib  <Reiner.Steib@gmx.de>
18748
18749         * gnus-util.el (gnus-extract-address-components): Improve comment.
18750
18751 2006-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
18752
18753         * gnus-util.el (gnus-extract-address-components): Work with address in
18754         which the name portion contains @.
18755
18756         * lpath.el: Fbind custom-autoload.
18757
18758 2006-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
18759
18760         * gnus.el (gnus-start): Move custom group up.
18761         (gnus-select-method): Don't autoload, but make it available for
18762         `customize-variable'.
18763         (gnus-getenv-nntpserver): Don't autoload.
18764
18765 2006-11-14  Teodor Zlatanov  <tzz@lifelogs.com>
18766
18767         * spam.el: Revert to 7.82 (removed changes since 2006-10-16).
18768
18769 2006-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
18770
18771         * message.el (message-sendmail-extra-arguments): New variable.
18772         (message-send-mail-with-sendmail): Use it.
18773
18774 2006-11-14  Katsumi Yamaoka  <yamaoka@jpl.org>
18775
18776         * mml.el (mml-generate-mime-1): Use mm-string-as-unibyte instead of
18777         mm-with-unibyte-current-buffer to make string unibyte.
18778
18779         * mm-decode.el (mm-insert-part): Use mm-string-to-multibyte instead of
18780         mm-string-as-multibyte.
18781
18782 2006-11-14  Daiki Ueno  <ueno@unixuser.org>
18783
18784         * mml2015.el (mml2015-epg-sign): Prefix "pgp-" to a micalg value.
18785         Reported by Werner Koch <wk@gnupg.org>.
18786
18787 2006-11-14  Daiki Ueno  <ueno@p360>
18788
18789         * mml2015.el: Autoload epa-select-keys when compiling.
18790
18791 2006-11-13  Daiki Ueno  <ueno@unixuser.org>
18792
18793         * mml2015.el (mml2015-epg-sign): Save the signing keys in
18794         message-options.
18795         (mml2015-epg-encrypt): Save the recipient keys in message-options.
18796
18797 2006-11-13  Daiki Ueno  <ueno@unixuser.org>
18798
18799         * mml2015.el (mml2015-epg-encrypt): Remove backward compatibility for
18800         EasyPG (< 0.0.6).
18801         (mml2015-always-trust): New user option.
18802         (mml2015-epg-passphrase-callback): Display key ID on the passphrase
18803         prompt.
18804
18805 2006-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
18806
18807         * nntp.el (nntp-authinfo-force): New variable.
18808         (nntp-send-authinfo): Use it.
18809
18810 2006-11-09  Reiner Steib  <Reiner.Steib@gmx.de>
18811
18812         * message.el (message-strip-subject-encoded-words): Allow _not_ to
18813         decode encoded words.  Improve prompt.  Add comment about forwarding.
18814         (message-replacement-char): Move up.
18815
18816 2006-11-08  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
18817
18818         * gnus-sum.el (gnus-summary-catchup): Use gnus-sorted-intersection
18819         instead of gnus-intersection because arguments of gnus-sorted-nunion
18820         must be sorted.  This avoids corruption of gnus-newsgroup-unreads.
18821
18822 2006-11-07  Reiner Steib  <Reiner.Steib@gmx.de>
18823
18824         * message.el (message-strip-subject-encoded-words): Reformat prompt.
18825         (message-simplify-subject-functions):
18826         Enable message-strip-subject-encoded-words by default.
18827
18828 2006-11-06  Reiner Steib  <Reiner.Steib@gmx.de>
18829
18830         * message.el (message-strip-subject-encoded-words): New function.
18831         (message-simplify-subject-functions): New variable.
18832         (message-simplify-subject): Use it.  Fix typo in doc string.
18833         Support message-strip-subject-encoded-words.
18834
18835 2006-11-03  Juanma Barranquero  <lekktu@gmail.com>
18836
18837         * gnus-diary.el (gnus-diary-delay-format-function):
18838         * nndiary.el (nndiary-reminders):
18839         * nnsoup.el (nnsoup-always-save): Use "non-nil" in docstrings.
18840
18841 2006-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
18842
18843         * gnus-art.el (article-hide-boring-headers): Fetch date from
18844         gnus-original-article-buffer to avoid problems with localized date
18845         strings.
18846
18847 2006-10-30  Katsumi Yamaoka  <yamaoka@jpl.org>
18848
18849         * html2text.el (html2text-format-tags): Avoid infloop on open tags.
18850
18851 2006-10-29  Reiner Steib  <Reiner.Steib@gmx.de>
18852
18853         * mm-util.el (mm-codepage-iso-8859-list, mm-codepage-ibm-list):
18854         New variables.
18855         (mm-setup-codepage-iso-8859, mm-setup-codepage-ibm): New functions.
18856         (mm-charset-synonym-alist): Move some entries to
18857         mm-codepage-iso-8859-list.
18858         (mm-charset-synonym-alist, mm-charset-override-alist):
18859         Add iso-8859-8/windows-1255 and iso-8859-9/windows-1254.
18860
18861 2006-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
18862
18863         * gnus-sum.el (gnus-set-mode-line): Quote % in group name.
18864
18865 2006-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
18866
18867         * gnus-agent.el (gnus-agent-make-mode-line-string): Make it compatible
18868         with Emacs 21 and XEmacs.
18869
18870 2006-10-27  Teodor Zlatanov  <tzz@lifelogs.com>
18871
18872         * spam.el (spam-parse-address): New function for better parsing,
18873         catching errors, etc.
18874         (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list): Use it.
18875
18876 2006-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
18877
18878         * mm-view.el: Add interactive arg to html2text autoload.
18879
18880 2006-10-25  Katsumi Yamaoka  <yamaoka@jpl.org>
18881
18882         * gnus-sum.el (gnus-summary-move-article): Use no-encode for `B B'.
18883
18884 2006-10-24  Reiner Steib  <Reiner.Steib@gmx.de>
18885
18886         * mm-util.el (mm-codepage-iso-8859-list, mm-codepage-ibm-list):
18887         New variables.
18888         (mm-setup-codepage-iso-8859, mm-setup-codepage-ibm): New functions.
18889         (mm-charset-synonym-alist): Move some entries to
18890         mm-codepage-iso-8859-list.
18891
18892         * gnus.el (gnus-getenv-nntpserver, gnus-select-method): Autoload.
18893
18894 2006-10-23  Reiner Steib  <Reiner.Steib@gmx.de>
18895
18896         * message.el (message-citation-line-format)
18897         (message-insert-formated-citation-line): Fix implementation of %E, %N
18898         and %n according to the doc string.
18899
18900 2006-10-20  Teodor Zlatanov  <tzz@lifelogs.com>
18901
18902         * spam.el (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list):
18903         Use car-safe to avoid bad parses.
18904
18905 2006-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
18906
18907         * gnus-group.el (gnus-group-make-doc-group): Work for non-ASCII group
18908         names.
18909
18910         * gnus-sum.el (gnus-select-newsgroup): Decode group name.
18911
18912 2006-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
18913
18914         * gnus-draft.el (gnus-draft-edit-message): Make sure to remove Date
18915         header.
18916
18917         * message.el (message-draft-headers): Add Date.
18918         (message-headers-to-generate): Fix typo in docstring.
18919
18920         * nndraft.el (nndraft-required-headers): New variable.
18921         (nndraft-generate-headers): Use it.
18922
18923         * gnus-registry.el (gnus-registry-wash-for-keywords): Bind `word'.
18924
18925 2006-10-16  Teodor Zlatanov  <tzz@lifelogs.com>
18926
18927         * gnus-registry.el (gnus-registry-wash-for-keywords)
18928         (gnus-registry-find-keywords): New functions to allow easy searching of
18929         articles that are in the registry.
18930
18931 2006-10-16  Teodor Zlatanov  <tzz@lifelogs.com>
18932
18933         * spam.el (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list):
18934         Use ietf-drums-parse-address instead of gnus-extract-address-components.
18935         Reported by Damien Elmes <damien@repose.cx>.
18936
18937 2006-10-19  Reiner Steib  <Reiner.Steib@gmx.de>
18938
18939         * gnus.el (gnus-mime): Remove unused custom group.
18940
18941 2006-10-13  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
18942
18943         * mm-uu.el (mm-uu-pgp-signed-extract-1): Use RFC 2440 definition of
18944         "blank line" when searching for end of armor headers.
18945
18946 2006-10-11  Katsumi Yamaoka  <yamaoka@jpl.org>
18947
18948         * gmm-utils.el (gmm-write-region): Fix variable name.
18949
18950 2006-10-10  Reiner Steib  <Reiner.Steib@gmx.de>
18951
18952         * gmm-utils.el (gmm-write-region): New function based on compatibility
18953         code from `mm-make-temp-file'.
18954
18955         * mm-util.el (mm-make-temp-file): Use `gmm-write-region'.
18956
18957         * nnmaildir.el (nnmaildir--update-nov)
18958         (nnmaildir-request-replace-article, nnmaildir-request-accept-article):
18959         Use `gmm-write-region'.
18960
18961 2006-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
18962
18963         * mm-util.el (mm-charset-synonym-alist, mm-charset-override-alist):
18964         Add iso-8859-8/windows-1255 and iso-8859-9/windows-1254.
18965
18966         * nnheader.el (nnheader-find-file-noselect): Inhibit version-control.
18967
18968         * message.el (message-replacement-char): New variable.
18969         (message-fix-before-sending): Use it.
18970         (message-simplify-subject): New function to remove duplicate code.
18971         (message-reply, message-followup): Use it.
18972
18973         * gnus-sum.el (gnus-summary-make-menu-bar):
18974         Clarify gnus-summary-limit-to-articles.
18975
18976 2006-10-03  Katsumi Yamaoka  <yamaoka@jpl.org>
18977
18978         * gnus-util.el (gnus-with-local-quit): New macro.
18979
18980         * gnus-demon.el (gnus-demon): Replace with-local-quit with it.
18981
18982 2006-10-02  Teodor Zlatanov  <tzz@lifelogs.com>
18983
18984         * gnus-util.el (gnus-string-remove-all-properties): Another fix to
18985         ignore non-string data.
18986
18987 2006-09-29  Teodor Zlatanov  <tzz@lifelogs.com>
18988
18989         * gnus-util.el (gnus-string-remove-all-properties): Fix to ignore
18990         non-string data (needs to be done in the registry too).
18991
18992 2006-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
18993
18994         * gnus-registry.el (gnus-registry-save, gnus-registry-cache-save)
18995         (gnus-registry-remove-alist-text-properties, gnus-registry-action)
18996         (gnus-registry-split-fancy-with-parent)
18997         (gnus-registry-fetch-simplified-message-subject-fast)
18998         (gnus-registry-fetch-sender-fast, gnus-registry-store-extra-entry):
18999         Remove text properties on ingress into the registry and when it's saved.
19000         (gnus-registry-clean-empty-function): Fix bug with cleaning the
19001         registry from entries with no groups.
19002
19003 2006-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
19004
19005         * gnus-util.el (gnus-string-remove-all-properties): Add utility
19006         function to remove string properties.
19007
19008 2006-09-28  Reiner Steib  <Reiner.Steib@gmx.de>
19009
19010         * gmm-utils.el (gmm): Adjust custom version.
19011
19012         * mm-util.el (mm-charset-override-alist, mm-charset-eval-alist):
19013         Adjust custom version.
19014
19015         * gnus-draft.el (gnus-draft-mode): Don't call `mml-mode'.
19016
19017 2006-09-27  Reiner Steib  <Reiner.Steib@gmx.de>
19018
19019         * gnus-art.el (gnus-insert-prev-page-button)
19020         (gnus-insert-next-page-button): Simplify.  Reformat.
19021
19022 2006-09-27  Maxime Edouard Robert Froumentin  <max@lapin-bleu.net>
19023
19024         * gnus-art.el (gnus-insert-prev-page-button)
19025         (gnus-insert-next-page-button): Apply gnus-article-button-face.
19026
19027 2006-09-25  Chong Yidong  <cyd@stupidchicken.com>
19028
19029         * gnus-demon.el (gnus-demon): Use with-local-quit to avoid hangs.
19030
19031 2006-09-20  Maxime Edouard Robert Froumentin  <max@lapin-bleu.net>
19032
19033         * gnus-art.el (gnus-insert-mime-button)
19034         (gnus-insert-mime-security-button):
19035         Apply gnus-article-button-face to MIME and security buttons.
19036
19037 2006-09-20  Reiner Steib  <Reiner.Steib@gmx.de>
19038
19039         * gnus-art.el (gnus-button-url-regexp): Try to make the value more
19040         readable.
19041
19042 2006-09-20  Katsumi Yamaoka  <yamaoka@jpl.org>
19043
19044         * dgnushack.el: Autoload browse-url-of-file for XEmacs.
19045
19046 2006-09-20  Steve Youngs  <steve@sxemacs.org>
19047
19048         * gnus-art.el (gnus-article-browse-html-parts): They're files, so use
19049         `browse-url-of-file' instead of `browse-url'.
19050
19051 2006-09-19  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
19052
19053         * nnslashdot.el (nnslashdot-request-article): Update end-of-article
19054         regexp.  Articles containing quotation were cut prematurely.
19055
19056 2006-09-16  Katsumi Yamaoka  <yamaoka@jpl.org>
19057
19058         * message.el (message-cite-original-1): Use nobody by default for the
19059         value of From header.
19060         (message-reply): Ditto.
19061
19062 2006-09-11  Daiki Ueno  <ueno@unixuser.org>
19063
19064         * mml2015.el (mml2015-epg-clear-decrypt): Don't append verify results
19065         to the gnus-info.  This fixes a bug of inline-PGP message verification.
19066         Reported by Michael Piotrowski <mxp@dynalabs.de>.
19067
19068 2006-09-09  Reiner Steib  <Reiner.Steib@gmx.de>
19069
19070         * pop3.el (pop3-leave-mail-on-server): Mention problem of duplicate
19071         mails in the doc string.  Add some URLs in comment.
19072         (pop3-movemail): Warn about pop3-leave-mail-on-server.
19073
19074 2006-09-07  Katsumi Yamaoka  <yamaoka@jpl.org>
19075
19076         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings): Fix
19077         backslashes handling and the way to find boundaries of quoted strings.
19078
19079 2006-09-07  Daiki Ueno  <ueno@unixuser.org>
19080
19081         * mml1991.el (mml1991-epg-encrypt): Simply throw an error if
19082         mml1991-encrypt-to-self is set and mml1991-signers is not set.
19083         * mml2015.el (mml2015-epg-encrypt): Simply throw an error if
19084         mml2015-encrypt-to-self is set and mml2015-signers is not set.
19085
19086 2006-09-06  Reiner Steib  <Reiner.Steib@gmx.de>
19087
19088         * gnus-art.el (gnus-button-marker-list): Move up.  Convert comment into
19089         doc string.
19090         (gnus-button-regexp, gnus-button-last): Remove unused variables.
19091
19092 2006-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
19093
19094         * lpath.el: Fbind epg-check-configuration.
19095
19096 2006-09-06  Simon Josefsson  <jas@extundo.com>
19097
19098         * mml2015.el (mml2015-use): Doc fix, mention epg.
19099
19100 2006-09-06  Daiki Ueno  <ueno@unixuser.org>
19101
19102         * mml2015.el (mml2015-use): Default to epg, if available.
19103
19104 2006-09-06  Daiki Ueno  <ueno@unixuser.org>
19105
19106         * mml1991.el (mml1991-epg-sign): Don't lookup a private key by
19107         message-sender.
19108         (mml1991-epg-encrypt): Ditto.
19109         * mml2015.el (mml2015-epg-sign): Don't lookup a private key by
19110         message-sender.
19111         (mml2015-epg-encrypt): Ditto.
19112
19113 2006-09-04  Chong Yidong  <cyd@stupidchicken.com>
19114
19115         * message.el (message-send-mail-with-sendmail): Look for sendmail in
19116         several common directories.
19117
19118 2006-09-05  Daiki Ueno  <ueno@unixuser.org>
19119
19120         * mml2015.el (mml2015-epg-encrypt): Expand group configuration.
19121         * mml1991.el (mml1991-epg-encrypt): Expand group configuration.
19122
19123 2006-09-04  Katsumi Yamaoka  <yamaoka@jpl.org>
19124
19125         * gnus-art.el (article-decode-encoded-words): Make it fast.
19126
19127 2006-09-04  Katsumi Yamaoka  <yamaoka@jpl.org>
19128
19129         * gnus-art.el (article-decode-encoded-words): Don't infloop in XEmacs.
19130
19131         * rfc2047.el (rfc2047-strip-backslashes-in-quoted-strings): Decode `\\'
19132         in quoted string into `\'.
19133
19134 2006-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
19135
19136         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
19137         Use standard-syntax-table.
19138
19139 2006-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
19140
19141         * gnus-art.el (gnus-decode-address-function): New variable.
19142         (article-decode-encoded-words): Use it to decode headers which are
19143         assumed to contain addresses.
19144         (gnus-mime-delete-part): Remove useless `or'.
19145
19146         * gnus-sum.el (gnus-decode-encoded-address-function): New variable.
19147         (gnus-summary-from-or-to-or-newsgroups): Use it to decode To header.
19148         (gnus-nov-parse-line): Use it to decode From header.
19149         (gnus-get-newsgroup-headers): Ditto.
19150         (gnus-summary-enter-digest-group): Use it to decode `to-address'.
19151
19152         * mail-parse.el (mail-decode-encoded-address-region): New alias.
19153         (mail-decode-encoded-address-string): New alias.
19154
19155         * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
19156         New function.
19157         (rfc2047-encode-message-header, rfc2047-encode-region): Use it.
19158         (rfc2047-strip-backslashes-in-quoted-strings): New fnction.
19159         (rfc2047-decode-region): Use it; add optional argument `address-mime'.
19160         (rfc2047-decode-string): Ditto.
19161         (rfc2047-decode-address-region): New function.
19162         (rfc2047-decode-address-string): New function.
19163
19164 2006-08-31  Reiner Steib  <Reiner.Steib@gmx.de>
19165
19166         * message.el (message-caesar-buffer-body): Allow rotating headers.
19167
19168         * gnus-sum.el (gnus-summary-caesar-message): Allow rotating headers.
19169
19170         * message.el (message-insert-formated-citation-line): Fix %f.
19171         Reported by Torsten Bronger <bronger@physik.rwth-aachen.de> .
19172
19173 2006-08-18  Katsumi Yamaoka  <yamaoka@jpl.org>
19174
19175         * gnus-bookmark.el (gnus-bookmark-file-coding-system): New variable.
19176         (gnus-bookmark-mouse-available-p): New macro.
19177         (gnus-bookmark-bmenu-list): Use it; use gnus-mouse-2.
19178         (gnus-bookmark-bmenu-show-infos): Use it.
19179         (gnus-bookmark-insert-details): Use it; use gnus-mouse-2.
19180         (gnus-bookmark-bmenu-hide-infos): Ditto.
19181         (gnus-bookmark-remove-properties): New function.
19182         (gnus-bookmark-set, gnus-bookmark-make-cell): Use it.
19183         (gnus-bookmark-set-bookmark-name): Don't use 2nd arg of split-string.
19184         (gnus-bookmark-write-file): Bind coding-system-for-write.
19185         (gnus-bookmark-insert-file-format-version-stamp): Add coding cookie.
19186         (gnus-bookmark-jump): Make completing-read work with XEmacs; activate
19187         group before selecting it.
19188         (gnus-bookmark-get-bookmark): Use assoc instead of assoc-string.
19189         (gnus-bookmark-bmenu-mode-map): Bind `q' to bury-buffer instead of
19190         quit-window if it is not available; use gnus-mouse-2 and bind it to
19191         gnus-bookmark-bmenu-select-by-mouse.
19192         (gnus-bookmark-show-details): Remove unused variable `details-list'.
19193         (gnus-bookmark-bmenu-select-by-mouse): New function.
19194
19195 2006-08-13  Romain Francoise  <romain@orebokech.com>
19196
19197         * mm-extern.el (mm-extern-mail-server): End `y-or-n-p' prompt with a
19198         space.
19199
19200 2006-08-10  Romain Francoise  <romain@orebokech.com>
19201
19202         * dns-mode.el: Alias `zone-mode' to `dns-mode'.
19203         (dns-mode-soa-auto-increment-serial): New user option.
19204         (dns-mode-soa-maybe-increment-serial): New function.
19205         (dns-mode): Add the latter to `write-contents-functions'.
19206
19207 2006-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
19208
19209         * compface.el (uncompface): Use binary rather than raw-text-unix.
19210
19211 2006-08-09  Katsumi Yamaoka  <yamaoka@jpl.org>
19212
19213         * compface.el (uncompface): Make sure the eol conversion doesn't take
19214         place when communicating with the external programs.
19215         Reported by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
19216
19217 2006-07-31  Katsumi Yamaoka  <yamaoka@jpl.org>
19218
19219         * nnheader.el (nnheader-insert-head): Fix typo in comment.
19220
19221 2006-07-31  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
19222
19223         * nnweb.el (nnweb-google-parse-1): Update regexp for author and date.
19224         Make it more robust by parsing author and date independently.
19225
19226 2006-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
19227
19228         * nnheader.el (nnheader-insert-head): Make it work with Mac as well.
19229
19230 2006-07-28  Daiki Ueno  <ueno@unixuser.org>
19231
19232         * mml2015.el (mml2015-epg-sign): If mml2015-signers is not set, use the
19233         first matching secret key.
19234         (mml2015-epg-encrypt): Ditto.
19235
19236         * mml1991.el (mml1991-epg-sign): If mml1991-signers is not set, use the
19237         first matching secret key.
19238         (mml1991-epg-encrypt): Ditto.
19239
19240         * mml2015.el (mml2015-encrypt-to-self): New user option.
19241         (mml2015-epg-encrypt): Append mml2015-signers to recipients list if
19242         mml2015-epg-encrypt-to-self is set.
19243
19244         * mml1991.el (mml1991-encrypt-to-self): New variable.
19245         (mml1991-epg-encrypt): Append mml1991-signers to recipients list if
19246         mml1991-epg-encrypt-to-self is set.
19247
19248         * mml2015.el (mml2015-signers): New user option.
19249         (mml2015-epg-sign): Reflect the value of mml2015-signers.
19250         (mml2015-epg-encrypt): Allow to select signing keys.
19251
19252         * mml1991.el (mml1991-signers): New variable.
19253         (mml1991-epg-sign): Reflect the value of mml1991-signers.
19254         (mml1991-epg-encrypt): Allow to select signing keys.
19255
19256 2006-07-27  Katsumi Yamaoka  <yamaoka@jpl.org>
19257
19258         * nnheader.el (nnheader-insert-head): Make it work even if the file
19259         uses CRLF for the line-break code.
19260
19261 2006-07-25  Daiki Ueno  <ueno@unixuser.org>
19262
19263         * mml2015.el: Require mml-sec instead of password.
19264         (mml2015-verbose): Inherit the default value from mml-secure-verbose.
19265         (mml2015-cache-passphrase): Inherit the default value from
19266         mml-secure-cache-passphrase.
19267         (mml2015-passphrase-cache-expiry): Inherit the default value from
19268         mml-secure-passphrase-cache-expiry.
19269
19270         * mml1991.el: Require mml-sec instead of password.
19271         (mml1991-verbose): Inherit the default value from mml-secure-verbose.
19272         (mml1991-cache-passphrase): Inherit the default value from
19273         mml-secure-cache-passphrase.
19274         (mml1991-passphrase-cache-expiry): Inherit the default value from
19275         mml-secure-passphrase-cache-expiry.
19276
19277         * mml-sec.el: Require password.
19278         (mml-secure-verbose): New user option.
19279         (mml-secure-cache-passphrase): New user option.
19280         (mml-secure-passphrase-cache-expiry): New user option.
19281
19282 2006-07-24  David Smith  <davidsmith@acm.org>  (tiny change)
19283             Andreas Vögele  <andreas@altroot.de>   (tiny change)
19284
19285         * pgg-def.el (pgg-truncate-key-identifier):
19286         Truncate the key ID to 8 letters from the end.
19287
19288 2006-07-19  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
19289
19290         * mm-url.el (mm-url-insert-file-contents): Inhibit Connection: close
19291         workaround for the url package included with Emacs.
19292
19293         * nnweb.el (nnweb-google-create-mapping): Update regexp.
19294
19295 2006-07-19  Katsumi Yamaoka  <yamaoka@jpl.org>
19296
19297         * gnus-sum.el (gnus-select-newsgroup): Setup the article buffer
19298         correctly.  This fixes a bug caused by the 2006-05-12 change.
19299
19300 2006-07-18  Karl Fogel  <kfogel@red-bean.com>
19301
19302         * nnmail.el (nnmail-article-group): If splitting raises an error, give
19303         some information about the error when saying that the `bogus' mail
19304         group will be used.
19305
19306 2006-07-17  Reiner Steib  <Reiner.Steib@gmx.de>
19307
19308         * gnus-sum.el (gnus-summary-delete-article): Don't use TAB in doc
19309         string.
19310
19311 2006-07-16  NAKAJI Hiroyuki  <nakaji@heimat.jp>  (tiny change)
19312
19313         * mm-util.el (mm-charset-synonym-alist): Map windows-31j to cp932.
19314
19315 2006-07-14  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
19316
19317         * gnus-start.el (gnus-subscribe-options-newsgroup-method): Doc fix.
19318
19319 2006-07-10  Daiki Ueno  <ueno@unixuser.org>
19320
19321         * mml1991.el (mml1991-function-alist): Add epg.
19322         (mml1991-epg-passphrase-callback, mml1991-epg-sign)
19323         (mml1991-epg-encrypt): New functions.
19324
19325 2006-07-10  Daiki Ueno  <ueno@unixuser.org>
19326
19327         * mml2015.el (mml2015-verbose): New variable.
19328         (mml2015-cache-passphrase): Ditto.
19329         (mml2015-passphrase-cache-expiry): Ditto.
19330         (mml2015-function-alist): Add epg.
19331         (mml2015-epg-passphrase-callback, mml2015-epg-decrypt)
19332         (mml2015-epg-clear-decrypt, mml2015-epg-verify)
19333         (mml2015-epg-clear-verify, mml2015-epg-sign, mml2015-epg-encrypt):
19334         New functions.
19335
19336 2006-07-08  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
19337
19338         * message.el (message-cite-original-1): Preserve region when removing
19339         quoted text due to X-No-Archive in order to avoid bogus attribution
19340         when citing multiple messages.
19341
19342 2006-06-27  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
19343
19344         * gnus-group.el (gnus-group-sort-by-unread): Fix typo.
19345         Reported by Kenneth Jacker <khj@be.cs.appstate.edu>.
19346
19347 2006-06-26  Reiner Steib  <Reiner.Steib@gmx.de>
19348
19349         * gnus-diary.el (gnus-user-format-function-d)
19350         (gnus-user-format-function-D): Autoload.
19351
19352         * imap.el (Commentary): Fix typo.
19353
19354         * gnus-util.el (kill-empty-logs, gnus-byte-compile): Remove anonymous
19355         2006-04-22 contribution.
19356
19357 2006-06-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
19358
19359         * gnus.el (gnus-valid-select-methods): Revert last change for nnweb.
19360         It didn't really fix the bogosity I'm seeing with solid web groups.
19361
19362 2006-06-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
19363
19364         * gnus.el (gnus-valid-select-methods): Declare nnweb with 'address.
19365         Since revision 6.95 (2003-01-05) of gnus-group.el, solid web groups are
19366         created using server names.  If we use the feature without declaring
19367         it, Gnus does not properly manage server and group state.
19368
19369         * nnweb.el (nnweb-google-search): Respect nnweb-max-hits as upper
19370         bound.
19371
19372 2006-06-25  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
19373
19374         * gnus.el (gnus-find-method-for-group): On killed/unknown groups, try
19375         looking up the method using GROUP's prefix before inventing a new one.
19376         It is used on killed/unknown groups in various places where returning
19377         an all-new method isn't expected by the caller.
19378
19379         * gnus-util.el (gnus-group-server): Fix for empty virtual server names
19380         and match semantics of gnus-group-real-prefix.
19381
19382 2006-06-22  Reiner Steib  <Reiner.Steib@gmx.de>
19383
19384         * nnmail.el (nnmail-broken-references-mailers): New variable.
19385         (nnmail-ignore-broken-references): New function generalizing
19386         nnmail-fix-eudora-headers.
19387         (nnmail-fix-eudora-headers): Now obsolete.
19388
19389         * gnus-art.el (gnus-button-handle-custom):
19390         Support `customize-apropos*'.
19391
19392 2006-06-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19393
19394         * gnus-art.el (article-hide-headers): Inhibit read-only stuff.
19395
19396         * gnus-group.el (gnus-fetch-group): Document ARTICLES and select those
19397         articles.
19398
19399 2006-06-21  Reiner Steib  <Reiner.Steib@gmx.de>
19400
19401         * message.el (message-cite-reply-above): New variable.
19402         (message-yank-original): Use it.
19403
19404 2006-06-20  Katsumi Yamaoka  <yamaoka@jpl.org>
19405
19406         * rfc2231.el (rfc2231-parse-string): Allow `*'s in parameter values.
19407
19408 2006-06-20  Reiner Steib  <Reiner.Steib@gmx.de>
19409
19410         * gnus-bookmark.el (gnus-bookmark-jump): Don't mark unrelated articles
19411         as read.
19412
19413         * gnus-group.el (gnus-group-quick-select-group): Add GROUP argument.
19414
19415 2006-06-19  Reiner Steib  <Reiner.Steib@gmx.de>
19416
19417         * gnus-bookmark.el: Fix Copyright, keywords, whitespace, etc.
19418         (gnus-bookmark-default-file): Use gnus-directory.
19419         (gnus-bookmark-bmenu-file-column, gnus-bookmark-use-annotations):
19420         Remove "*" in doc string.
19421         (gnus-bookmark-write-file): Simplify.
19422         (gnus-bookmark-maybe-sort-alist): Use `when'.
19423         (gnus-bookmark-get-bookmark): Fix typo in doc string.
19424         (gnus-bookmark-set-bookmark-name, gnus-bookmark-get-bookmark):
19425         Add FIXME about Emacs 21 and XEmacs compatibility.
19426         (gnus-bookmark-set-bookmark-name): Use `gnus-replace-in-string' for
19427         compatibility.
19428         (gnus-bookmark-bmenu-mode): Use `gnus-run-mode-hooks' for
19429         compatibility.
19430         (gnus-bookmark-menu-heading): Fix version.
19431
19432 2006-06-19  Bastien Guerry  <bzg@altern.org>
19433
19434         * gnus-bookmark.el: New file.
19435
19436 2006-06-19  Katsumi Yamaoka  <yamaoka@jpl.org>
19437
19438         * message.el (message-syntax-checks): Doc fix.
19439
19440 2006-06-17  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
19441
19442         * gnus-srvr.el (gnus-browse-unsubscribe-group): Don't subscribe
19443         unsubscribed groups as if they were killed ones.  It causes duplicate
19444         entries in gnus-newsrc-alist.
19445
19446 2006-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
19447
19448         * message.el (message-syntax-checks): Doc fix.
19449         (message-send-mail): Add check for continuation headers.
19450         (message-check-news-header-syntax): Fix regexp used to check for
19451         continuation headers.
19452
19453 2006-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
19454
19455         * gnus-art.el (gnus-display-mime): Make sure body ends with newline.
19456
19457 2006-06-11  Reiner Steib  <Reiner.Steib@gmx.de>
19458
19459         * gnus-art.el (gnus-article-toggle-truncate-lines): Fix code.
19460
19461 2006-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
19462
19463         * gnus-art.el (gnus-article-truncate-lines): Default to the value of
19464         default-truncate-lines.
19465
19466 2006-06-06  Katsumi Yamaoka  <yamaoka@jpl.org>
19467
19468         * mm-util.el (mm-mime-mule-charset-alist): Use unicode-precedence-list
19469         to fill the utf-8 entry.
19470
19471         * lpath.el: Fbind unicode-precedence-list.
19472
19473 2006-06-01  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
19474
19475         * nnweb.el (nnweb-google-parse-1): Update regexp for author and date.
19476
19477 2006-05-30  Kevin Greiner  <kevin.greiner@compsol.cc>
19478
19479         * gnus-agent.el (directory-files-and-attributes): Move all the way
19480         forward (the third and final move).
19481         (gnus-agent-read-agentview): Trap reconstruction errors due to
19482         nonexistent directory.  Handle by returning nil.
19483
19484 2006-05-30  Didier Verna  <didier@xemacs.org>
19485
19486         * message.el (message-dont-reply-to-names): Update the custom type.
19487         * message.el (message-dont-reply-to-names): New defsubst: potentially
19488         convert a list of regexps into a single one.
19489         * message.el (message-get-reply-headers): Use it.
19490         * nnmail.el (nnmail-fancy-expiry-target): Ditto.
19491
19492 2006-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
19493
19494         * gnus-agent.el (directory-files-and-attributes): Move forward.
19495
19496 2006-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
19497
19498         * gnus-ml.el (gnus-mailing-list-subscribe)
19499         (gnus-mailing-list-unsubscribe, gnus-mailing-list-owner)
19500         (gnus-mailing-list-message): Fix doc strings.
19501
19502 2006-05-29  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
19503
19504         * gnus-ml.el (gnus-mailing-list-message): Use gnus-url-mailto instead
19505         of doing it manually.
19506
19507 2006-05-29  Reiner Steib  <Reiner.Steib@gmx.de>
19508
19509         * gnus-art.el (gnus-article-toggle-truncate-lines): Fix typo in
19510         comment.
19511
19512 2006-05-29  Kevin Greiner  <kevin.greiner@compsol.cc>
19513
19514         * gnus-agent.el: Add gnus-agent-flush* to purge agent info.
19515         (gnus-agent-read-agentview): Fix handling of end-of-file error.
19516         (gnus-agent-read-local): All symbols allocated in my-obarray.
19517         (gnus-agent-set-local): Skip invalid entries (min and/or max is nil).
19518         (gnus-agent-regenerate-group): Check numeric names to see if they are
19519         messages or groups.
19520         (gnus-agent-total-fetched-for): Ignore 'dummy.group' (there should be a
19521         better way of do this...)
19522
19523         * gnus-cache.el (gnus-agent-total-fetched-for):
19524         Ignore 'dummy.group' (there should be a better way of do this...)
19525
19526 2006-05-29  Katsumi Yamaoka  <yamaoka@jpl.org>
19527
19528         * gnus-art.el (gnus-save-all-headers): Mention it might be overridden.
19529         (gnus-saved-headers): Ditto.
19530         (gnus-default-article-saver): Mention functions may have properties.
19531         (gnus-article-save): Override gnus-save-all-headers and
19532         gnus-saved-headers by :headers property which saver function may have.
19533         (gnus-summary-save-in-file): Add :headers property.
19534         (gnus-summary-write-to-file): Ditto.
19535
19536         * gnus-sum.el (gnus-summary-save-article): Bind
19537         gnus-prompt-before-saving to t when saving many articles in a file;
19538         always show all headers.
19539
19540         * dgnushack.el: Autoload toggle-truncate-lines for XEmacs.
19541
19542 2006-05-26  Reiner Steib  <Reiner.Steib@gmx.de>
19543
19544         * deuglify.el (gnus-outlook-rearrange-article): Add missing citation
19545         marks.
19546
19547         * message.el (message-indent-citation): Add optional arguments to allow
19548         using it outside of message buffers.
19549
19550         * gnus-art.el (gnus-article-unfold-long-headers): New variable.
19551         (gnus-article-treat-unfold-headers): Use it.
19552         (gnus-article-truncate-lines): New variable.
19553         (gnus-article-mode): Use it.
19554         (gnus-article-toggle-truncate-lines): New function.
19555
19556         * gnus-sum.el (gnus-summary-wash-map, gnus-summary-make-menu-bar):
19557         Add gnus-article-toggle-truncate-lines.
19558
19559         * uudecode.el (uudecode-decode-region-external): nil isn't a valid
19560         coding system in XEmacs, use binary.
19561
19562 2006-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
19563
19564         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): Don't edit
19565         after-load-alist.
19566
19567         * gnus-art.el (gnus-summary-save-in-file): Use property to specify
19568         this function should save decoded articles.
19569         (gnus-summary-write-to-file): Use property to specify this function
19570         should save decoded articles and specify gnus-summary-save-in-file
19571         should be used to save articles other than the first one when saving
19572         many articles.
19573         (gnus-summary-save-body-in-file): Use property to specify this
19574         function should save decoded articles.
19575         (gnus-summary-write-body-to-file): Use property to specify this
19576         function should save decoded articles and specify
19577         gnus-summary-save-body-in-file should be used to save articles other
19578         than the first one when saving many articles.
19579
19580         * gnus-sum.el (gnus-summary-save-article): Simplify.
19581
19582 2006-05-25  Katsumi Yamaoka  <yamaoka@jpl.org>
19583
19584         * gnus-art.el (gnus-default-article-saver):
19585         Add gnus-summary-write-body-to-file.
19586         (gnus-article-save-coding-system): Don't use coding system object
19587         in XEmacs.
19588         (gnus-read-save-file-name): Add optional `dir-var' argument which
19589         specifies directory in which files are saved; work even if optional
19590         `variable' argument is not specified.
19591         (gnus-summary-write-to-file): Read file name.
19592         (gnus-summary-save-body-in-file): Add optional `overwrite' argument.
19593         (gnus-summary-write-body-to-file): New function.
19594
19595         * gnus-sum.el (gnus-newsgroup-last-directory): New variable.
19596         (gnus-summary-local-variables): Add it.
19597         (gnus-summary-save-map): Add gnus-summary-write-article-body-file.
19598         (gnus-summary-save-article): Remove optional `decode' argument;
19599         determine whether to decode articles by the value of
19600         gnus-default-article-saver; when saving many files using
19601         gnus-summary-write-to-file or gnus-summary-write-body-to-file, use
19602         it first and use gnus-summary-save-in-file or
19603         gnus-summary-save-body-in-file thereafter unless
19604         gnus-prompt-before-saving is always; move point to article which
19605         will be saved.
19606         (gnus-summary-save-article-file): Revert.
19607         (gnus-summary-write-article-file): Revert.
19608         (gnus-summary-save-article-body-file): Revert.
19609         (gnus-summary-write-article-body-file): New function.
19610
19611 2006-05-24  Katsumi Yamaoka  <yamaoka@jpl.org>
19612
19613         * gnus-art.el (gnus-default-article-saver): Doc fix.
19614         (gnus-article-save-coding-system): Move from gnus-sum.el, rename
19615         from gnus-summary-save-article-coding-system, and default to a
19616         certain coding system.
19617         (gnus-output-to-file): Add coding cookie and encode text according
19618         to gnus-article-save-coding-system; don't use mm-append-to-file.
19619
19620         * gnus-sum.el (gnus-summary-save-article-coding-system): Move to
19621         gnus-art.el and rename to gnus-article-save-coding-system.
19622         (gnus-summary-save-article): Require gnus-art; don't show all
19623         headers if it decodes articles; don't add coding cookie here;
19624         don't bind mm-text-coding-system-for-write.
19625         (gnus-summary-save-article-file): Save decoded articles.
19626         (gnus-summary-write-article-file): When saving many files, use
19627         gnus-summary-write-to-file first and gnus-summary-save-in-file
19628         thereafter unless gnus-prompt-before-saving is always.
19629         (gnus-summary-save-article-body-file): Save decoded articles.
19630
19631         * lpath.el: Fbind select-safe-coding-system for XEmacs.
19632
19633 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
19634
19635         * nnrss.el (nnrss-check-group): Bind hash-index.
19636
19637 2006-05-23  Michaël Cadilhac  <michael.cadilhac@lrde.org>
19638
19639         * nnrss.el (nnrss-check-group): Use the md5sum of the whole RSS item as
19640         its hash index.  Store this hash in `nnrss-group-data'.
19641         (nnrss-read-group-data): Update accordingly.
19642
19643 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
19644
19645         * gnus-art.el (gnus-button-alist): Improve gnus-button-handle-symbol
19646         entry.
19647
19648         * gnus-sum.el (gnus-summary-make-menu-bar):
19649         Add gnus-article-browse-html-article.
19650
19651 2006-05-23  Hynek Schlawack  <hynek@ularx.de>
19652
19653         * gnus-sum.el (gnus-summary-mime-map):
19654         Add gnus-article-browse-html-article.
19655
19656         * gnus-art.el (gnus-article-browse-html-article): Remove comment.
19657
19658 2006-05-23  Reiner Steib  <Reiner.Steib@gmx.de>
19659
19660         * gnus-sum.el (gnus-summary-save-article-coding-system): Offer some
19661         suitable coding systems in customize.
19662
19663 2006-05-22  Reiner Steib  <Reiner.Steib@gmx.de>
19664
19665         * mail-source.el (mail-sources): Fix custom type.
19666
19667 2006-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
19668
19669         * gnus-sum.el (gnus-summary-save-article-mail): Clarify doc string.
19670         (gnus-summary-expire-articles-now): Shorten prompt.
19671
19672         * gmm-utils.el (wid-edit): Require.
19673         (defun-gmm): Rename from `gmm-defun-compat'.
19674         (gmm-image-search-load-path): Use it.
19675         (gmm-image-load-path-for-library): Use it.  Sync with `mh-compat.el'.
19676
19677 2006-05-17  Katsumi Yamaoka  <yamaoka@jpl.org>
19678
19679         * gnus-sum.el (gnus-summary-save-article-coding-system):
19680         New variable.
19681         (gnus-summary-save-article): Add optional `decode' argument.
19682         If it is set and gnus-summary-save-article-coding-system is non-nil,
19683         save decoded article.
19684         (gnus-summary-write-article-file): Save decoded article if
19685         gnus-summary-save-article-coding-system is non-nil.
19686
19687         * ecomplete.el (ecomplete-database-file-coding-system): Fix custom
19688         type.
19689
19690 2006-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
19691
19692         * gnus-art.el (easy-menu-define): Use :active instead of :enable.
19693
19694 2006-05-12  Katsumi Yamaoka  <yamaoka@jpl.org>
19695
19696         * gnus-art.el (gnus-article-setup-buffer): Go to summary buffer
19697         first to test gnus-single-article-buffer which may be buffer-local.
19698
19699         * gnus-sum.el (gnus-summary-setup-buffer):
19700         Make gnus-single-article-buffer buffer-local and nil in ephemeral
19701         group; make gnus-article-buffer, gnus-article-current, and
19702         gnus-original-article-buffer always buffer-local.
19703         (gnus-summary-exit): Kill article buffer belonging to ephemeral
19704         group.
19705         (gnus-handle-ephemeral-exit): Don't move to next summary line.
19706
19707 2006-05-08  Reiner Steib  <Reiner.Steib@gmx.de>
19708
19709         * nnml.el (nnml-request-compact-group): Compressed files might not
19710         have .gz extension.
19711
19712 2006-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
19713
19714         * mm-decode.el (mm-dissect-buffer): Remove spurious double assignment.
19715         (mm-copy-to-buffer): Use with-current-buffer.
19716         (mm-display-part): Simplify.
19717         (mm-inlinable-p): Add optional arg `type'.
19718
19719 2006-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
19720
19721         * gnus-art.el (gnus-mime-view-part-as-type): Add optional PRED arg.
19722         (gnus-mime-view-part-externally, gnus-mime-view-part-internally):
19723         Try harder to show the attachment internally or externally using
19724         gnus-mime-view-part-as-type.
19725
19726 2006-05-02  Reiner Steib  <Reiner.Steib@gmx.de>
19727
19728         * message.el (message-from-style, message-signature-separator)
19729         (message-user-organization-file, message-send-mail-function)
19730         (message-citation-line-function, message-yank-prefix)
19731         (message-indent-citation-function, message-signature)
19732         (message-signature-file, message-signature-insert-empty-line):
19733         Remove autoloads.
19734
19735         * gnus-art.el (gnus-buttonized-mime-types):
19736         Remove "multipart/signed".  Revert 2006-04-26 change.
19737
19738 2006-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19739
19740         * gnus.el (gnus-version-number): Bump version.
19741
19742 2006-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
19743
19744         * gnus.el: No Gnus v0.5 is released.
19745
19746 2006-04-30  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
19747
19748         * nnweb.el (nnweb-request-article): Do proper xwfu encoding when
19749         fetching articles by message-id.
19750
19751 2006-04-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19752
19753         * message.el (hashcash): Require hashcash as normal.
19754
19755         * ecomplete.el (ecomplete-highlight-match-line):
19756         Use point-at-eol.
19757         (ecomplete-highlight-match-line): Use `highlight', because that
19758         face exists in both Emacs and XEmacs.
19759
19760         * message.el (message-display-abbrev): Use point-at-bol.
19761
19762         * mail-source.el: Don't require timer/timer-funcs.
19763
19764         * gnus-async.el: Ditto.
19765
19766         * password.el: Ditto.
19767
19768         * nnheaderxm.el (nnheader-cancel-timer): Ditto.
19769
19770         * mm-url.el: Ditto.
19771
19772         * gnus-xmas.el: Don't require timer-funcs.
19773
19774         * mm-util.el: Require timer/timer-funcs.
19775
19776 2006-04-23  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
19777
19778         * mm-url.el (mm-url-insert-file-contents): Don't set Connection:
19779         Close.
19780
19781 2006-04-28  Katsumi Yamaoka  <yamaoka@jpl.org>
19782
19783         * mm-uu.el (mm-uu-pgp-encrypted-extract-1): Assume buffer is made
19784         unibyte after clear-decrypt function runs.
19785
19786         * mml2015.el (mml2015-pgg-clear-decrypt): Treat data which pgg
19787         returns as a unibyte string.
19788
19789 2006-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
19790
19791         * lpath.el: Revert.
19792
19793         * pgg-gpg.el (pgg-string-to-multibyte): Remove.
19794         (pgg-gpg-process-sentinel): Revert.
19795
19796         * pgg-pgp.el (pgg-pgp-process-region): Revert.
19797         (pgg-pgp-lookup-key): Revert.
19798
19799         * pgg-pgp5.el (pgg-pgp5-process-region): Revert.
19800         (pgg-pgp5-lookup-key): Revert.
19801
19802         * pgg.el (pgg-fetch-key): Revert.
19803
19804 2006-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>
19805
19806         * lpath.el: Fbind string-as-multibyte for XEmacs.
19807
19808         * mml1991.el (mml1991-pgg-sign): No need to load pgg.el, which is
19809         always loaded by way of gnus-art.el -> mm-uu.el -> mml2015.el.
19810         (mml1991-pgg-encrypt): Ditto.
19811
19812         * pgg-gpg.el (pgg-string-to-multibyte): New function.
19813         (pgg-gpg-process-sentinel): Make sure pgg-output-buffer is always
19814         a multibyte buffer.
19815
19816         * pgg-pgp.el (pgg-pgp-process-region): Ditto.
19817         (pgg-pgp-lookup-key): Ditto.
19818
19819         * pgg-pgp5.el (pgg-pgp5-process-region): Ditto.
19820         (pgg-pgp5-lookup-key): Ditto.
19821
19822         * pgg.el (pgg-fetch-key): Ditto.
19823
19824 2006-04-26  Reiner Steib  <Reiner.Steib@gmx.de>
19825
19826         * message.el (message-user-organization-file): Check several
19827         locations of the organization file.
19828
19829         * gnus-sum.el (gnus-summary-mime-map, gnus-summary-make-menu-bar):
19830         Add gnus-article-view-part-as-type.
19831
19832         * gnus-art.el (gnus-article-view-part-as-type): New function.
19833
19834         * message.el (message-valid-fqdn-regexp): Add TLDs .cat, jobs,
19835         .mobi and .travel.  Remove .nato, .bitnet and .uucp.
19836
19837         * mml.el: Simplify autoload.
19838         (mml-mode): defvar dnd-protocol-alist instead of using
19839         symbol-value.
19840         (mml-default-directory): New variable.
19841         (mml-minibuffer-read-file): Use it.
19842         (mml-dnd-protocol-alist, mml-dnd-attach-options): Adjust :version.
19843
19844         * message.el (message-citation-line-format): New variable.
19845         (message-insert-formated-citation-line): New function.
19846         (message-citation-line-function):
19847         Add `message-insert-formated-citation-line' to custom type.
19848
19849         * mm-decode.el (mm-verify-option): Add gnus-buttonized-mime-types
19850         to doc string.
19851
19852         * gnus-art.el (gnus-buttonized-mime-types): Add "multipart/signed"
19853         depending on mm-verify-option.
19854
19855 2006-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
19856
19857         * mml1991.el (mml1991-pgg-sign): Make sure to load pgg.el before
19858         binding pgg-* variables; reimplement the section which prevents
19859         MIME header from being signed.
19860         (mml1991-pgg-encrypt): Make sure to load pgg.el before binding
19861         pgg-text-mode; remove a blank line at the top of body.
19862
19863         * mm-uu.el (mm-uu-pgp-encrypted-extract-1): Don't remove blank
19864         lines at the top of body; use gnus-newsgroup-charset if there's no
19865         Charset header.
19866
19867 2006-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
19868
19869         * message.el (message-self-insert-commands): Doc fix.
19870
19871         * mm-uu.el (mm-uu-pgp-signed-test): Erase prompt.
19872         (mm-uu-pgp-encrypted-test): Ditto.
19873         (mm-uu-pgp-encrypted-extract-1): Make sure there's a blank line
19874         between header and body; return application/pgp-encrypted handle
19875         if decryption failed; decode decrypted body by charset.
19876
19877         * mm-decode.el (mm-automatic-display): Don't make application/pgp
19878         element match to application/pgp-*.
19879
19880 2006-04-23  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
19881
19882         * nnweb.el (nnweb-google-wash-article): Sync up to new Google
19883         HTML.
19884
19885 2006-04-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19886
19887         * mail-source.el (mail-source-call-script): Message the error
19888         string.
19889
19890 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19891
19892         * gnus-util.el (gnus-byte-compile): Use it.
19893
19894 2006-04-22  xyblor  <fake@invalid.email>  (tiny change)
19895
19896         * gnus-util.el (kill-empty-logs): New function.
19897
19898 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19899
19900         * message.el (message-mail-alias-type): Doc fix.
19901         (message-mail-alias-type-p): New function.
19902         (message-send): Use it.
19903         (message-mode): Ditto.
19904         (message-strip-forbidden-properties): Ditto.
19905
19906         * ecomplete.el (ecomplete-database-file-coding-system):
19907         New variable.
19908         (ecomplete-save): Use it.
19909         (ecomplete-setup): Use it.
19910
19911 2006-04-22  Katsumi Yamaoka  <yamaoka@jpl.org>
19912
19913         * message.el (message-self-insert-commands): New variable.
19914         (message-strip-forbidden-properties): Use it.
19915
19916 2006-04-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19917
19918         * message.el (message-put-addresses-in-ecomplete): Use a regexp
19919         that doesn't make XEmacs choke.
19920
19921 2006-04-20  Reiner Steib  <Reiner.Steib@gmx.de>
19922
19923         * gnus-util.el (gnus-replace-in-string):
19924         Prefer replace-regexp-in-string over of replace-in-string.
19925
19926 2006-04-20  Katsumi Yamaoka  <yamaoka@jpl.org>
19927
19928         * gnus-util.el (gnus-select-frame-set-input-focus):
19929         Use select-frame-set-input-focus if it is available in XEmacs; use
19930         definition defined in Emacs 22 for old Emacsen.
19931
19932         * dgnushack.el: Autoload unmorse-region for XEmacs.
19933
19934         * lpath.el: Bind cursor-in-non-selected-windows and
19935         select-frame-set-input-focus for XEmacs.
19936
19937 2006-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
19938
19939         * mm-view.el (mm-inline-text): Use equal instead of equalp.
19940
19941 2006-04-18  Teodor Zlatanov  <tzz@lifelogs.com>
19942
19943         * gnus-registry.el (gnus-registry-cache-save): Remove text
19944         properties when saving via the temp buffer.
19945
19946 2006-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
19947
19948         * message.el (message-generate-hashcash): Honor custom type.
19949
19950 2006-04-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19951
19952         * message.el (message-generate-hashcash): Default to non-nil when
19953         hashcash is found.
19954
19955         * gnus-sum.el (gnus-summary-expire-articles-now): Clarify prompt.
19956         (gnus-refer-thread-limit): Increase default to 500.
19957
19958         * mm-view.el (mm-inline-text): Supply delsp to flow-fill.
19959
19960         * flow-fill.el (fill-flowed): Allow delete-space.
19961
19962 2006-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
19963
19964         * deuglify.el (gnus-outlook-deuglify-unwrap-min)
19965         (gnus-outlook-deuglify-unwrap-max, gnus-outlook-display-hook):
19966         Remove autoloads.
19967
19968 2006-04-18  Simon Josefsson  <jas@extundo.com>
19969
19970         * message.el (message-generate-hashcash): Default to.
19971
19972 2006-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
19973
19974         * rfc2231.el (rfc2231-parse-string): Decode encoded value after
19975         concatenating segments rather than before concatenating them.
19976
19977 2006-04-17  Reiner Steib  <Reiner.Steib@gmx.de>
19978
19979         * gnus-group.el: Move comment to gnus-group-update-tool-bar.
19980
19981 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19982
19983         * rfc2231.el (rfc2231-parse-string): Sort the parameters first.
19984
19985         * message.el (message-forward-make-body-plain):
19986         Allow message-forward-ignored-headers to be a list.
19987         (message-remove-ignored-headers): Factor out into function.
19988         (message-forward-make-body-mml): Use it.
19989
19990         * imap.el (imap-quote-specials): New function.
19991         (imap-login-auth): Quote specials.
19992
19993         * rfc2231.el (rfc2231-parse-string): Remove dead code.
19994         (rfc2231-parse-string): Allow concatanation of parameters that
19995         aren't contiguous.  The test case is
19996           (mail-header-parse-content-type "message/external-body;
19997             name*0*=us-ascii''~%2ffoo%2fbar%2fbaz%2fxyzzy%2f;
19998             access-type=LOCAL-FILE;
19999             name*1*=plugh%2fhello-sailor%2fbing.pdf")
20000
20001 2006-04-17  Stefan Monnier  <monnier@iro.umontreal.ca>
20002
20003         * nntp.el (nntp-accept-process-output): Return the value of
20004         `nnheader-accept-process-output'.
20005
20006 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20007
20008         * gnus-art.el (gnus-article-treat-types): Add text/x-patch.
20009         (gnus-button-alist): Recognize more diff formats.
20010         (gnus-button-patch): Strip directory.
20011
20012 2006-04-17  Reiner Steib  <Reiner.Steib@gmx.de>
20013
20014         * gnus-util.el (gnus-select-frame-set-input-focus): Check for
20015         Emacs 22 when setting focus.
20016
20017 2006-04-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20018
20019         * gnus-art.el (gnus-article-treat-types): Do treatment of
20020         text/x-verbatim parts.
20021         (gnus-button-patch): New command.
20022
20023         * ietf-drums.el (ietf-drums-parse-address): Attempt parsing
20024         addresses that contain invalid characters.
20025
20026 2006-04-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20027
20028         * message.el (message-put-addresses-in-ecomplete):
20029         Use gnus-replace-in-string.
20030         (message-is-yours-p): Use the more correct
20031         mail-header-parse-address instead of
20032         mail-extract-address-components.
20033         (message-put-addresses-in-ecomplete): Fix typo.
20034
20035         * gnus-sum.el (gnus-summary-limit-to-bodies): New command and
20036         keystroke.
20037
20038         * gnus-art.el (gnus-treatment-function-alist): Change order of
20039         newsgroups/generic header folding to avoid double-folding.
20040
20041         * message.el (message-hidden-headers): Add X-Draft-From.
20042
20043         * gnus-sum.el (gnus-summary-repeat-search-article-forward):
20044         New command.
20045         (gnus-summary-repeat-search-article-backward): New command.
20046
20047         * gnus-topic.el (gnus-topic-display-missing-topic): Skip past
20048         groups in the parent topic.
20049
20050 2006-04-16  João Cachopo  <joao.cachopo@inesc-id.pt>  (tiny change)
20051
20052         * spam.el (spam-necessary-extra-headers): Add X-CRM114-Status.
20053         (spam-extra-header-to-number): Return the CRM114 number as a
20054         number instead of a string.
20055
20056 2006-04-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20057
20058         * gnus-art.el (gnus-face-properties-alist): Move here from
20059         gnus-fun.
20060
20061         * gnus-fun.el (gnus-face-properties-alist): Move to gnus-art.
20062
20063 2006-04-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20064
20065         * message.el (message-strip-forbidden-properties): Only display on
20066         self-insert-command.
20067
20068         * hashcash.el (hashcash-insert-payment-async): Remove dead code;
20069         reindent.
20070         (hashcash-insert-payment-async-2): Make sure the buffer is alive.
20071
20072 2006-04-15  NAKAJI Hiroyuki  <nakaji@takamatsu-nct.ac.jp>  (tiny change)
20073
20074         * smiley.el (smiley-style): Fix typo.
20075
20076 2006-03-23  Kenichi Handa  <handa@m17n.org>
20077
20078         * rfc2231.el (rfc2231-encode-string): Use mm-disable-multibyte
20079         instead of set-buffer-multibyte.
20080
20081 2006-03-23  Kenichi Handa  <handa@m17n.org>
20082
20083         * rfc2231.el (rfc2231-decode-encoded-string): Work on unibyte
20084         buffer and then decode the buffer text if necessary.
20085         (rfc2231-encode-string): Be sure to work on multibyte buffer at
20086         first, and after mm-encode-body, change the buffer to unibyte.
20087
20088 2006-04-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20089
20090         * hashcash.el (hashcash-insert-payment-async-2):
20091         Use message-goto-eoh instead of doing it manually.
20092         (mail-add-payment): Use message-narrow-to-header instead of trying
20093         to do the same itself.
20094
20095         * message.el (message-hidden-headers): Add Face.
20096
20097         * gnus-sum.el (gnus-summary-reparent-thread): Factor out
20098         reparenting code.
20099         (gnus-summary-reparent-children): Refactored out code.
20100         (gnus-summary-thread-map): New keystroke.
20101         (gnus-summary-reparent-children): Make into command.
20102
20103         * smiley.el (smiley-style): Default to `medium' if using a large
20104         font.
20105
20106         * gnus-sum.el (unmorse-region): Remove autoload, because morse.el
20107         does it itself.
20108
20109         * message.el (message-point-in-header-p): Simplify definition.
20110
20111 2006-04-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20112
20113         * nnagent.el (nnagent-request-set-mark): Silence log file
20114         writing.
20115         (nnagent-request-set-mark): Use write-region instead of
20116         append-to-file.
20117
20118         * gnus-sum.el (gnus-read-header): Fudge article number if using a
20119         strange select method.
20120
20121         * ecomplete.el (ecomplete-display-matches): Get highlightling
20122         right.
20123         (ecomplete-display-matches): Use literals.
20124         (ecomplete-display-matches): Disable message logging.
20125
20126         * message.el (message-display-abbrev): Small optimization.
20127
20128         * ecomplete.el (ecomplete-display-matches): Allow automatic
20129         display.
20130
20131         * message.el (message-strip-forbidden-properties):
20132         Display abbrevs.
20133         (message-display-abbrev): Get automatic display right.
20134
20135         * ecomplete.el (ecomplete-display-matches): Use M-n/M-p
20136         keystrokes.
20137
20138 2006-04-13  Romain Francoise  <romain@orebokech.com>
20139
20140         TODO: Backport to v5-10!
20141
20142         * gnus-util.el (gnus-alist-to-hashtable, gnus-hashtable-to-alist):
20143         Move here (and rename) from gnus-registry.el.
20144
20145         * gnus-registry.el: Require gnus-util.
20146         Use `gnus-alist-to-hashtable' and `gnus-hashtable-to-alist'.
20147
20148 2006-04-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20149
20150         * gnus-group.el (gnus-group-catchup-current):
20151         Change if-then-else-if-then-else into cond.
20152         (gnus-group-catchup): Indent.
20153         (group-name-at-point): New function.
20154         (gnus-fetch-group): Provide default from thing at point.
20155
20156 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20157
20158         * message.el (message-display-abbrev): Fix regexp.
20159
20160         * ecomplete.el (ecomplete-highlight-match-line):
20161         Reimplement choosing.
20162         (ecomplete-highlight-match-line): Fix up code rewrite, remove
20163         dead variables.
20164
20165         * message.el (message-newline-and-indent): Remove debugging.
20166         (message-display-abbrev): Use new implementation.
20167
20168 2006-04-12  Reiner Steib  <Reiner.Steib@gmx.de>
20169
20170         * gnus-art.el (gnus-article-mode):
20171         Set cursor-in-non-selected-windows to nil.
20172
20173         * smiley.el: Revert previous change.
20174         (smiley-data-directory): defvar it before using it in the
20175         defcustom of `smiley-style'.
20176
20177 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20178
20179         * message.el (message-newline-and-indent): New function.
20180
20181         * ecomplete.el: Implement more bits.
20182
20183         * message.el (message-put-addresses-in-ecomplete): Clean up the
20184         string.
20185
20186         * ecomplete.el (ecomplete-add-item): Chop off decimals.
20187
20188         * gnus-sum.el (gnus-summary-save-parts):
20189         Bind gnus-summary-save-parts-counter and use it to make unique file
20190         names.
20191
20192         * gnus-art.el (gnus-ignored-headers): Add some more headers.
20193
20194         * ietf-drums.el (ietf-drums-parse-addresses): Take a RAWP
20195         parameter to say whether to actually parse the individual
20196         addresses.
20197
20198         * message.el (message-put-addresses-in-ecomplete): New function.
20199         (ecomplete): Require.
20200         (message-mail-alias-type): Add ecomplete as an option.
20201
20202 2006-04-12  Ralf Angeli  <angeli@iwi.uni-sb.de>
20203
20204         * flow-fill.el (fill-flowed): Remove trailing space from blank
20205         quoted lines.
20206
20207 2006-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20208
20209         * smiley.el (smiley-style): Move definition later to avoid a
20210         compilation warning.
20211
20212 2006-04-12  Kenichi Handa  <handa@m17n.org>
20213
20214         * rfc2231.el (rfc2231-decode-encoded-string): Work on unibyte
20215         buffer and then decode the buffer text if necessary.
20216         (rfc2231-encode-string): Be sure to work on multibyte buffer at
20217         first, and after mm-encode-body, change the buffer to unibyte.
20218         Use mm-disable-multibyte instead of set-buffer-multibyte.
20219
20220 2006-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
20221
20222         * gnus-art.el (gnus-mime-copy-part): Find name parameter in
20223         Content-Type header instead of Content-Disposition header.
20224         (gnus-mime-inline-part): Ditto.
20225         (gnus-mime-view-part-as-charset): Ignore charset that the part
20226         specifies.
20227
20228         * mm-decode.el (mm-display-part): Work with external parts and
20229         usual parts similarly.
20230
20231         * mm-extern.el (mm-inline-external-body): Use mm-display-part
20232         instead of gnus-display-mime.
20233
20234         * mm-util.el (mm-decompress-buffer): Use mm-with-unibyte-buffer
20235         instead of with-temp-buffer.
20236
20237         * gnus-uu.el (gnus-uu-save-article): Put mml tags instead of part
20238         tag to summarized topics part in order to encode non-ASCII text.
20239
20240 2006-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
20241
20242         * smiley.el (smiley-style): New variable.
20243         (smiley-directory): New function.
20244         (smiley-data-directory): Derive from `smiley-style' using
20245         `smiley-directory'.
20246         (smiley-regexp-alist): Add new entries.
20247
20248         * gnus-art.el (gnus-button-valid-localpart-regexp): Exclude `@'.
20249         (gnus-article-browse-delete-temp): Add :version.
20250
20251 2006-04-11  Arne Jørgensen  <arne@arnested.dk>
20252
20253         * gnus-sieve.el (gnus-sieve-generate): Delete from the start of
20254         the sieve region.
20255
20256 2006-04-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20257
20258         * gnus.el (gnus-version-number): Bump version.
20259
20260 2006-04-11  Reiner Steib  <Reiner.Steib@gmx.de>
20261
20262         * gnus.el: No Gnus v0.4 is released.
20263
20264 2006-04-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20265
20266         * nnslashdot.el (nnslashdot-retrieve-headers-1): Fix up to new
20267         layout.
20268
20269         * rfc2047.el (rfc2047-decode-encoded-words): Don't message about
20270         unknown charset.
20271
20272         * message.el (message-header-synonyms): Add Original-To to the
20273         default.
20274
20275         * gnus-sum.el (gnus-get-newsgroup-headers-xover): group is an
20276         optional parameter.
20277
20278 2006-04-06  Reiner Steib  <Reiner.Steib@gmx.de>
20279
20280         * gnus-fun.el (gnus): Require it for gnus-directory.
20281
20282 2006-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
20283
20284         * gnus-fun.el (gnus-face-properties-alist): Add :version.
20285
20286 2006-04-05  Daiki Ueno  <ueno@unixuser.org>
20287
20288         * pgg-gpg.el (pgg-gpg-process-filter): Fix.
20289
20290 2006-04-05  Simon Josefsson  <jas@extundo.com>
20291
20292         * password.el (password-reset): New function.
20293
20294 2006-04-05  Daiki Ueno  <ueno@unixuser.org>
20295
20296         * pgg-gpg.el (pgg-gpg-encrypt-region, pgg-gpg-sign-region):
20297         Wait for BEGIN_SIGNING too, new in GnuPG 1.4.3.
20298
20299 2006-04-04  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
20300
20301         * nnweb.el (nnweb-google-create-mapping): Update regexp.
20302         Some whitespace was matched into the url, which broke browsing hits
20303         > 100 when mm-url-use-external was nil.
20304
20305 2006-04-04  Reiner Steib  <Reiner.Steib@gmx.de>
20306
20307         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups):
20308         Check gnus-extra-headers for 'Newsgroups.
20309
20310         * message.el (message-tool-bar-gnome): Check if `flyspell-mode' is
20311         bound.
20312
20313 2006-04-04  Daiki Ueno  <ueno@unixuser.org>
20314
20315         * pgg-gpg.el: Clean up process buffers every time gpg processes
20316         complete.
20317
20318 2006-04-03  Reiner Steib  <Reiner.Steib@gmx.de>
20319
20320         * gnus-fun.el (gnus-convert-image-to-face-command): Fix typo in
20321         doc string.
20322
20323 2006-04-03  Daiki Ueno  <ueno@unixuser.org>
20324
20325         * pgg-gpg.el (pgg-gpg-process-filter)
20326         (pgg-gpg-wait-for-completion): Check if buffer is alive.
20327
20328         * pgg-gpg.el (pgg-gpg-process-sentinel): Don't remove GNUPG:
20329         lines, temporary fix.
20330
20331 2006-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
20332
20333         * gnus-group.el (gnus-group-update-tool-bar): Add :initialize and :set.
20334
20335 2006-03-29  Daiki Ueno  <ueno@unixuser.org>
20336
20337         * pgg-gpg.el (pgg-gpg-start-process): Don't bind
20338         default-enable-multibyte-characters.  This reverts the change from
20339         revision 6.17 which is no longer necessary because the passphrase
20340         is sent separately now.  GnuPG messages are unreadable under
20341         multibyte locales with default-enable-multibyte-characters set to
20342         nil.
20343
20344 2006-03-28  Reiner Steib  <Reiner.Steib@gmx.de>
20345
20346         * message.el (message-tool-bar-gnome): Move "spell".
20347
20348 2006-03-27  Reiner Steib  <Reiner.Steib@gmx.de>
20349
20350         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Don't use
20351         XEmacs-only `replace-in-string'.  Use `gnus-group-real-name'
20352         instead.
20353
20354 2006-03-27  Karl Kleinpaste  <karl@charcoal.com>
20355
20356         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups):
20357         Improve newsgroups handling for NNTP overviews which don't include
20358         Newsgroups.
20359
20360 2006-03-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
20361
20362         * message.el (message-resend): Bind message-generate-hashcash to nil.
20363
20364 2006-03-26  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
20365
20366         * hashcash.el (hashcash-already-paid-p): Bind case-fold-search
20367         when searching for already-paid recipients.
20368
20369 2006-03-27  Daiki Ueno  <ueno@unixuser.org>
20370
20371         * pgg-gpg.el: Invoke gpg asynchronous, to avoid querying for
20372         passphrases when it is not needed.
20373         (pgg-gpg-use-agent): Add, to hard code that pgg shouldn't wait for
20374         passphrase stuff from gpg, should only be necessary when you use
20375         gpg with a smartcard.
20376
20377 2006-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
20378
20379         * mml.el (mml-insert-mime): Ignore cached contents of
20380         message/external-body part.
20381
20382         * mm-decode.el (mm-get-part): Add optional 'no-cache' argument.
20383         (mm-insert-part): Ditto.
20384
20385 2006-03-23  Simon Josefsson  <jas@extundo.com>
20386
20387         * pgg-gpg.el (pgg-gpg-update-agent): Add again, with fixes from
20388         Reiner.
20389         (pgg-gpg-use-agent-p): Use it again.
20390
20391 2006-03-23  Simon Josefsson  <jas@extundo.com>
20392
20393         * pgg-gpg.el (pgg-gpg-update-agent): Remove, doesn't work with
20394         older emacsen.
20395         (pgg-gpg-use-agent-p): Don't use it.
20396
20397 2006-03-23  Reiner Steib  <Reiner.Steib@gmx.de>
20398
20399         * pgg-gpg.el (pgg-gpg-update-agent): Only use make-network-process
20400         if we can.
20401
20402 2006-03-22  Sascha Wilde  <wilde@sha-bang.de>
20403
20404         * pgg-gpg.el (pgg-gpg-use-agent): Disable by default.
20405         (pgg-gpg-update-agent): New function.
20406         (pgg-gpg-use-agent-p): New function.
20407         (pgg-gpg-process-region, pgg-gpg-encrypt-region)
20408         (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
20409         (pgg-gpg-sign-region): Use it.
20410
20411 2006-03-22  Katsumi Yamaoka  <yamaoka@jpl.org>
20412
20413         * gnus-sum.el (gnus-map-articles): Don't funcall symbol macro.
20414         Reported by Ralf Wachinger <rwachinger@gmx.de>.
20415
20416 2006-03-21  Simon Josefsson  <jas@extundo.com>
20417
20418         * pgg-gpg.el: Ideas below based on patch from Sascha Wilde
20419         <wilde@sha-bang.de>.
20420         (pgg-gpg-use-agent): New variable.
20421         (pgg-gpg-process-region): Use it.
20422         (pgg-gpg-encrypt-region): Likewise.
20423         (pgg-gpg-encrypt-symmetric-region): Likewise.
20424         (pgg-gpg-decrypt-region): Likewise.
20425         (pgg-gpg-sign-region): Likewise.
20426         (pgg-gpg-possibly-cache-passphrase): Don't cache a nil password.
20427
20428 2006-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
20429
20430         * gnus-agent.el (gnus-agent-queue-mail): Fix custom tag for `t'.
20431
20432         * spam.el (spam-mark-new-messages-in-spam-group-as-spam):
20433         Add comment on version.
20434
20435 2006-03-20  Reiner Steib  <Reiner.Steib@gmx.de>
20436
20437         * smiley.el: Add missing test smiley.
20438
20439 2006-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
20440
20441         * mm-decode.el (mm-with-part): New macro.
20442         (mm-get-part): Use it; work with message/external-body as well.
20443         (mm-save-part): Treat name and filename equally.
20444
20445         * mm-extern.el (mm-extern-cache-contents): New function.
20446         (mm-inline-external-body): Use it; force the part to be displayed;
20447         move undisplayer added to the cached handle to the parent.
20448
20449         * gnus-art.el (gnus-mime-save-part-and-strip): Add name parameter.
20450         (gnus-mime-view-part-as-type): Work with message/external-body.
20451
20452         * gnus-util.el (gnus-tool-bar-update): Bind tool-bar-mode.
20453
20454 2006-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
20455
20456         * gmm-utils.el (gmm-image-load-path-for-library): Prefer user's
20457         images in image-load-path.  [Sync with image.el, revision 1.60, in
20458         Emacs.]
20459
20460 2006-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
20461
20462         * gmm-utils.el (gmm-image-load-path-for-library): Pass value of
20463         path rather than symbol.  Always return list of directories.
20464         Guarantee that image directory comes first.  [Sync with image.el,
20465         revision 1.59, in Emacs.]
20466
20467         * message.el (message-make-tool-bar): Adjust to new API of
20468         `gmm-image-load-path-for-library'.
20469
20470         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
20471
20472         * gnus-group.el (gnus-group-make-tool-bar): Ditto.
20473
20474 2006-03-15  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
20475
20476         * gnus-art.el (gnus-article-only-boring-p):
20477         Bind inhibit-point-motion-hooks to avoid infinite loop when entering
20478         intangible text.
20479         Reported by Ralf Wachinger <rwnewsmampfer@geekmail.de>.
20480
20481 2006-03-14  Reiner Steib  <Reiner.Steib@gmx.de>
20482
20483         * gmm-utils.el (gmm-image-load-path-for-library): Fix typo.
20484         Use `defun' instead of `gmm-defun-compat'.
20485
20486 2006-03-14  Simon Josefsson  <jas@extundo.com>
20487
20488         * message.el (message-unique-id): Don't use message-number-base36
20489         if (user-uid) is a float.
20490         Reported by Bjorn Solberg <bjorn_ding1@hekneby.org>.
20491
20492 2006-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>
20493
20494         * mm-uu.el (mm-uu-dissect): Dissect all parts correctly.
20495
20496         * gnus-art.el (gnus-mime-display-single): Make sure there is an
20497         empty line between a part and a message part.
20498
20499 2006-03-10  Reiner Steib  <Reiner.Steib@gmx.de>
20500
20501         * smiley.el: Add more test smileys.
20502         (smiley-data-directory, smiley-regexp-alist)
20503         (gnus-smiley-file-types): Fix doc strings.
20504         (smiley-update-cache): Clear smiley-cached-regexp-alist before
20505         adding new elements.
20506         (smiley-mouse-map): Unused code.  Make it a comment.
20507
20508 2006-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
20509
20510         * gnus-nocem.el (gnus-nocem-scan-groups): Add autoload cookie;
20511         scan latest NoCeM messages instead of old ones.
20512         (gnus-nocem-check-article): Fix regexps so as to match to PGP
20513         delimiters that are recently used.
20514         (gnus-nocem-load-cache): Add autoload cookie.
20515
20516         * gnus.el (gnus-use-nocem): Enable it to be set to also a number.
20517
20518         * gnus-start.el (gnus-setup-news): Scan NoCeM messages if a group
20519         level which is larger than gnus-use-nocem is specified.
20520
20521         * gnus-group.el (gnus-group-get-new-news): Ditto.
20522
20523 2006-03-08  Reiner Steib  <Reiner.Steib@gmx.de>
20524
20525         * gnus-util.el (gnus-tool-bar-update): New function.
20526
20527         * gnus-group.el (gnus-group-update-tool-bar): New variable.
20528         (gnus-group-insert-group-line): Add gnus-tool-bar-update.
20529
20530         * gnus-topic.el (gnus-topic-prepare-topic): Add gnus-tool-bar-update.
20531
20532         * gnus-group.el (gnus-group-redraw-when-idle)
20533         (gnus-group-redraw-check): Remove.
20534         (gnus-group-make-tool-bar): Remove gnus-group-redraw-check.
20535
20536 2006-03-08  Katsumi Yamaoka  <yamaoka@jpl.org>
20537
20538         * nnmail.el (nnmail-split-it): Invert match-partial-words behavior
20539         if optional last element is specified in splits (FIELD VALUE...).
20540
20541 2006-03-07  Reiner Steib  <Reiner.Steib@gmx.de>
20542
20543         * message.el (message-make-tool-bar): Rename gmm-image-load-path
20544         to gmm-image-load-path-for-library.  Call with no-error argument.
20545         (message-tool-bar-gnome): Rename "mail/attach" to "attach".
20546
20547         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
20548
20549         * gnus-group.el (gnus-group-make-tool-bar): Ditto.
20550
20551         * gmm-utils.el (gmm-image-load-path): Remove alias.
20552
20553 2006-03-06  Reiner Steib  <Reiner.Steib@gmx.de>
20554
20555         * gmm-utils.el (gmm-image-load-path): Add alias.
20556
20557         * nnml.el (nnml-generate-nov-databases-directory): Rename from
20558         nnml-generate-nov-databases-1.
20559         (nnml-generate-nov-databases): Use it.
20560         (nnml-generate-nov-databases-directory): Document no-active
20561         argument.
20562
20563         * gmm-utils.el (gmm-image-load-path-for-library): Return single
20564         directory if path is t.  Add no-error.
20565
20566         * gnus-group.el (gnus-group-make-tool-bar): Use add-hook.
20567         Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
20568
20569         * gnus-art.el (gnus-article-browse-delete-temp-files):
20570         Simplify resetting gnus-article-browse-html-temp-list.
20571
20572         * gmm-utils.el (gmm-image-load-path-for-library): Sync with
20573         mh-compat.el revision 1.9 in Emacs.  Rename `gmm-image-load-path'.
20574         Add example to docstring.  Rename local variables.  Move error
20575         checks to default case in cond and simplify.
20576
20577 2006-03-06  Katsumi Yamaoka  <yamaoka@jpl.org>
20578
20579         * mm-view.el (mm-w3m-cid-retrieve-1): Check carefully whether
20580         handle is multipart when calling it recursively.
20581         (mm-w3m-cid-retrieve): Display warning if retrieving fails.
20582
20583 2006-03-03  Daniel Pittman  <daniel@rimspace.net>
20584
20585         * nnimap.el (nnimap-request-update-info-internal): Optimize.
20586         Don't `gnus-uncompress-range' to avoid excessive memory usage.
20587
20588 2006-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
20589
20590         * gnus-group.el (gnus-group-tool-bar-gnome): Check if gnus-topic.el
20591         is loaded.
20592
20593         * gnus-sum.el (gnus-summary-tool-bar-gnome): Check if spam.el is
20594         loaded.
20595
20596 2006-03-03  Reiner Steib  <Reiner.Steib@gmx.de>
20597
20598         * mm-util.el (mm-with-unibyte-current-buffer): Change "Emacs 23"
20599         to "Emacs 23 (unicode)" in doc string.
20600
20601         * gnus-sum.el (gnus-summary-set-display-table): Change "Emacs 23" to
20602         "Emacs 23 (unicode)" in comment.
20603
20604 2006-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
20605
20606         * mm-decode.el (mm-get-part): Don't use mm-with-unibyte-current-buffer.
20607
20608         * gnus-sum.el (gnus-summary-set-display-table): Don't nix out
20609         characters 160 through 255 in Emacs 23.
20610
20611 2006-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
20612
20613         * gnus-art.el (gnus-article-browse-html-temp-list): Rename from
20614         gnus-article-browse-html-temp.
20615         (gnus-article-browse-delete-temp): Make it customizable.
20616         Add `file'.  Adjust doc string.
20617         (gnus-article-browse-delete-temp-files): Add argument.
20618         Allow query for each file.  Adjust doc string.
20619         (gnus-article-browse-html-parts):
20620         Add `gnus-article-browse-delete-temp-files' to
20621         `gnus-summary-prepare-exit-hook' and `gnus-exit-gnus-hook'.
20622
20623 2006-03-02  Hynek Schlawack  <hynek@ularx.de>
20624
20625         * gnus-art.el (gnus-article-browse-html-temp)
20626         (gnus-article-browse-delete-temp): New variables.
20627         (gnus-article-browse-delete-temp-files): New function.
20628         (gnus-article-browse-html-parts): Use it.
20629
20630 2006-03-02  Reiner Steib  <Reiner.Steib@gmx.de>
20631
20632         * gnus-group.el (gnus-group-redraw-check): Remove redundant tests.
20633
20634         * gmm-utils.el (gmm-image-load-path): Mention ../etc search in doc
20635         string.
20636
20637         * gnus-sum.el (gnus-summary-tool-bar-gnome): Don't use
20638         gnus-summary-insert-new-articles when unplugged.
20639         Remove gnus-summary-search-article-forward.
20640
20641         * gmm-utils.el (gmm-tool-bar-style): Test tool-bar-mode and
20642         display-visual-class instead of display-color-cells.
20643
20644 2006-03-02  Katsumi Yamaoka  <yamaoka@jpl.org>
20645
20646         * dgnushack.el: Autoload customize-group for XEmacs.
20647
20648         * mml.el (mml-generate-mime-1): Encode parts other than text/* or
20649         message/* containing non-ASCII text properly.
20650
20651 2006-03-01  Reiner Steib  <Reiner.Steib@gmx.de>
20652
20653         * message.el: Require gmm-utils, remove autoloads.
20654         (message-tool-bar): Set default based on
20655         gmm-tool-bar-style.
20656         (message-tool-bar-gnome): Add gmm-customize-mode.
20657
20658         * gnus-sum.el (gnus-summary-tool-bar): Set default based on
20659         gmm-tool-bar-style.
20660         (gnus-summary-tool-bar-gnome): Add gmm-customize-mode.
20661
20662         * gnus-group.el (gnus-group-tool-bar): Set default based on
20663         gmm-tool-bar-style.
20664         (gnus-group-tool-bar-gnome): Add gmm-customize-mode.
20665
20666         * gmm-utils.el (gmm-image-directory): Rename variable from
20667         gmm-image-load-path.
20668         (gmm-image-load-path): Use gmm-image-directory.
20669         (gmm-customize-mode): New function.
20670         (gmm-tool-bar-style): New variable.
20671
20672         * gnus-group.el (gnus-group-redraw-when-idle): Rename from
20673         gnus-group-redraw-line-number.
20674         (gnus-group-redraw-check): Simplify.
20675         (gnus-group-tool-bar-update): Remove redraw check.
20676         (gnus-group-make-tool-bar): Add redraw check.
20677
20678 2006-03-01  Michael Piotrowski  <mxp@dynalabs.de>  (tiny change)
20679
20680         * gnus-art.el (gnus-button): Add missing parentheses.
20681
20682 2006-03-01  Katsumi Yamaoka  <yamaoka@jpl.org>
20683
20684         * lpath.el: Fbind line-number-at-pos.
20685
20686 2006-02-28  Katsumi Yamaoka  <yamaoka@jpl.org>
20687
20688         * mm-util.el (mm-with-unibyte-current-buffer): Add note.
20689
20690 2006-02-28  Reiner Steib  <Reiner.Steib@gmx.de>
20691
20692         * gnus-art.el (gnus-button): New face.
20693         (gnus-article-button-face): Use it.
20694
20695         * gnus-sum.el (gnus-summary-tool-bar-gnome):
20696         Add gnus-summary-next-page.  Re-order.
20697
20698         * gnus-group.el (gnus-group-tool-bar-gnome): prev-node and
20699         next-node are now included.
20700         (gnus-group-redraw-line-number): New internal variable.
20701         (gnus-group-redraw-check): Helper function for updating the tool
20702         bar.
20703         (gnus-group-tool-bar-update): Add gnus-group-redraw-check.
20704
20705         * gmm-utils.el (gmm-tool-bar-item): Add TODO about modifiers.
20706
20707         * spam.el (spam-spamassassin-score-regexp): New internal variable.
20708         (spam-extra-header-to-number, spam-check-spamassassin-headers):
20709         Use it to match format of Spamassassin 3.0 and later.
20710         Reported by IRIE Tetsuya <irie@t.email.ne.jp>.
20711         (spam-check-bogofilter)
20712         (spam-bogofilter-register-with-bogofilter): Fix args of
20713         `gnus-error' calls.
20714
20715 2006-02-28  Reiner Steib  <Reiner.Steib@gmx.de>
20716
20717         * gnus-draft.el (gnus-draft-send): Bind message-signature to avoid
20718         unnecessary interaction when sending queued mails.
20719         Reported by TAKAHASHI Yoshio <tkh@jp.fujitsu.com>.
20720
20721 2006-02-27  Reiner Steib  <Reiner.Steib@gmx.de>
20722
20723         * gnus-sum.el (gnus-sequence-of-unread-articles): Return nil if
20724         first or last are nil.
20725
20726 2006-02-24  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
20727
20728         * nnweb.el (nnweb-gmane-create-mapping): Don't choke on ^M.
20729
20730 2006-02-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20731
20732         * gnus-int.el (gnus-open-server): Respect gnus-batch-mode.
20733
20734 2006-02-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20735
20736         * dns.el (query-dns): Protect more against buggy tcp output.
20737
20738 2006-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
20739
20740         * nnweb.el (nnweb-type-definition, nnweb-gmane-search): Use new
20741         nov.php.
20742
20743 2006-02-24  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
20744
20745         * nnweb.el (nnweb-type-definition, nnweb-gmane-create-mapping)
20746         (nnweb-gmane-wash-article, nnweb-gmane-search): Fix Gmane web
20747         groups.  Kudos to Olly Betts <olly@survex.com> for providing NOV
20748         output on the server side.
20749         (nnweb-google-create-mapping): Update regexps and add some
20750         progress indication.
20751
20752 2006-02-23  Reiner Steib  <Reiner.Steib@gmx.de>
20753
20754         * gnus-group.el (gnus-group-tool-bar-gnome):
20755         Fix gnus-agent-toggle-plugged.  Re-order icons.
20756         (gnus-group-tool-bar-gnome):
20757         Add gnus-group-{prev,next}-unread-group.
20758         (gnus-group-tool-bar-gnome): Re-order icons.
20759
20760         * gnus-sum.el (gnus-summary-tool-bar-gnome):
20761         Move gnus-summary-insert-new-articles.
20762
20763         * message.el (message-tool-bar-gnome, message-tool-bar-retro):
20764         Fix comments.
20765
20766         * utf7.el (utf7-utf-16-coding-system): Fix comment.  utf-16-be is
20767         also available in Emacs 21.3.
20768
20769         * message.el (message-fix-before-sending): Change "Emacs 22" to
20770         "Emacs 23 (unicode)" in comment.
20771
20772         * qp.el (quoted-printable-encode-region): Change "Emacs 22" to
20773         "Emacs 23 (unicode)" in comment.
20774
20775         * mm-util.el: Change "Emacs 22" to "Emacs 23 (unicode)" in
20776         comment.
20777         (mm-coding-system-p): Add comment about no-MULE XEmacs.
20778
20779         * mm-view.el (mm-fill-flowed): Add :version.
20780
20781 2006-02-23  Katsumi Yamaoka  <yamaoka@jpl.org>
20782
20783         * gmm-utils.el (gmm-image-load-path): Don't modify image-load-path
20784         and load-path.
20785
20786 2006-02-22  Reiner Steib  <Reiner.Steib@gmx.de>
20787
20788         * message.el: Autoload gmm-image-load-path.
20789         (message-tool-bar-retro): Prepend "gnus/" subdirectory to some
20790         icon file names.  Use old Emacs 21 "mail_send.xpm" icon for
20791         consitency.
20792
20793         * gmm-utils.el (gmm-image-load-path): Also search in
20794         "../etc/images".  Don't set gmm-image-load-path if we don't find
20795         the image.
20796
20797 2006-02-22  Katsumi Yamaoka  <yamaoka@jpl.org>
20798
20799         * gmm-utils.el (gmm-image-load-path): Don't make
20800         `gmm-image-load-path' include subdirectories which the second arg
20801         `image' might specify.
20802
20803         * gnus-group.el (gnus-group-tool-bar-retro): Prepend the "gnus/"
20804         subdirectory to icon file names.
20805
20806         * gnus-sum.el (gnus-summary-tool-bar-retro): Ditto.
20807
20808 2006-02-21  Reiner Steib  <Reiner.Steib@gmx.de>
20809
20810         * gnus-group.el (gnus-group-make-tool-bar): Add IMAGE argument to
20811         gmm-image-load-path calls.
20812
20813         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
20814
20815         * message.el (message-make-tool-bar): Ditto.
20816
20817         * mml.el (mml-preview): Add comment concerning tool bar icons.
20818
20819         * gnus-group.el (gnus-group-tool-bar-gnome): Use new icon names.
20820         (gnus-group-make-tool-bar): Use `gmm-image-load-path'.
20821
20822         * gnus-sum.el (gnus-summary-tool-bar-gnome): Use new icon names.
20823         (gnus-summary-make-tool-bar): Use `gmm-image-load-path'.
20824
20825         * message.el (message-tool-bar-gnome): Use new icon names.
20826         (message-make-tool-bar): Use `gmm-image-load-path'.
20827
20828         * gmm-utils.el (gmm-defun-compat, gmm-image-search-load-path):
20829         New functions from MH-E.
20830         (gmm-image-load-path): New variable from MH-E.
20831         (gmm-image-load-path): New function from MH-E.  Add arguments
20832         LIBRARY, IMAGE and PATH.  Don't modify paths.  Don't use
20833         *-image-load-path-called-flag.
20834
20835 2006-02-21  Milan Zamazal  <pdm@brailcom.org>
20836
20837         * mm-view.el (mm-view-pkcs7-verify): Implement using smime.el.
20838
20839 2006-02-21  Wolfram Fenske  <wolfram.fenske@student.uni-magdeburg.de>  (tiny change)
20840
20841         * nnimap.el (nnimap-request-move-article): Change folder back to
20842         source group before deleting.
20843
20844 2006-02-20  Reiner Steib  <Reiner.Steib@gmx.de>
20845
20846         * mm-util.el (mm-charset-override-alist): Fix type in doc string.
20847
20848         * gnus-art.el (mm-url-insert-file-contents-external):
20849         Autoload mm-url.
20850
20851         * mm-uu.el (mm-uu-type-alist): Improve `LaTeX'.
20852
20853 2006-02-20  Katsumi Yamaoka  <yamaoka@jpl.org>
20854
20855         * rfc2047.el (rfc2047-charset-to-coding-system): Don't check the
20856         coding system which mm-charset-to-coding-system returns for a
20857         given charset is valid.
20858
20859 2006-02-16  Juanma Barranquero  <lekktu@gmail.com>
20860
20861         * html2text.el (html2text-remove-tag-list):
20862         * spam-stat.el (spam-stat-buffer-words): Fix typo in docstring.
20863
20864 2006-02-14  Chong Yidong  <cyd@stupidchicken.com>
20865
20866         * gnus-cus.el: Revert 2005-10-17 change.
20867
20868 2006-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
20869
20870         * gnus-art.el (article-strip-banner):
20871         Call article-really-strip-banner only when the regexp match is made.
20872
20873 2006-02-16  Katsumi Yamaoka  <yamaoka@jpl.org>
20874
20875         * gnus-art.el (article-strip-banner):
20876         Use gnus-extract-address-components instead of
20877         mail-header-parse-addresses to make it work with non-ASCII text;
20878         remove mail-encode-encoded-word-string.
20879
20880         * rfc2231.el (rfc2231-parse-string): Attempt to parse parameter
20881         values which are surrounded with \"...\"; make it never cause a
20882         Lisp error; give up parsing of parameters if it failed in
20883         extracting type.
20884
20885 2006-02-14  Arne Jørgensen  <arne@arnested.dk>
20886
20887         * smime.el (smime-cert-by-ldap-1): Fix bug where
20888         `smime-ldap-search' returns results without userCertificates.
20889
20890 2006-02-15  Katsumi Yamaoka  <yamaoka@jpl.org>
20891
20892         * mm-util.el (mm-make-temp-file): Don't catch file-error in Emacs.
20893
20894 2006-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
20895
20896         * spam.el (spam-check-spamassassin-headers): Adapt format for
20897         Spamassassin 3.0 or later.  Reported by ARISAWA Akihiro
20898         <ari@mbf.ocn.ne.jp>.
20899         (spam-list-of-processors): Add spam-use-gmane.
20900
20901 2006-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
20902
20903         * mm-util.el (mm-make-temp-file): Import the Emacs 22 version of
20904         make-temp-file; make it work with XEmacs as well.
20905
20906         * gnus-art.el (gnus-article-browse-html-parts): Use the 3rd arg of
20907         mm-make-temp-file.
20908
20909         * mm-decode.el (mm-display-external): Use the 3rd arg of
20910         mm-make-temp-file.
20911         (mm-create-image-xemacs): Ditto.
20912
20913 2006-02-14  Katsumi Yamaoka  <yamaoka@jpl.org>
20914
20915         * gnus-draft.el (gnus-draft-send): Replace message-narrow-to-head
20916         with message-narrow-to-headers.
20917         (gnus-draft-setup): Narrow to header to run message-fetch-field.
20918         (gnus-draft-check-draft-articles): New function.
20919         (gnus-draft-edit-message, gnus-draft-send-message): Use it.
20920
20921 2006-02-13  Reiner Steib  <Reiner.Steib@gmx.de>
20922
20923         * gnus-art.el (gnus-article-browse-html-parts):
20924         `hs-show-html-list' should read `gnus-article-browse-html-parts'.
20925         Don't use suffix argument for mm-make-temp-file for Emacs 21
20926         compatibility.  Remove useless `format'.
20927
20928 2006-02-13  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
20929
20930         * nnweb.el (nnweb-google-wash-article): Update regexps.
20931         (nnweb-group-alist): Use defvoo instead of defvar.
20932
20933 2006-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
20934
20935         * nnoo.el (nnoo-declare): Don't generate duplicate entries when
20936         re-loading nn* modules.
20937
20938 2006-02-10  Reiner Steib  <Reiner.Steib@gmx.de>
20939
20940         * gnus-group.el (gnus-group-make-tool-bar): Remove duplicate check
20941         for `tool-bar-mode' and don't check it's default-value.
20942
20943         * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
20944
20945         * message.el (message-make-tool-bar): Ditto.
20946
20947         * gnus-art.el (gnus-article-browse-html-parts): Remove useless
20948         `substring'.  Shorten tmp-file name.
20949
20950         * gnus.el: Remove bogus comment.
20951
20952 2006-02-10  Hynek Schlawack  <hynek@ularx.de>
20953
20954         * gnus-art.el (gnus-article-browse-html-parts): New function.
20955         (gnus-article-browse-html-article): New function for viewing html
20956         articles with a browser.
20957
20958 2006-02-09  Daiki Ueno  <ueno@unixuser.org>
20959
20960         * pgg-gpg.el (pgg-gpg-encrypt-region): Don't convert line-endings
20961         in elisp.
20962         (pgg-gpg-encrypt-symmetric-region): Ditto.
20963         (pgg-gpg-sign-region): Ditto.
20964
20965         * pgg-def.el (pgg-text-mode): New variable.
20966
20967         * mml2015.el (mml2015-pgg-sign): Enable pgg-text-mode.
20968         (mml2015-pgg-encrypt): Ditto.
20969
20970         * mml1991.el (mml1991-pgg-sign): Enable pgg-text-mode.
20971         (mml1991-pgg-encrypt): Ditto.
20972
20973 2006-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
20974
20975         * nnfolder.el (nnfolder-insert-newsgroup-line):
20976         Use message-make-date instead of current-time-string.
20977
20978         * mm-view.el (mm-inline-message): Don't set gnus-newsgroup-charset
20979         to gnus-decoded which mm-uu might set.
20980
20981 2006-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>
20982
20983         * rfc2231.el (rfc2231-parse-string): Sort segmented parameters;
20984         don't decode quoted parameters; remove misimported Emacs code.
20985         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
20986         (rfc2231-decode-encoded-string): Don't use split-string which
20987         behaves differently according to Emacs version; use
20988         mm-decode-coding-region to convert charset to coding-system.
20989         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
20990         (rfc2231-encode-string): Remove misimported Emacs code.
20991
20992 2006-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
20993
20994         * gnus-art.el (article-decode-charset): Don't use ignore-errors
20995         when calling mail-header-parse-content-type.
20996         (article-de-quoted-unreadable): Ditto.
20997         (article-de-base64-unreadable): Ditto.
20998         (article-wash-html): Ditto.
20999
21000         * mm-decode.el (mm-dissect-buffer): Don't use ignore-errors when
21001         calling mail-header-parse-content-type and
21002         mail-header-parse-content-disposition.
21003         (mm-find-raw-part-by-type): Don't use ignore-errors when calling
21004         mail-header-parse-content-type.
21005
21006         * mml.el (mml-insert-mime-headers): Use mml-insert-parameter to
21007         insert charset and format parameters; encode description after
21008         inserting it to buffer.
21009         (mml-insert-parameter): Fold lines properly even if a parameter is
21010         segmented into two or more lines; change the max column to 76.
21011
21012         * rfc1843.el (rfc1843-decode-article-body): Don't use
21013         ignore-errors when calling mail-header-parse-content-type.
21014
21015         * rfc2231.el (rfc2231-parse-string): Return at least type if
21016         possible; don't cause an error even if it fails in parsing of
21017         parameters.  Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
21018         (rfc2231-encode-string): Don't break lines at the beginning, leave
21019         it to mml-insert-parameter.
21020
21021         * webmail.el (webmail-yahoo-article): Don't use ignore-errors when
21022         calling mail-header-parse-content-type.
21023
21024 2006-02-06  Reiner Steib  <Reiner.Steib@gmx.de>
21025
21026         * spam-report.el (spam-report-gmane-use-article-number):
21027         Improve doc string.
21028         (spam-report-gmane-internal): Check if a suitable header was found
21029         in the article.
21030
21031 2006-02-04  Katsumi Yamaoka  <yamaoka@jpl.org>
21032
21033         * rfc2231.el (rfc2231-parse-string): Revert 2006-02-03 change.
21034         (rfc2231-encode-string): Make param*=value always begin with LWSP.
21035
21036 2006-02-05  Romain Francoise  <romain@orebokech.com>
21037
21038         Update copyright notices of all files in the gnus directory.
21039
21040 2006-02-03  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
21041
21042         * nnweb.el (nnweb-request-group): Avoid growing overview files.
21043
21044 2006-02-03  Katsumi Yamaoka  <yamaoka@jpl.org>
21045
21046         * rfc2231.el (rfc2231-parse-string): Add missing semicolons to
21047         segmented lines of parameter value to cope with Thunderbird 1.5
21048         bug (cf. https://bugzilla.mozilla.org/show_bug.cgi?id=323318).
21049         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
21050         (rfc2231-encode-string): Don't make lines exceeding 76 column.
21051
21052 2006-02-01  Max Froumentin  <max@lapin-bleu.net>  (tiny change)
21053
21054         * mml.el (mml-generate-mime-1): Correct the order of inline signed
21055         parts.
21056
21057 2006-01-31  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
21058
21059         * nnweb.el (nnweb-group-alist): Use defvar instead of defvoo,
21060         there's only one active file for all servers.
21061         (nnweb-request-scan): Make sure nnweb-articles is initialized on
21062         solid groups.  Gnus might have used a FAST request to select the group.
21063         (nnweb-request-group, nnweb-google-parse-1): Don't keep nnweb-type
21064         and nnweb-search redundantly in the active file.
21065         (nnweb-request-list): Don't list bogus groups.  There can only be one.
21066         (nnweb-request-create-group): Don't use ARGS.
21067         (nnweb-possibly-change-server, nnweb-request-group): Remove some
21068         initializations.  Let nnoo do the work.
21069
21070 2006-01-31  Katsumi Yamaoka  <yamaoka@jpl.org>
21071
21072         * mm-uu.el (mm-uu-emacs-sources-extract, mm-uu-diff-extract):
21073         Say the part has been decoded.
21074
21075         * mm-view.el (mm-display-inline-fontify): Get decoded part rightly.
21076
21077 2006-01-31  Kevin Ryde  <user42@zip.com.au>
21078
21079         * mailcap.el (mailcap-viewer-passes-test): Don't put "(nil t)" into
21080         mailcap-viewer-test-cache when there's no 'test clause, since that
21081         will invert the meaning of a "nil" test previously determined by
21082         mailcap-mailcap-entry-passes-test.
21083
21084 2006-01-30  Katsumi Yamaoka  <yamaoka@jpl.org>
21085
21086         * gnus-group.el: Bind tool-bar-mode instead of tool-bar-map when
21087         compiling.
21088
21089         * gnus-sum.el: Ditto.
21090
21091         * message.el: Don't bind tool-bar-map when compiling.
21092
21093 2006-01-30  Reiner Steib  <Reiner.Steib@gmx.de>
21094
21095         * nnweb.el (nnweb-google-parse-1): Clarify some comments.
21096
21097 2006-01-30  Andreas Seltenreich  <uwi7@stud.uni-karlsruhe.de>
21098
21099         * nnweb.el (nnweb-type-definition, nnweb-google-parse-1)
21100         (nnweb-google-create-mapping, nnweb-google-search): Adapt to
21101         current Google Groups.
21102
21103 2006-01-26  Reiner Steib  <Reiner.Steib@gmx.de>
21104
21105         * gnus-sum.el (gnus-summary-make-tool-bar): Add checks for XEmacs
21106         and tool-bar-mode.
21107
21108         * gnus-group.el (gnus-group-make-tool-bar): Add checks for XEmacs
21109         and tool-bar-mode.
21110
21111         * message.el (message-tool-bar-update): Simplify.
21112         (message-make-tool-bar): Add checks for XEmacs and tool-bar-mode.
21113
21114         * gnus-sum.el (gnus-summary-tool-bar-update): Check for
21115         gnus-summary-buffer.
21116         (gnus-summary-tool-bar-gnome): Use "reply-author" icon for
21117         gnus-summary-reply.
21118
21119         * gmm-utils.el (gmm): Add :version.
21120
21121 2006-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
21122
21123         * Makefile.in (clean): New rule.
21124         (distclean): Use it.
21125
21126 2006-01-26  Steve Youngs  <steve@sxemacs.org>
21127
21128         * gmm-utils.el (gmm-tool-bar-item, gmm-tool-bar-zap-list):
21129         Don't autoload.
21130
21131 2006-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
21132
21133         * gmm-utils.el (gmm-verbose): Add :group.
21134
21135 2006-01-25  Reiner Steib  <Reiner.Steib@gmx.de>
21136
21137         * message.el: Change some comments WRT tool-bars.
21138
21139         * gnus-sum.el (gnus-summary-tool-bar)
21140         (gnus-summary-tool-bar-gnome, gnus-summary-tool-bar-retro)
21141         (gnus-summary-tool-bar-zap-list): New variables.
21142         (gnus-summary-make-tool-bar): Complete rewrite using
21143         `gmm-tool-bar-from-list'.
21144
21145         * gnus-group.el (gnus-group-tool-bar, gnus-group-tool-bar-gnome)
21146         (gnus-group-tool-bar-retro, gnus-group-tool-bar-zap-list):
21147         New variables.
21148         (gnus-group-make-tool-bar): Complete rewrite using
21149         `gmm-tool-bar-from-list'.
21150         (gnus-group-tool-bar-update): New function.
21151
21152         * message.el (message-mode-field-menu): Add "Show hidden Headers".
21153
21154 2006-01-25  Katsumi Yamaoka  <yamaoka@jpl.org>
21155
21156         * mm-uu.el (mm-uu-dissect-text-parts): Ignore it if a given part
21157         is dissected into a single part of which the type is the same as
21158         the given one; decode charset.
21159
21160 2006-01-21  Kevin Ryde  <user42@zip.com.au>
21161
21162         * mailcap.el (mailcap-parse-mailcap-extras): "test" key must go
21163         into alists as symbol not string, since that's what
21164         mailcap-viewer-passes-test and mailcap-mailcap-entry-passes-test
21165         look for.
21166
21167 2006-01-24  Reiner Steib  <Reiner.Steib@gmx.de>
21168
21169         * gmm-utils.el (gmm-tool-bar-item): Add "Separator".
21170         (gmm-tool-bar-from-list): Suppress tooltip for `gmm-ignore'.
21171
21172         * message.el (message-tool-bar-gnome): Use gmm-ignore.
21173
21174 2006-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
21175
21176         * gnus-xmas.el (gnus-mime-security-button-menu): New alias.
21177         (gnus-xmas-mime-security-button-menu): New function.
21178
21179         * gnus-art.el (gnus-mime-security-button-commands): New variable.
21180         (gnus-mime-security-button-menu): New definition.
21181         (gnus-mime-security-button-map): Use them.
21182         (gnus-mime-security-button-menu): New function.
21183         (gnus-insert-mime-security-button): Addition to help echo.
21184         (gnus-mime-security-run-function, gnus-mime-security-save-part)
21185         (gnus-mime-security-pipe-part): New functions.
21186
21187         * mm-uu.el (mm-uu-buttonize-original-text-parts): Remove.
21188         (mm-uu-dissect-text-parts): Revert a part of 2006-01-23 change.
21189
21190         * mm-decode.el (mm-handle-set-disposition): Remove.
21191         (mm-handle-set-description): Remove.
21192
21193 2006-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
21194
21195         * mm-view.el (mm-w3m-standalone-supports-m17n-p): New variable.
21196         (mm-w3m-standalone-supports-m17n-p): New function.
21197         (mm-inline-text-html-render-with-w3m-standalone): Use it to alter
21198         w3m usage.
21199
21200         * gnus-art.el (gnus-article-wash-html-with-w3m-standalone):
21201         Use mm-w3m-standalone-supports-m17n-p to alter w3m usage.
21202
21203 2006-01-23  Reiner Steib  <Reiner.Steib@gmx.de>
21204
21205         * message.el (message-tool-bar-zap-list):
21206         Use gmm-tool-bar-zap-list as custom type.
21207         (message-tool-bar-update): New function.
21208         (message-tool-bar, message-tool-bar-gnome)
21209         (message-tool-bar-retro): Add message-tool-bar-update.
21210         (message-tool-bar-gnome): Add flyspell-buffer.
21211
21212         * gnus-util.el (gnus-error): Describe `args'.
21213
21214         * gmm-utils.el (gmm-error): Describe `args'.
21215         (gmm-tool-bar-zap-list): New widget.
21216         (gmm-tool-bar-from-list): Improve description of `zap-list'.
21217
21218 2006-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
21219
21220         * mm-uu.el (mm-uu-buttonize-original-text-parts): New variable.
21221         (mm-uu-dissect-text-parts): Buttonize original text parts; reduce
21222         the number of recursive calls.
21223
21224         * mm-decode.el (mm-handle-set-disposition): New macro.
21225         (mm-handle-set-description): New macro.
21226
21227 2006-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
21228
21229         * mm-uu.el (mm-uu-dissect-text-parts): Decode content transfer
21230         encoding.
21231
21232 2006-01-20  Reiner Steib  <Reiner.Steib@gmx.de>
21233
21234         * message.el (message-tool-bar-zap-list, message-tool-bar)
21235         (message-tool-bar-gnome, message-tool-bar-retro): New variables.
21236         (message-tool-bar-local-item-from-menu): Remove.
21237         (message-tool-bar-map): Replace by `message-make-tool-bar'.
21238         (message-make-tool-bar): New function.
21239         (message-mode): Use `message-make-tool-bar'.
21240
21241         * gmm-utils.el: New file.
21242         (gmm-verbose, gmm-message, gmm-error): From gnus-utils.el.
21243         (gmm-lazy): New widget copied from `nnmail.el'.
21244         (gmm-tool-bar-from-list): New function for creating customizable
21245         tool bars.
21246         (gmm-tool-bar-from-list): Fix typos in doc string.  Remove debug
21247         output.
21248         (gmm): Add :prefix to defgroup.
21249
21250 2006-01-20  Per Abrahamsen  <abraham@dina.kvl.dk>
21251
21252         * gmm-utils.el (gmm-widget-p): New function.
21253
21254 2006-01-20  Reiner Steib  <Reiner.Steib@gmx.de>
21255
21256         * mml.el (mml-attach-file): Describe `description' in doc string.
21257         (mml-menu): Add Emacs MIME manual and PGG manual.
21258
21259 2006-01-20  Richard M. Stallman  <rms@gnu.org>
21260
21261         * mm-url.el (mm-url-load-url): Require url-parse and url-vars.
21262
21263 2006-01-20  Kevin Greiner  <kevin.greiner@compsol.cc>
21264
21265         * nntp.el (nntp-end-of-line): Doc fix.
21266
21267 2006-01-20  Chong Yidong  <cyd@stupidchicken.com>
21268
21269         * imap.el (imap-open): Handle case where buffer is a buffer
21270         object.
21271
21272 2005-01-20  Stefan Monnier  <monnier@iro.umontreal.ca>
21273
21274         * gnus-delay.el (gnus-delay): Don't autoload.
21275         It's useless and could trigger a bug in cus-dep.el causing ldefs-boot
21276         to be re-loaded when customizing the `gnus-delay' group.
21277
21278 2005-01-20  Chong Yidong  <cyd@stupidchicken.com>
21279
21280         * message.el (message-insert-citation-line): Use newlines.
21281
21282 2006-01-19  Ken Manheimer  <ken.manheimer@gmail.com>
21283
21284         * pgg-pgp.el (pgg-pgp-encrypt-region, pgg-pgp-decrypt-region)
21285         (pgg-pgp-sign-region): Add optional 'passphrase' argument to all
21286         these routines, so the passphrase can be managed externally and
21287         passed in to the system.
21288         (pgg-pgp-decrypt-region, pgg-pgp-sign-region): Use new name for
21289         pgg-add-passphrase-to-cache function.
21290
21291         * pgg-pgp5.el (pgg-pgp5-encrypt-region, pgg-pgp5-decrypt-region)
21292         (pgg-pgp5-sign-region): Add optional 'passphrase' argument to all
21293         these routines, so the passphrase can be managed externally and
21294         passed in to the system.
21295         (pgg-pgp5-sign-region): Use new name of
21296         pgg-add-passphrase-to-cache function.
21297
21298 2006-01-19  Ken Manheimer  <ken.manheimer@gmail.com>
21299
21300         * pgg-gpg.el (pgg-gpg-select-matching-key): Fix: look at the right
21301         part of the decoded armor to find the key-identifier.
21302         (pgg-gpg-lookup-key-owner): New function to return the
21303         human-readable identifier of a key owner.
21304         (pgg-gpg-key-id-from-key-owner): Make it easy to identify the key
21305         itself.
21306         (pgg-gpg-decrypt-region): Prompt with the key owner (rather than
21307         the key value) if we have a key and can match it against a secret
21308         key.  Also, added a note pointing out fact that the prompt only
21309         indicates the first matching key.
21310
21311         * pgg.el (pgg-decrypt): Passing along 'passphrase' in call to
21312         pgg-decrypt-region.
21313         (pgg-add-passphrase-to-cache): Rename from
21314         `pgg-add-passphrase-cache' to reduce confusion (all callers
21315         changed).
21316         (pgg-remove-passphrase-from-cache): Rename from
21317         `pgg-remove-passphrase-cache' to reduce confusion (all callers
21318         changed).
21319         (pgg-read-passphrase, pgg-add-passphrase-cache)
21320         (pgg-remove-passphrase-cache): Add informative docstrings.
21321         (pgg-decrypt): Convey provided passphrase in subordinate call to
21322         pgg-decrypt-region.
21323
21324 2006-01-19  Ken Manheimer  <ken.manheimer+emacs@gmail.com>
21325
21326         * pgg.el (pgg-encrypt-region, pgg-encrypt-symmetric-region)
21327         (pgg-encrypt-symmetric, pgg-encrypt, pgg-decrypt-region)
21328         (pgg-decrypt, pgg-sign-region, pgg-sign): Add optional
21329         'passphrase' argument, so the passphrase can be managed externally
21330         and then passed in to the system.
21331
21332         * pgg.el (pgg-read-passphrase, pgg-add-passphrase-cache)
21333         (pgg-remove-passphrase-cache): Add optional 'notruncate' argument,
21334         so the passphrase cache can be used reliably with identifiers
21335         besides a pgp packet's key id.
21336
21337         * pgg-gpg.el (pgg-gpg-encrypt-region)
21338         (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
21339         (pgg-gpg-sign-region): Add optional 'passphrase' argument to all
21340         these routines, so the passphrase can be managed externally and
21341         passed in to the system.
21342
21343         * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Add optional
21344         'notruncate' argument, so the passphrase cache can be used
21345         reliably with identifiers besides a pgp packet's key id.
21346
21347 2006-01-19  Sascha Wilde  <swilde@sha-bang.de>
21348
21349         * pgg-gpg.el (pgg-gpg-encrypt-symmetric-region): New function for
21350         symmetric encryption.
21351         (pgg-gpg-symmetric-key-p): New function to check for an symmetric
21352         encrypted session key.
21353         (pgg-gpg-decrypt-region): When decrypting a symmetric encrypted
21354         message ask for the passphrase in a proper way.
21355
21356         * pgg.el (pgg-encrypt-symmetric, pgg-encrypt-symmetric-region):
21357         New user commands for symmetric encryption.
21358
21359 2006-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
21360
21361         * mm-bodies.el (mm-decode-body): Don't decode decoded body.
21362
21363         * mm-uu.el (mm-uu-dissect-text-parts): Dissect dissected parts.
21364
21365 2006-01-19  Mark D. Baushke  <mdb@gnu.org>
21366
21367         * pgg-gpg.el (pgg-gpg-encrypt-region): Add --textmode to gpg args.
21368
21369 2006-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
21370
21371         * mm-decode.el (mm-inlined-types): Add application/pgp.
21372         (mm-automatic-display): Ditto.
21373
21374         * mm-uu.el (mm-uu-dissect-text-parts): Recognize application/pgp
21375         part as text.
21376
21377 2006-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
21378
21379         * nnrss.el: Update copyright.
21380         (nnrss-opml-import): Query whether to subscribe to each entry.
21381
21382         * gnus-art.el:
21383         * gnus-sum.el:
21384         * gnus-xmas.el:
21385         * messagexmas.el:
21386         * mm-uu.el:
21387         * mm-view.el: Update copyright.
21388
21389 2006-01-16  Reiner Steib  <Reiner.Steib@gmx.de>
21390
21391         * message.el (message-info): New function.
21392         (message-mode-menu): Add it.
21393         Update copyright.
21394
21395         * ChangeLog: Fix and update copyright.
21396
21397 2006-01-13  Romain Francoise  <romain@orebokech.com>
21398
21399         * message.el (message-forward-subject-name-subject): Prefer the
21400         address to 'nowhere' if the sender has no name.
21401         Fix typo.  Update copyright year.
21402
21403 2006-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
21404
21405         * gnus-art.el (article-wash-html):
21406         Use gnus-summary-show-article-charset-alist if a numeric arg is given.
21407         (gnus-article-wash-html-with-w3m-standalone): New function.
21408
21409         * mm-view.el (mm-text-html-renderer-alist): Map w3m-standalone to
21410         mm-inline-text-html-render-with-w3m-standalone.
21411         (mm-text-html-washer-alist): Map w3m-standalone to
21412         gnus-article-wash-html-with-w3m-standalone.
21413         (mm-inline-text-html-render-with-w3m-standalone): New function.
21414
21415 2006-01-12  Reiner Steib  <Reiner.Steib@gmx.de>
21416
21417         * mm-uu.el (mm-uu-type-alist): Fix previous message-marks commit.
21418         Improve LaTeX.
21419
21420 2006-01-10  Katsumi Yamaoka  <yamaoka@jpl.org>
21421
21422         * nnrss.el (nnrss-wash-html-in-text-plain-parts): New variable.
21423         (nnrss-request-article): Render text/plain parts as HTML.
21424
21425         * gnus-art.el (gnus-article-wash-html-with-w3m): No need to narrow
21426         the buffer.
21427
21428 2006-01-08  Reiner Steib  <Reiner.Steib@gmx.de>
21429
21430         * gnus-cus.el (gnus-group-parameters): Sync posting-style with
21431         custom definition of `gnus-posting-styles'.
21432
21433         * gnus-start.el (gnus-gnus-to-quick-newsrc-format):
21434         Bind print-circle.  Suggested by Kalle Olavi Niemitalo <kon@iki.fi>.
21435
21436 2006-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
21437
21438         * gnus-group.el (gnus-useful-groups): Use Gmane for ding.
21439         Use nntp for bug archive.
21440
21441 2006-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
21442
21443         * nnrss.el (nnrss-request-article): Fix the way to fill text/plain
21444         parts.
21445         (nnrss-normalize-date): New function converts ISO 8601 date into
21446         RFC822 style.  Suggested by Mark Plaksin <happy@mcplaksin.org>.
21447         (nnrss-check-group): Use it.
21448
21449 2006-01-01  Katsumi Yamaoka  <yamaoka@jpl.org>
21450
21451         * gnus-sum.el (gnus-summary-work-articles): Remove useless `min'.
21452
21453         * nnrss.el (nnrss-fetch): Make it fail gracefully when it can't
21454         fetch a feed.  Suggested by Mark Plaksin <happy@mcplaksin.org>.
21455         (nnrss-insert-w3): Ditto.
21456
21457 2005-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
21458
21459         * gnus-uu.el (gnus-uu-digest-mail-forward): Reverse the order of
21460         the articles to be forwarded including the case where neither a
21461         number of articles nor a region is specified.
21462
21463 2005-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
21464
21465         * nnrss.el (nnrss-request-article): Fix last change; fill
21466         text/plain parts.
21467
21468 2005-12-20  Katsumi Yamaoka  <yamaoka@jpl.org>
21469
21470         * nnrss.el (nnrss-request-article): Replace <br />s with newlines
21471         in text/plain part.
21472         (nnrss-check-group): Don't add excessive newline to dc:subject.
21473
21474 2005-12-19  Mark Plaksin  <happy@mcplaksin.org>  (tiny change)
21475
21476         * nnrss.el (nnrss-check-group): Put the RSS dc:subject in the
21477         article.
21478
21479 2005-12-18  Reiner Steib  <Reiner.Steib@gmx.de>
21480
21481         * nnml.el: Don't require gnus-bcklg.  Autoload it.
21482         (nnml-use-compressed-files, nnml-save-mail): Support other
21483         comression programs such as bzip2.
21484
21485 2005-12-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21486
21487         * dns.el (query-dns): Make sure we check the buffer size before
21488         removing tcp headers.
21489
21490 2005-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
21491
21492         * gnus-art.el (gnus-article-delete-text-of-type): Enable it to
21493         remove MIME buttons associated with multipart/alternative parts.
21494         (gnus-mime-display-alternative): Tag buttons using `article-type'
21495         text property.
21496
21497         * gnus-msg.el (gnus-copy-article-buffer): Remove MIME buttons
21498         associated with multipart/alternative parts.
21499
21500         * gnus-art.el (gnus-signature-separator): Fix custom type.
21501
21502         * mm-decode.el (mm-inlined-types): Fix custom type.
21503         (mm-keep-viewer-alive-types): Ditto.
21504         (mm-automatic-display): Ditto.
21505         (mm-attachment-override-types): Ditto.
21506         (mm-inline-override-types): Ditto.
21507         (mm-automatic-external-display): Ditto.
21508
21509 2005-12-15  Reiner Steib  <Reiner.Steib@gmx.de>
21510
21511         * spam-report.el (spam-report-user-mail-address)
21512         (spam-report-user-agent): New variables.
21513         (spam-report-url-ping-plain): Use spam-report-user-agent.
21514
21515 2005-12-14  Ralf Angeli  <angeli@iwi.uni-sb.de>
21516
21517         * gnus-art.el (gnus-button-handle-custom): Do not just use
21518         `customize-apropos' for any "M-x customize-*" button but the
21519         function called for.  Accept both the function name and its
21520         argument in order to achieve this.
21521         (gnus-button-alist): Remove support for "custom:" URL's.
21522         Pass function name to `gnus-button-handle-custom' in case of "M-x
21523         customize-*" buttons.
21524
21525 2005-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
21526
21527         * gnus-art.el (gnus-buttonized-mime-types): Mention addition of
21528         multipart/alternative and add xref to mm-discouraged-alternatives
21529         in doc string.
21530
21531         * mm-decode.el (mm-discouraged-alternatives): Add xref to
21532         gnus-buttonized-mime-types in doc string.
21533
21534 2005-12-08  Reiner Steib  <Reiner.Steib@gmx.de>
21535
21536         * mm-decode.el (mm-discouraged-alternatives): Fix custom type.
21537         Suggest image/.* in the doc string.
21538
21539 2005-12-12  Reiner Steib  <Reiner.Steib@gmx.de>
21540
21541         * mm-uu.el (mm-uu-type-alist): Don't depend on message.el for
21542         message-marks (Debian bug#342521).
21543
21544 2005-12-12  Simon Josefsson  <jas@extundo.com>
21545
21546         * password.el (password-read-from-cache): Add.
21547         (password-read): Use it.
21548
21549 2005-12-12  Katsumi Yamaoka  <yamaoka@jpl.org>
21550
21551         * rfc2047.el (rfc2047-charset-to-coding-system):
21552         Recognize us-ascii as a MIME charset.
21553
21554         * mm-bodies.el (mm-decode-content-transfer-encoding):
21555         Protect against the case where the 2nd arg TYPE is nil.
21556
21557 2005-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
21558
21559         * pop3.el (pop3-stream-type): Fix custom version.
21560
21561         * mm-uu.el (mm-uu-type-alist): Simplify uu regexp.
21562
21563 2005-12-09  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
21564
21565         * mm-decode.el (mm-display-external): Add missing cdr.
21566
21567 2005-12-07  Katsumi Yamaoka  <yamaoka@jpl.org>
21568
21569         * mm-decode.el (mm-display-external): Use nametemplate (defined in
21570         RFC1524) if it is in mailcap or add a suffix according to
21571         mailcap-mime-extensions when generating a temp filename; postpone
21572         deleting a temp file for 2 seconds for some wrappers, shell
21573         scripts, and so on, which might exit right after having started a
21574         viewer command as a background job.
21575
21576 2005-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
21577
21578         * nntp.el (nntp-marks-directory): Fix custom group.
21579
21580         * gnus-fun.el (gnus-face-from-file): Decrease quant in smaller
21581         steps when < 10.
21582
21583         * gnus-start.el (gnus-no-server-1):
21584         Mention `gnus-level-default-subscribed' in doc string.
21585
21586 2005-12-02  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
21587
21588         * mm-view.el (mm-inline-text-html-render-with-w3m): Fix misplaced
21589         parens.
21590
21591 2005-12-01  Katsumi Yamaoka  <yamaoka@jpl.org>
21592
21593         * gnus-xmas.el (gnus-use-toolbar): Revert.
21594         (gnus-xmas-setup-toolbar): Use global default-toolbar if
21595         gnus-use-toolbar is default.
21596
21597         * messagexmas.el (message-use-toolbar): Revert.
21598         (message-setup-toolbar): Use global default-toolbar if
21599         message-use-toolbar is default.
21600
21601 2005-11-30  Katsumi Yamaoka  <yamaoka@jpl.org>
21602
21603         * gnus-xmas.el (gnus-use-toolbar): Determine the default value
21604         according to default-toolbar-visible-p.
21605
21606         * messagexmas.el (message-use-toolbar): Ditto.
21607
21608 2005-11-26  Dave Love  <fx@gnu.org>
21609
21610         * tls.el (open-tls-stream): Rename arg SERVICE to PORT.
21611         (tls-program, tls-success): Provide openssl alternative.
21612
21613         * starttls.el: Doc fixes.
21614         (starttls-open-stream-gnutls, starttls-open-stream): Rename arg
21615         SERVICE to PORT.
21616
21617         * pop3.el (pop3-open-server) <ssl>: Clarify a loop.  Deal with
21618         port null or service name.
21619         (starttls-negotiate): Autoload.
21620
21621 2005-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
21622
21623         * message.el (message-kill-to-signature): Fix interactive spec.
21624
21625 2005-11-24  Katsumi Yamaoka  <yamaoka@jpl.org>
21626
21627         * pop3.el (pop3-open-server): Recognize a string as a service name.
21628
21629 2005-11-24  Pascal Rigaux  <pixel@mandriva.com>  (tiny change)
21630
21631         * rfc2231.el (rfc2231-parse-string): Support non-ascii chars.
21632
21633 2005-11-23  Dave Love  <fx@gnu.org>
21634
21635         Add pop3s, pop3/starttls.
21636
21637         * pop3.el (pop3-authentication-scheme): Clarify doc.
21638         (open-tls-stream, starttls-open-stream): Autoload.
21639         (pop3-stream-type): New.
21640         (pop3-open-server): Use it.
21641
21642         * mail-source.el (mail-sources): Fix some :types.  Add stream type
21643         for POP.
21644         (mail-source-keyword-map): Add :stream for POP.
21645         (mail-source-fetch-pop): Use pop3-stream-type.
21646
21647 2005-11-22  Katsumi Yamaoka  <yamaoka@jpl.org>
21648
21649         * nnmail.el (nnmail-fancy-expiry-target): Use current-time instead
21650         of current-time-string.
21651
21652 2005-11-20  Stefan Schimanski  <schimmi@debian.org>  (tiny change)
21653
21654         * nnmail.el (nnmail-fancy-expiry-target): Protect against invalid
21655         date header.
21656
21657 2005-11-19  Kevin Greiner  <kevin.greiner@compsol.cc>
21658
21659         * gnus-sum.el (gnus-fetch-old-headers): Updated docs to warn that
21660         it can seriously impact performance as it bypasses the agent's
21661         local caches.
21662
21663 2005-11-19  Kevin Greiner  <kevin.greiner@compsol.cc>
21664
21665         * gnus-agent.el (gnus-agent-possibly-synchronize-flags): A server
21666         must be explicitly online rather than "not explicitly offline" for
21667         its flags to be synchronized.
21668
21669         * gnus-sum.el (gnus-summary-remove-process-mark): Always return t so
21670         that gnus-uu-unmark-thread will function correctly.
21671
21672         * gnus-group.el (gnus-total-fetched-for): Reduced cutoff so that
21673         1024K is instead displayed as 1M.
21674
21675 2005-11-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21676
21677         * flow-fill.el (fill-flowed): Bind adaptive-fill-mode to nil.
21678
21679 2005-11-16  Boris Samorodov  <bsam@ipt.ru>  (tiny change)
21680
21681         * imap.el (imap-kerberos4-open): Ignore SSL stuff.
21682
21683 2005-11-13  Kevin Greiner  <kevin.greiner@compsol.cc>
21684
21685         * gnus-agent.el (gnus-agent-read-local): Trivial fix to format of
21686         error message to display actual error condition.
21687         (gnus-agent-save-local): Avoid saving symbols that are bound to
21688         nil as they simply result in a warning message in
21689         gnus-agent-read-local.
21690
21691 2005-11-13  Katsumi Yamaoka  <yamaoka@jpl.org>
21692
21693         * gnus-start.el (gnus-dribble-read-file): Use make-local-variable
21694         rather than make-variable-buffer-local for file-precious-flag.
21695
21696 2005-11-12  Kevin Greiner  <kevin.greiner@compsol.cc>
21697
21698         * gnus-agent.el (gnus-agent-braid-nov): Now tests new nov entries
21699         for duplicates which are removed.  The invalid sort check then
21700         triggers a rescan after the sort as sorting may have moved
21701         duplicate entries such that they can be cheaply detected.
21702
21703 2005-11-13  Katsumi Yamaoka  <yamaoka@jpl.org>
21704
21705         * gnus-start.el (gnus-dribble-read-file): Quote file-precious-flag.
21706
21707 2005-11-12  Kevin Greiner  <kevin.greiner@compsol.cc>
21708
21709         * gnus-agent.el (gnus-agent-article-alist-save-format):
21710         Change internal variable to a custom variable.  Change default value
21711         from compressed(2) to uncompressed(1).
21712         (gnus-agent-read-agentview): Reversed revision 7.8 to restore
21713         support for uncompressed agentview files.  Taken together, reading
21714         the agentview file should now be 6-7 times faster.
21715
21716 2005-11-11  Jan Nieuwenhuizen  <janneke@gnu.org>
21717
21718         * gnus-start.el (gnus-dribble-read-file): Set file-precious-flag,
21719         as a buffer-local variable.  This avoids creating truncated
21720         dribble files as a result of a hang up, eg.
21721
21722 2006-01-03  Rodrigo Ventura  <yoda@isr.ist.utl.pt>  (tiny change)
21723
21724         * gnus-xmas.el (gnus-xmas-group-startup-message): Typo
21725         gnus-splash-face -> gnus-splash.  Fixes starting from a TTY in
21726         XEmacs.
21727
21728 2005-12-09  Reiner Steib  <Reiner.Steib@gmx.de>
21729
21730         * gnus-start.el (gnus-start-draft-setup):
21731         Enforce `gnus-draft-mode' for nndraft:drafts at startup.
21732
21733         * gnus.el (gnus-splash): Change custom group.
21734         (gnus-group-get-parameter, gnus-group-parameter-value):
21735         Describe allow-list argument.
21736
21737         * gnus-agent.el (gnus-agent-article-alist-save-format): Format doc
21738         string.
21739
21740 2005-12-06  Reiner Steib  <Reiner.Steib@gmx.de>
21741
21742         * gnus-art.el (gnus-default-article-saver): Add user-defined
21743         `function' to custom type.
21744
21745 2005-10-30  Chong Yidong  <cyd@stupidchicken.com>
21746
21747         * imap.el (imap-open): Handle case where buffer is a buffer
21748         object.
21749
21750 2005-11-29  Reiner Steib  <Reiner.Steib@gmx.de>
21751
21752         * gnus-cache.el (gnus-cache-rename-group): Wrap doc strings and
21753         long lines.
21754         (gnus-cache-delete-group): Wrap doc strings.
21755
21756         * gnus-agent.el (gnus-agent-rename-group)
21757         (gnus-agent-delete-group): Wrap doc strings.
21758
21759 2005-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
21760
21761         * messagexmas.el (message-use-toolbar): Change the valid values
21762         into default, top, bottom, left, and right.
21763         (message-toolbar-thickness): New variable.
21764         (message-xmas-setup-toolbar): Locate gnus-xmas-glyph-directory as
21765         well.
21766         (message-setup-toolbar): Make it work.
21767
21768         * gnus-xmas.el (gnus-xmas-update-toolbars): New function.
21769         (gnus-use-toolbar): Change the valid values into default, top,
21770         bottom, left, and right.
21771         (gnus-toolbar-thickness): New variable.
21772         (gnus-xmas-setup-toolbar): New function.
21773         (gnus-xmas-setup-group-toolbar): Use it.
21774         (gnus-xmas-setup-summary-toolbar): Use it.
21775
21776 2005-11-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21777
21778         * gnus-start.el (gnus-1): Add "native" to
21779         gnus-predefined-server-alist.
21780
21781         * gnus.el (gnus-method-to-server): Don't add "native" to the
21782         lists here, because that leads to problems when
21783         gnus-select-method is bound.
21784
21785 2005-11-09  Simon Josefsson  <jas@extundo.com>
21786
21787         * gnus-sum.el (gnus-article-sort-by-date-reverse): Remove,
21788         use (not sort-by-date) instead.
21789
21790 2005-11-30  Stefan Monnier  <monnier@iro.umontreal.ca>
21791
21792         * gnus-delay.el (gnus-delay-group): Don't autoload.
21793         It's useless and could trigger a bug in cus-dep.el causing ldefs-boot
21794         to be re-loaded when customizing the `gnus-delay' group.
21795
21796 2005-11-19  Chong Yidong  <cyd@stupidchicken.com>
21797
21798         * message.el: Revert last changes.
21799         (message-insert-citation-line): Use newlines.
21800
21801 2005-11-17  Chong Yidong  <cyd@stupidchicken.com>
21802
21803         * message.el (message-courtesy-message)
21804         (message-mark-insert-begin, message-mark-insert-end)
21805         (message-elide-ellipsis, message-cancel-message)
21806         (message-add-header, message-change-subject)
21807         (message-cross-post-followup-to-header)
21808         (message-cross-post-insert-note, message-reduce-to-to-cc)
21809         (message-widen-reply, message-delete-not-region)
21810         (message-kill-to-signature, message-insert-signature)
21811         (message-insert-importance-high, message-insert-importance-low)
21812         (message-insert-or-toggle-importance)
21813         (message-insert-disposition-notification-to)
21814         (message-indent-citation, message-yank-original)
21815         (message-cite-original-without-signature, message-cite-original)
21816         (message-insert-citation-line, message-position-on-field)
21817         (message-fix-before-sending, message-send-mail-partially)
21818         (message-send-mail, message-send-mail-with-sendmail)
21819         (message-send-mail-with-qmail, message-send-news)
21820         (message-check-news-header-syntax, message-generate-headers)
21821         (message-insert-courtesy-copy, message-fill-address)
21822         (message-fill-header, message-shorten-references)
21823         (message-setup-1, message-cancel-news)
21824         (message-forward-make-body-plain, message-forward-make-body-mime)
21825         (message-forward-make-body-mml, message-encode-message-body)
21826         (message-forward-make-body-digest-plain)
21827         (message-forward-make-body-digest-mime)
21828         (message-use-alternative-email-as-from): Insert `hard-newline'
21829         instead of ordinary newlines.
21830
21831 2005-11-09  Katsumi Yamaoka  <yamaoka@jpl.org>
21832
21833         * message.el (message-generate-headers): Downcase the argument
21834         given to message-check-element.
21835
21836 2005-11-08  Kevin Greiner  <kevin.greiner@compsol.cc>
21837
21838         * nntp.el (nntp-authinfo-rejected): New error condition.
21839         (nntp-wait-for): Use new error condition to signal authentication
21840         error.
21841         (nntp-retrieve-data): Rethrow new error condition to break out of
21842         recursive call to nntp-send-authinfo.
21843
21844 2005-11-08  Romain Francoise  <romain@orebokech.com>
21845
21846         * gnus-sum.el (gnus-summary-catchup-and-goto-prev-group): New function.
21847         (gnus-summary-exit-map): Bind to `Z p'.
21848         (gnus-summary-make-menu-bar): Add menu item.
21849
21850 2005-11-02  Reiner Steib  <Reiner.Steib@gmx.de>
21851
21852         * gnus-art.el (gnus-article-treat-custom): Add `first'.
21853         (gnus-treat-*): Add `first' in all doc strings.
21854
21855         * gnus-group.el (gnus-group-compact-group): Fix typo.
21856
21857 2005-11-01  Katsumi Yamaoka  <yamaoka@jpl.org>
21858
21859         * gnus.el (gnus-parameters-case-fold-search): New variable.
21860         (gnus-parameters-get-parameter): Use it.
21861
21862         * gnus-score.el (gnus-home-score-file): Doc fix.
21863
21864 2005-11-01  Xavier Maillard  <zedek@gnu-rox.org>  (tiny change)
21865
21866         * gnus-score.el (gnus-update-score-entry-dates): Doc fix.
21867
21868 2005-10-31  Katsumi Yamaoka  <yamaoka@jpl.org>
21869
21870         * mm-util.el (mm-special-display-p): New function.
21871
21872         * mml.el (mml-preview): Use it; doc fix.
21873
21874 2005-10-30  Chong Yidong  <cyd@stupidchicken.com>
21875
21876         * imap.el (imap-open): Handle case where buffer is a buffer object.
21877
21878 2005-10-29  Romain Francoise  <romain@orebokech.com>
21879
21880         * message.el (message-fix-before-sending): Fix comment.
21881
21882 2005-10-29  Jari Aalto  <jari.aalto@cante.net>
21883
21884         * gnus-sum.el (gnus-article-sort-by-date-reverse): New function.
21885
21886 2005-10-29  Jari Aalto  <jari.aalto@cante.net>
21887
21888         * score-mode.el (gnus-score-edit-done-hook): Introduce variable.
21889         Used in gnus-score.el.
21890
21891 2005-10-28  Reiner Steib  <Reiner.Steib@gmx.de>
21892
21893         * mm-util.el (mm-codepage-setup): Remove bogus alias test.
21894
21895 2005-10-27  Reiner Steib  <Reiner.Steib@gmx.de>
21896
21897         * flow-fill.el (fill-flowed-encode-tests): Restore trailing
21898         whitespace removed in revision 7.8.  Use concatenated string to
21899         protect trailing whitespace.
21900
21901 2005-10-27  Jouni K. Seppänen  <jks@iki.fi>
21902
21903         * nnimap.el (nnimap-search-uids-not-since-is-evil): Add variable.
21904         (nnimap-request-expire-articles): Use it to avoid sending 'UID
21905         SEARCH UID ... NOT SINCE' queries, for inefficient servers like
21906         Courier IMAP ("some version from 2004").  Mostly based on similar
21907         code in the same function.
21908
21909 2005-10-26  Didier Verna  <didier@xemacs.org>
21910
21911         * gnus-group.el (gnus-group-compact-group): Invalidate original
21912         article buffer.
21913         * gnus-srvr.el (gnus-server-compact-server): Ditto.
21914         * nnml.el (nnml-request-compact-group): Handle self Xref: field in
21915         NOV database and in article itself.
21916         Invalidate article backlog.
21917
21918 2005-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
21919
21920         * mm-uu.el (mm-uu-hide-markers): Fix XEmacs case.
21921
21922 2005-10-26  Simon Josefsson  <jas@extundo.com>
21923
21924         * flow-fill.el (fill-flowed): Flow-fill unquoted lines too, revert
21925         part of 2004-07-25 change.
21926
21927 2005-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
21928
21929         * message.el (message-display-completion-list): New function.
21930         (message-expand-group): Use it; make sure the Completions buffer
21931         is modifiable.
21932 2005-10-23  Chong Yidong  <cyd@stupidchicken.com>
21933
21934         * gnus-sum.el (gnus-ignored-from-addresses): Handle case where
21935         user-mail-name is an empty string.
21936
21937 2005-10-25  Reiner Steib  <Reiner.Steib@gmx.de>
21938
21939         * gnus-score.el (gnus-default-adaptive-score-alist): Set defaults
21940         depending on gnus-score-decay-constant.
21941
21942         * encrypt.el (encrypt-insert-file-contents)
21943         (encrypt-write-file-contents): Don't use `gnus-message'.
21944
21945         * mm-uu.el (mm-uu-verbatim-marks-extract): Add four start and end
21946         arguments.
21947         (mm-uu-type-alist): Add message-marks and insert-marks.
21948         Pass arguments to mm-uu-verbatim-marks-extract.
21949         (mm-uu-hide-markers): New variable.
21950         (mm-uu-extract): Use face similar to `gnus-cite-3'.
21951
21952         * gnus-fun.el (gnus-convert-image-to-x-face-command)
21953         (gnus-convert-image-to-face-command): Use "convert" by default to
21954         allow other input image formats.
21955         (gnus-x-face-from-file, gnus-face-from-file): Adjust doc strings
21956         accordingly.
21957
21958 2005-10-23  Simon Josefsson  <jas@extundo.com>
21959
21960         * imap.el (imap-gssapi-program): Align command line parameters
21961         with latest GNU SASL.
21962         (imap-gssapi-open): Ignore 'Trying ...' messages from GNU SASL.
21963
21964 2005-10-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21965
21966         * nnslashdot.el (nnslashdot-retrieve-headers-1): Update to new
21967         HTML.
21968         (nnslashdot-request-article): Ditto.
21969
21970         * lpath.el (featurep): Add nobreak-char-display.
21971
21972 2005-10-20  Hiroshi Fujishima  <hiroshi.fujishima@gmail.com>  (tiny change)
21973
21974         * mail-source.el (mail-source-fetch-pop): Require pop3.
21975         (mail-source-check-pop): Ditto.
21976
21977 2005-10-20  Katsumi Yamaoka  <yamaoka@jpl.org>
21978
21979         * rfc2047.el (rfc2047-decode-encoded-words): Fix the handling of
21980         errors.
21981
21982 2005-10-19  Reiner Steib  <Reiner.Steib@gmx.de>
21983
21984         * gnus-art.el (gnus-treat-strip-trailing-blank-lines)
21985         (gnus-treat-strip-leading-blank-lines): Improve doc string.
21986
21987         * message.el (message-tool-bar-local-item-from-menu): Fix comment.
21988
21989         * mm-bodies.el (mm-decode-string):
21990         Call `mm-charset-to-coding-system' with allow-override argument.
21991
21992 2005-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
21993
21994         * rfc2047.el (rfc2047-allow-incomplete-encoded-text): New variable.
21995         (rfc2047-charset-to-coding-system): New function.
21996         (rfc2047-decode-encoded-words): New function.
21997         (rfc2047-decode-region): Use them.
21998         (rfc2047-decode-cte): Remove.
21999         (rfc2047-parse-and-decode): Remove.
22000         (rfc2047-decode): Remove.
22001
22002 2005-10-15  Kenichi Handa  <handa@m17n.org>
22003
22004         * rfc2047.el (rfc2047-decode-cte): New function.
22005         (rfc2047-decode-region): Change the way to decode successive
22006         encoded-words: decode B- or Q-encoding in each encoded-word,
22007         concatenate them, and decode it as charset.
22008
22009 2005-10-14  Katsumi Yamaoka  <yamaoka@jpl.org>
22010
22011         * lpath.el: Fbind codepage-setup for XEmacs.
22012
22013 2005-10-17  Chong Yidong  <cyd@stupidchicken.com>
22014
22015         * gnus-cus.el (gnus-custom-map): New variable.  Bind mouse-1 to
22016         widget-move-and-invoke.
22017         (gnus-custom-mode): Use gnus-custom-map.
22018
22019 2005-10-15  Bill Wohler  <wohler@newt.com>
22020
22021         * message.el (message-tool-bar-map): Rename image file from
22022         mail_send to mail/send.
22023
22024 2005-10-16  Masatake YAMATO  <jet@gyve.org>
22025
22026         * message.el (message-expand-group): Pass the common
22027         prefix substring of completion to `display-completion-list'.
22028
22029 2005-10-13  Reiner Steib  <Reiner.Steib@gmx.de>
22030
22031         * mml-sec.el (mml-secure-method): New internal variable.
22032         (mml-secure-sign, mml-secure-encrypt, mml-secure-message-sign)
22033         (mml-secure-message-sign-encrypt, mml-secure-message-encrypt):
22034         New functions using mml-secure-method.
22035
22036         * mml.el (mml-mode-map): Add key bindings for those functions.
22037         (mml-menu): Simplify security menu entries.  Suggested by Jesper
22038         Harder <harder@myrealbox.com>.
22039         (mml-attach-file, mml-attach-buffer, mml-attach-external):
22040         Goto end of message if point is the headers of the message.
22041
22042         * message.el (message-in-body-p): New function.
22043
22044         * assistant.el: Autoload gnus-util and netrc.
22045
22046         * mm-util.el (mm-charset-to-coding-system): Add allow-override.
22047         Use `mm-charset-override-alist' only when decoding.
22048
22049         * mm-bodies.el (mm-decode-body):
22050         Call `mm-charset-to-coding-system' with allow-override argument.
22051
22052         * gnus-art.el (gnus-mime-view-part-as-type-internal): Try to fetch
22053         `filename' from Content-Disposition if Content-Type doesn't
22054         provide `name'.
22055         (gnus-mime-view-part-as-type): Set default instead of
22056         initial-input.
22057
22058 2005-10-09  Daniel Brockman  <daniel@brockman.se>
22059
22060         * format-spec.el (format-spec): Propagate text properties of % spec.
22061
22062 2005-10-12  Reiner Steib  <Reiner.Steib@gmx.de>
22063
22064         * gnus-art.el (gnus-treat-predicate): Add `first'.
22065
22066 2005-10-11  Reiner Steib  <Reiner.Steib@gmx.de>
22067
22068         * mm-util.el (mm-charset-synonym-alist): Improve doc string.
22069         (mm-charset-override-alist): New variable.
22070         (mm-charset-to-coding-system): Use it.
22071         (mm-codepage-setup): New helper function.
22072         (mm-charset-eval-alist): New variable.
22073         (mm-charset-to-coding-system): Use mm-charset-eval-alist.
22074         Warn about unknown charsets.
22075
22076         * dgnushack.el (with-syntax-table): Add some URLs WRT the XEmacs bug.
22077
22078 2005-10-04  David Hansen  <david.hansen@gmx.net>
22079
22080         * nnrss.el (nnrss-request-article): Add support for the comments tag.
22081         (nnrss-check-group): Ditto.
22082
22083 2005-10-04  Reiner Steib  <Reiner.Steib@gmx.de>
22084
22085         * mm-uu.el (mm-uu-verbatim-marks-extract, mm-uu-latex-extract):
22086         Rename x-gnus-verbatim to x-verbatim.
22087         (mm-uu-type-alist): Fix regexp for verbatim-marks.
22088
22089         * mm-decode.el (mm-automatic-display): Rename x-gnus-verbatim to
22090         x-verbatim.
22091
22092         * mm-url.el (mm-url-predefined-programs): Add switches for curl.
22093
22094         * gnus-util.el (gnus-remove-duplicates): Remove.
22095
22096         * nnmail.el (nnmail-article-group): Use mm-delete-duplicates
22097         instead of gnus-remove-duplicates.
22098
22099         * message.el (message-remove-duplicates): Remove.
22100         (message-idna-to-ascii-rhs-1): Use mm-delete-duplicates instead of
22101         message-remove-duplicates.
22102
22103         * mm-util.el (mm-delete-duplicates): Use `delete-dups' if
22104         available, else use implementation from `delete-dups'.
22105
22106         * message.el (message-insert-expires): New function.
22107         (message-mode-map): Add key binding.
22108         (message-mode-field-menu): Add menu entry.
22109         (message-mode): Document it.
22110         (message-make-expires-date): Use `message-make-date'.
22111
22112 2005-10-04  Josh Huber  <huber@alum.wpi.edu>
22113
22114         * message.el (message-make-expires-date): New function.
22115
22116 2005-10-04  Katsumi Yamaoka  <yamaoka@jpl.org>
22117
22118         * Makefile.in (list-installed-shadows): New entry.
22119         (install): Use it.
22120         (remove-installed-shadows): New entry.
22121
22122         * dgnushack.el (dgnushack-default-load-path): New variable.
22123         (dgnushack-find-lisp-shadows): New function.
22124         (dgnushack-remove-lisp-shadows): New function.
22125
22126 2005-10-02  Katsumi Yamaoka  <yamaoka@jpl.org>
22127
22128         * Makefile.in (install-el-elc): New entry.
22129         (install): Use it so that .el files are necessarily installed.
22130
22131 2005-09-30  Katsumi Yamaoka  <yamaoka@jpl.org>
22132
22133         * time-date.el: Autoload parse-time-string, XEmacs needs it.
22134
22135 2005-09-30  Stefan Monnier  <monnier@iro.umontreal.ca>
22136
22137         * mm-decode.el (mm-inline-media-tests): Check presence of the diff-mode
22138         function rather than the diff-mode.el package.
22139         (mm-display-external): Use with-current-buffer.
22140         (mm-viewer-completion-map, mm-viewer-completion-map):
22141         Move initialization inside declaration.
22142
22143 2005-09-29  Simon Josefsson  <jas@extundo.com>
22144
22145         * spam.el: Load hashcash when compiling, to avoid warnings.
22146         Don't autoload mail-check-payment.
22147         (spam-check-hashcash): Define unconditionally, since hashcash.el
22148         is part of Gnus now.  Ignore errors from payment checking.
22149
22150 2005-09-28  Reiner Steib  <Reiner.Steib@gmx.de>
22151
22152         * message.el (message-bold-region, message-unbold-region):
22153         Rename from `bold-region' and `unbold-region'.
22154
22155         * message.el: Remove useless autoloads.
22156
22157 2005-09-28  Simon Josefsson  <jas@extundo.com>
22158
22159         * message.el (message-use-idna): Default to t.
22160         (message-use-idna): Test whether encoding works too.  Doc fix.
22161
22162 2005-09-28  Katsumi Yamaoka  <yamaoka@jpl.org>
22163
22164         * nntp.el (nntp-warn-about-losing-connection): Remove.
22165
22166 2005-09-27  Reiner Steib  <Reiner.Steib@gmx.de>
22167
22168         * mm-uu.el (mm-uu-emacs-sources-regexp): Make variable
22169         customizable.  Change default value.
22170         (mm-uu-diff-groups-regexp): Change default value.
22171         (mm-uu-type-alist): Add doc string.
22172         (mm-uu-configure): Add doc string.  Make it interactive.
22173         (mm-uu-tex-groups-regexp): New variable.
22174         (mm-uu-latex-extract, mm-uu-latex-test): New functions.
22175         (mm-uu-type-alist): Add LaTeX documents.
22176         (mm-uu-verbatim-marks-extract): Use "text/x-gnus-verbatim" instead
22177         of "text/verbatim".
22178         (mm-uu-diff-groups-regexp): Fix missing quotes from previous commit.
22179
22180         * mm-decode.el (mm-automatic-display): Use "text/x-gnus-verbatim"
22181         instead of "text/verbatim".
22182
22183         * message.el (message-mark-inserted-region)
22184         (message-mark-insert-file): Use slrn style marks when called with
22185         prefix argument.
22186
22187 2005-09-27  Simon Josefsson  <jas@extundo.com>
22188
22189         * message.el (message-idna-to-ascii-rhs-1): Reformat.
22190
22191 2005-09-27  Arne Jørgensen  <arne@arnested.dk>
22192
22193         * message.el (message-remove-duplicates): New function.
22194         Implementation borrowed from `gnus-remove-duplicates'.
22195         (message-idna-to-ascii-rhs): Also encode idna addresses in
22196         Reply-To:, Mail-Reply-To: and Mail-Followup-To:.
22197         (message-idna-to-ascii-rhs-1): When `message-use-idna' is 'ask
22198         only ask about the same idna domain once per header and also tell
22199         in what header to replace the idna domain.
22200
22201         * gnus-art.el (article-decode-idna-rhs): Also decode idna
22202         addresses in Reply-To:, Mail-Reply-To: and Mail-Followup-To:.
22203         (article-decode-idna-rhs): Fix regexp so that all idna-address in
22204         a header is decoded and not just the last one.
22205
22206 2005-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
22207
22208         * gnus-art.el (gnus-mime-display-single): Don't modify text if it
22209         has been decoded.
22210
22211         * mm-decode.el (mm-automatic-display): Add text/verbatim.
22212         (mm-insert-part): Don't modify text if it has been decoded.
22213
22214         * mm-uu.el (mm-uu-verbatim-marks-extract): Say text has been
22215         decoded.
22216
22217         * mm-view.el (mm-inline-text): Don't strip text props unless
22218         decoding enriched or richtext parts.
22219
22220 2005-09-25  Romain Francoise  <romain@orebokech.com>
22221
22222         * gnus-agent.el (gnus-agent-expire-group, gnus-agent-expire):
22223         * gnus-start.el (gnus-subscribe-interactively):
22224         * gnus-uu.el (gnus-uu-grab-articles):
22225         End `yes-or-no-p' and `y-or-n-p' prompts with question mark and
22226         space.
22227
22228 2005-09-24  Emilio C. Lopes  <eclig@gmx.net>
22229
22230         * smime.el (smime-sign-buffer, smime-decrypt-buffer):
22231         * mm-view.el (mm-view-pkcs7-decrypt):
22232         * gnus-sum.el (gnus-summary-limit-to-extra)
22233         (gnus-summary-respool-article, gnus-read-move-group-name):
22234         * gnus-score.el (gnus-summary-increase-score):
22235         * gnus-util.el (gnus-completing-read-with-default):
22236         * gnus-art.el (gnus-read-save-file-name)
22237         (gnus-summary-save-in-rmail, gnus-summary-save-in-mail)
22238         (gnus-summary-save-in-file, gnus-summary-save-body-in-file):
22239         * message.el (message-check-news-header-syntax):
22240         Follow convention for reading with the minibuffer.
22241
22242 2005-09-22  Reiner Steib  <Reiner.Steib@gmx.de>
22243
22244         * spam-report.el (spam-report-url-ping-plain):
22245         Use gnus-extended-version as User-Agent.
22246
22247         * gnus-agent.el (gnus-agent-synchronize-flags): Explain why the
22248         default value is nil.
22249
22250         * mm-uu.el (mm-uu-type-alist): Add slrn style verbatim-marks.
22251         (mm-uu-verbatim-marks-extract): New function.
22252         (mm-uu-extract): New face.
22253         (mm-uu-copy-to-buffer): Use it.
22254
22255         * spam-report.el (spam-report-gmane-ham): Rename from
22256         `spam-report-gmane-unspam'.
22257         (spam-report-gmane-internal): Rename from `spam-report-gmane'.
22258         Simplify use of UNSPAM argument.  Fetch "X-Report-Unspam" header.
22259
22260         * spam.el (spam-report-gmane-spam, spam-report-gmane-ham):
22261         Autoload.
22262         (spam-report-gmane-unregister-routine):
22263         Rename `spam-report-gmane-unspam' to `spam-report-gmane-ham'.
22264
22265 2005-09-21  Teodor Zlatanov  <tzz@lifelogs.com>
22266
22267         * spam.el (spam-use-gmane, spam-report-gmane-register-routine)
22268         (spam-report-gmane-unregister-routine): Add support for gmane
22269         unregistration.
22270
22271         * spam-report.el (spam-report-gmane-unspam)
22272         (spam-report-gmane-spam): Add new wrappers around spam-report-gmane.
22273         (spam-report-gmane): Change to take a single article and do unspam
22274         registration.
22275
22276 2005-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
22277
22278         * mm-url.el (mm-url-decode-entities): Fix regexp.
22279
22280 2005-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
22281
22282         * gnus-agent.el (gnus-agent-synchronize-flags): Switch the
22283         default to nil, to be able to use Gnus at all.  If the default
22284         switches to something else, then the function should be fixed not
22285         be exceedingly slow.
22286
22287 2005-09-20  Teodor Zlatanov  <tzz@lifelogs.com>
22288
22289         * gnus-start.el (gnus-activate-group): If the server is nil, don't
22290         fail hard.
22291
22292         * spam-report.el: Add better Keywords line.
22293
22294         * spam.el: Add Maintainer and better Keywords line.
22295
22296 2005-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
22297
22298         * gnus-art.el (gnus-article-replace-part)
22299         (gnus-mime-replace-part): New functions.
22300         (gnus-mime-action-alist, gnus-mime-button-commands)
22301         (gnus-mime-save-part-and-strip): Add file argument.
22302         (gnus-article-part-wrapper): Add interactive argument.
22303
22304         * gnus-sum.el (gnus-summary-mime-map):
22305         Add `gnus-article-replace-part'.
22306
22307 2005-09-19  Didier Verna  <didier@xemacs.org>
22308
22309         The nnml compaction feature:
22310         * nnml.el (nnml-request-compact-group): New function.
22311         * nnml.el (nnml-request-compact): New function.
22312         * gnus-int.el (gnus-request-compact-group): New function.
22313         * gnus-int.el (gnus-request-compact): New function.
22314         * gnus-group.el (gnus-group-compact-group): New function.
22315         * gnus-group.el (gnus-group-group-map): Bind it to 'G z'.
22316         * gnus-group.el (gnus-group-make-menu-bar): Add an entry for it.
22317         * gnus-srvr.el (gnus-server-compact-server): New function.
22318         * gnus-srvr.el (gnus-server-mode-map): Bind it to 'z'.
22319         * gnus-srvr.el (gnus-server-make-menu-bar): Add an entry for it.
22320
22321 2005-09-18  Deepak Goel  <deego@gnufans.org>
22322
22323         * sieve.el (sieve-help): Fix `message' call: first arg should be a
22324         format spec.
22325
22326 2005-09-16  Katsumi Yamaoka  <yamaoka@jpl.org>
22327
22328         * gnus.el (gnus-group-startup-message): Bind image-load-path.
22329
22330 2005-09-15  Romain Francoise  <romain@orebokech.com>
22331
22332         * message.el (message-fill-paragraph): Clarify docstring.
22333
22334 2005-09-14  Katsumi Yamaoka  <yamaoka@jpl.org>
22335
22336         * gnus-art.el (gnus-mime-display-part): Protect against broken
22337         MIME messages.
22338
22339 2005-09-13  Katsumi Yamaoka  <yamaoka@jpl.org>
22340
22341         * gnus-sum.el (gnus-summary-edit-article-done): Remove text props
22342         before parsing header.
22343
22344 2005-09-11  Jari Aalto  <jari.aalto@cante.net>
22345
22346         * html2text.el (html2text-replace-list): Add new entities.
22347
22348 2005-09-11  Romain Francoise  <romain@orebokech.com>
22349
22350         * message.el (message-alternative-emails): Improve docstring.
22351         (message-setup-1): Call `message-use-alternative-email-as-from'
22352         after `message-setup-hook' to give it precedence over posting
22353         styles, etc.
22354         (message-use-alternative-email-as-from): Add docstring.
22355         Remove the original From header if present.
22356
22357         * nnml.el (nnml-compressed-files-size-threshold): New variable.
22358         (nnml-save-mail): Use it.
22359
22360         * gnus-uu.el (gnus-uu-mark-series): Return number of marked
22361         articles.  Add new argument `silent'.
22362         (gnus-uu-mark-all): Report the total number of marked articles.
22363
22364 2005-09-10  Romain Francoise  <romain@orebokech.com>
22365
22366         * gnus-uu.el (gnus-message-process-mark): Use gnus-message.
22367         (gnus-uu-mark-series): Likewise.
22368
22369 2005-09-10  Reiner Steib  <Reiner.Steib@gmx.de>
22370
22371         * spam-report.el (spam-report-gmane): Fix generation of spam
22372         report URL.
22373
22374 2005-09-10  Simon Josefsson  <jas@extundo.com>
22375
22376         * gnus-agent.el (gnus-agent-synchronize-flags): Make the default
22377         t, based on discussion on the ding list with Robert Epprecht
22378         <epprecht@solnet.ch>.
22379
22380 2005-09-07  Reiner Steib  <Reiner.Steib@gmx.de>
22381
22382         * spam-report.el (spam-report-gmane): Make it work without
22383         X-Report-Spam header.  Gmane now only provides Archived-At.
22384         This is only used if `spam-report-gmane-use-article-number' is nil.
22385         (spam-report-gmane-spam-header): Remove.  Not used anymore.
22386
22387         * gnus-sum.el (gnus-thread-sort-by-recipient): New function to
22388         make `gnus-summary-sort-by-recipient' work with threading.
22389
22390         * nnweb.el (nnweb-google-wash-article): Print a message if article
22391         is not available.
22392
22393 2005-09-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
22394
22395         * gnus-art.el (gnus-mime-display-single): Revert 2004-10-07
22396         change.  Decode text/* parts content before displaying.
22397
22398 2005-09-06  Reiner Steib  <Reiner.Steib@gmx.de>
22399
22400         * mml-smime.el: Remove defvar of gnus-extract-address-components.
22401
22402 2005-09-06  Katsumi Yamaoka  <yamaoka@jpl.org>
22403
22404         * mm-view.el (mm-display-inline-fontify): Disable support modes.
22405
22406         * lpath.el: Don't bind mc-pgp-always-sign, url-current-object,
22407         url-package-name, url-package-version,
22408         w3m-cid-retrieve-function-alist, w3m-current-buffer,
22409         w3m-display-inline-images, and w3m-minor-mode-map.
22410
22411 2005-09-05  Reiner Steib  <Reiner.Steib@gmx.de>
22412
22413         * message.el (message-tab-body-function): Fix mismatched custom type.
22414
22415         * gnus.el (gnus-group-change-level-function): Ditto.
22416
22417         * gnus-msg.el (gnus-outgoing-message-group): Ditto.
22418
22419         * gnus-art.el (gnus-signature-limit)
22420         (gnus-article-mime-part-function): Ditto.
22421
22422 2005-09-05  Katsumi Yamaoka  <yamaoka@jpl.org>
22423
22424         * mml.el (mml-mode): Silence the byte compiler.
22425
22426         * gnus-art.el (gnus-article-jump-to-part): Redisplay the article
22427         using `(sit-for 0)' before moving the point to the specified part;
22428         skip unbuttonized parts.
22429         (gnus-article-part-wrapper): Don't use save-window-excursion; don't
22430         return to the summary window if gnus-auto-select-part is non-nil.
22431
22432 2005-09-04  Reiner Steib  <Reiner.Steib@gmx.de>
22433
22434         * mml.el (mml-dnd-protocol-alist, mml-dnd-attach-options):
22435         New variables.
22436         (mml-dnd-attach-file, mml-mode): Use them.
22437
22438         * nnweb.el (nnweb-type-definition, nnweb-google-wash-article):
22439         Make fetching article by MID work again for Google Groups.
22440         Add FIXME concerning gnus-group-make-web-group.
22441
22442         * mml-smime.el (mml-smime-sign-query, mml-smime-get-dns-cert):
22443         Don't depend on Gnus by using mail-extract-address-components if
22444         gnus-extract-address-components is not bound.
22445
22446 2005-09-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
22447
22448         * gnus-art.el (gnus-mime-display-security): Don't display the
22449         signature, but only the signed part.
22450
22451 2005-09-02  Katsumi Yamaoka  <yamaoka@jpl.org>
22452
22453         * gnus-sum.el (gnus-thread-hide-subtree): Doc fix.
22454
22455         * gnus-msg.el (gnus-inews-insert-gcc): Fix the mistake of using
22456         list, not listp.
22457
22458 2005-09-02  Hrvoje Niksic  <hniksic@xemacs.org>
22459
22460         * mm-encode.el (mm-encode-content-transfer-encoding):
22461         Likewise when encoding.
22462
22463         * mm-bodies.el (mm-decode-content-transfer-encoding):
22464         De-canonicalize CRLF for all text content types, not just
22465         text/plain.
22466
22467 2005-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
22468
22469         * gnus-art.el (gnus-article-part-wrapper): Error if there's no
22470         valid article; point arrow and cursor at the MIME button.
22471
22472 2005-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
22473
22474         * gnus-art.el (gnus-mime-save-part-and-strip): Clarify prompt.
22475         Suggested by Dan Christensen <jdc@uwo.ca>.
22476
22477         * mm-decode.el (mm-save-part): Enable change of prompt.
22478
22479 2005-08-29  Jari Aalto  <jari.aalto@cante.net>
22480
22481         * gnus-msg.el (gnus-inews-add-send-actions):
22482         Make `message-post-method' lambda parameter ARG `&optional'.
22483
22484 2005-08-29  Reiner Steib  <Reiner.Steib@gmx.de>
22485
22486         * gnus-sum.el (gnus-summary-mime-map):
22487         Add gnus-article-save-part-and-strip, gnus-article-delete-part and
22488         gnus-article-jump-to-part.
22489
22490         * gnus-art.el (gnus-article-edit-article): Add quiet argument.
22491         (gnus-article-edit-part): Use it.
22492         (gnus-article-part-wrapper): Add no-handle argument.
22493         (gnus-article-save-part-and-strip, gnus-article-delete-part):
22494         New functions.
22495
22496 2005-08-29  Romain Francoise  <romain@orebokech.com>
22497
22498         * gnus-fun.el (gnus-convert-image-to-face-command): Fix typo in
22499         docstring.
22500         (gnus-face-from-file): Likewise.
22501
22502 2005-08-29  Reiner Steib  <Reiner.Steib@gmx.de>
22503
22504         * gnus-art.el (gnus-mime-save-part-and-strip): Don't prompt.
22505         (gnus-mime-delete-part): Don't prompt if `gnus-expert-user' is
22506         non-nil.
22507         (gnus-auto-select-part): New variable.
22508         (gnus-article-jump-to-part): New function.
22509         (gnus-article-edit-part, gnus-mime-save-part-and-strip)
22510         (gnus-mime-delete-part): Allow selecting specified part after
22511         deleting or stripping parts.
22512         (gnus-article-jump-to-part): Don't use `read-number'.  Use last
22513         part if argument is bogus.
22514
22515 2005-08-31  Juanma Barranquero  <lekktu@gmail.com>
22516
22517         * gnus-art.el (w3m-minor-mode-map):
22518         * gnus-spec.el (gnus-newsrc-file-version):
22519         * gnus-util.el (nnmail-active-file-coding-system)
22520         (gnus-original-article-buffer, gnus-user-agent):
22521         * gnus.el (gnus-ham-process-destinations)
22522         (gnus-parameter-ham-marks-alist)
22523         (gnus-parameter-spam-marks-alist, gnus-spam-autodetect)
22524         (gnus-spam-autodetect-methods, gnus-spam-newsgroup-contents)
22525         (gnus-spam-process-destinations, gnus-spam-process-newsgroups):
22526         * mm-decode.el (gnus-current-window-configuration):
22527         * mm-extern.el (gnus-article-mime-handles):
22528         * mm-url.el (url-current-object, url-package-name)
22529         (url-package-version):
22530         * mm-view.el (gnus-article-mime-handles, gnus-newsgroup-charset)
22531         (smime-keys, w3m-cid-retrieve-function-alist)
22532         (w3m-current-buffer, w3m-display-inline-images)
22533         (w3m-minor-mode-map):
22534         * mml-smime.el (gnus-extract-address-components):
22535         * mml.el (gnus-article-mime-handles, gnus-mouse-2)
22536         (gnus-newsrc-hashtb, message-default-charset)
22537         (message-deletable-headers, message-options)
22538         (message-posting-charset, message-required-mail-headers)
22539         (message-required-news-headers):
22540         * mml1991.el (mc-pgp-always-sign):
22541         * mml2015.el (mc-pgp-always-sign):
22542         * nnheader.el (nnmail-extra-headers):
22543         * rfc1843.el (gnus-decode-encoded-word-function)
22544         (gnus-decode-header-function, gnus-newsgroup-name):
22545         * spam-stat.el (gnus-original-article-buffer): Add defvars.
22546
22547 2005-08-22  Karl Chen  <quarl@cs.berkeley.edu>
22548
22549         * gnus-art.el (gnus-treatment-function-alist): Move date-lapsed to
22550         the end of the date treatments.
22551
22552 2005-08-15  Simon Josefsson  <jas@extundo.com>
22553
22554         * pgg.el (url-insert-file-contents): Don't autoload it, Emacs has
22555         it in url-handlers.el and XEmacs in url.el.  Reported by Luca
22556         Capello and Romain Francoise.
22557         (pgg-fetch-key-function): Remove, not used?
22558         (pgg-insert-url-with-w3): Require url, to get
22559         url-insert-file-contents regardless of where it is defined.
22560
22561 2005-08-13  Romain Francoise  <romain@orebokech.com>
22562
22563         * message.el (message-cite-original-1): New function.
22564         (message-cite-original): Use it.
22565         (message-cite-original-without-signature): Ditto.
22566
22567 2005-08-08  Romain Francoise  <romain@orebokech.com>
22568
22569         * message.el (message-yank-empty-prefix): New variable.
22570         (message-indent-citation): Use it.
22571         (message-cite-original-without-signature): Respect X-No-Archive.
22572
22573 2005-08-08  Simon Josefsson  <jas@extundo.com>
22574
22575         * pgg.el: Autoload url-insert-file-contents instead of loading
22576         w3/url.
22577         (pgg-insert-url-with-w3): Don't load url here.
22578
22579 2005-08-07  Jesper Harder  <harder@phys.au.dk>
22580
22581         * message.el (message-kill-to-signature): Don't insert newline at
22582         bol.
22583         (message-newline-and-reformat): Bind fill-paragraph-function to nil.
22584
22585 2005-08-06  Romain Francoise  <romain@orebokech.com>
22586
22587         * message.el (message-user-fqdn): Fix typo in docstring.
22588
22589 2005-08-05  Daiki Ueno  <ueno@unixuser.org>
22590
22591         * mml2015.el (mml2015-pgg-sign): Make sure micalg is correct.
22592
22593         * pgg-parse.el (pgg-parse-hash-algorithm-alist): Add SHA-2.
22594
22595 2005-08-05  Katsumi Yamaoka  <yamaoka@jpl.org>
22596
22597         * mm-bodies.el (mm-encode-body): Use coding system rather than
22598         charset to encode text.
22599
22600         * mm-util.el (mm-find-mime-charset-region): Attempt to reduce the
22601         number of charsets if utf-8 is available (XEmacs).
22602
22603 2005-08-04  Reiner Steib  <Reiner.Steib@gmx.de>
22604
22605         * gnus-art.el (gnus-button-valid-localpart-regexp): New variable
22606         taken from `gnus-button-mid-or-mail-regexp'.
22607         (gnus-button-mid-or-mail-regexp, gnus-button-alist): Use it.
22608         (gnus-button-alist): Improve regexp for domain part of the MIDs
22609         for news:localpart@domain buttons.
22610         (gnus-button-ctan-directory-regexp): Update.
22611
22612 2005-08-02  Katsumi Yamaoka  <yamaoka@jpl.org>
22613
22614         * sieve-manage.el (sieve-manage-interactive-login):
22615         Use make-local-variable rather than make-variable-buffer-local.
22616         (sieve-manage-open): Ditto.
22617         (sieve-manage-authenticate): Ditto.
22618
22619         * mml.el (mml-generate-mime-1): Make the content type default to
22620         text/plain if the filename is not specified.
22621
22622 2005-08-01  Katsumi Yamaoka  <yamaoka@jpl.org>
22623
22624         * gnus-uu.el (gnus-uu-save-article): Use insert-buffer-substring
22625         instead of insert-buffer.
22626
22627         * message.el (message-yank-original): Ditto; set the mark at the
22628         end of the yanked message.
22629
22630 2005-07-29  Katsumi Yamaoka  <yamaoka@jpl.org>
22631
22632         * gnus-art.el (gnus-article-next-page-1): Reduce the number of
22633         lines to scroll rather than to stop it.
22634
22635         * mml.el (mml-generate-default-type): Add doc string.
22636         (mml-generate-mime-1): Use mm-default-file-encoding or make it
22637         default to application/octet-stream when determining the content
22638         type if it is not specified for the part or the mml contents; add
22639         a comment about mml-generate-default-type.
22640
22641 2005-07-29  Reiner Steib  <Reiner.Steib@gmx.de>
22642
22643         * mml.el (mml-generate-mime-1): Use mm-default-file-encoding or
22644         make it default to application/octet-stream when determining the
22645         content type if it is not specified for the external contents.
22646
22647 2005-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
22648
22649         * rfc2231.el (rfc2231-parse-string): Take care that not only a
22650         segmented parameter but also other parameters might be there.
22651
22652 2005-07-27  Katsumi Yamaoka  <yamaoka@jpl.org>
22653
22654         * mm-decode.el (mm-display-external): Delete temp file, directory
22655         and buffer immediately if the external process is exited.
22656
22657 2005-07-26  Katsumi Yamaoka  <yamaoka@jpl.org>
22658
22659         * gnus-art.el (gnus-article-next-page-1): Don't scroll if there're
22660         fewer lines than that of scroll-margin.
22661         (gnus-article-prev-page): Narrow the range to bind scroll-in-place.
22662
22663 2005-07-25  Katsumi Yamaoka  <yamaoka@jpl.org>
22664
22665         * gnus-art.el (gnus-article-next-page): Revert.
22666         (gnus-article-beginning-of-window): New macro.
22667         (gnus-article-next-page-1): Use it.
22668         (gnus-article-prev-page): Ditto.
22669         (gnus-article-edit-part): Use insert-buffer-substring instead of
22670         insert-buffer.
22671         (gnus-article-edit-exit): Ditto.
22672
22673         * gnus-util.el (gnus-beginning-of-window): Remove.
22674         (gnus-end-of-window): Remove.
22675
22676         * lpath.el: Don't bind header-line-format and scroll-margin.
22677
22678 2005-07-25  Simon Josefsson  <jas@extundo.com>
22679
22680         * pgg.el (pgg-insert-url-with-w3): Don't load w3, it is possible
22681         to have the url package without w3.  Reported by Daiki Ueno
22682         <ueno@unixuser.org> and Luigi Panzeri <matley@muppetslab.org>.
22683
22684 2005-07-20  Didier Verna  <didier@xemacs.org>
22685
22686         * gnus-diary.el: Remove the description comment (nndiary is now
22687         properly documented in the Gnus manual).
22688         Fix the spelling of "Back End".
22689         * nndiary.el: Ditto.
22690         Fix the copyright notice.
22691
22692 2005-07-18  Romain Francoise  <romain@orebokech.com>
22693
22694         * gnus-sum.el (gnus-summary-to-prefix)
22695         (gnus-summary-newsgroup-prefix): New variables.
22696         (gnus-summary-from-or-to-or-newsgroups): Use them.
22697
22698 2005-07-17  Romain Francoise  <romain@orebokech.com>
22699
22700         * mml2015.el (mml2015-clean-buffer): Prefix buffer name with a
22701         space as it's generally not especially interesting to the user.
22702
22703 2005-07-16  Romain Francoise  <romain@orebokech.com>
22704
22705         * nnfolder.el (nnfolder-save-buffer): Bind `copyright-update' to
22706         nil to avoid prompting and file modification if one of the
22707         messages at the top of the nnfolder file contains a copyright
22708         notice.
22709         Update copyright notice.
22710
22711         * gnus-uu.el (gnus-uu-save-article): Use `message-make-date'
22712         instead of `current-time-string' as the latter creates a time
22713         string that is not RFC 2822 compliant (it lacks the zone).
22714         Update copyright notice.
22715
22716 2005-07-21  Stefan Monnier  <monnier@iro.umontreal.ca>
22717
22718         * mml.el (mml-minibuffer-read-disposition): Don't use inline by default
22719         for text/rtf.  Display default in prompt.  Pass default for M-n.
22720
22721         * mm-uu.el (mm-uu-copy-to-buffer): Use with-current-buffer.
22722
22723 2005-07-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
22724
22725         * gnus-msg.el (gnus-button-mailto):
22726         Remove save-selected-window-window hackery because it relies on
22727         save-selected-window internals.
22728
22729 2005-07-15  Katsumi Yamaoka  <yamaoka@jpl.org>
22730
22731         * gnus-art.el (gnus-article-next-page): Use gnus-end-of-window.
22732         (gnus-article-next-page-1): Use gnus-beginning-of-window.
22733         (gnus-article-prev-page): Ditto.
22734
22735         * gnus-util.el (gnus-beginning-of-window): New function.
22736         (gnus-end-of-window): New function.
22737
22738         * lpath.el: Bind header-line-format and scroll-margin for XEmacs.
22739
22740 2005-07-14  Hiroshi Fujishima  <hiroshi.fujishima@gmail.com>  (tiny change)
22741
22742         * gnus-score.el (gnus-score-edit-all-score):
22743         Set gnus-score-edit-exit-function to gnus-score-edit-done and call
22744         gnus-message.
22745
22746 2005-07-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
22747
22748         * gnus-msg.el (gnus-button-mailto):
22749         Remove save-selected-window-window hackery because it relies on
22750         save-selected-window internals.
22751
22752 2005-07-13  Katsumi Yamaoka  <yamaoka@jpl.org>
22753
22754         * gnus-salt.el (gnus-pick-mode): Remove the 5th arg of
22755         add-minor-mode.
22756         (gnus-binary-mode): Ditto.
22757
22758         * gnus-topic.el (gnus-topic-mode): Ditto.
22759
22760 2005-07-08  Ralf Angeli  <angeli@iwi.uni-sb.de>
22761
22762         * gnus-art.el (gnus-article-next-page, gnus-article-next-page-1)
22763         (gnus-article-prev-page): Take scroll-margin into consideration.
22764
22765 2005-07-04  Lute Kamstra  <lute@gnu.org>
22766
22767         Update FSF's address in GPL notices.
22768
22769 2005-07-04  Juanma Barranquero  <lekktu@gmail.com>
22770
22771         * gnus.el (gnus-exit):
22772         * gnus-group.el (gnus-group-icons):
22773         * nnmail.el (nnmail-prepare): Fix typos in docstrings.
22774
22775         * gnus-nocem.el (gnus-nocem):
22776         * message.el (message-various, message-buffers, message-sending)
22777         (message-interface, message-forwarding, message-insertion)
22778         (message-headers, message-news, message-mail):
22779         * pgg-gpg.el (pgg-gpg):
22780         * pgg-parse.el (pgg-parse):
22781         * pgg-pgp.el (pgg-pgp):
22782         * pgg-pgp5.el (pgg-pgp5):
22783         * pop3.el (pop3): Finish `defgroup' description with period.
22784
22785 2005-07-01  Katsumi Yamaoka  <yamaoka@jpl.org>
22786
22787         * gnus-art.el (article-display-face): Improve the efficiency.
22788         (article-display-x-face): Ditto; remove gray x-face stuff.
22789
22790 2005-06-30  Katsumi Yamaoka  <yamaoka@jpl.org>
22791
22792         * gnus-art.el (article-display-face): Correct the position in
22793         which Faces are inserted.
22794
22795 2005-06-29  Didier Verna  <didier@xemacs.org>
22796
22797         * gnus-art.el (article-display-face): Display faces in correct
22798         order.
22799
22800 2005-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
22801
22802         * gnus-nocem.el (gnus-nocem-verifyer): Default to pgg-verify.
22803         (gnus-fill-real-hashtb): Use hash table instead of obarray.
22804         (gnus-nocem-check-article): Fetch the Type header.
22805         (gnus-nocem-message-wanted-p): Fix the way to examine types.
22806         (gnus-nocem-verify-issuer): Use functionp instead of fboundp.
22807         (gnus-nocem-enter-article): Use hash tables rather than obarrays;
22808         make sure gnus-nocem-hashtb is initialized.
22809         (gnus-nocem-alist-to-hashtb): Use hash table instead of obarray.
22810         (gnus-nocem-unwanted-article-p): Ditto.
22811
22812         * pgg.el (pgg-verify): Return the verification result.
22813
22814 2005-06-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
22815
22816         * gnus-art.el (gnus-mime-copy-part): Check whether coding-system
22817         is ascii.
22818
22819 2005-06-24  Juanma Barranquero  <lekktu@gmail.com>
22820
22821         * gnus-art.el (gnus-article-mode): Set `nobreak-char-display', not
22822         `show-nonbreak-escape'.
22823
22824 2005-06-23  Lute Kamstra  <lute@gnu.org>
22825
22826         * gnus-art.el (gnus-article-mode): Use kill-all-local-variables.
22827
22828         * dig.el (dig-mode):
22829         * smime.el (smime-mode): Use gnus-run-mode-hooks.
22830
22831 2005-06-21  Juanma Barranquero  <lekktu@gmail.com>
22832
22833         * nnimap.el (nnimap-split-download-body): Fix spellings.
22834
22835 2005-06-16  Juanma Barranquero  <lekktu@gmail.com>
22836
22837         * gnus-art.el (gnus-article-encrypt-body):
22838         * gnus-cus.el (gnus-score-customize):
22839         * mm-extern.el (mm-extern-local-file, mm-inline-external-body):
22840         * pop3.el (pop3-user): Don't use `format' on `error' arguments.
22841
22842 2005-06-16  Arne Jørgensen  <arne@arnested.dk>
22843
22844         * smime.el (smime-cert-by-ldap-1): Detect PEM format without
22845         header by looking for magic "MII" at the beginning.
22846
22847 2005-06-16  Miles Bader  <miles@gnu.org>
22848
22849         * gnus-xmas.el (gnus-xmas-group-startup-message):
22850         Use renamed gnus-splash face.
22851
22852         * assistant.el (assistant-field): Remove "-face" suffix from face name.
22853         (assistant-field-face): New backward-compatibility alias for renamed
22854         face.
22855         (assistant-render-text): Use renamed assistant-field face.
22856
22857         * spam.el (spam): Remove "-face" suffix from face name.
22858         (spam-face): New backward-compatibility alias for renamed face.
22859         (spam-face, spam-initialize): Use renamed spam face.
22860
22861         * message.el (message-header-to, message-header-cc)
22862         (message-header-subject, message-header-newsgroups)
22863         (message-header-other, message-header-name)
22864         (message-header-xheader, message-separator, message-cited-text)
22865         (message-mml): Remove "-face" suffix from face names.
22866         (message-header-to-face, message-header-cc-face)
22867         (message-header-subject-face, message-header-newsgroups-face)
22868         (message-header-other-face, message-header-name-face)
22869         (message-header-xheader-face, message-separator-face)
22870         (message-cited-text-face, message-mml-face):
22871         New backward-compatibility aliases for renamed faces.
22872         (message-font-lock-keywords): Use renamed message faces.
22873
22874         * sieve-mode.el (sieve-control-commands, sieve-action-commands)
22875         (sieve-test-commands, sieve-tagged-arguments):
22876         Remove "-face" suffix from face names.
22877         (sieve-control-commands-face, sieve-action-commands-face)
22878         (sieve-test-commands-face, sieve-tagged-arguments-face):
22879         New backward-compatibility aliases for renamed faces.
22880         (sieve-control-commands-face, sieve-action-commands-face)
22881         (sieve-test-commands-face, sieve-tagged-arguments-face):
22882         Use renamed sieve faces.
22883
22884         * gnus.el (gnus-group-news-1, gnus-group-news-1-empty)
22885         (gnus-group-news-2, gnus-group-news-2-empty, gnus-group-news-3)
22886         (gnus-group-news-3-empty, gnus-group-news-4)
22887         (gnus-group-news-4-empty, gnus-group-news-5)
22888         (gnus-group-news-5-empty, gnus-group-news-6)
22889         (gnus-group-news-6-empty, gnus-group-news-low)
22890         (gnus-group-news-low-empty, gnus-group-mail-1)
22891         (gnus-group-mail-1-empty, gnus-group-mail-2)
22892         (gnus-group-mail-2-empty, gnus-group-mail-3)
22893         (gnus-group-mail-3-empty, gnus-group-mail-low)
22894         (gnus-group-mail-low-empty, gnus-summary-selected)
22895         (gnus-summary-cancelled, gnus-summary-high-ticked)
22896         (gnus-summary-low-ticked, gnus-summary-normal-ticked)
22897         (gnus-summary-high-ancient, gnus-summary-low-ancient)
22898         (gnus-summary-normal-ancient, gnus-summary-high-undownloaded)
22899         (gnus-summary-low-undownloaded)
22900         (gnus-summary-normal-undownloaded, gnus-summary-high-unread)
22901         (gnus-summary-low-unread, gnus-summary-normal-unread)
22902         (gnus-summary-high-read, gnus-summary-low-read)
22903         (gnus-summary-normal-read, gnus-splash):
22904         Remove "-face" suffix from face names.
22905         (gnus-group-news-1-face, gnus-group-news-1-empty-face)
22906         (gnus-group-news-2-face, gnus-group-news-2-empty-face)
22907         (gnus-group-news-3-face, gnus-group-news-3-empty-face)
22908         (gnus-group-news-4-face, gnus-group-news-4-empty-face)
22909         (gnus-group-news-5-face, gnus-group-news-5-empty-face)
22910         (gnus-group-news-6-face, gnus-group-news-6-empty-face)
22911         (gnus-group-news-low-face, gnus-group-news-low-empty-face)
22912         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face)
22913         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face)
22914         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face)
22915         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face)
22916         (gnus-summary-selected-face, gnus-summary-cancelled-face)
22917         (gnus-summary-high-ticked-face, gnus-summary-low-ticked-face)
22918         (gnus-summary-normal-ticked-face)
22919         (gnus-summary-high-ancient-face, gnus-summary-low-ancient-face)
22920         (gnus-summary-normal-ancient-face)
22921         (gnus-summary-high-undownloaded-face)
22922         (gnus-summary-low-undownloaded-face)
22923         (gnus-summary-normal-undownloaded-face)
22924         (gnus-summary-high-unread-face, gnus-summary-low-unread-face)
22925         (gnus-summary-normal-unread-face, gnus-summary-high-read-face)
22926         (gnus-summary-low-read-face, gnus-summary-normal-read-face)
22927         (gnus-splash-face):
22928         New backward-compatibility aliases for renamed faces.
22929         (gnus-group-startup-message): Use renamed gnus faces.
22930
22931         * gnus-srvr.el (gnus-server-agent, gnus-server-opened)
22932         (gnus-server-closed, gnus-server-denied, gnus-server-offline)
22933         (gnus-server-agent): Remove "-face" suffix from face names.
22934         (gnus-server-agent-face, gnus-server-opened-face)
22935         (gnus-server-closed-face, gnus-server-denied-face)
22936         (gnus-server-offline-face):
22937         New backward-compatibility aliases for renamed faces.
22938         (gnus-server-agent-face, gnus-server-opened-face)
22939         (gnus-server-closed-face, gnus-server-denied-face)
22940         (gnus-server-offline-face): Use renamed gnus faces.
22941
22942         * gnus-picon.el (gnus-picon-xbm, gnus-picon):
22943         Remove "-face" suffix from face names.
22944         (gnus-picon-xbm-face, gnus-picon-face):
22945         New backward-compatibility aliases for renamed faces.
22946
22947         * gnus-cite.el (gnus-cite-attribution, gnus-cite-1, gnus-cite-2)
22948         (gnus-cite-3, gnus-cite-4, gnus-cite-5, gnus-cite-6)
22949         (gnus-cite-7, gnus-cite-8, gnus-cite-9, gnus-cite-10)
22950         (gnus-cite-11): Remove "-face" suffix from face names.
22951         (gnus-cite-attribution-face, gnus-cite-face-1, gnus-cite-face-2)
22952         (gnus-cite-face-3, gnus-cite-face-4, gnus-cite-face-5)
22953         (gnus-cite-face-6, gnus-cite-face-7, gnus-cite-face-8)
22954         (gnus-cite-face-9, gnus-cite-face-10, gnus-cite-face-11):
22955         New backward-compatibility aliases for renamed faces.
22956         (gnus-cite-attribution-face, gnus-cite-face-list)
22957         (gnus-article-boring-faces): Use renamed gnus faces.
22958
22959         * gnus-art.el (gnus-signature, gnus-header-from)
22960         (gnus-header-subject, gnus-header-newsgroups, gnus-header-name)
22961         (gnus-header-content): Remove "-face" suffix from face names.
22962         (gnus-signature-face, gnus-header-from-face)
22963         (gnus-header-subject-face, gnus-header-newsgroups-face)
22964         (gnus-header-name-face, gnus-header-content-face):
22965         New backward-compatibility aliases for renamed faces.
22966         (gnus-signature-face, gnus-header-face-alist): Use renamed gnus faces.
22967
22968         * gnus-sum.el (gnus-summary-selected-face)
22969         (gnus-summary-highlight): Use renamed gnus faces.
22970         * gnus-group.el (gnus-group-highlight): Likewise.
22971
22972 2005-06-14  Juanma Barranquero  <lekktu@gmail.com>
22973
22974         * gnus-sieve.el (gnus-sieve-article-add-rule):
22975         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days):
22976         * spam-stat.el (spam-stat-buffer-change-to-spam)
22977         (spam-stat-buffer-change-to-non-spam): Follow error conventions.
22978
22979         * message.el (message-is-yours-p):
22980         * gnus-sum.el (gnus-auto-select-subject): Fix quoting in docstring.
22981
22982 2005-06-14  Katsumi Yamaoka  <yamaoka@jpl.org>
22983
22984         * mm-view.el (mm-inline-text): Withdraw the last change.
22985
22986 2005-06-09  Katsumi Yamaoka  <yamaoka@jpl.org>
22987
22988         * mm-view.el (mm-inline-text): Turn off adaptive-fill-mode while
22989         executing enriched-decode.
22990
22991 2005-06-07  Katsumi Yamaoka  <yamaoka@jpl.org>
22992
22993         * mm-util.el (mm-find-buffer-file-coding-system): Don't examine
22994         charset of tar files.
22995
22996 2005-06-04  Luc Teirlinck  <teirllm@auburn.edu>
22997
22998         * gnus-art.el (article-update-date-lapsed): Use `save-match-data'.
22999
23000 2005-06-04  Lute Kamstra  <lute@gnu.org>
23001
23002         * nnfolder.el (nnfolder-read-folder): Make sure that undo
23003         information is never recorded.
23004
23005 2005-06-03  Stefan Monnier  <monnier@iro.umontreal.ca>
23006
23007         * gnus-art.el (gnus-emphasis-alist): Disable the strikethru thingy.
23008
23009 2005-06-02  Katsumi Yamaoka  <yamaoka@jpl.org>
23010
23011         * pop3.el (pop3-apop): Run md5 in the binary mode.
23012
23013         * starttls.el (starttls-set-process-query-on-exit-flag):
23014         Use eval-and-compile.
23015
23016 2005-05-31  Simon Josefsson  <jas@extundo.com>
23017
23018         * smime.el (smime-replace-in-string): Define.
23019         (smime-cert-by-ldap-1): Use it.
23020
23021 2005-05-31  Katsumi Yamaoka  <yamaoka@jpl.org>
23022
23023         * gnus-art.el (article-display-x-face): Replace
23024         process-kill-without-query by gnus-set-process-query-on-exit-flag.
23025
23026         * gnus-util.el (gnus-set-process-query-on-exit-flag): Alias to
23027         set-process-query-on-exit-flag or process-kill-without-query.
23028
23029         * html2text.el (html2text-fix-paragraphs): Use `while - re-search'
23030         loop instead of replace-regexp.
23031
23032         * imap.el (imap-ssl-open): Use set-process-query-on-exit-flag
23033         instead of process-kill-without-query if it is available.
23034
23035         * lpath.el: Fbind ldap-search-entries.
23036
23037         * mm-util.el (mm-insert-file-contents): Bind find-file-hook
23038         instead of find-file-hooks if it is available.
23039
23040         * mml1991.el: Bind pgg-default-user-id when compiling.
23041
23042         * mml2015.el: Bind pgg-default-user-id when compiling.
23043
23044         * nndraft.el (nndraft-request-associate-buffer):
23045         Use write-contents-functions instead of write-contents-hooks if it is
23046         available.
23047
23048         * nnheader.el (nnheader-find-file-noselect): Bind find-file-hook
23049         instead of find-file-hooks if it is available.
23050
23051         * nntp.el (nntp-open-connection): Replace
23052         process-kill-without-query by gnus-set-process-query-on-exit-flag.
23053         (nntp-open-ssl-stream): Ditto.
23054         (nntp-open-tls-stream): Ditto.
23055
23056         * starttls.el (starttls-set-process-query-on-exit-flag): Alias to
23057         set-process-query-on-exit-flag or process-kill-without-query.
23058         (starttls-open-stream-gnutls): Use it instead of
23059         process-kill-without-query.
23060         (starttls-open-stream): Ditto.
23061
23062 2005-05-31  Ulf Stegemann  <ulf@zeitform.de>  (tiny change)
23063
23064         * smime.el (smime-cert-by-ldap-1): Don't use
23065         replace-regexp-in-string.
23066
23067 2005-05-31  Arne Jørgensen  <arne@arnested.dk>
23068
23069         * smime-ldap.el (smime-ldap-search): Add compatibility for XEmacs.
23070
23071         * smime.el (smime-cert-by-ldap-1): Handle certificates distributed
23072         in PEM format.  Adjust to the XEmacs compatibility.
23073
23074 2005-05-30  Reiner Steib  <Reiner.Steib@gmx.de>
23075
23076         * encrypt.el (encrypt-xor-process-buffer): Replace `string-to-int'
23077         by `string-to-number'.
23078         * gnus-agent.el (gnus-agent-regenerate-group)
23079         (gnus-agent-fetch-articles): Ditto.
23080         * gnus-art.el (gnus-button-fetch-group): Ditto.
23081         * gnus-cache.el (gnus-cache-generate-active)
23082         (gnus-cache-articles-in-group): Ditto.
23083         * gnus-group.el (gnus-group-set-current-level)
23084         (gnus-group-insert-group-line): Ditto.
23085         * gnus-score.el (gnus-score-set-expunge-below)
23086         (gnus-score-set-mark-below, gnus-summary-score-effect)
23087         (gnus-summary-score-entry): Ditto.
23088         * gnus-soup.el (gnus-soup-send-packet, gnus-soup-parse-areas)
23089         (gnus-soup-pack): Ditto.
23090         * gnus-spec.el (gnus-xmas-format): Ditto.
23091         * gnus-start.el (gnus-newsrc-to-gnus-format): Ditto.
23092         * gnus-sum.el (gnus-create-xref-hashtb): Ditto.
23093         * gnus-uu.el (gnus-uu-expand-numbers): Ditto.
23094         * nnbabyl.el (nnbabyl-article-group-number): Ditto.
23095         * nndb.el (nndb-get-remote-expire-response): Ditto.
23096         * nndiary.el (nndiary-parse-schedule-value)
23097         (nndiary-string-to-number, nndiary-request-replace-article)
23098         (nndiary-request-article): Ditto.
23099         * nndoc.el (nndoc-rnews-body-end, nndoc-mbox-body-end): Ditto.
23100         * nndraft.el (nndraft-articles, nndraft-request-group): Ditto.
23101         * nneething.el (nneething-make-head): Ditto.
23102         * nnfolder.el (nnfolder-request-article)
23103         (nnfolder-retrieve-headers): Ditto.
23104         * nnheader.el (nnheader-file-to-number): Ditto.
23105         * nnkiboze.el (nnkiboze-request-article): Ditto.
23106         * nnmail.el (nnmail-process-unix-mail-format)
23107         (nnmail-process-babyl-mail-format): Ditto.
23108         * nnmbox.el (nnmbox-read-mbox, nnmbox-article-group-number): Ditto.
23109         * nnmh.el (nnmh-update-gnus-unreads, nnmh-active-number)
23110         (nnmh-request-create-group, nnmh-request-list-1)
23111         (nnmh-request-group, nnmh-request-article): Ditto.
23112         * nnml.el (nnml-request-replace-article, nnml-request-article): Ditto.
23113         * nnrss.el (nnrss-find-rss-via-syndic8): Ditto.
23114         * nnsoup.el (nnsoup-make-active): Ditto.
23115         * nnspool.el (nnspool-find-id, nnspool-request-group): Ditto.
23116         * nntp.el (nntp-find-group-and-number)
23117         (nntp-retrieve-headers-with-xover): Ditto.
23118         * pgg-gpg.el (pgg-gpg-snarf-keys-region): Ditto.
23119         * pgg-parse.el (pgg-read-body, pgg-read-bytes)
23120         (pgg-format-key-identifier): Ditto.
23121         * pop3.el (pop3-last, pop3-stat): Ditto.
23122         * qp.el (quoted-printable-decode-region): Ditto.
23123
23124         * spam-report.el (spam-report-url-ping-mm-url): Use format instead
23125         of concat.
23126
23127 2005-05-30  Katsumi Yamaoka  <yamaoka@jpl.org>
23128
23129         * gnus-agent.el (gnus-category-mode): Use gnus-run-mode-hooks.
23130
23131         * gnus-art.el (gnus-article-mode): Use gnus-run-mode-hooks.
23132
23133         * gnus-cus.el (gnus-custom-mode): Use gnus-run-mode-hooks.
23134
23135         * gnus-eform.el (gnus-edit-form-mode): Use gnus-run-mode-hooks.
23136
23137         * gnus-group.el (gnus-group-mode): Use gnus-run-mode-hooks.
23138
23139         * gnus-kill.el (gnus-kill-file-mode): Use gnus-run-mode-hooks.
23140
23141         * gnus-salt.el (gnus-tree-mode): Use gnus-run-mode-hooks.
23142         (gnus-carpal-mode): Ditto.
23143
23144         * gnus-srvr.el (gnus-server-mode): Use gnus-run-mode-hooks.
23145         (gnus-browse-mode): Ditto.
23146
23147         * gnus-sum.el (gnus-summary-mode): Use gnus-run-mode-hooks.
23148
23149         * gnus-util.el (gnus-run-mode-hooks): Save current buffer.
23150
23151 2005-05-29  Richard M. Stallman  <rms@gnu.org>
23152
23153         * gnus-cite.el (gnus-cite-add-face): Set overlay's evaporate property.
23154
23155 2005-05-27  Katsumi Yamaoka  <yamaoka@jpl.org>
23156
23157         * gnus-util.el (gnus-run-mode-hooks): New function.
23158
23159         * score-mode.el (gnus-score-mode): Use gnus-run-mode-hooks.
23160
23161         * dgnushack.el: Advise byte-optimize-form-code-walker to avoid the
23162         ``...called for effect'' warnings for Emacs 21.4 as well as 21.3.
23163
23164 2005-05-27  Lute Kamstra  <lute@gnu.org>
23165
23166         * dns-mode.el (dns-mode): Specify customization group.
23167
23168 2005-05-26  Luc Teirlinck  <teirllm@auburn.edu>
23169
23170         * gnus-agent.el (gnus-agent-make-mode-line-string):
23171         Use mode-line-highlight as mouse-face.
23172
23173 2005-05-17  Katsumi Yamaoka  <yamaoka@jpl.org>
23174
23175         * canlock.el (canlock): Change the parent group to news.
23176
23177         * deuglify.el (gnus-outlook-deuglify): Add :group.
23178
23179         * dig.el (dig): Add :group.
23180
23181         * dns-mode.el (dns-mode): Add :group.
23182
23183         * encrypt.el (encrypt): Add :group.
23184
23185         * gnus-cite.el (gnus-cite-attribution-face): Add :group.
23186         (gnus-cite-face-1, gnus-cite-face-2, gnus-cite-face-3): Ditto.
23187         (gnus-cite-face-4, gnus-cite-face-5, gnus-cite-face-6): Ditto.
23188         (gnus-cite-face-7, gnus-cite-face-8, gnus-cite-face-9): Ditto.
23189         (gnus-cite-face-10, gnus-cite-face-11): Ditto.
23190
23191         * gnus-diary.el (gnus-diary): Add :group.
23192
23193         * gnus.el (gnus-group-news-1-face): Add :group.
23194         (gnus-group-news-1-empty-face): Ditto.
23195         (gnus-group-news-2-face, gnus-group-news-2-empty-face): Ditto.
23196         (gnus-group-news-3-face, gnus-group-news-3-empty-face): Ditto.
23197         (gnus-group-news-4-face, gnus-group-news-4-empty-face): Ditto.
23198         (gnus-group-news-5-face, gnus-group-news-5-empty-face): Ditto.
23199         (gnus-group-news-6-face, gnus-group-news-6-empty-face): Ditto.
23200         (gnus-group-news-low-face, gnus-group-news-low-empty-face): Ditto.
23201         (gnus-group-mail-1-face, gnus-group-mail-1-empty-face): Ditto.
23202         (gnus-group-mail-2-face, gnus-group-mail-2-empty-face): Ditto.
23203         (gnus-group-mail-3-face, gnus-group-mail-3-empty-face): Ditto.
23204         (gnus-group-mail-low-face, gnus-group-mail-low-empty-face): Ditto.
23205         (gnus-summary-selected-face, gnus-summary-cancelled-face): Ditto.
23206         (gnus-summary-high-ticked-face): Ditto.
23207         (gnus-summary-low-ticked-face): Ditto.
23208         (gnus-summary-normal-ticked-face): Ditto.
23209         (gnus-summary-high-ancient-face): Ditto.
23210         (gnus-summary-low-ancient-face): Ditto.
23211         (gnus-summary-normal-ancient-face): Ditto.
23212         (gnus-summary-high-undownloaded-face): Ditto.
23213         (gnus-summary-low-undownloaded-face): Ditto.
23214         (gnus-summary-normal-undownloaded-face): Ditto.
23215         (gnus-summary-high-unread-face): Ditto.
23216         (gnus-summary-low-unread-face): Ditto.
23217         (gnus-summary-normal-unread-face): Ditto.
23218         (gnus-summary-high-read-face, gnus-summary-low-read-face): Ditto.
23219         (gnus-summary-normal-read-face, gnus-splash-face): Ditto.
23220
23221         * hashcash.el (hashcash): New custom group.
23222         (hashcash-default-payment): Add :group.
23223         (hashcash-payment-alist): Ditto.
23224         (hashcash-default-accept-payment): Ditto.
23225         (hashcash-accept-resources): Ditto.
23226         (hashcash-path): Ditto.
23227         (hashcash-extra-generate-parameters): Ditto.
23228         (hashcash-double-spend-database): Ditto.
23229         (hashcash-in-news): Ditto.
23230
23231         * message.el (message-minibuffer-local-map): Add :group.
23232
23233         * netrc.el (netrc): Add :group.
23234
23235         * sieve-manage.el (sieve-manage-log): Add :group.
23236         (sieve-manage-default-user): Diito.
23237         (sieve-manage-server-eol, sieve-manage-client-eol): Ditto.
23238         (sieve-manage-streams, sieve-manage-stream-alist): Ditto.
23239         (sieve-manage-authenticators): Ditto.
23240         (sieve-manage-authenticator-alist): Ditto.
23241         (sieve-manage-default-port): Ditto.
23242
23243         * sieve-mode.el (sieve-control-commands-face): Add :group.
23244         (sieve-action-commands-face): Ditto.
23245         (sieve-test-commands-face): Ditto.
23246         (sieve-tagged-arguments-face): Ditto.
23247
23248         * smime.el (smime): Add :group.
23249
23250         * spam-report.el (spam-report): Add :group.
23251
23252         * spam.el (spam, spam-face): Add :group.
23253
23254 2005-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23255
23256         * nntp.el (nntp-next-result-arrived-p): Some news servers may
23257         return \n.\n.\n at the end of articles.  Protect against that.
23258         (nntp-with-open-group): Allow debugging.
23259
23260         * nnheader.el (mail-header-set-extra): Make into a function
23261         because I just could't understand how to quote the list properly.
23262
23263         * dns.el (query-dns-cached): New function.
23264
23265 2005-05-26  Lute Kamstra  <lute@gnu.org>
23266
23267         * score-mode.el (gnus-score-mode): Use run-mode-hooks.
23268
23269 2005-05-16  Katsumi Yamaoka  <yamaoka@jpl.org>
23270
23271         * dgnushack.el: Autoload mail-extract-address-components for XEmacs.
23272
23273         * gnus-art.el: Don't autoload mail-extract-address-components.
23274
23275         * gnus.el: Remove duplicated autoload for message-y-or-n-p; use
23276         eval-and-compile to evaluate it.
23277
23278         * hashcash.el: Don't autoload executable-find.
23279
23280         * nndb.el: Don't declare the nndb back end two or more times; don't
23281         autoload news-reply-mode, news-setup, cancel-timer and telnet.
23282
23283         * nntp.el: Autoload format-spec instead of format; use
23284         eval-and-compile to evaluate autoload forms.
23285
23286 2005-05-09  Georg C. F. Greve  <greve@gnu.org>  (tiny change)
23287
23288         * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Fix PIN caching.
23289
23290 2005-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23291
23292         * gnus.el (gnus-version-number): Bump version.
23293
23294 2005-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
23295
23296         * gnus.el: No Gnus v0.3 is released.
23297
23298 2005-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23299
23300         * lpath.el (featurep): Bind show-nonbreak-escape.
23301
23302 2005-04-28  Katsumi Yamaoka  <yamaoka@jpl.org>
23303
23304         * gnus-art.el (gnus-article-edit-part): Disable undo.
23305
23306 2005-04-25  Katsumi Yamaoka  <yamaoka@jpl.org>
23307
23308         * gnus-art.el (article-date-ut): Don't delete X-Sent header when
23309         gnus-article-date-lapsed-new-header is t if date timer is active;
23310         skip headers in which the original date value is empty.
23311         (gnus-article-save-original-date): Redefine it as a macro.
23312         (gnus-display-mime): Use it.
23313
23314 2005-04-22  Katsumi Yamaoka  <yamaoka@jpl.org>
23315
23316         * gnus-art.el (article-date-ut): Support converting date in
23317         forwarded parts as well.
23318         (gnus-article-save-original-date): New function.
23319         (gnus-display-mime): Use it.
23320
23321 2005-04-22  David Hansen  <david.hansen@physik.fu-berlin.de>
23322
23323         * nnrss.el (nnrss-check-group, nnrss-request-article): Support the
23324         enclosure element of <item>.
23325
23326 2005-04-21  Reiner Steib  <Reiner.Steib@gmx.de>
23327
23328         * message.el (message-kill-buffer-query): Rename from
23329         `message-kill-buffer-query-if-modified'.  Add :version.
23330
23331 2005-04-19  Katsumi Yamaoka  <yamaoka@jpl.org>
23332
23333         * mml.el (mml-preview): Bind gnus-message-buffer while setting the
23334         window layout.
23335
23336 2005-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
23337
23338         * mml.el: Autoload dnd when compiling.
23339
23340 2005-04-18  Reiner Steib  <Reiner.Steib@gmx.de>
23341
23342         * mml.el (mml-mode, mml-dnd-attach-file): Use dnd-* instead of
23343         x-dnd-*.
23344
23345 2005-04-18  Katsumi Yamaoka  <yamaoka@jpl.org>
23346
23347         * qp.el (quoted-printable-encode-region): Save excursion.
23348
23349 2005-04-14  Teodor Zlatanov  <tzz@lifelogs.com>
23350
23351         * message.el (message-kill-buffer-query-if-modified): Add new variable
23352         so the user can kill a modified message buffer quickly.
23353         (message-kill-buffer): Use it.
23354
23355 2005-04-13  Katsumi Yamaoka  <yamaoka@jpl.org>
23356
23357         * lpath.el: Fbind display-time-event-handler; don't fbind
23358         string-to-multibyte.
23359
23360         * qp.el (quoted-printable-encode-region): Use mm-string-to-multibyte.
23361
23362 2005-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
23363
23364         * nnrss.el (nnrss-node-text): Replace CRLFs (which might be
23365         contained in text because xml.el decodes entities) with LFs.
23366
23367 2005-04-11  Lute Kamstra  <lute@gnu.org>
23368
23369         * nnimap.el (nnimap-date-days-ago): Handle byte-compiler warnings
23370         differently.
23371
23372 2005-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
23373
23374         * mm-util.el (mm-detect-coding-region): Typo.
23375
23376 2005-04-11  Katsumi Yamaoka  <yamaoka@jpl.org>
23377
23378         * gnus-art.el (gnus-article-read-summary-keys): Fix misplaced parens.
23379
23380 2005-04-06  Deepak Goel  <deego@gnufans.org>
23381
23382         * spam-stat.el (spam-stat-score-buffer): Add a call to a
23383         user-function allow user modifications of the scores.
23384         (spam-stat-score-buffer-user): New function, to allow
23385         user-computed modifications to the score.
23386         (spam-stat-score-buffer-user-functions): List of additional
23387         scoring functions.
23388         (spam-stat-error-holder): Global temporary error holder.
23389         (spam-stat-split-fancy): Use the new `spam-stat-error-holder'
23390         variable.
23391
23392 2005-04-06  Teodor Zlatanov  <tzz@lifelogs.com>
23393
23394         * gnus-registry.el (gnus-registry-clean-empty-function)
23395         (gnus-registry-trim, gnus-registry-fetch-groups)
23396         (gnus-registry-delete-group): Groups that match
23397         `gnus-registry-ignored-groups' are removed from the registry
23398         entries, not just ignored for splitting.  This helps clean up the
23399         registry.  Also, `gnus-registry-fetch-groups' is a convenient way
23400         to get all the groups a message ID is in.
23401
23402         * spam-stat.el (spam-stat-split-fancy-spam-threshold)
23403         (spam-stat-split-fancy): Change "threshhold" to "threshold".
23404         (spam-stat-score-buffer-user-functions): Add :number custom type.
23405
23406 2005-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
23407
23408         * mm-util.el (mm-coding-system-p): Don't return binary for the nil
23409         argument in XEmacs.
23410
23411         * nnrss.el (nnrss-compatible-encoding-alist): New variable.
23412         (nnrss-request-group): Decode group name first.
23413         (nnrss-request-article): Make a text/plain article if mml-to-mime
23414         failed.
23415         (nnrss-get-encoding): Return a compatible encoding according to
23416         nnrss-compatible-encoding-alist.
23417         (nnrss-find-el): Use consp instead of listp.
23418         (nnrss-opml-export, nnrss-order-hrefs, nnrss-find-el): Use dolist.
23419
23420 2005-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>
23421
23422         * time-date.el (time-to-seconds): Don't use the #xhhhh syntax
23423         which Emacs 20 doesn't support.
23424         (seconds-to-time, days-to-time, time-subtract, time-add): Ditto.
23425
23426 2005-04-04  Reiner Steib  <Reiner.Steib@gmx.de>
23427
23428         * nnimap.el (nnimap-date-days-ago): Add defvars in order to
23429         silence the byte compiler inside the defun.
23430
23431         * gnus-demon.el (parse-time-string): Add autoload.
23432
23433         * gnus-delay.el (parse-time-string): Add autoload.
23434
23435         * gnus-art.el (parse-time-string): Add autoload.
23436
23437         * nnultimate.el (parse-time): Require for `parse-time-string'.
23438
23439 2005-03-31  Reiner Steib  <Reiner.Steib@gmx.de>
23440
23441         * gnus-art.el (gnus-copy-article-ignored-headers): Update :version.
23442
23443         * gnus-score.el (gnus-adaptive-pretty-print): Ditto.
23444
23445         * smime.el (smime-ldap-host-list): Add :version.
23446
23447 2005-03-21  Reiner Steib  <Reiner.Steib@gmx.de>
23448
23449         * gnus-srvr.el (gnus-browse-select-group): Add NUMBER argument and
23450         pass it to `gnus-browse-read-group'.
23451         (gnus-browse-read-group): Add NUMBER argument and pass it to
23452         `gnus-group-read-ephemeral-group'.
23453
23454         * gnus-group.el (gnus-group-read-ephemeral-group): Add NUMBER
23455         argument and pass it to `gnus-group-read-group'.
23456
23457 2005-03-19  Aidan Kehoe  <kehoea@parhasard.net>
23458
23459         * mm-util.el (mm-xemacs-find-mime-charset): Only call
23460         mm-xemacs-find-mime-charset-1 if we have the mule feature
23461         available at runtime.
23462
23463 2005-03-25  Werner Lemberg  <wl@gnu.org>
23464
23465         * nnmaildir.el: Replace `illegal' with `invalid'.
23466
23467 2005-03-23  Lute Kamstra  <lute@gnu.org>
23468
23469         * time-date.el: Add comment on time value formats.
23470         Don't require parse-time.
23471         (with-decoded-time-value): New macro.
23472         (encode-time-value): New function.
23473         (time-to-seconds, time-less-p, time-subtract, time-add): Use them.
23474         (days-to-time): Return a valid time value when arg is huge.
23475         (time-since): Use time-subtract.
23476         (time-to-number-of-days): Use time-to-seconds.
23477
23478 2005-03-22  Stefan Monnier  <monnier@iro.umontreal.ca>
23479
23480         * gnus-start.el (gnus-display-time-event-handler):
23481         Check display-time-timer at runtime rather than only at load time
23482         in case display-time-mode is turned off in the mean time.
23483
23484 2005-03-16  Reiner Steib  <Reiner.Steib@gmx.de>
23485
23486         * nnimap.el (nnimap-open-connection): Print which authinfo file is
23487         used.
23488
23489         * nneething.el (nneething-map-file-directory): Derive from
23490         `gnus-directory'.
23491
23492         * gnus-art.el (gnus-header-button-alist): Use `gnus-msg-mail' for
23493         the To/Cc button.
23494
23495 2005-03-15  Reiner Steib  <Reiner.Steib@gmx.de>
23496
23497         * nnmaildir.el (nnmaildir-request-accept-article):
23498         Use `nnheader-cancel-timer' for compatibility with current XEmacs.
23499
23500 2005-03-13  Andrey Slusar  <anrays@gmail.com>  (tiny change)
23501
23502         * gnus-async.el: Require timer-funcs at compile time when in
23503         XEmacs for `run-with-idle-timer'.
23504
23505 2005-03-13  Andrey Slusar  <anrays@gmail.com>  (tiny change)
23506
23507         * gnus.el: Don't try and mark `gnus-agent-save-groups' as an
23508         autoloaded function.
23509
23510 2005-03-10  Stefan Monnier  <monnier@iro.umontreal.ca>
23511
23512         * nnimap.el (nnimap-retrieve-headers-from-server): Fix last change.
23513
23514 2005-03-10  Arne Jørgensen  <arne@arnested.dk>  (tiny change)
23515
23516         * nnimap.el (nnimap-retrieve-headers-from-server): Fix off-by-one flaw.
23517
23518 2005-03-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23519
23520         * gnus-msg.el (gnus-confirm-mail-reply-to-news):
23521         Add gnus-expert-user to default.
23522
23523 2005-03-08  Juergen Kreileder  <jk@blackdown.de>  (tiny change)
23524
23525         * nnimap.el (nnimap-open-server): Ditto.
23526
23527         * imap.el (imap-authenticate): Fix typo.
23528
23529 2005-03-08  Bjorn Solberg  <bjorn_ding@hekneby.org>  (tiny change)
23530
23531         * nnimap.el (nnimap-retrieve-headers-from-server): Sort NOV
23532         buffer (since IMAP server might return FETCH response out of
23533         order, and the nntp buffer must be sorted).
23534
23535 2005-03-06  Kevin Greiner  <kevin.greiner@compsol.cc>
23536
23537         * gnus-start.el (gnus-convert-old-newsrc): Fix numeric
23538         comparison on string.
23539
23540         * gnus-agent.el (gnus-agent-long-article, gnus-agent-short-article)
23541         (gnus-agent-score): Rename category keywords to match gnus-cus.
23542         (gnus-agent-summary-fetch-series): Modify to protect against
23543         gnus-agent-summary-fetch-group clearing processable flags.
23544         (gnus-agent-synchronize-group-flags): Update live group buffer as
23545         synchronization may occur due to the user toggle the plugged
23546         status.
23547         (gnus-agent-fetch-group-1): Clear downloadable flag when article
23548         successfully downloaded.
23549         (gnus-agent-expire-group-1): Avoid using markers when the overview
23550         is in ascending order; greatly improves performance.
23551         (gnus-agent-regenerate-group):
23552         Use gnus-agent-synchronize-group-flags to reset read status in both
23553         gnus and server.
23554         (gnus-agent-update-files-total-fetched-for): Fix initial size.
23555
23556 2005-03-04  Reiner Steib  <Reiner.Steib@gmx.de>
23557
23558         * message.el: Don't autoload former message-utils variables.
23559         (message-strip-subject-trailing-was): Change doc string.
23560
23561         * nnweb.el: Fixes for `gnus-group-make-web-group'.
23562         (nnweb-type-definition): Don't add "hl=en" in `address'.  Add `base'.
23563         (nnweb-google-search): Add "hl=en" here.
23564         (nnweb-google-parse-1, nnweb-google-create-mapping):
23565         Don't hardcode URL.
23566
23567 2005-03-03  Reiner Steib  <Reiner.Steib@gmx.de>
23568
23569         * message.el (message-get-reply-headers, message-followup):
23570         Mention related variables `message-use-followup-to' and
23571         `message-use-mail-followup-to', in the information buffer.
23572
23573         * nnweb.el (nnweb-type-definition): Use groups.google.de instead
23574         of broken groups(-beta).google.com.
23575
23576 2005-03-03  Teodor Zlatanov  <tzz@lifelogs.com>
23577
23578         * gnus-sum.el (gnus-summary-move-article): Pass move-is-internal
23579         parameter to invoked gnus-request-move-article; remove the
23580         redundant gnus-sum-hint-move-is-internal variable; apply the marks
23581         all at once instead of once per article.
23582         (gnus-summary-remove-process-mark): Accept a list of articles as
23583         well as a single article for processing.
23584
23585         * gnus-int.el (gnus-request-move-article): Add move-is-internal
23586         parameter.
23587
23588         * nnml.el (nnml-request-move-article): Add move-is-internal parameter.
23589
23590         * nnmh.el (nnmh-request-move-article): Add move-is-internal parameter.
23591
23592         * nnmbox.el (nnmbox-request-move-article): Add move-is-internal
23593         parameter.
23594
23595         * nnmaildir.el (nnmaildir-request-move-article): Add move-is-internal
23596         parameter.
23597
23598         * nnimap.el (nnimap-request-move-article): Add move-is-internal
23599         parameter and remove the gnus-sum-hint-move-is-internal variable.
23600
23601         * nnfolder.el (nnfolder-request-move-article): Add move-is-internal
23602         parameter.
23603
23604         * nndraft.el (nndraft-request-move-article): Add move-is-internal
23605         parameter.
23606
23607         * nndiary.el (nndiary-request-move-article): Add move-is-internal
23608         parameter.
23609
23610         * nndb.el (nndb-request-move-article): Add move-is-internal parameter.
23611
23612         * nnbabyl.el (nnbabyl-request-move-article): Add move-is-internal
23613         parameter.
23614
23615         * nnagent.el (nnagent-request-move-article): Add move-is-internal
23616         parameter.
23617
23618 2005-03-01  Stefan Monnier  <monnier@iro.umontreal.ca>
23619
23620         * gnus-sum.el (gnus-summary-exit): Undo last change and fix it in
23621         a more conservative way.
23622
23623 2005-02-26  Stefan Monnier  <monnier@iro.umontreal.ca>
23624
23625         * gnus-sum.el (gnus-summary-exit): Move point after displaying the
23626         buffer, so it moves the window's cursor.
23627
23628 2005-02-26  Arne Jørgensen  <arne@arnested.dk>
23629
23630         * mm-decode.el (mm-dissect-buffer): Pass the from field on to
23631         `mm-dissect-multipart' and receive the from field as an (optional)
23632         argument from `mm-dissect-multipart'.
23633         (mm-dissect-multipart): Receive the from field as an argument and
23634         pass it on when we call `mm-dissect-buffer' on MIME parts.
23635         Fixes verification/decryption of signed/encrypted MIME parts.
23636
23637 2005-02-25  Teodor Zlatanov  <tzz@lifelogs.com>
23638
23639         * gnus-sum.el (gnus-summary-move-article):
23640         Set gnus-sum-hint-move-is-internal for gnus-request-move-article and
23641         whatever it calls (right now, only nnimap-request-move article
23642         respects it).
23643
23644         * nnimap.el (nnimap-request-move-article):
23645         When gnus-sum-hint-move-is-internal is set, don't do the extra
23646         nnimap-request-article.
23647
23648 2005-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
23649
23650         * nnheader.el (nnheader-find-file-noselect): Add doc string.
23651
23652         * nnfolder.el (nnfolder-read-folder): Use RAWFILE for
23653         `nnheader-find-file-noselect' to avoid `large-file-warning-threshold'.
23654
23655         * gnus-sum.el (gnus-summary-caesar-message):
23656         Apply `gnus-treat-article' after rotation.
23657
23658         * gnus-group.el (gnus-group-clear-data): Mention process/prefix in
23659         doc string.
23660
23661 2005-02-22  Simon Josefsson  <jas@extundo.com>
23662
23663         * encrypt.el (encrypt-password-cache-expiry): Remove (use
23664         `password-cache-expiry' instead).  Reported by Arne Jørgensen
23665         <arne@arnested.dk>.
23666         (encrypt): Add password-cache and password-cache-expiry as group
23667         members.
23668
23669 2005-02-22  Arne Jørgensen  <arne@arnested.dk>
23670
23671         * smime.el (smime-ldap-host-list): Doc fix.
23672         (smime-ask-passphrase): Use `password-read-and-add' to read (and
23673         cache) password.
23674         (smime-sign-region): Use it.
23675         (smime-decrypt-region): Use it.
23676         (smime-sign-buffer): Signal an error if `smime-sign-region' fails.
23677         (smime-encrypt-buffer): Signal an error if `smime-encrypt-region'
23678         fails.
23679         (smime-cert-by-ldap-1): Use `base64-encode-string' to convert
23680         certificate from DER to PEM format rather than calling openssl.
23681
23682         * mml-smime.el (mml-smime-encrypt-query): Remove obsolete comment.
23683
23684         * mml-sec.el (mml-secure-message): Insert keyfile/certfile tags
23685         for signing/encryption.
23686
23687         * mml.el (mml-parse-1): Use them.
23688
23689 2005-02-21  Arne Jørgensen  <arne@arnested.dk>
23690
23691         * nnrss.el (nnrss-verbose): Remove.
23692         (nnrss-request-group): Use `nnheader-message' instead.
23693
23694 2005-02-19  Mark Plaksin  <happy@usg.edu>  (tiny change)
23695
23696         * nnrss.el (nnrss-verbose): New variable.
23697         (nnrss-request-group): Make it say nnrss is requesting a group.
23698
23699 2005-02-21  Reiner Steib  <Reiner.Steib@gmx.de>
23700
23701         * gnus-art.el (gnus-parse-news-url, gnus-button-handle-news):
23702         Handle news URL with given port correctly.
23703
23704 2005-02-19  Katsumi Yamaoka  <yamaoka@jpl.org>
23705
23706         * gnus-msg.el (gnus-copy-article-buffer): Quote decoded words
23707         containing special characters.
23708
23709         * gnus-sum.el (gnus-summary-edit-article): Ditto.
23710
23711         * mml.el (mime-to-mml): Ditto.
23712
23713         * rfc2047.el (rfc2047-encode-parameter): Use ietf-drums-tspecials.
23714         (rfc2047-quote-decoded-words-containing-tspecials): New variable.
23715         (rfc2047-decode-region): Quote decoded words containing special
23716         characters when rfc2047-quote-decoded-words-containing-tspecials
23717         is non-nil.
23718
23719 2005-02-16  Teodor Zlatanov  <tzz@lifelogs.com>
23720
23721         * gnus-registry.el (gnus-registry-delete-group): Add minor bug fix.
23722
23723         * gnus.el (gnus-install-group-spam-parameters): Add minor doc fix.
23724
23725 2005-02-15  Simon Josefsson  <jas@extundo.com>
23726
23727         * nnimap.el (nnimap-debug): Doc fix.
23728
23729         * imap.el (imap-debug): Doc fix.
23730
23731 2005-02-15  Katsumi Yamaoka  <yamaoka@jpl.org>
23732
23733         * gnus-art.el: Avoid "Recursive load suspected" error in Emacs 21.1.
23734
23735 2005-02-14  Teodor Zlatanov  <tzz@lifelogs.com>
23736
23737         * gnus.el (spam-contents): Improve docs for spam-contents
23738         parameter in its variable incarnation.
23739
23740 2005-02-14  Simon Josefsson  <jas@extundo.com>
23741
23742         * smime-ldap.el: Use require instead of load-library for ldap.
23743         (smime-ldap-search): Indent.
23744         (smime-ldap-search-internal): Shorten line.
23745
23746         * smime.el (smime-cert-by-dns): Add doc-string.
23747         (smime-cert-by-ldap-1): Indent.
23748
23749         * mml-smime.el (mml-smime-get-ldap-cert): Rename from
23750         mml-smime-get-dns-ldap.
23751         (mml-smime-encrypt-query): Use new function.  Default to ldap.
23752
23753 2005-02-14  Arne Jørgensen  <arne@arnested.dk>
23754
23755         * smime.el: Require smime-ldap.
23756         (smime-ldap-host-list): New variable.
23757         (smime-cert-by-ldap, smime-cert-by-ldap-1): New functions.
23758
23759         * mml-smime.el (mml-smime-encrypt-query): New function.
23760         (mml-smime-encrypt-query): Use it.
23761
23762         * smime-ldap.el: New file.
23763
23764 2005-02-13  Katsumi Yamaoka  <yamaoka@jpl.org>
23765
23766         * gnus-agent.el: Remove garbage made while merging the Emacs trunk.
23767
23768 2005-02-14  Reiner Steib  <Reiner.Steib@gmx.de>
23769
23770         * gnus-group.el (gnus-group-make-doc-group): Mention prefix
23771         argument in doc string.  Make query for type more clear.
23772
23773 2005-02-13  Reiner Steib  <Reiner.Steib@gmx.de>
23774
23775         * gnus.el (gnus-group-startup-message): Search for gnus images in
23776         etc/images/gnus.
23777         * mm-util.el (mm-image-load-path): Likewise.
23778         * smiley.el (smiley-data-directory): Search for smilies in
23779         etc/images/smilies.
23780
23781 2005-02-09  Kim F. Storm  <storm@cua.dk>
23782
23783         Change Emacs release version from 21.4 to 22.1 throughout.
23784         Change Emacs development version from 21.3.50 to 22.0.50.
23785
23786 2005-02-12  Katsumi Yamaoka  <yamaoka@jpl.org>
23787
23788         * gnus-art.el (gnus-mime-copy-part): Don't decode compressed parts.
23789
23790         * mm-util.el (mm-coding-system-to-mime-charset): Make it work with
23791         non-Mule XEmacs as well.
23792         (mm-decompress-buffer): Signal an error intentionally if it does
23793         not decompress compressed data because auto-compression-mode is
23794         disabled.
23795
23796 2005-02-11  Teodor Zlatanov  <tzz@lifelogs.com>
23797
23798         * gnus-registry.el (gnus-registry-delete-group): Fix bug: leaves
23799         an ID in the registry even if it has no groups.
23800
23801 2005-02-10  Katsumi Yamaoka  <yamaoka@jpl.org>
23802
23803         * gnus-art.el (gnus-mime-jka-compr-maybe-uncompress): Remove;
23804         merge it into mm-decompress-buffer.
23805         (gnus-mime-copy-part): Use the MIME part charset, the value which
23806         a user specified or gnus-newsgroup-charset for decoding, like
23807         gnus-mime-inline-part does; set buffer-file-coding-system to tell
23808         save-buffer what was used.  Suggested by Kevin Ryde
23809         <user42@zip.com.au>.
23810         (gnus-mime-inline-part): Allow the name parameter as well as the
23811         filename parameter; force decompressing of compressed data; always
23812         display contents being not decoded as unibyte.
23813
23814         * mm-view.el (mm-display-inline-fontify): Allow the name parameter
23815         as well as the filename parameter.
23816
23817         * mm-util.el (mm-decompress-buffer):
23818         Merge gnus-mime-jka-compr-maybe-uncompress.
23819         (mm-find-buffer-file-coding-system): Doc fix; force decompressing
23820         of compressed data.
23821
23822 2005-02-08  Simon Josefsson  <jas@extundo.com>
23823
23824         * imap.el (imap-log): Doc fix.
23825
23826 2005-02-07  Katsumi Yamaoka  <yamaoka@jpl.org>
23827
23828         * gnus-art.el (gnus-mime-inline-part): Decode parts according to
23829         the coding cookies; decompress compressed parts.
23830
23831         * mml.el (mml-generate-mime-1): Add the charset parameter according
23832         to the value which a user specified manually or the coding cookie.
23833
23834         * mm-util.el (mm-string-to-multibyte): New function.
23835         (mm-detect-mime-charset-region): Work with Emacs 22 as well.
23836         (mm-coding-system-to-mime-charset): New function.
23837         (mm-decompress-buffer): New function.
23838         (mm-find-buffer-file-coding-system): New function.
23839
23840         * mm-view.el (mm-insert-inline): Make sure a part ends with a newline.
23841         (mm-display-inline-fontify): Rewrite for decoding and decompressing
23842         parts.
23843
23844 2005-02-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
23845
23846         * mm-view.el (mm-display-inline-fontify): Decode a part according
23847         to the charset parameter.
23848
23849 2005-02-03  Katsumi Yamaoka  <yamaoka@jpl.org>
23850
23851         * gnus-art.el (gnus-mime-inline-part): Show the raw contents if a
23852         prefix arg is neither nil nor a number, as info specifies.
23853
23854 2005-02-02  Katsumi Yamaoka  <yamaoka@jpl.org>
23855
23856         * nntp.el (nntp-marks-changed-p): Use time-less-p to compare the
23857         timestamps.
23858
23859 2005-02-02  Jari Aalto  <jari.aalto@cante.net>
23860
23861         * gnus-sum.el (gnus-list-of-unread-articles): Improve active
23862         groups error checking and notify user.
23863
23864 2005-02-02  Jari Aalto  <jari.aalto@poboxes.com>
23865
23866         * message.el (message-send-mail-function): Check existence of
23867         sendmail-program first before using default value
23868         `message-send-mail-with-sendmail'.  Otherwise use more generic
23869         `smtpmail-send-it'.
23870
23871 2005-02-01  Katsumi Yamaoka  <yamaoka@jpl.org>
23872
23873         * nntp.el (nntp-request-update-info): Always return nil.
23874
23875 2005-01-30  Stefan Monnier  <monnier@iro.umontreal.ca>
23876
23877         * gnus-art.el (gnus-article-mode): Turn off the "\ " non-break space.
23878
23879 2005-01-28  Stefan Monnier  <monnier@iro.umontreal.ca>
23880
23881         * message.el (message-beginning-of-line): Change the behavior when
23882         invoked between BOL and : so that it first moves backward.
23883
23884 2005-01-28  Katsumi Yamaoka  <yamaoka@jpl.org>
23885
23886         * gnus-art.el (gnus-article-setup-buffer): Kill and re-create the
23887         article buffer when editing of the article is discarded.
23888         (gnus-article-prepare): Revert.
23889
23890 2005-01-28  Katsumi Yamaoka  <yamaoka@jpl.org>
23891
23892         * gnus-art.el (gnus-article-prepare):
23893         Remove message-strip-forbidden-properties from the local hook.
23894
23895 2005-01-27  Simon Josefsson  <jas@extundo.com>
23896
23897         * password.el (password-cache-add): Only start one timer per key.
23898         Reported by Derek Atkins <warlord@MIT.EDU>.
23899
23900 2005-01-26  Steve Youngs  <steve@sxemacs.org>
23901
23902         * run-at-time.el: Remove.  It is no longer needed as
23903         timer-funcs.el in the xemacs-base package has a working version of
23904         `run-at-time'.
23905
23906         * gnus-xmas.el: Require timer-funcs instead of run-at-time.
23907
23908         * password.el: Require timer-funcs instead of run-at-time in
23909         XEmacs.
23910         Remove `password-run-at-time' macro.
23911         (password-cache-add): Use `run-at-time' instead of
23912         `password-run-at-time'.
23913
23914         * nnheaderxm.el: Require timer-funcs instead of run-at-time.
23915         Remove `nnheader-cancel-function-timers' alias,
23916         `cancel-function-timers' exists in XEmacs in timer-funcs.
23917
23918         * mail-source.el: Require timer-funcs instead of itimer in XEmacs
23919         for `run-with-idle-timer'.
23920
23921         * gnus-demon.el: Require timer-funcs instead of itimer in XEmacs
23922         for `run-at-time'.
23923
23924         * mm-url.el: Require timer-funcs at compile time when in XEmacs
23925         for `with-timeout'.
23926
23927         * dgnushack.el: Autoload the correct `setenv' for SXEmacs which is
23928         the same as for XEmacs 21.4.
23929         No need to ignore `run-with-idle-timer', this function exists in
23930         XEmacs now in timer-funcs.el in the xemacs-base package.
23931         (dgnushack-compile): No need to delete
23932         run-at-time.el from the list of files to compile because it
23933         doesn't exist anymore.
23934
23935 2005-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>
23936
23937         * mml.el (mml-generate-mime-1): Convert string into unibyte when
23938         inserting " *mml*" buffer's contents into a unibyte temp buffer.
23939
23940 2005-01-24  Harald Meland  <harald.meland@usit.uio.no>  (tiny change)
23941
23942         * mail-source.el (mail-source-fetch-imap): Search for ^From case
23943         sensitively.
23944
23945 2005-01-21  Derek Atkins  <warlord@MIT.EDU>  (tiny change)
23946
23947         * pgg-pgp.el (pgg-pgp-decrypt-region): Use passphrase cache.
23948
23949 2005-01-20  Katsumi Yamaoka  <yamaoka@jpl.org>
23950
23951         * mm-decode.el (mm-insert-part): Switch the multibyteness of data
23952         which will be inserted according to the multibyteness of a buffer
23953         rather than the type of contents.  Suggested by ARISAWA Akihiro
23954         <ari@mbf.ocn.ne.jp>.
23955
23956         * nnrss.el (nnrss-find-el): Check carefully whether there's a list
23957         of string which old xml.el may return rather than a string.
23958
23959 2005-01-17  Katsumi Yamaoka  <yamaoka@jpl.org>
23960
23961         * gnus-sum.el (gnus-summary-idna-message): Silence byte compiler.
23962
23963 2005-01-16  Simon Josefsson  <jas@extundo.com>
23964
23965         * gnus-sum.el (gnus-summary-idna-message): Fail gracefully if
23966         idn/idna.el isn't available.
23967         (gnus-summary-idna-message): Doc fix.  Suggested by Michael Cook
23968         <michael@waxrat.com>.
23969
23970         * hashcash.el: Remove non-FSF copyright header.
23971
23972         * hashcash.el (hashcash-extra-generate-parameters): New variable.
23973         (hashcash-generate-payment): Use it.
23974         (hashcash-generate-payment-async): Use it.
23975
23976 2005-01-15  Simon Josefsson  <jas@extundo.com>
23977
23978         * message.el (message-idna-to-ascii-rhs): Decode Reply-To too.
23979         Suggested by Raymond Scholz <ray-2005@zonix.de>.
23980
23981         * gnus-sum.el (gnus-summary-wash-map): Bind "W i" to
23982         gnus-summary-idna-message.
23983         (gnus-summary-make-menu-bar): Add De-IDNA menu entry.
23984         (gnus-summary-idna-message): New function.
23985
23986 2005-01-13  Reiner Steib  <Reiner.Steib@gmx.de>
23987
23988         * gnus-msg.el (gnus-confirm-mail-reply-to-news): Change default to
23989         gnus-novice-user.
23990
23991 2005-01-12  Katsumi Yamaoka  <yamaoka@jpl.org>
23992
23993         * nnrss.el (nnrss-request-delete-group): Delete entries in
23994         nnrss-group-alist as well.
23995         (nnrss-save-server-data): Insert newline.
23996
23997 2005-01-10  Reiner Steib  <Reiner.Steib@gmx.de>
23998
23999         * gnus.el (gnus-user-agent): Use list of symbols instead of
24000         symbols.  Display full version number for (S)XEmacs.
24001         Optionally display (S)XEmacs codename.
24002
24003         * gnus-util.el (gnus-emacs-version): Update for new
24004         `gnus-user-agent'.
24005
24006         * gnus-msg.el (gnus-extended-version): Make it possible to omit
24007         Gnus version.
24008
24009 2005-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
24010
24011         * spam.el (spam-face): New face.  Don't use `gnus-splash-face'
24012         which is unreadable in some setups.
24013
24014 2005-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
24015
24016         * gnus-spec.el (gnus-update-format-specifications): Flush the
24017         group format spec cache if it doesn't support decoded group names.
24018
24019 2005-01-03  Reiner Steib  <Reiner.Steib@gmx.de>
24020
24021         * gnus-score.el (gnus-decay-scores, gnus-score-load-file):
24022         Allow to apply decay on score files matching a regexp.
24023
24024 2004-12-30  Katsumi Yamaoka  <yamaoka@jpl.org>
24025
24026         * gnus-group.el (gnus-group-line-format-alist): Keep the forward
24027         compatibility in %g and %c.
24028
24029 2004-12-29  Katsumi Yamaoka  <yamaoka@jpl.org>
24030
24031         * gnus-group.el (gnus-group-line-format-alist): Use decoded group
24032         name for only %g and %c.
24033         (gnus-group-insert-group-line): Bind gnus-tmp-decoded-group instead
24034         of gnus-tmp-group to decoded group name.
24035         (gnus-group-make-rss-group): Exclude `/'s from group names.
24036
24037 2004-12-28  Katsumi Yamaoka  <yamaoka@jpl.org>
24038
24039         * nnrss.el (nnrss-get-encoding): Fix regexp.
24040
24041 2004-12-27  Simon Josefsson  <jas@extundo.com>
24042
24043         * mm-bodies.el (mm-body-encoding): Don't permit 7-bit to be used when
24044         mm-use-ultra-safe-encoding is enabled (e.g., for PGP/MIME) and we have
24045         trailing white space.  Reported by Werner Koch <wk@gnupg.org>.
24046
24047 2004-12-17  Kim F. Storm  <storm@cua.dk>
24048
24049         * gnus-group.el (gnus-group-mode-map): Map follow-link to mouse-face.
24050
24051         * gnus-sum.el (gnus-summary-mode-map): Likewise.
24052
24053 2004-12-26  Tsuyoshi AKIHO  <akiho@kawachi.zaq.ne.jp>
24054
24055         * gnus-sum.el (gnus-summary-walk-group-buffer): Decode group name.
24056
24057 2004-12-26  Katsumi Yamaoka  <yamaoka@jpl.org>
24058
24059         * nnrss.el: Require rfc2047 and mml.
24060         (nnrss-file-coding-system): New variable.
24061         (nnrss-format-string): Redefine it as an inline function.
24062         (nnrss-decode-group-name): New function.
24063         (nnrss-string-as-multibyte): Remove.
24064         (nnrss-retrieve-headers): Decode group name; don't use
24065         nnrss-format-string.
24066         (nnrss-request-group): Decode group name.
24067         (nnrss-request-article): Decode group name; allow a Message-ID as
24068         well as an article number; don't use nnrss-format-string; encode a
24069         Message-ID string which may contain non-ASCII characters; use
24070         mml-to-mime to compose a MIME article.
24071         (nnrss-request-expire-articles): Decode group name.
24072         (nnrss-request-delete-group): Decode group name.
24073         (nnrss-fetch): Clarify error message.
24074         (nnrss-read-server-data): Use insert-file-contents instead of load;
24075         bind file-name-coding-system; use multibyte buffer.
24076         (nnrss-save-server-data): Bind coding-system-for-write to the
24077         value of nnrss-file-coding-system; bind file-name-coding-system;
24078         add coding cookie.
24079         (nnrss-read-group-data): Use insert-file-contents instead of load;
24080         bind file-name-coding-system; use multibyte buffer.
24081         (nnrss-save-group-data): Bind coding-system-for-write to the
24082         value of nnrss-file-coding-system; bind file-name-coding-system.
24083         (nnrss-decode-entities-string): Rename from n-d-e-unibyte-string;
24084         make it work with non-ASCII text.
24085         (nnrss-find-el): Make it work with old xml.el as well.
24086
24087 2004-12-26  Tsuyoshi AKIHO  <akiho@kawachi.zaq.ne.jp>
24088
24089         * nnrss.el (nnrss-get-encoding): New function.
24090         (nnrss-fetch): Use unibyte buffer initially; bind
24091         coding-system-for-read while performing mm-url-insert; remove ^Ms;
24092         decode contents according to the encoding attribute.
24093         (nnrss-save-group-data): Add coding cookie.
24094         (nnrss-mime-encode-string): New function.
24095         (nnrss-check-group): Use it to encode subject and author.
24096
24097 2004-12-23  Teodor Zlatanov  <tzz@lifelogs.com>
24098
24099         * spam.el (spam-check-BBDB): Don't get the symbol-value of an
24100         imaginary variable.
24101
24102 2004-12-22  Katsumi Yamaoka  <yamaoka@jpl.org>
24103
24104         * gnus-spec.el (gnus-spec-tab): Make a Lisp form which works
24105         correctly even if there are wide characters.
24106
24107 2004-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
24108
24109         * spam.el (spam-check-BBDB): Fix the BBDB caching code to use
24110         downcased symbol names; make a new cache instead of reusing
24111         bbdb-hashtable.
24112
24113 2004-12-21  Katsumi Yamaoka  <yamaoka@jpl.org>
24114
24115         * rfc2231.el (rfc2231-parse-string): Decode encoded value after
24116         concatenating segments rather than before concatenating them.
24117         Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
24118
24119         * message.el (message-get-reply-headers): Bind `extra'.
24120
24121 2004-12-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24122
24123         * message.el (message-extra-wide-headers): New variable.
24124         (message-get-reply-headers): Use it.
24125
24126 2004-12-20  Katsumi Yamaoka  <yamaoka@jpl.org>
24127
24128         * gnus-agent.el (gnus-agent-group-path): Decode group name.
24129         (gnus-agent-group-pathname): Ditto.
24130
24131         * gnus-cache.el (gnus-cache-file-name): Decode group name.
24132
24133         * gnus-group.el (gnus-group-make-group): Decode group name.
24134         (gnus-group-make-rss-group): Register the group data after opening
24135         the nnrss group.
24136
24137 2004-12-17  Paul Jarc  <prj@po.cwru.edu>
24138
24139         * nnmaildir.el (nnmaildir-request-expire-articles): Articles moved
24140         by expiry now get marked as read.
24141
24142 2004-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
24143
24144         * mm-util.el (mm-xemacs-find-mime-charset): New macro.
24145
24146 2004-12-17  Aidan Kehoe  <kehoea@parhasard.net>
24147
24148         * mm-util.el (mm-xemacs-find-mime-charset-1): New function used to
24149         unify Latin characters in XEmacs.
24150         (mm-find-mime-charset-region): Use it.
24151
24152 2004-12-17  Katsumi Yamaoka  <yamaoka@jpl.org>
24153
24154         * gnus-util.el (gnus-delete-directory): New function.
24155
24156         * gnus-agent.el (gnus-agent-delete-group): Use it.
24157
24158         * gnus-cache.el (gnus-cache-delete-group): Use it.
24159
24160 2004-12-16  Katsumi Yamaoka  <yamaoka@jpl.org>
24161
24162         * gnus-group.el (gnus-group-make-rss-group): Unify non-ASCII group
24163         names.
24164
24165 2004-12-16  Simon Josefsson  <jas@extundo.com>
24166
24167         * hashcash.el (hashcash-payment-alist): Fix custom :type.
24168
24169 2004-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
24170
24171         * mm-url.el (mm-url-predefined-programs): Add --silent arg to curl.
24172
24173         * gnus-group.el (gnus-group-expire-articles-1): Decode group name.
24174         (gnus-group-set-current-level): Decode group name.
24175
24176 2004-12-15  Maciek Pasternacki  <maciekp@japhy.fnord.org>  (tiny change)
24177
24178         * nnrss.el (nnrss-fetch): Signal an error if w3-parse-buffer also
24179         failed.
24180
24181 2004-12-14  Katsumi Yamaoka  <yamaoka@jpl.org>
24182
24183         * gnus-group.el (gnus-group-delete-group): Decode group name.
24184         (gnus-group-make-rss-group): Encode group name.
24185         (gnus-group-catchup-current): Decode group name.
24186         (gnus-group-kill-group): Decode group name.
24187
24188 2004-12-08  Stefan Monnier  <monnier@iro.umontreal.ca>
24189
24190         * gnus-art.el (gnus-narrow-to-page): Don't hardcode point-min.
24191
24192 2004-12-13  Katsumi Yamaoka  <yamaoka@jpl.org>
24193
24194         * gnus-group.el (gnus-group-make-rss-group):
24195         Use gnus-group-make-group instead of gnus-group-unsubscribe-group.
24196
24197         * gnus-start.el (gnus-setup-news): Honor user's setting to
24198         gnus-message-archive-method.  Suggested by Lute Kamstra
24199         <lute@gnu.org>.
24200
24201 2004-12-10  Arnaud Giersch  <arnaud.giersch@free.fr>  (tiny change)
24202
24203         * gnus-sum.el (gnus-summary-exit-no-update): Don't clear the
24204         global counterparts of the buffer-local variables.
24205
24206 2004-11-16  Romain Francoise  <romain@orebokech.com>
24207
24208         * gnus-sum.el (gnus-summary-exit): Don't clear the global
24209         counterparts of the buffer-local variables.
24210
24211 2004-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
24212
24213         * message.el (message-forbidden-properties): Fix typo in doc
24214         string.
24215
24216 2004-11-25  Reiner Steib  <Reiner.Steib@gmx.de>
24217
24218         * gnus-util.el (gnus-replace-in-string): Add doc string.
24219
24220         * nnmail.el (nnmail-split-header-length-limit): Increase to 2048
24221         to avoid problems when splitting mails with many recipients.
24222
24223 2004-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
24224
24225         * gnus-sum.el (gnus-summary-exit): Remove redundant and harmful
24226         pop-to-buffer, covered by the subsequent gnus-configure-windows.
24227
24228 2004-12-05  Nelson Ferreira  <nelson.ferreira@ieee.org>
24229
24230         * spam-stat.el (spam-stat-save): Load the hashtable from disk only
24231         if there is no hashtable in memory or file modification time is
24232         newer than cached timestamp.
24233
24234 2004-12-03  Reiner Steib  <Reiner.Steib@gmx.de>
24235
24236         * gnus-sum.el (gnus-summary-limit-to-recipient):
24237         Implement not-matching option.
24238
24239 2004-12-02  Reiner Steib  <Reiner.Steib@gmx.de>
24240
24241         * gnus-sum.el (gnus-summary-limit-to-recipient): New function.
24242         Suggested David Mazieres in analogy to rmail-summary-by-recipients.
24243         (gnus-summary-limit-map, gnus-summary-make-menu-bar): Add it.
24244         (gnus-article-sort-by-recipient, gnus-summary-sort-by-recipient):
24245         New functions.  Suggested by Uwe Brauer <oub@mat.ucm.es>.
24246         (gnus-summary-mode-map, gnus-summary-make-menu-bar): Add it.
24247
24248 2004-12-02  Katsumi Yamaoka  <yamaoka@jpl.org>
24249
24250         * message.el (message-forward-make-body-mml): Remove headers
24251         according to message-forward-ignored-headers if a message is decoded.
24252
24253 2004-12-02  Romain Francoise  <romain@orebokech.com>
24254
24255         * message.el (message-forward-make-body-plain): Always remove
24256         headers according to message-forward-ignored-headers.
24257
24258 2004-12-01  Teodor Zlatanov  <tzz@lifelogs.com>
24259
24260         * spam.el (spam-summary-prepare-exit): Remove the
24261         gnus-summary-limit pop for now, it has problems with ham marks for
24262         me.
24263
24264 2004-11-29  Teodor Zlatanov  <tzz@lifelogs.com>
24265
24266         * spam.el (spam-summary-prepare-exit): Use gnus-summary-limit
24267         correctly.
24268
24269 2004-11-28  Carl Henrik Lunde  <chlunde+bugs+@ping.uio.no>  (tiny change)
24270
24271         * format-spec.el (format-spec): Message the char.
24272
24273 2004-11-26  Teodor Zlatanov  <tzz@lifelogs.com>
24274
24275         * gnus-art.el (gnus-split-methods): Reformat comments.
24276
24277         * spam.el (spam-summary-prepare-exit): Remove article limits
24278         before exiting the summary buffer.
24279
24280 2004-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
24281
24282         * lpath.el: Remove bbdb-create-internal, bbdb-records,
24283         spam-BBDB-register-routine and spam-enter-ham-BBDB.
24284
24285         * nnrss.el (nnrss-string-as-multibyte): Redefine it as a macro in
24286         order to silence the byte compiler.
24287
24288         * spam.el: Fix the way to silence the byte compiler, which
24289         complained about bbdb-buffer, bbdb-create-internal, bbdb-records,
24290         bbdb-search-simple, spam-BBDB-register-routine,
24291         spam-enter-ham-BBDB, spam-stat-buffer-change-to-non-spam,
24292         spam-stat-buffer-change-to-spam, spam-stat-buffer-is-non-spam,
24293         spam-stat-buffer-is-spam, spam-stat-load,
24294         spam-stat-register-ham-routine, spam-stat-register-spam-routine,
24295         spam-stat-save and spam-stat-split-fancy.
24296
24297 2004-11-26  Katsumi Yamaoka  <yamaoka@jpl.org>
24298
24299         * canlock.el (canlock-password): Remove `:size 0' or `:size 1'
24300         which may confuse users.
24301         (canlock-password-for-verify): Ditto.
24302
24303         * deuglify.el (gnus-outlook-deuglify-unwrap-stop-chars): Ditto.
24304
24305         * gnus-art.el (gnus-emphasis-alist): Ditto.
24306
24307         * gnus-registry.el (gnus-registry-max-entries): Ditto.
24308
24309         * gnus-score.el (gnus-adaptive-word-length-limit): Ditto.
24310
24311         * gnus-start.el (gnus-save-killed-list): Ditto.
24312
24313         * gnus-sum.el (gnus-thread-hide-subtree): Ditto.
24314         (gnus-sum-thread-tree-root): Ditto.
24315         (gnus-sum-thread-tree-false-root): Ditto.
24316         (gnus-sum-thread-tree-single-indent): Ditto.
24317
24318         * message.el (message-courtesy-message): Ditto.
24319         (message-archive-note): Ditto.
24320         (message-subscribed-address-file): Ditto.
24321         (message-user-fqdn): Ditto.
24322
24323         * spam-report.el (spam-report-gmane-regex): Ditto.
24324
24325         * spam.el (spam-blackhole-good-server-regex): Ditto.
24326
24327 2004-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
24328
24329         * mml.el (mml-preview): Widen the message buffer before copying
24330         the contents to the preview buffer; sort headers before previewing.
24331
24332         * message.el (message-hidden-headers): Fix the way to avoid a bug
24333         in the `repeat' widget in Emacs 21.3 or earlier.
24334
24335 2004-11-25  Katsumi Yamaoka  <yamaoka@jpl.org>
24336
24337         * message.el (message-hidden-headers): Default to "^References:".
24338         Improve customization type.  Suggested by Reiner Steib
24339         <Reiner.Steib@gmx.de>.
24340
24341 2004-11-25  Romain Francoise  <romain@orebokech.com>
24342
24343         * message.el (message-strip-forbidden-properties): Remove check for
24344         obsolete `message-hidden' text property, hidden headers are not
24345         accessible in the buffer anymore.
24346
24347 2004-11-22  Romain Francoise  <romain@orebokech.com>
24348
24349         * message.el (message-header-format-alist): Add `From' in list
24350         so that it can be sorted.
24351         (message-fix-before-sending): Widen and sort headers before
24352         sending.
24353         (message-hide-headers): Use narrowing to hide headers by moving
24354         them to the top of the buffer and narrowing to the region
24355         underneath.
24356
24357 2004-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24358
24359         * message.el (message-strip-forbidden-properties):
24360         Bind buffer-read-only (etc) to nil.
24361
24362 2004-11-23  Katsumi Yamaoka  <yamaoka@jpl.org>
24363
24364         * rfc2047.el (rfc2047-header-encoding-alist): Add In-Reply-To to
24365         address-mime.  Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
24366
24367 2004-11-22  Marek Martin  <marek.martin@mum.pri.ee>  (tiny change)
24368
24369         * nnfolder.el (nnfolder-request-create-group): Save current buffer.
24370
24371 2004-11-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24372
24373         * dns.el (query-dns): Use sit-for to time instead of
24374         accept-process-output, since that doesn't seem to work on udp
24375         sockets.
24376
24377 2004-11-17  Katsumi Yamaoka  <yamaoka@jpl.org>
24378
24379         * rfc2047.el (rfc2047-encode-region): Encode bogus delimiters.
24380
24381 2004-11-15  Jesper Harder  <harder@ifa.au.dk>
24382
24383         * pop3.el (pop3-leave-mail-on-server): Don't quote nil in
24384         doc string.  Improve doc string.
24385
24386 2004-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
24387
24388         * nntp.el (nntp-request-update-info): Return nil if
24389         nntp-marks-is-evil is true so that gnus-get-unread-articles-in-group
24390         may not call gnus-activate-group which uselessly issues the GROUP
24391         commands for all nntp groups and wastes time.  Reported by Romain
24392         Francoise <romain@orebokech.com>.
24393
24394         * gnus-start.el (gnus-get-unread-articles): Remove redundant test.
24395
24396 2004-11-15  Simon Josefsson  <jas@extundo.com>
24397
24398         * gnus-art.el (gnus-header-button-alist): Handle URLs in OpenPGP:
24399         headers separately.
24400         (gnus-button-openpgp): New function, inspired by Jochen Küpper
24401         <jochen-+It19tn3Rl9sbm7dSapR3bNAH6kLmebB@public.gmane.org>.
24402
24403 2004-11-14  Reiner Steib  <Reiner.Steib@gmx.de>
24404
24405         * gnus-start.el (gnus-convert-old-newsrc):
24406         Assign legacy-gnus-agent to 5.10.7.
24407
24408 2004-11-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24409
24410         * gnus-art.el (article-unsplit-urls): Don't anchor urls to the
24411         start of the lines.
24412
24413 2004-11-14  Magnus Henoch  <mange@freemail.hu>
24414
24415         * hashcash.el (hashcash-default-payment): Change default to 20.
24416         (hashcash-default-accept-payment): Change default to 20.
24417         (hashcash-process-alist): New variable.
24418         (hashcash-generate-payment-async): Add.
24419         (hashcash-already-paid-p): Add.
24420         (hashcash-insert-payment): Don't generate payments twice.
24421         (hashcash-insert-payment-async): Add.
24422         (hashcash-insert-payment-async-2): Add.
24423         (hashcash-cancel-async): Add.
24424         (hashcash-wait-async): Add.
24425         (hashcash-processes-running-p): Add.
24426         (hashcash-wait-or-cancel): Add.
24427         (mail-add-payment): New optional argument.  Conditionally start
24428         asynchronous calculation.
24429         (mail-add-payment-async): Add.
24430
24431         * message.el (message-send-mail): Wait for asynchronous hashcash
24432         results.  Don't clobber existing X-Hashcash headers.
24433         (message-setup-1): Call mail-add-payment-async when
24434         message-generate-hashcash is non-nil.
24435
24436 2004-11-11  ARISAWA Akihiro  <ari@mbf.ocn.ne.jp>  (tiny change)
24437
24438         * message.el (message-use-alternative-email-as-from): Examine the
24439         From header as well; use message-make-from in order to include a
24440         user's full name.
24441
24442 2004-11-10  Katsumi Yamaoka  <yamaoka@jpl.org>
24443
24444         * gnus-art.el (gnus-emphasis-alist): Don't hide asterisks by
24445         default; improve customization type.
24446         (gnus-emphasis-custom-with-format): New macro.
24447         (gnus-emphasis-custom-value-to-external): New function.
24448         (gnus-emphasis-custom-value-to-internal): New function.
24449
24450 2004-11-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24451
24452         * dns.el (query-dns): Resolve reverse addresses.
24453
24454 2004-10-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24455
24456         * gnus-group.el (gnus-group-get-new-news): Use it.
24457
24458         * gnus-start.el (gnus-check-reasonable-setup): New function.
24459
24460 2004-11-07  Katsumi Yamaoka  <yamaoka@jpl.org>
24461
24462         * gnus-msg.el (gnus-configure-posting-styles): Don't cause the
24463         "Args out of range" error.  Reported by Arnaud Giersch
24464         <arnaud.giersch@free.fr>.
24465
24466 2004-11-07  Stefan Wiens  <s.wi@gmx.net>  (tiny change)
24467
24468         * gnus-sum.el (gnus-summary-clear-local-variables): Use symbolp.
24469
24470 2004-11-04  Richard M. Stallman  <rms@gnu.org>
24471
24472         * spam.el (spam group): Add :version.
24473
24474         * pgg-def.el (pgg group): Add :version.
24475
24476 2004-11-04  Katsumi Yamaoka  <yamaoka@jpl.org>
24477
24478         * gnus-art.el (gnus-article-edit-article): Don't associate the
24479         article buffer with a draft file.  This is a temporary measure
24480         against the 2004-08-22 change to gnus-article-edit-mode.
24481
24482 2004-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>
24483
24484         * html2text.el (html2text-get-attr): Remove unused argument `tag'.
24485         (html2text-format-tags): Remove unused variable `attr'.
24486
24487 2004-11-01  Reiner Steib  <Reiner.Steib@gmx.de>
24488
24489         * gnus-msg.el (gnus-summary-resend-default-address): Add :version.
24490
24491         * tls.el (tls-process-connection-type, tls-success)
24492         (tls-certtool-program): Add :version.
24493
24494         * starttls.el (starttls-gnutls-program, starttls-use-gnutls)
24495         (starttls-extra-arguments, starttls-process-connection-type)
24496         (starttls-connect, starttls-failure, starttls-success): Add :version.
24497
24498         * spam-stat.el (spam-stat): Add :version.
24499
24500         * sieve.el (sieve): Add :version.
24501
24502         * sha1.el (sha1): Add :version.
24503         (sha1-use-external): Remove redundant version.
24504
24505         * nnmail.el (nnmail-split-fancy-with-parent-ignore-groups)
24506         (nnmail-cache-ignore-groups, nnmail-spool-hook)
24507         (nnmail-split-fancy-match-partial-words)
24508         (nnmail-split-lowercase-expanded): Add :version.
24509
24510         * nndiary.el (nndiary): Add :version.
24511
24512         * mml2015.el (mml2015-unabbrev-trust-alist): Add :version.
24513
24514         * mml-sec.el (mml-default-sign-method)
24515         (mml-default-encrypt-method, mml-signencrypt-style-alist):
24516         Add :version.
24517
24518         * mm-uu.el (mm-uu-diff-groups-regexp): Add :version.
24519
24520         * mm-url.el (mm-url-use-external, mm-url-program)
24521         (mm-url-arguments): Add :version.
24522
24523         * mm-decode.el (mm-inline-text-html-with-w3m-keymap)
24524         (mm-attachment-file-modes, mm-decrypt-option)
24525         (mm-w3m-safe-url-regexp): Add :version.
24526
24527         * message.el (message-cite-prefix-regexp)
24528         (message-sendmail-envelope-from, message-minibuffer-local-map)
24529         (message-user-fqdn, message-completion-alist): Add :version.
24530
24531         * gnus-win.el (gnus-configure-windows-hook)
24532         (gnus-use-frames-on-any-display): Add :version.
24533
24534         * gnus-art.el (gnus-article-address-banner-alist)
24535         (gnus-treat-unsplit-urls, gnus-treat-unfold-headers)
24536         (gnus-treat-from-picon, gnus-treat-mail-picon)
24537         (gnus-treat-x-pgp-sig): Add :version.
24538
24539         * gnus-sum.el (gnus-spam-mark, gnus-recent-mark)
24540         (gnus-undownloaded-mark, gnus-summary-article-move-hook)
24541         (gnus-summary-article-delete-hook)
24542         (gnus-summary-display-while-building): Add :version.
24543
24544         * gnus-start.el (gnus-subscribe-newsgroup-hooks)
24545         (gnus-get-top-new-news-hook): Add :version.
24546
24547         * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
24548         (gnus-server-closed-face, gnus-server-denied-face): Add :version.
24549
24550         * gnus-registry.el (gnus-registry): Add :version.
24551
24552         * gnus-spec.el (gnus-use-correct-string-widths)
24553         (gnus-make-format-preserve-properties): Add :version.
24554
24555         * gnus.el (gnus-group-charter-alist)
24556         (gnus-group-fetch-control-use-browse-url)
24557         (gnus-install-group-spam-parameters): Add :version.
24558
24559         * gnus-diary.el (gnus-diary): Add :version.
24560
24561         * gnus-delay.el (gnus-delay): Add :version.
24562
24563         * gnus-cite.el (gnus-cite-unsightly-citation-regexp)
24564         (gnus-cite-ignore-quoted-from, gnus-cite-attribution-face)
24565         (gnus-cite-blank-line-after-header, gnus-article-boring-faces):
24566         Add :version.
24567
24568         * gnus-agent.el (gnus-agent-max-fetch-size)
24569         (gnus-agent-enable-expiration, gnus-agent-queue-mail)
24570         (gnus-agent-prompt-send-queue): Add :version.
24571
24572         * deuglify.el (gnus-outlook-deuglify): Add :version.
24573
24574         * html2text.el: Beautify code.  Improve doc strings.
24575         Some checkdoc cleanup.
24576         (html2text-get-attr, html2text-fix-paragraph): Simplify code.
24577
24578 2004-11-01  Alfred M. Szmidt  <ams@kemisten.nu>  (tiny change)
24579
24580         * html2text.el (html2text-format-tag-list): Add "strong" and "em".
24581
24582 2004-10-29  Teodor Zlatanov  <tzz@lifelogs.com>
24583
24584         * gnus-registry.el (gnus-registry-hashtb): Create the registry
24585         when package is loaded.
24586
24587         * spam.el (spam-summary-score-preferred-header): Add global preference
24588         for people who want to override the default SpamAssassin over
24589         Bogofilter preference (when both are set).
24590         (spam-necessary-extra-headers): Add spam-use-bogofilter as an option.
24591         (spam-user-format-function-S):
24592         Check spam-summary-score-preferred-header.
24593         (spam-extra-header-to-number): Add X-Bogosity header parsing.
24594         (spam-user-format-function-S): Format the score correctly.
24595
24596 2004-10-29  Katsumi Yamaoka  <yamaoka@jpl.org>
24597
24598         * gnus-msg.el (gnus-configure-posting-styles): Work with empty
24599         signature file.  Suggested by Manoj Srivastava
24600         <srivasta@golden-gryphon.com>.
24601
24602         * mm-util.el (mm-coding-system-priorities): Prefer iso-8859-1 than
24603         iso-2022-jp even in the Japanese language environment.
24604         Suggested by Jason Rumney <jasonr@gnu.org>.
24605
24606 2004-10-28  Katsumi Yamaoka  <yamaoka@jpl.org>
24607
24608         * gnus-sum.el (gnus-update-summary-mark-positions): Allow users to
24609         use the same characters as the dummy marks; make it free from
24610         getting affected by the language environment.
24611         (gnus-summary-read-group-1): Update mark positions only when the
24612         format spec is updated.
24613
24614         * gnus-spec.el (gnus-update-format-specifications): Return a list
24615         of updated types.
24616
24617 2004-10-27  Katsumi Yamaoka  <yamaoka@jpl.org>
24618
24619         * gnus-start.el (gnus-check-reasonable-setup): Use fboundp instead
24620         of boundp to check if display-warning is available.
24621
24622 2004-10-26  Teodor Zlatanov  <tzz@lifelogs.com>
24623
24624         * nnimap.el (nnimap-open-connection): Fix prog1/prog2 bug.
24625
24626 2004-10-26  Katsumi Yamaoka  <yamaoka@jpl.org>
24627
24628         * nnspool.el (nnspool-spool-directory): Use news-path if the
24629         news-directory variable is not bound.
24630
24631         * gnus-start.el (gnus-check-reasonable-setup): Use an alternative
24632         function instead of display-warning if it is not available.
24633
24634 2004-10-26  Reiner Steib  <Reiner.Steib@gmx.de>
24635
24636         * gnus-agent.el (gnus-agent-expire-group-1): Fix last merge from
24637         v5-10: Use `point-at-bol'.
24638
24639 2004-10-26  Simon Josefsson  <jas@extundo.com>
24640
24641         * hashcash.el: Fix URL in comment, reported by Cheng Gao
24642         <chenggao@gmail.com>.
24643
24644 2004-10-25  Reiner Steib  <Reiner.Steib@gmx.de>
24645
24646         * html2text.el (html2text-buffer-head): Remove.  Use `goto-char'
24647         instead.
24648
24649 2004-10-25  Teodor Zlatanov  <tzz@lifelogs.com>
24650
24651         * nnimap.el (nnimap-remove-server-from-buffer-alist): Add function
24652         to remove a server from the nnimap-server-buffer-alist.
24653         (nnimap-open-connection, nnimap-close-server): Use it.
24654
24655         * gnus-encrypt.el: Remove file in favor of encrypt.el.
24656
24657 2004-10-21  Katsumi Yamaoka  <yamaoka@jpl.org>
24658
24659         * mm-view.el (mm-display-inline-fontify): Inhibit font-lock when
24660         running the major-mode function.
24661
24662 2004-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
24663
24664         * gnus-sum.el (gnus-update-summary-mark-positions): Search for
24665         dummy marks in the right way.
24666
24667 2004-10-18  David Edmondson  <dme@dme.org>
24668
24669         * mm-view.el (mm-w3m-cid-retrieve-1): Don't use recursive call
24670         excessively.
24671
24672 2004-10-18  Teodor Zlatanov  <tzz@lifelogs.com>
24673
24674         * gnus-util.el (gnus-split-references): Accept a nil references
24675         string and go on blissfully.
24676
24677         * gnus-registry.el (gnus-registry-split-fancy-with-parent): Catch
24678         cases where the references string is non-nil but has no references.
24679
24680         * encrypt.el: Add autoload tags.
24681
24682         * spam.el (spam-resolve-registrations-routine): Remove article
24683         from unregistration list too.  Reported by David Hanak
24684         <dhanak@isis.vanderbilt.edu>
24685
24686 2004-10-18  Reiner Steib  <Reiner.Steib@gmx.de>
24687
24688         * gnus-art.el (gnus-copy-article-ignored-headers): Default to
24689         nil.  Change custom type.
24690
24691 2004-10-17  Reiner Steib  <Reiner.Steib@gmx.de>
24692
24693         * gnus-art.el (gnus-copy-article-ignored-headers): New variable.
24694
24695         * gnus-sum.el (gnus-summary-move-article): Use it.
24696
24697 2004-10-15  Teodor Zlatanov  <tzz@lifelogs.com>
24698
24699         * encrypt.el: Add autoload cookies.
24700
24701         * spam.el (spam-backend-article-list-property)
24702         (spam-backend-get-article-todo-list)
24703         (spam-backend-put-article-todo-list)
24704         (spam-summary-prepare-exit, spam-resolve-registrations-routine):
24705         Resolve registrations separately.
24706         (spam-register-routine): Format comments.
24707         (spam-unregister-routine, spam-register-routine): Always call with
24708         specific-articles, no default list.
24709         (spam-summary-prepare-exit): Use the spam-classifications function.
24710
24711         * netrc.el (autoload, netrc-parse): Use encrypt.el instead of
24712         gnus-encrypt.el.
24713
24714         * encrypt.el: Copied from gnus-encrypt.el.
24715
24716         * gnus-encrypt.el: Commented that it's obsolete.
24717
24718 2004-10-15  Reiner Steib  <Reiner.Steib@gmx.de>
24719
24720         * gnus-score.el (gnus-adaptive-pretty-print): New variable.
24721         (gnus-score-save): Use it.
24722
24723         * message.el (message-bury): Use `window-dedicated-p'.
24724
24725 2004-10-15  Simon Josefsson  <jas@extundo.com>
24726
24727         * pop3.el (top-level): Don't require nnheader.
24728         (pop3-read-timeout): Add.
24729         (pop3-accept-process-output): Add.
24730         (pop3-read-response, pop3-retr): Use it.
24731
24732 2004-10-14  Teodor Zlatanov  <tzz@lifelogs.com>
24733
24734         * spam.el (spam-register-routine): Move comment.
24735         (spam-verify-bogofilter): Use 'unknown for the initial
24736         spam-bogofilter-valid state, not 'never.
24737
24738         * netrc.el (netrc-machine-user-or-password): Add convenience wrapper
24739         for netrc-machine.
24740
24741         * nnimap.el (nnimap-open-connection):
24742         Use netrc-machine-user-or-password.
24743
24744 2004-10-17  Richard M. Stallman  <rms@gnu.org>
24745
24746         * gnus-registry.el (gnus-registry-unload-hook):
24747         Set as a variable with add-hook.
24748
24749         * nnspool.el (nnspool-spool-directory): Use news-directory instead
24750         of news-path.
24751
24752         * spam-stat.el (spam-stat-unload-hook): Set as a variable w/ add-hook.
24753
24754         * spam.el: Delete duplicate `provide'.
24755         (spam-unload-hook): Set as a variable with add-hook.
24756
24757 2004-10-15  Reiner Steib  <Reiner.Steib@gmx.de>
24758
24759         * pop3.el (pop3-leave-mail-on-server): Describe possible problems
24760         in the doc string.
24761
24762         * message.el (message-ignored-news-headers)
24763         (message-ignored-supersedes-headers)
24764         (message-ignored-resent-headers)
24765         (message-forward-ignored-headers): Improve custom type.
24766
24767 2004-10-13  Katsumi Yamaoka  <yamaoka@jpl.org>
24768
24769         * message.el (message-tokenize-header): Fix 2004-09-06 change
24770         which used point-min in the wrong place.
24771
24772 2004-10-12  Simon Josefsson  <jas@extundo.com>
24773
24774         * tls.el (tls-certtool-program): New variable.
24775         (tls-certificate-information): New function, based on
24776         ssl-certificate-information.
24777
24778 2004-10-12  Katsumi Yamaoka  <yamaoka@jpl.org>
24779
24780         * compface.el: Move the version of ELisp-based uncompface program
24781         to the contrib directory because of the copyright problem.
24782
24783 2004-10-12  Reiner Steib  <Reiner.Steib@gmx.de>
24784
24785         * message.el (message-kill-buffer): Raise the current frame.
24786
24787 2004-10-10  Reiner Steib  <Reiner.Steib@gmx.de>
24788
24789         * gnus-sum.el: Mention that multibyte characters don't work as marks.
24790
24791         * gnus.el (message-y-or-n-p): Autoload.
24792
24793         * pop3.el (pop3-maildrop, pop3-mailhost, pop3-port)
24794         (pop3-password-required, pop3-authentication-scheme)
24795         (pop3-leave-mail-on-server): Make customizable.
24796         (pop3): New custom group.
24797         (pop3-retr): Remove `sleep-for' statements.
24798         Suggested by Dave Love <fx@gnu.org>.
24799
24800         * nnheader.el (nnheader-read-timeout): Explain 1.0 timeout for
24801         Windows/DOS.
24802
24803         * imap.el (imap-parse-flag-list, imap-parse-body-extension)
24804         (imap-parse-body): Fix incorrect use of `assert'.
24805         Suggested by Dave Love <fx@gnu.org>.
24806
24807         * mml.el (mml-minibuffer-read-disposition): Require match.
24808         Suggested by Dave Love <fx@gnu.org>.
24809
24810 2004-10-11  Reiner Steib  <Reiner.Steib@gmx.de>
24811
24812         * gnus-group.el (gnus-group-delete-group): Change "\t." to "  " in
24813         doc string.
24814
24815 2004-10-08  Katsumi Yamaoka  <yamaoka@jpl.org>
24816
24817         * mm-uu.el (mm-uu-dissect-text-parts): Support all text/* types.
24818
24819 2004-10-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
24820
24821         * gnus-art.el (gnus-mime-display-single): Call `mm-display-inline'
24822         instead of calling `mm-insert-inline', to decode text/* parts
24823         before displaying them.
24824
24825 2004-10-07  Katsumi Yamaoka  <yamaoka@jpl.org>
24826
24827         * mm-uu.el (mm-uu-text-plain-type): New variable.
24828         (mm-uu-pgp-signed-extract-1): Use it.
24829         (mm-uu-pgp-encrypted-extract-1): Use it.
24830         (mm-uu-dissect): Allow MIME type and parameters as an optional arg;
24831         bind mm-uu-text-plain-type with that value.
24832         (mm-uu-dissect-text-parts): Pass MIME type and parameters to
24833         mm-uu-dissect.
24834
24835 2004-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
24836
24837         * gnus-group.el (gnus-update-group-mark-positions):
24838         * gnus-sum.el (gnus-update-summary-mark-positions):
24839         * message.el (message-check-news-body-syntax):
24840         * gnus-msg.el (gnus-debug): Use mm-string-as-multibyte instead
24841         of string-as-multibyte.
24842
24843 2004-10-05  Juri Linkov  <juri@jurta.org>
24844
24845         * gnus-group.el (gnus-update-group-mark-positions):
24846         * gnus-sum.el (gnus-update-summary-mark-positions):
24847         * message.el (message-check-news-body-syntax):
24848         * gnus-msg.el (gnus-debug): Use `string-as-multibyte' to convert
24849         8-bit unibyte values to a multibyte string for search functions.
24850
24851 2004-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
24852
24853         * mm-uu.el (mm-uu-dissect): Allow optional arg.
24854         (mm-uu-dissect-text-parts): New function.
24855
24856         * gnus-art.el (gnus-display-mime): Use mm-uu-dissect-text-parts to
24857         dissect text parts.
24858
24859         * gnus-sum.el (gnus-summary-insert-subject): Remove redundant setq.
24860         (gnus-summary-force-verify-and-decrypt): Revert 2004-08-18 change.
24861
24862         * mm-decode.el (mm-dissect-singlepart): Revert 2004-08-18 change.
24863
24864         * gnus-topic.el (gnus-topic-hierarchical-parameters):
24865         Use gnus-current-topics instead of gnus-current-topic.
24866
24867 2004-10-06  Jesper Harder  <harder@ifa.au.dk>
24868
24869         * gnus-sum.el (gnus-summary-show-article): Use with-current-buffer.
24870
24871 2004-10-05  Jesper Harder  <harder@ifa.au.dk>
24872
24873         * nnsoup.el (nnsoup-read-active-file): Use dolist, mapc or last
24874         where appropriate.
24875
24876         * nnml.el (nnml-generate-active-info): do.
24877
24878         * nndiary.el (nndiary-generate-active-info): do.
24879
24880         * gnus-topic.el (gnus-topic-hierarchical-parameters): do.
24881         (gnus-topic-move): do.
24882
24883         * gnus-sum.el (gnus-data-enter-list, gnus-summary-process-mark-set)
24884         (gnus-summary-set-local-parameters, gnus-summary-read-document): do.
24885
24886         * gnus-srvr.el (gnus-server-prepare)
24887         (gnus-server-open-all-servers): do.
24888
24889         * gnus-msg.el (gnus-summary-cancel-article)
24890         (gnus-summary-resend-message)
24891         (gnus-summary-mail-crosspost-complaint): do.
24892
24893         * gnus-move.el (gnus-change-server): do.
24894
24895         * gnus-group.el (gnus-group-unmark-all-groups)
24896         (gnus-group-set-current-level): do.
24897
24898 2004-10-04  Simon Josefsson  <jas@extundo.com>
24899
24900         * message.el (message-generate-hashcash): Doc fix.
24901
24902 2004-10-02  Kevin Greiner  <kgreiner@compsol.cc>
24903
24904         * nnagent.el (nnagent-request-type): Bind gnus-agent to nil to
24905         avoid infinite recursion via gnus-get-function.
24906
24907 2004-10-02  Jesper Harder  <harder@ifa.au.dk>
24908
24909         * mm-partial.el (mm-partial-find-parts): Use with-current-buffer.
24910
24911         * nnfolder.el (nnfolder-generate-active-file): Use dolist.
24912
24913         * nnmail.el (nnmail-split-history): do.
24914
24915         * nnml.el (nnml-generate-nov-databases-1, nnml-request-rename-group)
24916         (nnml-request-delete-group): do.
24917
24918         * nnslashdot.el (nnslashdot-read-groups): do.
24919
24920         * nnsoup.el (nnsoup-delete-unreferenced-message-files): do.
24921         (nnsoup-unpack-packets, nnsoup-make-active): Simplify.
24922
24923         * nnspool.el (nnspool-find-id): Use with-temp-buffer.
24924         (nnspool-sift-nov-with-sed): Use last.
24925         (nnspool-retrieve-headers-with-nov): Use mapc.
24926         (nnspool-request-newgroups): Use dolist.
24927         (nnspool-request-group): Use last.
24928
24929         * nntp.el (nntp-read-server-type): Use dolist.
24930
24931         * nnvirtual.el (nnvirtual-create-mapping)
24932         (nnvirtual-update-read-and-marked): Use dolist.
24933         (nnvirtual-convert-headers): Simplify.
24934
24935 2004-10-01  Kevin Greiner  <kgreiner@compsol.cc>
24936
24937         * gnus-agent.el (gnus-agent-synchronize-group-flags):
24938         Add support for sync'ing tick marks.
24939
24940 2004-10-01  Katsumi Yamaoka  <yamaoka@jpl.org>
24941
24942         * gnus-sum.el (gnus-summary-toggle-header): Make it work even if
24943         there's no visible header.
24944
24945 2004-10-01  Kevin Greiner  <kgreiner@compsol.cc>
24946
24947         * gnus-agent.el (gnus-agent-synchronize-group-flags):
24948         When necessary, pass full group name to gnus-request-set-marks.
24949
24950 2004-10-01  Simon Josefsson  <jas@extundo.com>
24951
24952         * mailcap.el (mailcap-mime-data): Add pdf.  Remove non-free
24953         acroread.
24954
24955 2004-10-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24956
24957         * spam-report.el (spam-report-gmane): Fix interactive.
24958
24959         * gnus-art.el (gnus-treat-body-boundary): Only do stuff under X.
24960
24961         * gnus-agent.el (gnus-agent-synchronize-flags-server): Be silent
24962         when writing file.
24963         (gnus-agent-synchronize-flags): Don't default to being
24964         interactive.
24965
24966 2004-09-30  Simon Josefsson  <jas@extundo.com>
24967
24968         * message.el (message-generate-hashcash): Add.
24969         (message-send-mail): Use it, call mail-add-payment.
24970
24971 2004-09-29  Teodor Zlatanov  <tzz@lifelogs.com>
24972
24973         * spam.el (spam-verify-bogofilter): Use -V, not -sV option.
24974
24975 2004-09-28  Kevin Greiner  <kgreiner@compsol.cc>
24976
24977         * gnus-agent.el (gnus-agent-synchronize-group-flags): Replace
24978         gnus-requst-update-info with explicit code to sync the in-memory
24979         info read flags with the marks being sync'd to the backend.
24980
24981         * gnus-util.el (gnus-pp): Add optional stream to match pp API.
24982
24983 2004-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
24984
24985         * spam.el (spam-verify-bogofilter): Add new function.
24986         (spam-check-bogofilter)
24987         (spam-bogofilter-register-with-bogofilter): Use it.
24988         (spam-verify-bogofilter): Add small fixes.
24989
24990 2004-09-28  Simon Josefsson  <jas@extundo.com>
24991
24992         * hashcash.el (hashcash-generate-payment): Revert.
24993
24994 2004-09-28  Teodor Zlatanov  <tzz@lifelogs.com>
24995
24996         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
24997         Use gnus-extract-references instead of gnus-split-references.
24998
24999         * gnus-util.el (gnus-extract-references): Add new function, analogous
25000         to gnus-split-references but extracts only the message-ID without
25001         anything extra.
25002
25003         * hashcash.el (hashcash-generate-payment)
25004         (hashcash-check-payment): Do the right thing if hashcash-path is
25005         nil (because the hashcash program could not be found).
25006
25007         * spam.el (spam-use-hashcash): Remove comment.
25008
25009 2004-09-27  Jesper Harder  <harder@ifa.au.dk>
25010
25011         * gnus-cache.el (gnus-cache-possibly-remove-articles-1)
25012         (gnus-cache-enter-article, gnus-cache-remove-article)
25013         (gnus-cache-braid-heads, gnus-cache-generate-active): Use dolist.
25014
25015         * gnus-async.el (gnus-async-prefetch-remove-group): do.
25016
25017         * gnus-art.el (article-hide-boring-headers)
25018         (article-translate-strings, article-display-face)
25019         (gnus-article-mime-match-handle-first)
25020         (gnus-article-highlight-headers)
25021         (gnus-article-add-buttons-to-head): do.
25022
25023 2004-09-27  Simon Josefsson  <jas@extundo.com>
25024
25025         * hashcash.el: New version, from
25026         http://users.actrix.co.nz/mycroft/hashcash.el.  Previously in
25027         ../contrib/.
25028
25029 2004-09-27  Katsumi Yamaoka  <yamaoka@jpl.org>
25030
25031         * mm-decode.el (mm-copy-to-buffer): Don't use set-buffer-multibyte.
25032
25033 2004-09-26  Jesper Harder  <harder@ifa.au.dk>
25034
25035         * gnus-dup.el (gnus-dup-open): Use mapc.
25036         (gnus-dup-enter-articles, gnus-dup-suppress-articles): Use dolist.
25037
25038         (gnus-dup-enter-articles): Remove excess ID's from gnus-dup-hashtb.
25039         Reported by Stefan Wiens <s.wi@gmx.net>.
25040
25041         * gnus.el (gnus-shutdown): Use dolist.
25042
25043         * gnus-undo.el (gnus-undo): Use mapc.
25044
25045         * nnrss.el (nnrss-generate-active): do.
25046
25047         * message.el (message-cite-original-without-signature)
25048         (message-cite-original): Use mapc.
25049         (message-do-actions, message-make-forward-subject): Use dolist.
25050
25051 2004-09-25  Kevin Greiner  <kgreiner@compsol.cc>
25052
25053         * gnus-agent.el (gnus-agent-check-overview-buffer): Fix range of
25054         deletion to remove entire duplicate line.  Fixes merged article
25055         number bug.
25056
25057 2004-09-25  Kevin Greiner  <kgreiner@compsol.cc>
25058
25059         * gnus-agent.el (gnus-agent-possibly-synchronize-flags): Ignore
25060         servers that are offline.  Avoids having gnus-agent-toggle-plugged
25061         first ask if you want to open a server and then, even when you
25062         responded with no, asking if you want to synchronize the server's
25063         flags.
25064         (gnus-agent-synchronize-flags-server): Rewrote read loop to handle
25065         multi-line expressions.
25066         (gnus-agent-synchronize-group-flags): New internal function.
25067         Updates marks in memory (in the info structure) AND in the
25068         backend.
25069
25070         * gnus-util.el (gnus-remassoc): Fix typo in documentation.
25071
25072         * nnagent.el (nnagent-request-set-mark):
25073         Use gnus-agent-synchronize-group-flags, not backend's request-set-mark
25074         method, to ensure that synchronization updates marks in the
25075         backend and in the info (in memory) structure.
25076
25077 2004-09-24  Katsumi Yamaoka  <yamaoka@jpl.org>
25078
25079         * gnus-uu.el (gnus-uu-digest-mail-forward): Obey the process/prefix
25080         convention fully; don't miss the root article of a thread; make
25081         the X-Draft-From header with correct article numbers.
25082
25083 2004-09-23  Kevin Greiner  <kgreiner@compsol.cc>
25084
25085         * gnus-agent.el (gnus-agent-synchronize-flags-server): Do nothing
25086         unless plugged.  Disable the agent so that an open failure causes
25087         an error.
25088
25089         * gnus-int.el (gnus-request-set-mark, gnus-request-update-mark):
25090         Revert 2004-09-21 change.  The backend must be opened while
25091         synchronizing flags even when the backend stores the flags
25092         locally.
25093
25094 2004-09-23  Reiner Steib  <Reiner.Steib@gmx.de>
25095
25096         * gnus-msg.el (gnus-configure-posting-styles): Narrow to headers
25097         in `header' match.  Reported by Svend Tollak Munkejord.
25098
25099         * message.el (message-cite-original): Fix use of
25100         `message-cite-articles-with-x-no-archive'.
25101
25102 2004-09-22  Katsumi Yamaoka  <yamaoka@jpl.org>
25103
25104         * gnus-win.el (gnus-buffer-configuration): Add mml-preview.
25105         (gnus-window-to-buffer): Ditto.
25106
25107         * mml.el (mml-preview-buffer): New variable.
25108         (mml-preview): Manage window layout with gnus-buffer-configuration.
25109
25110         * gnus-msg.el (gnus-setup-message): Put article numbers into the
25111         X-Draft-From header even if those articles aren't quoted.
25112
25113 2004-09-21  Kevin Greiner  <kgreiner@compsol.cc>
25114
25115         * gnus-int.el (gnus-servers-that-use-local-marks): New variable.
25116         (gnus-request-set-mark, gnus-request-update-mark): Use new
25117         g-s-t-u-l-m to decide to use backend even when unplugged.
25118
25119 2004-09-21  Katsumi Yamaoka  <yamaoka@jpl.org>
25120
25121         * gnus-msg.el (gnus-inews-make-draft-meta-information): Don't add
25122         a trailing whitespace.  Suggested by Cheng Gao <chenggao@gmail.com>.
25123
25124 2004-09-20  Simon Josefsson  <jas@extundo.com>
25125
25126         * mm-util.el (mm-charset-synonym-alist): Map "unicode" to
25127         "utf-16-le".
25128
25129 2004-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
25130
25131         * mm-decode.el (mm-copy-to-buffer): Preserve the data's unibyteness.
25132
25133 2004-09-19  Reiner Steib  <Reiner.Steib@gmx.de>
25134
25135         * uudecode.el (uudecode-use-external): Add :version.
25136
25137         * smime.el (smime-CA-file, smime-encrypt-cipher)
25138         (smime-dns-server): Add :version.
25139
25140         * smiley.el (gnus-smiley-file-types): Add :version.
25141
25142         * sha1.el (sha1-use-external): Add :version.
25143
25144         * pgg-def.el (pgg-query-keyserver): Add :version.
25145
25146         * nnmail.el (nnmail-fancy-expiry-targets)
25147         (nnmail-mail-splitting-charset, nnmail-mail-splitting-decodes):
25148         Add :version.
25149
25150         * nnimap.el (nnimap-split-download-body, nnimap-dont-close)
25151         (nnimap-retrieve-groups-asynchronous): Add :version.
25152         (nnimap-close-asynchronous): Add :version.  Fix typo in doc string.
25153
25154         * mml.el (mml-content-disposition-parameters)
25155         (mml-insert-mime-headers-always): Add :version.
25156
25157         * mm-util.el (mm-coding-system-priorities): Add :version.
25158
25159         * mm-decode.el (mm-inline-text-html-with-images)
25160         (mm-keep-viewer-alive-types, mm-external-terminal-program)
25161         (mm-verify-option): Add :version.
25162         (mm-text-html-renderer): Change :version.
25163
25164         * message.el (message-fcc-externalize-attachments)
25165         (message-required-headers, message-draft-headers)
25166         (message-subject-trailing-was-query)
25167         (message-subject-trailing-was-ask-regexp)
25168         (message-subject-trailing-was-regexp, message-mark-insert-begin)
25169         (message-mark-insert-end, message-archive-header)
25170         (message-archive-note, message-cross-post-default)
25171         (message-cross-post-note, message-followup-to-note)
25172         (message-cross-post-note-function, message-use-mail-followup-to)
25173         (message-subscribed-address-functions)
25174         (message-subscribed-address-file, message-subscribed-addresses)
25175         (message-subscribed-regexps, message-allow-no-recipients)
25176         (message-yank-cited-prefix, message-signature-insert-empty-line)
25177         (message-hidden-headers, message-hierarchical-addresses)
25178         (message-mail-user-agent, message-use-idna)
25179         (message-valid-fqdn-regexp)
25180         (message-strip-special-text-properties, message-header-synonyms)
25181         (message-beginning-of-line, message-tab-body-function): Add :version.
25182         (message-insert-canlock, message-wide-reply-confirm-recipients):
25183         Change :version.
25184
25185         * mail-source.el (mail-source-ignore-errors): Add :group, :type
25186         and :version.
25187         (mail-source-delete-old-incoming-confirm)
25188         (mail-source-movemail-program): Add :version.
25189
25190         * gnus.el (gnus-parameters, gnus-user-agent): Add :version.
25191         (gnus-agent-cache, gnus-agent): Change :version.
25192
25193         * gnus-util.el (gnus-use-byte-compile): Change :version.
25194
25195         * gnus-sum.el (gnus-summary-make-false-root-always)
25196         (gnus-summary-default-high-score)
25197         (gnus-summary-default-low-score, gnus-auto-goto-ignores)
25198         (gnus-forwarded-mark, gnus-unseen-mark, gnus-no-mark)
25199         (gnus-read-all-available-headers, gnus-article-emulate-mime)
25200         (gnus-sum-thread-tree-root, gnus-sum-thread-tree-false-root)
25201         (gnus-sum-thread-tree-single-indent)
25202         (gnus-sum-thread-tree-vertical, gnus-sum-thread-tree-indent)
25203         (gnus-sum-thread-tree-leaf-with-other)
25204         (gnus-sum-thread-tree-single-leaf): Add :version.
25205         (gnus-summary-display-arrow, gnus-summary-muttprint-program)
25206         (gnus-article-loose-mime): Change :version.
25207
25208         * gnus-start.el (gnus-backup-startup-file)
25209         (gnus-save-startup-file-via-temp-buffer): Add :version.
25210
25211         * gnus-srvr.el (gnus-server-browse-in-group-buffer)
25212         (gnus-server-offline-face): Add :version.
25213
25214         * gnus-score.el (gnus-adaptive-word-length-limit): Add :version.
25215
25216         * gnus-msg.el (gnus-gcc-externalize-attachments)
25217         (gnus-debug-files, gnus-debug-exclude-variables)
25218         (gnus-discouraged-post-methods): Change :version.
25219         (gnus-confirm-mail-reply-to-news)
25220         (gnus-confirm-treat-mail-like-news): Add :version.
25221
25222         * gnus-int.el (gnus-server-unopen-status): Add :version.
25223
25224         * gnus-group.el (gnus-group-jump-to-group-prompt)
25225         (gnus-large-ephemeral-newsgroup)
25226         (gnus-fetch-old-ephemeral-headers): Add :version.
25227
25228         * gnus-fun.el (gnus-x-face-directory)
25229         (gnus-convert-pbm-to-x-face-command)
25230         (gnus-convert-image-to-x-face-command)
25231         (gnus-convert-image-to-face-command): Add :version.
25232
25233         * gnus-delay.el (gnus-delay-default-hour): Add :version.
25234
25235         * gnus-cite.el (gnus-cite-blank-line-after-header)
25236         (gnus-article-boring-faces): Add :version.
25237
25238         * gnus-art.el (gnus-buttonized-mime-types)
25239         (gnus-inhibit-mime-unbuttonizing)
25240         (gnus-treat-display-face)
25241         (gnus-treat-body-boundary): Change :version.
25242         (gnus-body-boundary-delimiter, gnus-picon-databases)
25243         (gnus-treat-strip-cr, gnus-treat-leading-whitespace)
25244         (gnus-treat-date-english, gnus-treat-fold-headers)
25245         (gnus-article-skip-boring, gnus-treat-fold-newsgroups)
25246         (gnus-treat-mail-picon, gnus-treat-wash-html)
25247         (gnus-article-encrypt-protocol)
25248         (gnus-use-idna, gnus-article-over-scroll)
25249         (gnus-mime-display-multipart-alternative-as-mixed)
25250         (gnus-mime-display-multipart-related-as-mixed)
25251         (gnus-button-valid-fqdn-regexp, gnus-button-man-handler)
25252         (gnus-ctan-url, gnus-button-ctan-handler)
25253         (gnus-button-handle-ctan-bogus-regexp)
25254         (gnus-button-ctan-directory-regexp)
25255         (gnus-button-mid-or-mail-regexp, gnus-button-prefer-mid-or-mail)
25256         (gnus-button-mid-or-mail-heuristic-alist, gnus-button-tex-level)
25257         (gnus-button-man-level, gnus-button-emacs-level)
25258         (gnus-button-message-level, gnus-button-browse-level): Add :version.
25259
25260         * gnus-agent.el (gnus-agent-fetched-hook): Add :version.
25261         (gnus-agent-go-online): Change :version.
25262         (gnus-agent-expire-unagentized-dirs)
25263         (gnus-agent-auto-agentize-methods): Add :version.
25264
25265         * flow-fill.el (fill-flowed-display-column)
25266         (fill-flowed-encode-column): Add :version.
25267
25268         * deuglify.el (gnus-outlook-deuglify-unwrap-min)
25269         (gnus-outlook-deuglify-unwrap-max)
25270         (gnus-outlook-deuglify-cite-marks)
25271         (gnus-outlook-deuglify-unwrap-stop-chars)
25272         (gnus-outlook-deuglify-no-wrap-chars)
25273         (gnus-outlook-deuglify-attrib-cut-regexp)
25274         (gnus-outlook-deuglify-attrib-verb-regexp)
25275         (gnus-outlook-deuglify-attrib-end-regexp)
25276         (gnus-outlook-display-hook): Add :version.
25277
25278         * binhex.el (binhex-use-external): Add :version.
25279
25280 2004-09-16  Reiner Steib  <Reiner.Steib@gmx.de>
25281
25282         * gnus-sum.el (gnus-fetch-old-headers): Add custom choices `t'
25283         and `invisible'.
25284
25285 2004-09-10  Teodor Zlatanov  <tzz@lifelogs.com>
25286
25287         * gnus-registry.el (gnus-registry-trim): Watch out for negatives
25288         in gnus-registry-trim.
25289
25290 2004-09-13  Simon Josefsson  <jas@extundo.com>
25291
25292         * dns-mode.el: Add XEmacs auto-mode-alist autoload cookie.
25293
25294         * nnimap.el (nnimap-demule): Revert 2004-08-30 change.
25295
25296         * dns-mode.el (dns-mode): Fix menu for XEmacs, reported by Steve
25297         Youngs <steve@youngs.au.com> and suggested by Katsumi Yamaoka
25298         <yamaoka@jpl.org>.
25299         (dns-mode-font-lock-keywords): Fix faces, reported by Steve Youngs
25300         <steve@youngs.au.com> and suggested by Katsumi Yamaoka
25301         <yamaoka@jpl.org>.
25302
25303         * sieve.el (sieve-manage-mode): Ditto.
25304
25305 2004-09-13  Reiner Steib  <Reiner.Steib@gmx.de>
25306
25307         * gnus-sum.el (gnus-summary-copy-article): Fix doc string.
25308
25309 2004-09-11  Simon Josefsson  <jas@extundo.com>
25310
25311         * dns-mode.el: Add.
25312
25313         * mm-view.el (mm-display-dns-inline): Add.
25314
25315         * mm-decode.el (mm-inline-media-tests): Add text/dns.
25316         (mm-automatic-display): Ditto.
25317
25318         * mailcap.el (mailcap-mime-data): Add text/dns.
25319         (mailcap-mime-extensions): Map .soa to text/dns.
25320
25321 2004-09-10  Miles Bader  <miles@gnu.ai.mit.edu>
25322
25323         * gnus-art.el (article-decode-mime-words, article-babel)
25324         (gnus-article-highlight-signature, gnus-article-add-buttons)
25325         (gnus-signature-toggle): Remove unnecessary bindings of
25326         `inhibit-read-only' inherited from v5.10 merge.
25327
25328 2004-09-08  Reiner Steib  <Reiner.Steib@gmx.de>
25329
25330         * nntp.el (nntp): New customization group.
25331         (nntp-authinfo-file): Add customization group.
25332
25333         * mml2015.el (mml2015-unabbrev-trust-alist): Add customization group.
25334
25335         * mml-sec.el (mml-signencrypt-style-alist): Ditto.
25336
25337         * gnus.el (to-address, to-list, subscribed)
25338         (large-newsgroup-initial): Ditto.
25339
25340         * flow-fill.el (fill-flowed-display-column)
25341         (fill-flowed-encode-column): Ditto.
25342
25343 2004-09-06  Stefan Monnier  <monnier@iro.umontreal.ca>
25344
25345         * message.el (message-tokenize-header, message-send-mail-with-qmail):
25346         Use point-min rather than 1.
25347         (message-send-mail): Use buffer-size rather than point-max.
25348
25349         * gnus-sum.el (gnus-summary-search-article-forward):
25350         Signal a specific `search-failed' rather than a generic `error'.
25351
25352         * gnus-salt.el (gnus-pick-mouse-pick-region): Switch 1 => point-min.
25353         (gnus-generate-vertical-tree): Usue `bobp' rather than compare to 1.
25354         (gnus-highlight-selected-tree): Use point-min rather than 1 and 2.
25355
25356 2004-09-10  Simon Josefsson  <jas@extundo.com>
25357
25358         * nndb.el (require): Remove tcp and duplicate cl.
25359
25360 2004-09-10  Katsumi Yamaoka  <yamaoka@jpl.org>
25361
25362         * gnus-agent.el (directory-files-and-attributes): Move forward.
25363
25364 2004-09-09  Kevin Greiner  <kgreiner@compsol.cc>
25365
25366         * gnus-agent.el (directory-files-and-attributes):
25367         Optionally defined to support XEmacs.
25368
25369 2004-09-09  Kevin Greiner  <kgreiner@compsol.cc>
25370
25371         * gnus-agent.el (gnus-agent-cat-groups): Rewrote avoiding defsetf
25372         to avoid run-time CL dependencies.
25373         (gnus-agent-unfetch-articles): New function.
25374         (gnus-agent-fetch-headers): Use gnus-agent-braid-nov to validate
25375         article numbers even when local .overview file is missing.
25376         (gnus-agent-read-article-number): New function.  Only accepts
25377         27-bit article numbers.
25378         (gnus-agent-copy-nov-line, gnus-agent-uncached-articles):
25379         Use gnus-agent-read-article-number.
25380         (gnus-agent-braid-nov): Rewrote to validate article numbers coming
25381         from backend while recognizing that article numbers in .overview
25382         must be valid.
25383         (gnus-agent-update-files-total-fetched-for):
25384         Use directory-files-and-attributes to improve performance.
25385         * gnus-int.el (gnus-request-move-article):
25386         Use gnus-agent-unfetch-articles in place of gnus-agent-expire to
25387         improve performance.
25388
25389         * gnus-start.el (gnus-convert-old-newsrc): Change message text as
25390         some users confused by references to .newsrc when they only have a
25391         .newsrc.eld file.
25392         (gnus-convert-mark-converter-prompt)
25393         (gnus-convert-converter-needs-prompt): Fix use of property list.
25394         * legacy-gnus-agent.el (gnus-agent-convert-to-compressed-agentview-prompt):
25395         New function.  Used internally to only display 'gnus converting
25396         files' message when actually necessary.
25397
25398         * gnus-sum.el (): Remove (require 'gnus-agent) as required
25399         methods now autoloaded.
25400
25401 2004-09-03  Katsumi Yamaoka  <yamaoka@jpl.org>
25402
25403         * gnus-sum.el (gnus-summary-insert-subject): Remove list
25404         identifiers.
25405
25406 2004-09-02  Reiner Steib  <Reiner.Steib@gmx.de>
25407
25408         * gnus-picon.el: Fix indentation and closing parenthesis.
25409
25410 2004-09-01  Simon Josefsson  <jas@extundo.com>
25411
25412         * message.el (message-canlock-generate): Require sha1, not
25413         sha1-el.  (Can we get rid of this require altogether?  It is ugly
25414         to require within a function.  Sadly, if sha1.el isn't loaded, the
25415         let binding in m-c-g will hide the defcustom definition, which is
25416         bad.)
25417
25418         * canlock.el: Require sha1, not sha1-el.
25419
25420         * message.el: Don't autoload sha1 (there is a autoload cookie in
25421         sha1.el).
25422
25423         * sha1-el.el: Rename to sha1.el.
25424
25425 2004-08-30  Juanma Barranquero  <lektu@terra.es>
25426
25427         * ietf-drums.el (ietf-drums-remove-whitespace): Fix character constant.
25428
25429 2004-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
25430
25431         * nnimap.el (nnimap-demule): Avoid string-as-multibyte.
25432
25433 2004-08-30  Kim F. Storm  <storm@cua.dk>
25434
25435         * nntp.el (nntp-authinfo-file): Add :group 'nntp.
25436
25437         * nnimap.el (nnimap-authinfo-file, nnimap-prune-cache):
25438         Add :group 'nnimap.
25439
25440 2004-08-30  Andreas Schwab  <schwab@suse.de>
25441
25442         * rfc2231.el (rfc2231-parse-string): Restore whitespace syntax for
25443         ?* and ?\;.
25444
25445         * ietf-drums.el (ietf-drums-syntax-table): Set syntax of ?* ?\;
25446         and ?\' to symbol instead of whitespace.
25447
25448 2004-08-30  Katsumi Yamaoka  <yamaoka@jpl.org>
25449
25450         * gnus-agent.el (gnus-agent-restore-gcc): Use ^ and regexp-quote.
25451
25452         * gnus-sum.el (gnus-summary-morse-message): Use search-forward
25453         instead of re-search-forward.
25454
25455         * gnus-uu.el (gnus-uu-save-article): Ditto.
25456         (gnus-uu-post-encode-uuencode): Ditto.
25457
25458         * html2text.el (html2text-clean-list-items): Ditto.
25459         (html2text-clean-dtdd): Ditto.
25460         (html2text-format-tags): Ditto.
25461
25462         * message.el (message-send-mail-with-sendmail): Fix regexp.
25463         (message-fill-field-general): Use search-forward instead of
25464         re-search-forward.
25465         (unbold-region): Ditto.
25466
25467         * nnrss.el (nnrss-request-article): Ditto.
25468
25469         * nnslashdot.el (nnslashdot-request-article): Ditto.
25470
25471         * nnweb.el (nnweb-gmane-wash-article): Ditto.
25472
25473         * gnus-sum.el (gnus-summary-make-menu-bar): Avoid the
25474         "Unrecognized menu descriptor" error in XEmacs.
25475
25476 2004-08-26  Stefan Wiens  <s.wi@gmx.net>  (tiny change)
25477
25478         * gnus-sum.el (gnus-read-header): Don't remove a header for the
25479         parent article of a sparse article in the thread hashtb.
25480
25481 2004-08-26  David Hedbor  <dhedbor@real.com>  (tiny change)
25482
25483         * nnmail.el (nnmail-split-lowercase-expanded): New user option.
25484         (nnmail-expand-newtext): Lowercase expanded entries if
25485         nnmail-split-lowercase-expanded is non-nil.
25486
25487 2004-08-26  Katsumi Yamaoka  <yamaoka@jpl.org>
25488
25489         * nndoc.el (nndoc-type-alist): Fix regexp in the rfc822-forward entry.
25490
25491         * gnus-group.el (gnus-group-line-format-alist): Convert the value
25492         of gnus-tmp-news-method into string under XEmacs.  It will be
25493         passed to gnus-correct-length which takes only a string argument.
25494
25495 2004-08-24  Katsumi Yamaoka  <yamaoka@jpl.org>
25496
25497         * gnus-util.el (gnus-bind-print-variables): New macro.
25498         (gnus-prin1): Use it.
25499         (gnus-prin1-to-string): Use it.
25500         (gnus-pp): New function.
25501         (gnus-pp-to-string): New function.
25502
25503         * gnus-cus.el (gnus-agent-cat-prepare-category-field):
25504         Replace pp-to-string with gnus-pp-to-string.
25505         * gnus-eform.el (gnus-edit-form): Replace pp with gnus-pp.
25506         * gnus-group.el (gnus-group-make-kiboze-group): Ditto.
25507         * gnus-msg.el (gnus-debug): Ditto.
25508         * gnus-score.el (gnus-score-save): Ditto.
25509         * gnus-spec.el (gnus-update-format): Replace pp-to-string with
25510         gnus-pp-to-string.
25511         * legacy-gnus-agent.el (gnus-agent-unlist-expire-days): Replace pp
25512         with gnus-pp.
25513         * score-mode.el (gnus-score-pretty-print): Ditto.
25514         * webmail.el (webmail-debug): Ditto.
25515
25516 2004-08-23  Katsumi Yamaoka  <yamaoka@jpl.org>
25517
25518         * gnus-art.el (article-display-face, article-display-x-face):
25519         Use buffer-read-only.
25520
25521 2004-08-22  Katsumi Yamaoka  <yamaoka@jpl.org>
25522
25523         * gnus-art.el (article-hide-list-identifiers):
25524         Bind inhibit-read-only as t.
25525
25526 2004-08-22  Reiner Steib  <Reiner.Steib@gmx.de>
25527
25528         * gnus-mlspl.el (gnus-group-split-update): Fix docstring.
25529
25530 2004-08-22  Stefan Monnier  <monnier@iro.umontreal.ca>
25531
25532         * gnus-art.el: Use inhibit-read-only instead of buffer-read-only.
25533         (gnus-narrow-to-page): Don't assume point-min == 1.
25534         (gnus-article-edit-mode): Derive from message-mode.
25535
25536         * gnus-score.el (gnus-score-find-bnews): Simplify and don't assume
25537         point-min == 1.
25538
25539         * imap.el (imap-parse-address-list, imap-parse-body-ext):
25540         Disable incorrect use of `assert'.
25541
25542         * message.el (message-mode): Set comment-start-skip.
25543
25544
25545 2004-08-22  Sam Steingold  <sds@gnu.org>
25546
25547         * pop3.el (pop3-leave-mail-on-server): New user variable.
25548         (pop3-movemail): Delete mail only when it is nil.
25549
25550 2004-08-21  Reiner Steib  <Reiner.Steib@gmx.de>
25551
25552         * nntp.el (nntp-marks-is-evil): Fix typo in docstring.
25553
25554         * mml.el (mml-preview): Use `pop-to-buffer'.
25555
25556         * message.el (message-goto-mail-followup-to): Insert after "To".
25557         (message-carefully-insert-headers): Add comment.
25558
25559         * gnus.el: Remove unused variable `gnus-article-check-size'.
25560
25561         * gnus-sum.el (gnus-summary-make-menu-bar): Add help texts.
25562
25563         * gnus-art.el (gnus-button-alist):
25564         Improve `gnus-button-handle-library' entry.
25565
25566 2004-08-19  Sebastian Freundt  <hroptatyr@gna.org>  (tiny change)
25567
25568         * nnmaildir.el (nnmaildir--emlink-p, nnmaildir--enoent-p):
25569         Use downcase, since XEmacs capitalizes error messages differently.
25570
25571 2004-08-18  Jesper Harder  <harder@ifa.au.dk>
25572
25573         * nntp.el: Add (require 'gnus) due to reference to
25574         `gnus-directory'.  Reported by Matt Swift <swift@alum.mit.edu>.
25575
25576 2004-08-18  Florian Weimer  <fw@deneb.enyo.de>
25577
25578         * gnus-sum.el (gnus-summary-force-verify-and-decrypt):
25579         Bind `mm-fill-flowed'.
25580
25581         * mm-decode.el (mm-dissect-singlepart): Check it.
25582
25583 2004-08-17  Teodor Zlatanov  <tzz@lifelogs.com>
25584
25585         * nnimap.el (nnimap-open-connection): Add 'imaps' synonym to
25586         'imap' for netrc parsing.
25587
25588 2004-08-16  Reiner Steib  <Reiner.Steib@gmx.de>
25589
25590         * mailcap.el (mailcap-mime-data): Mark as risky.
25591
25592 2004-08-15  Katsumi Yamaoka  <yamaoka@jpl.org>
25593
25594         * rfc2047.el (rfc2047-encode-region): Assume the close parenthesis
25595         may be included in the encoded word.
25596         (rfc2047-encode): Don't append a space if the encoded word
25597         includes close parenthesis.
25598
25599 2004-08-12  Katsumi Yamaoka  <yamaoka@jpl.org>
25600
25601         * rfc2047.el (rfc2047-encode-1, rfc2047-encode): Improve encoding
25602         of text within parentheses.
25603
25604 2004-08-06  Teodor Zlatanov  <tzz@lifelogs.com>
25605
25606         * gnus-encrypt.el (gnus-encrypt-insert-file-contents)
25607         (gnus-encrypt-write-file-contents): Make the password key the file
25608         name PLUS the cipher, not just the cipher.  Also remove failed
25609         passwords from the cache.
25610
25611 2004-08-06  Simon Josefsson  <jas@extundo.com>
25612
25613         * gnus-sum.el (gnus-article-loose-mime): Change default to t.
25614         Doc fix.
25615
25616 2004-08-05  Katsumi Yamaoka  <yamaoka@jpl.org>
25617
25618         * rfc2047.el (rfc2047-fold-region): Use trailing whitespace as
25619         LWSP.
25620
25621 2004-08-04  Teodor Zlatanov  <tzz@lifelogs.com>
25622
25623         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
25624         Try to append in-reply-to: data to the references: header.
25625
25626         * netrc.el: Remove old encryption support, autoload gnus-encrypt.el.
25627         (netrc-parse): Use gnus-encrypt.el functions.
25628
25629         * gnus-encrypt.el: Add new file for encryption support; currently
25630         does only a few GPG ciphers and an internal XOR cipher.
25631
25632         * password.el: Add comments on using password-read-and-add.
25633         (password-read-and-add): Add function to read and add the
25634         password to the cache at once.
25635
25636 2004-07-28  Simon Josefsson  <jas@extundo.com>
25637
25638         * pgg-pgp5.el (pgg-pgp5-encrypt-region): Accept sign
25639         parameter (but don't use it, for now).
25640
25641         * imap.el (imap-ssl-open): Use imap-process-connection-type,
25642         instead of hard coding to nil.
25643
25644 2004-07-28  Katsumi Yamaoka  <yamaoka@jpl.org>
25645
25646         * mm-view.el (mm-inline-image-emacs): Open lines under an image
25647         as mm-inline-image-xemacs does.
25648
25649 2004-07-26  Simon Josefsson  <jas@extundo.com>
25650
25651         * gnus-group.el (gnus-group-group-map, gnus-group-make-menu-bar):
25652         Revert part of 2004-07-17 change below.
25653
25654 2004-07-25  Katsumi Yamaoka  <yamaoka@jpl.org>
25655
25656         * rfc2047.el (rfc2047-encode-region): Don't infloop.
25657         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
25658
25659 2004-07-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
25660
25661         * flow-fill.el (fill-flowed): Remove space stuffing, and only do
25662         quotes that actually start with ">" at the beginning of the
25663         lines.
25664
25665 2004-07-23  Katsumi Yamaoka  <yamaoka@jpl.org>
25666
25667         * rfc2047.el (rfc2047-encode-region): Fix last change.
25668         (rfc2047-encode-parameter): Remove useless concat.
25669
25670 2004-07-22  Katsumi Yamaoka  <yamaoka@jpl.org>
25671
25672         * rfc2047.el (rfc2047-encode-region): Check carefully whether to
25673         encode special characters; fix some kind of misconfigured headers;
25674         signal a real error if debug-on-quit or debug-on-error is non-nil.
25675         (rfc2047-encode-max-chars): New variable.
25676         (rfc2047-encode-1): Use it.
25677         (rfc2047-encode-parameter): New function.
25678
25679         * mml.el (mml-insert-parameter): Remove an excessive space.
25680
25681 2004-07-17  Simon Josefsson  <jas@extundo.com>
25682
25683         * gnus-group.el (gnus-group-make-group-simple): Add, suggested by
25684         Kai Grossjohann <kai@emptydomain.de>.
25685         (gnus-group-group-map): Use it, instead of gnus-group-make-group.
25686         (gnus-group-make-menu-bar): Ditto.
25687
25688         * gnus-util.el (gnus-group-server): Add.
25689
25690 2004-07-16  Jesper Harder  <harder@ifa.au.dk>
25691
25692         * message.el (message-clone-locals): Clone sendmail and smtp
25693         variables.
25694
25695 2004-07-12  Katsumi Yamaoka  <yamaoka@jpl.org>
25696
25697         * rfc2047.el (rfc2047-encode-region): Fix last change.
25698
25699 2004-07-12  Katsumi Yamaoka  <yamaoka@jpl.org>
25700
25701         * rfc2047.el (rfc2047-encode-region): Treat backslash-quoted
25702         characters as non-special.
25703
25704 2004-07-09  Simon Josefsson  <jas@extundo.com>
25705
25706         * gnus-agent.el (gnus-agent-synchronize-flags): Revert to ask.
25707         Users will lose all flag changes made while unplugged with
25708         e.g. nntp unless flag synchronization happens, thus `nil' is not a
25709         good default.  See numerous reports on ding mailing list.
25710
25711 2004-07-09  Katsumi Yamaoka  <yamaoka@jpl.org>
25712
25713         * nndoc.el (nndoc-type-alist): Improve regexp for article-begin,
25714         add generate-head-function and generate-article-function to the
25715         rfc822-forward entry.
25716         (nndoc-rfc822-forward-generate-article): New function.
25717         (nndoc-rfc822-forward-generate-head): New function.
25718
25719         * mm-decode.el (mm-dissect-buffer): Simplify cleaning of CTE.
25720
25721 2004-07-06  Dan Christensen  <jdc@uwo.ca>
25722
25723         * gnus-sum.el (gnus-summary-read-group-1): When summary is unthreaded,
25724         respect display group parameter and gnus-summary-expunge-below.
25725         (gnus-articles-to-read): Remove unused reference to display group
25726         parameter.
25727
25728 2004-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
25729
25730         * nnheader.el (nnheader-uniquify-message-id): New experimental
25731         variable.
25732         (nnheader-nov-read-message-id): Use it.
25733
25734         * spam-report.el (spam-report-gmane): Add interactive.
25735
25736 2004-07-02  Katsumi Yamaoka  <yamaoka@jpl.org>
25737
25738         * mm-encode.el (mm-content-transfer-encoding-defaults):
25739         Use qp-or-base64 for the application/* types.
25740
25741 2004-07-02  Joakim Verona  <joakim@verona.se>  (tiny change)
25742
25743         * nnrss.el (nnrss-read-group-data): Fix off-by-one error.
25744
25745 2004-06-30  Teodor Zlatanov  <tzz@lifelogs.com>
25746
25747         * gnus-registry.el (gnus-registry-trim): Don't allow a negative
25748         trim value.
25749
25750 2004-01-25  Paul Jarc  <prj@po.cwru.edu>
25751
25752         * nnmaildir.el (nnmaildir--condcase, nnmaildir--enoent-p):
25753         New macro and function.
25754         (nnmaildir--new-number, nnmaildir-request-set-mark): Use them.
25755
25756 2004-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
25757
25758         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): Fix cleaning of
25759         after-load-alist.
25760
25761 2004-06-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
25762
25763         * gnus-group.el (gnus-group-get-new-news-this-group):
25764         Don't update info that isn't there.
25765
25766 2004-06-29  Ilya N. Golubev  <gin@mo.msk.ru>
25767
25768         * mm-util.el (mm-mime-mule-charset-alist): Add the windows-1251
25769         entry.
25770
25771 2004-06-29  Katsumi Yamaoka  <yamaoka@jpl.org>
25772
25773         * mm-view.el (mm-inline-render-with-function): Use multibyte
25774         buffer; decode html source by charset.
25775
25776         * mm-encode.el (mm-content-transfer-encoding-defaults): Doc fix.
25777
25778         * mm-util.el (mm-enrich-utf-8-by-mule-ucs): New function run when
25779         Mule-UCS is loaded under XEmacs.
25780         (mm-mime-mule-charset-alist): Avoid duplicated entries.
25781
25782 2004-06-28  Jesper Harder  <harder@ifa.au.dk>
25783
25784         * nnheader.el (nnheader-max-head-length): Increase to 8192.
25785
25786 2004-06-28  Katsumi Yamaoka  <yamaoka@jpl.org>
25787
25788         * mm-util.el (mm-coding-system-p): Return a coding-system.
25789         (mm-mime-mule-charset-alist): Use shift_jis instead of
25790         iso-2022-jp-2 for the katakana-jisx0201 mule charset; add new
25791         entries for the mime charsets iso-2022-jp-3 and shift_jis.
25792         (mm-coding-system-priorities): Use shift_jis and iso-8859-1
25793         instead of japanese-shift-jis and iso-latin-1 respectively in
25794         order to share the default value with both Emacs and XEmacs-mule.
25795         (mm-mule-charset-to-mime-charset):
25796         Make mm-coding-system-priorities effective.
25797         (mm-sort-coding-systems-predicate): Canonicalize coding-systems
25798         while predicating of candidates upon the priorities.
25799
25800 2004-06-27  Jesper Harder  <harder@ifa.au.dk>
25801
25802         * gnus-sum.el (gnus-summary-make-menu-bar):
25803         Add gnus-uu-invert-processable.
25804
25805         * gnus.el: Autoload gnus-uu-invert-processable.
25806
25807 2004-06-24  Katsumi Yamaoka  <yamaoka@jpl.org>
25808
25809         * mm-util.el (mm-with-multibyte-buffer): New macro.
25810
25811         * rfc2047.el (rfc2047-encode-string): Use it.
25812         (rfc2047-encode-region): Move point to the end of the region after
25813         encoding.  Suggested by IRIE Tetsuya <irie@t.email.ne.jp>.
25814
25815 2004-06-23  Katsumi Yamaoka  <yamaoka@jpl.org>
25816
25817         * gnus-cite.el (gnus-cite-parse): Don't ignore case when finding
25818         ">From ".  Thanks to Reiner Steib <Reiner.Steib@gmx.de>.
25819
25820 2004-06-23  Katsumi Yamaoka  <yamaoka@jpl.org>
25821
25822         * gnus-cite.el (gnus-cite-ignore-quoted-from): New user option.
25823         (gnus-cite-parse): Ignore quoted envelope From_.
25824         Suggested by Karl Chen <quarl@nospam.quarl.org>.
25825
25826 2004-06-23  Jesper Harder  <harder@ifa.au.dk>
25827
25828         * message.el (message-idna-to-ascii-rhs-1): Don't choke on
25829         invalid addresses.
25830
25831 2004-06-21  Teodor Zlatanov  <tzz@lifelogs.com>
25832
25833         * spam.el: Change section markers, revise TODO list.
25834         (spam-backends): Make new master list of all installed backends.
25835         (spam-summary-exit-behavior): Add new variable to determine how
25836         messages moves are done at summary exit.
25837         (spam-move-spam-nonspam-groups-only)
25838         (spam-process-ham-in-nonham-groups)
25839         (spam-process-ham-in-spam-groups): Remove variables, the
25840         spam-summary-exit-behavior variable should be used to manage this
25841         behavior.
25842         (spam-old-ham-articles, spam-old-spam-articles): Remove.
25843         (spam-old-articles): Add variable, replacing spam-old-ham-articles
25844         and spam-old-spam-articles.
25845         (spam-use-copy, spam-use-move, spam-use-gmane, spam-use-resend):
25846         Add empty variables, placeholders for the backends they represent.
25847         (spam-set-difference): Move, unchanged.
25848         (spam-list-of-processors): Declare OBSOLETE, not used anymore
25849         unless the user has a processor variable.
25850         (spam-classifications, spam-classification-valid-p)
25851         (spam-backend-properties, spam-backend-property-valid-p)
25852         (spam-backend-function-type-valid-p)
25853         (spam-process-type-valid-p, spam-list-articles): Add helper functions.
25854         (spam-report-articles-gmane, spam-report-articles-resend):
25855         Remove functions, they are not needed.
25856         (spam-install-backend-super, spam-backend-list)
25857         (spam-backend-check, spam-backend-valid-p, spam-backend-info)
25858         (spam-backend-function, spam-backend-ham-registration-function)
25859         (spam-backend-spam-registration-function)
25860         (spam-backend-ham-unregistration-function)
25861         (spam-backend-spam-unregistration-function)
25862         (spam-backend-statistical-p, spam-backend-mover-p)
25863         (spam-install-backend-alias, spam-install-checkonly-backend)
25864         (spam-install-mover-backend, spam-install-nocheck-backend)
25865         (spam-install-backend, spam-install-statistical-backend)
25866         (spam-install-statistical-checkonly-backend): Add backend installation
25867         support.
25868         (spam-summary-prepare-exit): Rewrite to use the new backend code.
25869         (spam-group-processor-p): Use the new backend code and respect the
25870         summary exit behavior.
25871         (spam-mark-spam-as-expired-and-move-routine): Remove.
25872         (spam-summary-prepare): Change to use the new spam-old-articles
25873         variable.
25874         (spam-copy-or-move-routine, spam-copy-spam-routine)
25875         (spam-move-spam-routine, spam-copy-ham-routine)
25876         (spam-move-ham-routine): Add code to copy/move ham or spam.
25877         (spam-fetch-field-fast): Improve doc and code, plus allow the
25878         'number request.
25879         (spam-list-of-checks, spam-list-of-statistical-checks):
25880         Remove variables.
25881         (spam-split, spam-find-spam): Use the new backend code.
25882         (spam-registration-functions): Remove variable.
25883         (spam-unregister-routine): Add convenience wrapper.
25884         (spam-log-undo-registration, spam-register-routine)
25885         (spam-log-processing-to-registry)
25886         (spam-log-unregistration-needed-p): Rename "check" to "backend"
25887         where possible.
25888         (spam-check-gmane-xref, spam-check-regex-headers)
25889         (spam-check-blackholes, spam-check-stat, spam-check-ifile)
25890         (spam-check-BBDB, spam-check-whitelist, spam-check-blacklist)
25891         (spam-check-bogofilter-headers, spam-check-spamoracle)
25892         (spam-check-spamassassin-headers, spam-check-bsfilter-headers)
25893         (spam-check-crm114-headers): Use the spam-split-group that
25894         spam-split prepares, no need to determine it every time.
25895
25896         * nnimap.el (nnimap-retrieve-headers-progress): Add the message number
25897         to the nnheader-parse-naked-head call.
25898
25899         * nnheader.el (nnheader-generate-fake-message-id): Fix indentation.
25900
25901         * gnus-sum.el (gnus-nov-parse-line): Add the message number to
25902         the nnheader-nov-read-message-id call.
25903
25904 2004-06-21  Katsumi Yamaoka  <yamaoka@jpl.org>
25905
25906         * gnus-group.el (gnus-group-get-new-news-this-group): Don't call
25907         gnus-activate-group twice.  Suggested by Markus Peter
25908         <warp@spin.de>.
25909
25910 2004-06-18  Katsumi Yamaoka  <yamaoka@jpl.org>
25911
25912         * gnus-art.el (gnus-article-time-format): Exchange the order of
25913         day and month in the default value; fix customization type.
25914         (article-date-ut): Use add-text-properties.
25915         (article-make-date-line): Use message-make-date instead of
25916         current-time-string.
25917
25918         * message.el (message-fetch-field): Don't use set-text-properties.
25919         (message-make-date): Simplify.
25920
25921         * messagexmas.el (message-xmas-make-date): New function.
25922         (message-xmas-redefine): Defalias message-make-date to it.
25923
25924 2004-06-17  Katsumi Yamaoka  <yamaoka@jpl.org>
25925
25926         * rfc2047.el (rfc2047-syntax-table): Treat `(' and `)' as is.
25927         (rfc2047-encode-region): Treat text within parentheses as special;
25928         show the original text when error has occurred.
25929
25930         * gnus-group.el (gnus-group-get-new-news-this-group): Pass the
25931         already-computed method to gnus-activate-group.
25932
25933         * gnus-start.el (gnus-make-hashtable-from-newsrc-alist): Make the
25934         same select-methods identical Lisp objects.
25935
25936         * gnus-srvr.el (gnus-server-set-info): Don't make a new Lisp
25937         object when modifying the info.
25938
25939 2004-06-16  Katsumi Yamaoka  <yamaoka@jpl.org>
25940
25941         * gnus-srvr.el (gnus-server-set-info): Remove the server from
25942         gnus-opened-servers since it has never been opened with the new
25943         configuration yet.
25944
25945 2004-06-15  Katsumi Yamaoka  <yamaoka@jpl.org>
25946
25947         * nnheader.el (nnheader-nov-read-message-id): Pass the optional
25948         arg to nnheader-generate-fake-message-id.
25949
25950 2004-06-14  Teodor Zlatanov  <tzz@lifelogs.com>
25951
25952         * nnheader.el (nnheader-generate-fake-message-id): Accept a
25953         number and build a fake message ID localized to a group and
25954         article number (so it's repeatable from that point on).
25955         (nnheader-fake-message-id-p): Change regex to accomodate new fake
25956         ID format.
25957
25958         * gnus-sum.el (gnus-get-newsgroup-headers):
25959         Call nnheader-generate-fake-message-id with the article number.
25960
25961 2004-06-12  YAGI Tatsuya  <ynyaaa@ybb.ne.jp>  (tiny change)
25962
25963         * gnus-art.el (gnus-article-next-page): Fix the way to find a real
25964         end-of-buffer.
25965
25966 2004-06-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
25967
25968         * message.el (message-ignored-supersedes-headers): Add Approved.
25969
25970 2004-06-11  Katsumi Yamaoka  <yamaoka@jpl.org>
25971
25972         * rfc2047.el (rfc2047-encode-message-header): Remove useless
25973         goto-char.
25974         (rfc2047-encode): Fold the line before encoding.
25975
25976 2004-06-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
25977
25978         * rfc2047.el (rfc2047-encode-message-header): Disabled header
25979         folding -- not all headers can be folded, and this should be done
25980         by the message composition mode.  Probably.  I think.
25981
25982 2004-06-10  Katsumi Yamaoka  <yamaoka@jpl.org>
25983
25984         * gnus-util.el (gnus-remove-text-with-property): Make it slightly
25985         fast.
25986
25987         * gnus-ems.el (gnus-remove-image): Don't use
25988         message-text-with-property; remove only the image found first.
25989
25990         * gnus-xmas.el (gnus-xmas-remove-image): Remove only the image
25991         found first.
25992
25993 2004-06-09  Jesper Harder  <harder@ifa.au.dk>
25994
25995         * message.el (message-send-mail-with-sendmail): Use with-current-buffer.
25996
25997 2004-06-09  Katsumi Yamaoka  <yamaoka@jpl.org>
25998
25999         * message.el (message-text-with-property): Make it fast and accept
26000         optional arguments.
26001         (message-strip-forbidden-properties): Use it.
26002         (message-fix-before-sending): Follow the m-t-w-p change.
26003
26004         * gnus-ems.el (gnus-remove-image): Follow the m-t-w-p change.
26005
26006 2004-06-08  Katsumi Yamaoka  <yamaoka@jpl.org>
26007
26008         * gnus-art.el (article-hide-headers): Don't change the buffer
26009         mistakenly when performing mml-preview even if
26010         gnus-single-article-buffer is nil.
26011
26012 2004-06-08  Kai Grossjohann  <kgrossjo@eu.uu.net>
26013
26014         * message.el (message-expand-name-databases): New user option.
26015         (message-expand-name): Use it.
26016
26017 2004-06-07  Teodor Zlatanov  <tzz@lifelogs.com>
26018
26019         * spam.el (spam-report-articles-resend)
26020         (spam-report-resend-register-routine): Allow ham reporting.
26021         (spam-report-resend-register-ham-routine): Add wrapper.
26022         (spam-registration-functions): Add ham resending functions.
26023         (spam-list-of-processors): Add ham resend processor.
26024
26025         * gnus.el (ham-resend-to): Add new group parameter.
26026         (spam-process): Add ham resend option.
26027
26028         * spam-report.el (spam-report-resend): Allow reporting ham.
26029         (spam-report-resend-ham): Add wrapper.
26030
26031 2004-06-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26032
26033         * message.el (message-cite-articles-with-x-no-archive):
26034         New variable.
26035         (message-cite-original): Use it.
26036
26037 2004-06-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26038
26039         * message.el (message-cite-original): Respect X-No-Archive.
26040
26041 2004-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
26042
26043         * gnus-art.el (article-hide-headers): Refer to the values for
26044         gnus-ignored-headers and gnus-visible-headers in the summary
26045         buffer since a user may have set them as group parameters.
26046
26047 2004-06-03  Teodor Zlatanov  <tzz@lifelogs.com>
26048
26049         * assistant.el (assistant-node-name): Add convenience function.
26050         (assistant-render-text, assistant-render-node): Add error handling,
26051         plus handle multiple next nodes.
26052         (assistant-find-next-node): Comment out for now.
26053         (assistant-find-next-nodes): Add function, returns list of next
26054         nodes.
26055
26056 2004-06-02  Reiner Steib  <Reiner.Steib@gmx.de>
26057
26058         * mail-source.el (mail-source-directory): Fix doc-string.
26059
26060 2004-05-29  Teodor Zlatanov  <tzz@lifelogs.com>
26061
26062         * assistant.el (assistant-render-text, assistant-eval): Add :set
26063         widget type, which is different because it takes and returns a
26064         list.  Much hilarity ensues.
26065
26066 2004-05-28  Reiner Steib  <Reiner.Steib@gmx.de>
26067
26068         * gnus-art.el (gnus-button-alist): Fix regexp for manual links.
26069
26070         * gnus-group.el (gnus-group-get-new-news-this-group):
26071         Add doc-string.
26072
26073         * gnus-start.el (gnus-activate-group): Add doc-string.
26074
26075 2004-05-28  Katsumi Yamaoka  <yamaoka@jpl.org>
26076
26077         * mm-encode.el (mm-safer-encoding): Consider 7bit is safe.
26078
26079 2004-05-27  Teodor Zlatanov  <tzz@lifelogs.com>
26080
26081         * assistant.el (assistant-render-text): Try to add a :set
26082         widget, more to come.
26083
26084         * spam.el (spam-group-spam-contents-p): Handle empty groupname
26085         strings.
26086         (spam-report-articles-resend)
26087         (spam-register-routine): Do registration iff any articles warrant
26088         it.
26089         (spam-summary-prepare-exit): Change log message for nil group
26090         destinations.
26091
26092 2004-05-27  Daniel Pittman  <daniel@rimspace.net>
26093
26094         * spam.el (spam-report-resend-register-routine):
26095         Allow spam-report-resend-to to be a group parameter or a global value.
26096
26097 2004-05-26  Simon Josefsson  <jas@extundo.com>
26098
26099         * starttls.el: Merge with my GNUTLS based starttls.el.
26100         (starttls-gnutls-program, starttls-use-gnutls)
26101         (starttls-extra-arguments, starttls-process-connection-type)
26102         (starttls-connect, starttls-failure, starttls-success):
26103         New variables.
26104         (starttls-program, starttls-extra-args): Doc fix.
26105         (starttls-negotiate-gnutls, starttls-open-stream-gnutls):
26106         New functions.
26107         (starttls-negotiate, starttls-open-stream):
26108         Check `starttls-use-gnutls' and pass on to corresponding *-gnutls
26109         function if it is set.
26110
26111 2004-05-27  Katsumi Yamaoka  <yamaoka@jpl.org>
26112
26113         * rfc2047.el (rfc2047-encode-region): Encode encoded words in
26114         structured fields.
26115
26116 2004-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
26117
26118         * message.el (message-resend): Bind rfc2047-encode-encoded-words.
26119
26120 2004-05-26  Teodor Zlatanov  <tzz@lifelogs.com>
26121
26122         * spam.el (spam-mark-new-messages-in-spam-group-as-spam):
26123         Add variable.
26124         (spam-mark-junk-as-spam-routine): Use it.  Allow to disable
26125         assigning the spam-mark to new messages.
26126
26127 2004-05-26  Adam Sjøgren  <asjo@koldfront.dk>  (tiny change)
26128
26129         * spam.el (spam-ham-copy-or-move-routine): Don't declare `todo' twice.
26130
26131 2004-05-26  Katsumi Yamaoka  <yamaoka@jpl.org>
26132
26133         * dgnushack.el: Autoload customize-set-variable for XEmacs.
26134
26135         * rfc2047.el (rfc2047-encodable-p): Don't move point.
26136         (rfc2047-decode): Treat the ascii coding-system as raw-text by
26137         default.
26138
26139 2004-05-25  Anand Mitra  <mitramc@yahoo.com>  (tiny change)
26140
26141         * gnus-sum.el (gnus-summary-delete-article): Invoke hook with
26142         correct data.
26143
26144 2004-05-24  Teodor Zlatanov  <tzz@lifelogs.com>
26145
26146         * spam.el (spam-list-of-processors): Use nil for nonexistent processors.
26147         (spam-group-processor-p): Fix function.
26148         (spam-group-processor-multiple-p)
26149         (spam-group-spam-processor-report-gmane-p)
26150         (spam-group-spam-processor-report-resend-p)
26151         (spam-group-spam-processor-bogofilter-p)
26152         (spam-group-spam-processor-blacklist-p)
26153         (spam-group-spam-processor-ifile-p)
26154         (spam-group-ham-processor-ifile-p)
26155         (spam-group-spam-processor-spamoracle-p)
26156         (spam-group-spam-processor-crm114-p)
26157         (spam-group-ham-processor-bogofilter-p)
26158         (spam-group-spam-processor-stat-p)
26159         (spam-group-ham-processor-stat-p)
26160         (spam-group-ham-processor-whitelist-p)
26161         (spam-group-ham-processor-BBDB-p)
26162         (spam-group-ham-processor-spamoracle-p)
26163         (spam-group-ham-processor-copy-p): Remove functions with some
26164         prejudice against unneeded code.
26165         (spam-report-articles-resend)
26166         (spam-report-resend-register-routine): Allow the group/topic
26167         spam-resend-to value to override spam-report-resend-to.
26168         (spam-summary-prepare-exit): Invoke spam-group-processor-p
26169         properly now.
26170
26171         * gnus.el (spam-resend-to): Add group/topic parameter.
26172         (spam-process): Move the OBSOLETE processors to the end of the
26173         choices.
26174
26175 2004-05-24  Daniel Pittman  <daniel@rimspace.net>
26176
26177         * spam-report.el (spam-report-resend-to, spam-report-resend):
26178         Start with resend-to set to nil, and then ask the user if necessary.
26179         (spam-report-resend): spam-report-resend takes a list of articles, not
26180         separate article numbers.
26181
26182 2004-05-23  Katsumi Yamaoka  <yamaoka@jpl.org>
26183
26184         * mm-decode.el (mm-text-html-renderer): Make sure w3m exists in
26185         addition to emacs-w3m.
26186
26187 2004-05-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26188
26189         * assistant.el (assistant-authinfo-data): New function.
26190         (assistant-eval): Eval for entire assistant.
26191
26192         * netrc.el (netrc-services-file): New variable.
26193         (netrc-parse-services): New function.
26194         (netrc-find-service-name): New function.
26195         (netrc-find-service-number): New function.
26196         (netrc-port-equal): New function.
26197         (netrc-machine): Use it.
26198
26199         * nnimap.el (nnimap-open-connection): Use netrc.
26200
26201         * gnus-util.el (gnus-netrc-get): Remove aliases.
26202
26203         * gnus-sum.el (gnus-auto-center-summary): Change default to 2.
26204
26205         * assistant.el (wid-edit): Fix compilation.
26206
26207         * gnus-util.el (gnus-set-file-modes): Just ignore errors.
26208
26209 2004-05-23  Paul Stodghill  <stodghil@cs.cornell.edu>
26210
26211         * gnus-util.el (gnus-set-file-modes): New function.  (small
26212         patch).
26213
26214 2004-05-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26215
26216         * gnus-topic.el (gnus-topic-jump-to-topic): Goto missing topic.
26217
26218         * assistant.el (assistant-render-node): Fix up rendering and
26219         read-only text.
26220         (assistant-render-node): Reset.
26221         (assistant-make-read-only): Not sticky.
26222
26223 2004-05-20  Danny Siu  <dsiu@adobe.com>
26224
26225         * gnus-sum.el (gnus-summary-recenter): Summary buffer was not auto
26226         centered even when gnus-auto-center-summary is t.
26227
26228 2004-05-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26229
26230         * dns.el (dns-get-txt-answer): New function.
26231         (dns-read-txt): Ditto.
26232         (query-dns): Use it.
26233
26234 2004-05-21  Katsumi Yamaoka  <yamaoka@jpl.org>
26235
26236         * gnus-start.el (gnus-get-unread-articles): Don't invalidate
26237         active for foreign groups even if the group level is higher than
26238         the specified value.
26239
26240 2004-05-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26241
26242         * gnus-group.el (gnus-group-jump-to-group): Don't prompt for
26243         non-active groups.
26244
26245         * gnus-art.el (gnus-picon-databases): Add /usr/share/picons.
26246
26247 2004-05-20  Magnus Henoch  <mange@freemail.hu>
26248
26249         * dns.el (dns-read-type): Add support for SVR.  (small patch)
26250
26251 2004-05-20  Adam Sjøgren  <asjo@koldfront.dk>
26252
26253         * spam.el (spam-use-crm114, spam-crm114, spam-crm114-program)
26254         (spam-crm114-header, spam-crm114-spam-switch)
26255         (spam-crm114-spam-strong-switch, spam-crm114-ham-strong-switch)
26256         (spam-crm114-positive-spam-header)
26257         (spam-crm114-database-directory, spam-list-of-processors)
26258         (spam-group-spam-processor-crm114-p)
26259         (spam-group-ham-processor-crm114-p, spam-extra-header-to-number)
26260         (spam-generic-score, spam-list-of-checks)
26261         (spam-list-of-statistical-checks, spam-registration-functions)
26262         (spam-check-crm114-headers, spam-crm114-score)
26263         (spam-check-crm114, spam-crm114-register-with-crm114)
26264         (spam-crm114-register-spam-routine)
26265         (spam-crm114-unregister-spam-routine)
26266         (spam-crm114-register-ham-routine)
26267         (spam-crm114-unregister-ham-routine): Add CRM114 support.
26268
26269 2004-05-20  Teodor Zlatanov  <tzz@lifelogs.com>
26270
26271         * gnus.el: Add spam-use-crm114.
26272
26273         * spam.el (spam-list-of-processors, spam-registration-functions):
26274         Add spam-use-resend.
26275         (spam-group-spam-processor-report-resend-p): Add utility wrapper.
26276         (spam-report-articles-gmane): Add doc fix.
26277         (spam-report-articles-resend, spam-report-resend-register-routine):
26278         Add wrappers around spam-report-resend-to.
26279
26280         * spam-report.el (spam-report-resend-to, spam-report-resend):
26281         Add support for resending spam.
26282         (spam-report-gmane): Fix line length >80.
26283
26284         * gnus.el (spam-process): Add spam-use-resend.
26285
26286 2004-05-20  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
26287
26288         * spam.el (spam-mark-spam-as-expired-and-move-routine): Return the
26289         number of processed spam messages.
26290         (spam-ham-copy-or-move-routine): Return the number of processed
26291         ham messages.
26292         (spam-summary-prepare-exit): Use the above values to decide
26293         whether status messages should be displayed.
26294
26295 2004-05-20  Katsumi Yamaoka  <yamaoka@jpl.org>
26296
26297         * rfc2047.el (rfc2047-encode-function-alist): Rename from
26298         `rfc2047-encoding-function-alist' in order to avoid conflicting
26299         with the old version.
26300         (rfc2047-encode-region): Concatenate words containing non-ASCII
26301         characters in structured fields; don't encode space-delimited
26302         ASCII words even in unstructured fields; don't break words at
26303         char-category boundaries.
26304         (rfc2047-encode-1): New function.
26305         (rfc2047-encode): Use it; encode text so that it occupies the
26306         maximum width within 76-column; work correctly on Q encoding for
26307         iso-2022-* charsets.
26308         (rfc2047-fold-region): Use existing whitespace for LWSP; make it
26309         sure not to break a line just after the header name.
26310         (rfc2047-b-encode-region): Remove.
26311         (rfc2047-b-encode-string): New function.
26312         (rfc2047-q-encode-region): Remove.
26313         (rfc2047-q-encode-string): New function.
26314
26315         * mm-util.el (mm-replace-in-string): New function.
26316
26317 2004-05-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26318
26319         * gnus-msg.el (gnus-inews-make-draft-meta-information):
26320         Really get it right.
26321         (gnus-inews-make-draft): Really.
26322
26323 2004-05-19  Ben Menasha  <bmenasha@benmenasha.net>
26324
26325         * nnmh.el (nnmh-request-list-1): Don't check the link count
26326         before descending.  (small patch)
26327
26328 2004-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26329
26330         * gnus-msg.el (gnus-inews-make-draft-meta-information): Fix quote
26331         stuff.
26332
26333         * gnus-start.el (gnus-subscribe-hierarchical-interactive):
26334         Match on real group name.
26335
26336         * gnus-art.el (gnus-signature-limit): Doc fix.
26337
26338         * gnus-msg.el (gnus-inews-make-draft): Quote list.
26339
26340         * pgg-pgp.el (pgg-pgp-verify-region): Clean up.
26341
26342 2004-05-19  Michael Schierl  <schierlm-usenet@gmx.de>  (tiny change)
26343
26344         * pgg-pgp.el (pgg-pgp-verify-region): Default when signature
26345         isn't a string.
26346
26347 2004-05-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26348
26349         * gnus-draft.el (gnus-draft-send):
26350         Bind rfc2047-encode-encoded-words.
26351
26352         * rfc2047.el (rfc2047-encode-region): Encode =? strings.
26353         (rfc2047-encodable-p): Say that =? needs encoding.
26354         (rfc2047-encode-encoded-words): New variable.
26355
26356         * gnus-group.el (gnus-group-select-group): Doc fix.
26357
26358         * gnus-draft.el (gnus-draft-setup): Mark all replied as replied.
26359
26360         * gnus-group.el (gnus-group-mode): Set show-trailing-whitespace
26361         to nil.
26362
26363         * gnus-cache.el (gnus-cache-possibly-enter-article): Use it.
26364
26365         * nnheader.el (nnheader-get-lines-and-char): New function.
26366
26367 2004-05-19  Reiner Steib  <Reiner.Steib@gmx.de>
26368
26369         * gnus-msg.el (gnus-summary-followup-with-original):
26370         Document yanking of region when active.
26371
26372 2004-05-19  Katsumi Yamaoka  <yamaoka@jpl.org>
26373
26374         * gnus-start.el (gnus-get-unread-articles): Do nothing for foreign
26375         groups if the group level is higher than the specified value.
26376
26377 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
26378
26379         * gnus-group.el (gnus-group-jump-to-group-prompt): Allow an alist.
26380         (gnus-group-jump-to-group): Add prefix argument using
26381         `gnus-group-jump-to-group-prompt'.  Query before jumping to
26382         non-active group.
26383
26384         * compface.el (uncompface): Be verbose when changing
26385         `uncompface-use-external'.
26386
26387         * gnus-art.el (gnus-button-handle-man, gnus-button-alist): Try to
26388         handle manual section.
26389
26390 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26391
26392         * gnus-art.el (gnus-button-alist): Revert previous change.
26393
26394 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
26395
26396         * message.el (message-idna-to-ascii-rhs-1): Fix typo.
26397
26398 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26399
26400         * gnus-msg.el (gnus-inews-do-gcc): Don't use read-only-p to see
26401         whether backend can accept message.
26402
26403         * message.el (message-idna-to-ascii-rhs-1): Don't use equalp.
26404
26405 2004-05-18  Kai Grossjohann  <kgrossjo@eu.uu.net>
26406
26407         * nntp.el (nntp-request-set-mark, nntp-request-update-info):
26408         Avoid creating directory when nntp-marks-is-evil is true.
26409         Reported by Reiner Steib.
26410
26411 2004-05-18  Reiner Steib  <Reiner.Steib@gmx.de>
26412
26413         * gnus-picon.el (gnus-picon-insert-glyph):
26414         Add optional `nostring' argument.
26415
26416 2004-05-18  Jesper Harder  <harder@ifa.au.dk>
26417
26418         * gnus-picon.el (gnus-picon-style): New variable.
26419         (gnus-picon-transform-address): Support `gnus-picon-style'.
26420
26421 2004-05-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26422
26423         * message.el (message-fill-field): Return point.
26424         (message-generate-headers): Go to end of field.
26425
26426         * gnus-start.el (gnus-get-unread-articles-in-group): Don't do
26427         stuff for non-living groups.
26428
26429 2004-05-18  Jesper Harder  <harder@ifa.au.dk>
26430
26431         * gnus-art.el (gnus-article-followup-with-original)
26432         (gnus-article-reply-with-original): gnus-mark-active-p ->
26433         gnus-region-active-p.
26434
26435 2004-05-17  Teodor Zlatanov  <tzz@lifelogs.com>
26436
26437         * spam.el (spam-summary-prepare-exit): Fix messages, so they show
26438         only when there is spam or ham to be processed.
26439
26440 2004-05-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26441
26442         * mail-source.el (mail-source-delete-crash-box): Refactor.
26443         (mail-source-fetch): Use it.
26444         (mail-source-fetch-file): Ditto.
26445         (mail-source-fetch-directory): Run postscript in loop.
26446         (mail-source-fetch-pop): Delete.
26447         (mail-source-fetch-maildir): Ditto.
26448         (mail-source-fetch-imap): Ditto.
26449
26450         * imap.el (imap-authenticators): Comment out sasl.
26451
26452         * message.el (message-skip-to-next-address): New function.
26453         (message-fill-header-address): Refactor.
26454         (message-fill-address): Use it.
26455         (message-delete-address): Use it.
26456         (message-fill-header-general): Refactor.
26457         (message-fill-field-address): Rename.
26458         (message-narrow-to-field): Find the start of the header.
26459         (message-header-format-alist): Don't pre-fill.
26460         (message-fill-header): Remove.
26461         (message-insert-header): New function.
26462         (message-shorten-references): Use it.
26463
26464         * rfc2047.el (rfc2047-field-value): Strip props.
26465
26466         * mail-parse.el (mail-header-make-address): New alias.
26467
26468         * ietf-drums.el (ietf-drums-make-address): New function.
26469
26470         * imap.el: Add compiler directives.
26471
26472         * gnus-score.el (gnus-score-edit-done): run-hook->run-hooks.
26473
26474         * gnus-art.el (article-decode-idna-rhs): Don't use
26475         message-idna-inside-rhs-p.
26476
26477 2004-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26478
26479         * message.el (message-idna-inside-rhs-p): Remove.
26480         (message-idna-to-ascii-rhs-1): Use proper address parsing.
26481
26482         * gnus-art.el (gnus-emphasis-alist): Remove strikethru; too many
26483         false positives.
26484
26485 2004-05-16  Kim-Minh Kaplan  <kmkaplan-AwwS6Bc0PDVoiYX5Tdu9fQ@public.gmane.org>
26486
26487         * imap.el (imap-sasl-make-mechanisms): Use sasl.
26488
26489 2004-05-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26490
26491         * nneething.el (nneething-file-name): Don't create spurious
26492         files.
26493
26494         * gnus-msg.el (gnus-inews-do-gcc): Ignore read-only groups.
26495         (gnus-inews-do-gcc): Remove sleep.
26496
26497         * gnus-art.el (gnus-mime-delete-part): Error message when no MIME
26498         part under point.
26499
26500         * gnus-agent.el (gnus-agent-synchronize-flags): Default to nil.
26501         (gnus-agent-regenerate-group): Using nil messages aren't valid.
26502
26503 2004-05-15  Teodor Zlatanov  <tzz@lifelogs.com>
26504
26505         * spam.el (spam-summary-prepare-exit): Fix (length).
26506
26507 2004-05-14  Teodor Zlatanov  <tzz@lifelogs.com>
26508
26509         * spam.el (spam-summary-prepare-exit): Fix to produce "marking spam
26510         as expired without moving it" message when there are spam
26511         messages left.
26512
26513 2004-05-14  Nelson Ferreira  <nelson.ferreira@verizon.net>  (tiny change)
26514
26515         * gnus-dup.el (gnus-dup-unsuppress-article): Don't assume the mail
26516         header is not nil.
26517
26518 2004-05-14  Kai Grossjohann  <kgrossjo@eu.uu.net>
26519
26520         * nntp.el (nntp-request-set-mark, nntp-request-update-info):
26521         Call nntp-possibly-create-directory, not nntp-possibly-change-group.
26522         (nntp-marks-changed-p): New arg SERVER.
26523         (nntp-request-update-info): Adjust caller.
26524
26525 2004-05-14  Kai Grossjohann  <kai@emptydomain.de>
26526
26527         * nntp.el (nntp-save-marks): Pass missing arg.
26528
26529 2004-05-13  Kai Grossjohann  <kai.grossjohann@gmx.net>
26530
26531         * nntp.el: Support marks.
26532         (nntp-marks-is-evil, nntp-marks-file-name, nntp-marks)
26533         (nntp-marks-modtime, nntp-marks-directory): New variables.
26534         (nntp-request-set-mark, nntp-request-update-info)
26535         (nntp-possibly-create-directory, nntp-marks-changed-p)
26536         (nntp-save-marks, nntp-open-marks, nntp-marks-directory):
26537         New functions.
26538
26539 2004-05-12  Jesper Harder  <harder@ifa.au.dk>
26540
26541         * gnus-xmas.el (gnus-xmas-select-lowest-window)
26542         (gnus-xmas-redefine): Rename.
26543
26544         * gnus-score.el (gnus-score-insert-help):
26545         Use gnus-select-lowest-window.
26546
26547         * gnus-ems.el (gnus-select-lowest-window): Copy definition of
26548         appt-select-lowest-window and rename to gnus-select-lowest-window.
26549
26550         * gnus.el: do.
26551
26552 2004-05-12  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
26553
26554         * rfc2047.el (rfc2047-encode): Use uppercase letters to specify
26555         encodings of MIME-encoded words, in order to improve
26556         interoperability with several broken MUAs.
26557
26558 2004-05-07  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
26559
26560         * mm-view.el (mm-inline-text-html-render-with-w3): Check META
26561         tags, only when charsets are not specified in headers.
26562         (mm-inline-text-html-render-with-w3m): Ditto.
26563
26564         * lpath.el: Remove `w3m-meta-content-type-charset-regexp' and
26565         `w3m-charset-to-coding-system'.  Add `w3m-detect-meta-charset'.
26566
26567 2004-05-06  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
26568
26569         * gnus-art.el (article-strip-banner): Use MIME-encoded from fields
26570         instead of MIME-decoded from fields when checking
26571         `gnus-article-address-banner-alist'.
26572
26573 2004-05-03  Jesper Harder  <harder@ifa.au.dk>
26574
26575         * nnrss.el (nnrss-check-group, nnrss-read-group-data): Hash on
26576         description rather than subject.
26577
26578 2004-05-02  Steve Youngs  <steve@youngs.au.com>
26579
26580         * dgnushack.el: Autoload `mail-fetch-field' for XEmacs.
26581
26582 2004-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26583
26584         * gnus.el (gnus-version-number): Bump.
26585
26586 2004-05-01  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
26587
26588         * gnus.el: No Gnus v0.2 is released.
26589
26590 2004-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
26591
26592         * gnus-agent.el (gnus-agent-read-agentview):
26593         Inline gnus-uncompress-range.
26594
26595 2004-05-01  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
26596
26597         * spam.el (spam-bsfilter-path): Use `executable-find' instead of
26598         `exec-installed-p'.
26599
26600 2004-04-30  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
26601
26602         * gnus.el (spam-process, spam-autodetect-methods):
26603         Add bsfilter and bsfilter-headers.
26604
26605         * spam.el (spam-bsfilter): New customize group.
26606         (spam-use-bsfilter, spam-use-bsfilter-headers, spam-bsfilter-path)
26607         (spam-bsfilter-header, spam-bsfilter-probability-header)
26608         (spam-bsfilter-spam-switch, spam-bsfilter-ham-switch)
26609         (spam-bsfilter-spam-strong-switch, spam-bsfilter-ham-strong-switch)
26610         (spam-bsfilter-database-directory): New options.
26611         (spam-install-hooks, spam-list-of-processors, spam-list-of-checks)
26612         (spam-list-of-statistical-checks, spam-registration-functions):
26613         Add `spam-use-bsfilter' and `spam-use-bsfilter-headers'.
26614         (spam-bsfilter-score): New command.
26615         (spam-check-bsfilter-headers, spam-check-bsfilter)
26616         (spam-bsfilter-register-with-bsfilter)
26617         (spam-bsfilter-register-spam-routine)
26618         (spam-bsfilter-unregister-spam-routine)
26619         (spam-bsfilter-register-ham-routine)
26620         (spam-bsfilter-unregister-ham-routine): New functions.
26621         (spam-generic-score): Support bsfilter; Accept an optional argument
26622         to recalcurate spam score even if scoring header has already been
26623         added.
26624         (spam-bogofilter-score, spam-spamassassin-score): Accept an
26625         optional argument to recalcurate spam score even if scoring header
26626         has already been added.
26627
26628 2004-04-29  Jesper Harder  <harder@ifa.au.dk>
26629
26630         * nnrss.el (nnrss-get-namespace-prefix): Use string= to compare
26631         strings!  Reported by David D. Smith <davidsmith@acm.org>.
26632         (nnrss-check-group, nnrss-read-group-data): Hash on Subject if
26633         link is missing.
26634
26635 2004-04-28  Jesper Harder  <harder@ifa.au.dk>
26636
26637         * html2text.el (html2text-replace-list): Add &amp; and &apos;.
26638         (html2text-get-attr): Rewrite.
26639
26640         * message.el (message-setup-1): Remove redundant put-text-property
26641         on mail-header-separator.
26642
26643 2004-04-27  Teodor Zlatanov  <tzz@lifelogs.com>
26644
26645         * gnus-registry.el (gnus-registry-cache-whitespace)
26646         (gnus-registry-action, gnus-registry-spool-action)
26647         (gnus-registry-split-fancy-with-parent): Change message levels
26648         from 5 to 3 or 7, as needed.
26649
26650         * spam.el (spam-summary-prepare-exit)
26651         (spam-mark-junk-as-spam-routine, spam-fetch-field-fast)
26652         (spam-split, spam-find-spam, spam-log-undo-registration)
26653         (spam-check-blackholes, spam-enter-ham-BBDB): Change message
26654         level from 5 to 6.
26655
26656 2004-04-26  Katsumi Yamaoka  <yamaoka@jpl.org>
26657
26658         * gnus-ems.el: Autoload appt-select-lowest-window (revert
26659         2004-03-04 change).
26660
26661 2004-04-25  Jesper Harder  <harder@ifa.au.dk>
26662
26663         * sieve-manage.el (sieve-manage-open):
26664         * nnweb.el (nnweb-insert-html):
26665         * nnvirtual.el (nnvirtual-catchup-group, nnvirtual-partition-sequence)
26666         (nnvirtual-partition-sequence, nnvirtual-create-mapping):
26667         * nnspool.el (nnspool-request-group):
26668         * nnrss.el (nnrss-opml-export, nnrss-find-el, nnrss-order-hrefs):
26669         * nnml.el (nnml-request-update-info):
26670         * nnmh.el (nnmh-request-group, nnmh-request-list-1, nnmh-active-number)
26671         (nnmh-request-create-group, nnmh-update-gnus-unreads):
26672         * nnimap.el (nnimap-request-close, nnimap-acl-edit)
26673         (nnimap-request-set-mark):
26674         * nnfolder.el (nnfolder-request-update-info):
26675         * mm-view.el (mm-pkcs7-signed-magic, mm-pkcs7-enveloped-magic):
26676         * mml.el (mml-destroy-buffers, mml-compute-boundary-1):
26677         * gnus-uu.el (gnus-uu-find-articles-matching):
26678         * gnus-topic.el (gnus-topic-check-topology, gnus-topic-remove-group):
26679         * gnus-sum.el (gnus-summary-fetch-faq, gnus-read-move-group-name):
26680         * gnus-score.el (gnus-score-load-file, gnus-sort-score-files):
26681         * gnus-nocem.el (gnus-nocem-scan-groups):
26682         * gnus-int.el (gnus-start-news-server):
26683         * gnus-group.el (gnus-group-make-kiboze-group)
26684         (gnus-group-browse-foreign-server):
26685         * spam-stat.el (spam-stat-score-buffer): Simplify mapcar usage.
26686         Use mapc when appropriate.
26687
26688 2004-04-22  Dan Christensen  <jdc@uwo.ca>
26689             Adam Sjøgren  <asjo@koldfront.dk>
26690             Wes Hardaker  <wes@hardakers.net>
26691             Michael Shields  <shields@msrl.com>
26692
26693         * spam.el (spam-necessary-extra-headers): Get the extra headers we
26694         may need for spam sorting and scoring.
26695         (spam-user-format-function-S): Add user format function suitable for
26696         general use.
26697         (spam-article-sort-by-spam-status): Add sorting function for summary
26698         sorting.
26699         (spam-extra-header-to-number): Add function to get a score from a
26700         header.
26701         (spam-summary-score): Add function to get a numeric score from the
26702         headers.
26703         (spam-generic-score): Fix function doc, was in wrong place.
26704         (spam-initialize): Take symbols when it's run, and install the
26705         extra headers that spam-necessary-extra-headers thinks we need.
26706
26707 2004-04-21  Teodor Zlatanov  <tzz@lifelogs.com>
26708
26709         * spam.el (spam-summary-prepare-exit): Add logic and message fix.
26710         Reported by bojohan+news@dd.chalmers.se (Johan Bockgård).
26711
26712 2004-04-17  Jesper Harder  <harder@ifa.au.dk>
26713
26714         * gnus-sum.el (gnus-set-global-variables)
26715         (gnus-build-all-threads, gnus-get-newsgroup-headers)
26716         (gnus-article-get-xrefs, gnus-summary-best-group)
26717         (gnus-summary-next-article, gnus-summary-enter-digest-group)
26718         (gnus-summary-set-bookmark, gnus-offer-save-summaries)
26719         (gnus-summary-update-info, gnus-kill-or-deaden-summary):
26720         Use with-current-buffer.
26721
26722 2004-04-16  Teodor Zlatanov  <tzz@lifelogs.com>
26723
26724         * spam.el (spam-summary-prepare-exit): Simplify logic.
26725         (spam-fetch-article-header): Read the article header if it's not
26726         available.
26727         (spam-list-articles): Simplify logic.
26728         (spam-filelist-register-routine): Fix bug with unregister-list.
26729
26730         * gnus-registry.el: Fix comments at beginning.
26731
26732 2004-04-16  Jesper Harder  <harder@ifa.au.dk>
26733
26734         * message.el (message-cater-to-broken-inn): Remove.
26735         (message-shorten-references): Make sure the total folded length of
26736         References is shorter than 998 characters to cater to a bug in INN
26737         2.3.  Also, don't pretend that references aren't folded -- this
26738         hasn't worked for a while.
26739
26740 2004-04-15  Kevin Greiner  <kgreiner@xpediantsolutions.com>
26741
26742         * gnus-agent.el (gnus-agentize):
26743         gnus-agent-send-mail-real-function no longer set to current value
26744         of message-send-mail-function but rather a lambda that calls
26745         message-send-mail-function.  The change makes the agent real-time
26746         responsive to user changes to message-send-mail-function.
26747
26748 2004-04-15  Kevin Greiner  <kgreiner@xpediantsolutions.com>
26749
26750         * legacy-gnus-agent.el
26751         (gnus-agent-convert-to-compressed-agentview): Fix typos with
26752         help from Florian Weimer <fw@deneb.enyo.de>
26753
26754 2004-04-15  Katsumi Yamaoka  <yamaoka@jpl.org>
26755
26756         * nnmail.el (nnmail-cache-insert): Revert last change.
26757
26758 2004-04-14  Katsumi Yamaoka  <yamaoka@jpl.org>
26759
26760         * nnmail.el (nnmail-cache-insert): Always check whether
26761         nnmail-cache-ignore-groups matches a group name.
26762
26763 2004-04-13  Teodor Zlatanov  <tzz@lifelogs.com>
26764
26765         * spam.el (spam-fetch-field-fast, spam-generate-fake-headers)
26766         (spam-find-spam, spam-log-processing-to-registry)
26767         (spam-log-registered-p, spam-log-unregistration-needed-p)
26768         (spam-log-undo-registration): Use gnus-message instead of
26769         gnus-error, none of these errors are fatal.
26770
26771         * gnus-registry.el (gnus-registry-clean-empty-function)
26772         (gnus-registry-clean-empty): Remove only empty entries without
26773         extra data.
26774
26775 2004-04-12  Teodor Zlatanov  <tzz@lifelogs.com>
26776
26777         * spam-stat.el (spam-stat-buffer-change-to-spam)
26778         (spam-stat-buffer-change-to-non-spam): Change (error) to
26779         (gnus-message 8) invocation.
26780
26781 2004-04-12  Katsumi Yamaoka  <yamaoka@jpl.org>
26782
26783         * nntp.el (nntp-via-netcat-command): New variable.
26784         (nntp-via-netcat-switches): New variable.
26785         (nntp-open-via-rlogin-and-netcat): New function.
26786         (nntp-open-connection-function): Doc fix.
26787         (nntp-telnet-command): Doc fix.
26788         (nntp-end-of-line): Doc fix.
26789         (nntp-via-rlogin-command): Doc fix.
26790         (nntp-via-user-name): Doc fix.
26791         (nntp-via-address): Doc fix.
26792
26793 2004-04-09  Katsumi Yamaoka  <yamaoka@jpl.org>
26794
26795         * mml2015.el (mml2015-use): Avoid the "Recursive load suspected"
26796         error in Emacs 21.1.
26797
26798 2004-04-08  Reiner Steib  <Reiner.Steib@gmx.de>
26799
26800         * gnus-start.el (gnus-get-unread-articles): Fix last commit.
26801
26802 2004-04-07  Kevin Greiner  <kgreiner@xpediantsolutions.com>
26803
26804         * gnus-agent.el (gnus-agent-total-fetched-hashtb): New variable.
26805         (gnus-agent-with-refreshed-group): New macro.
26806         (gnus-agent-rename-group): New function.
26807         (gnus-agent-delete-group): New function.
26808         (gnus-agent-save-group-info): Use gnus-command-method when
26809         `method' parameter is nil.  Don't write nil entries into the
26810         active file.
26811         (gnus-agent-get-group-info): New function.
26812         (gnus-agent-fetch-articles):
26813         Use gnus-agent-update-files-total-fetched-for to increment disk space
26814         used.
26815         (gnus-agent-fetch-headers, gnus-agent-save-alist):
26816         Use gnus-agent-update-view-total-fetched-for to increment disk space
26817         used.
26818         (gnus-agent-get-local): Add optional parameters to avoid calling
26819         gnus-group-real-name and gnus-find-method-for-group.
26820         (gnus-agent-set-local): Delete stored entry if either min, or max,
26821         are nil.
26822         (gnus-agent-fetch-session): Reworded error/quit messages.
26823         On quit, use gnus-agent-regenerate-group to record existance of any
26824         articles fetched to disk before the quit occurred.
26825         (gnus-agent-expire-group-1): Use gnus-agent-with-refreshed-group,
26826         gnus-agent-update-view-total-fetched-for, and
26827         gnus-agent-update-files-total-fetched-for to decrement disk space
26828         used.
26829         (gnus-agent-retrieve-headers):
26830         Use gnus-agent-update-view-total-fetched-for to increment disk space
26831         used.
26832         (gnus-agent-regenerate-group): Replace gnus-group-update-group
26833         with gnus-agent-update-files-total-fetched-for to decrement disk
26834         space and fresh group buffer.
26835         (gnus-agent-inhibit-update-total-fetched-for): New variable.
26836         (gnus-agent-need-update-total-fetched-for): New variable.
26837         (gnus-agent-update-files-total-fetched-for): New function.
26838         (gnus-agent-update-view-total-fetched-for): New function.
26839         (gnus-agent-total-fetched-for): New function.
26840
26841         * gnus-cache.el (gnus-cache-save-buffers):
26842         Use gnus-cache-update-overview-total-fetched-for to change disk space
26843         used by this group.
26844         (gnus-cache-possibly-enter-article):
26845         Use gnus-cache-update-file-total-fetched-for to increment disk space
26846         used by this group.
26847         (gnus-cache-possibly-remove-article):
26848         Use gnus-cache-update-file-total-fetched-for to decrement disk space
26849         used by this group.
26850         (gnus-cache-generate-nov-databases): Purge total fetched cache.
26851         (gnus-cache-rename-group): New function.
26852         (gnus-cache-delete-group): New function.
26853         (gnus-cache-inhibit-update-total-fetched-for): New variable.
26854         (gnus-cache-need-update-total-fetched-for): New variable.
26855         (gnus-cache-with-refreshed-group): New macro.
26856         (gnus-cache-update-file-total-fetched-for): New function.
26857         (gnus-cache-update-overview-total-fetched-for): New function.
26858         (gnus-cache-rename-group-total-fetched-for): New function.
26859         (gnus-cache-delete-group-total-fetched-for): New function.
26860         (gnus-cache-total-fetched-for): New function.
26861
26862         * gnus-group.el: Require gnus-sum and autoload functions to
26863         resolve warnings when gnus-group.el compiled alone.
26864         (gnus-group-line-format): Document new %F.
26865         (size of Fetched data) group line format; identifies disk space
26866         used by agent and cache.
26867         (gnus-group-line-format-alist): Define new F format.
26868         (gnus-total-fetched-for): New function.
26869         (gnus-group-delete-group): No longer update
26870         gnus-cache-active-altered as gnus-request-delete-group now keeps
26871         the cache in sync.
26872         (gnus-group-list-active): Let the agent store a server's active
26873         list if currently plugged.
26874
26875         * gnus-int.el (gnus-request-delete-group):
26876         Use gnus-cache-delete-group and gnus-agent-delete-group to keep the
26877         local disk in sync with the server.
26878         (gnus-request-rename-group):
26879         Use gnus-cache-rename-group and gnus-agent-rename-group to keep the
26880         local disk in sync with the server.
26881
26882         * gnus-start.el (gnus-get-unread-articles):
26883         Cosmetic simplification to logic.
26884
26885         * gnus-util.el (gnus-rename-file): New function.
26886
26887 2004-04-07  Christian Neukirchen  <chneukirchen@yahoo.de>  (tiny change)
26888
26889         * mm-util.el (mm-image-load-path): Handle nil in load-path.
26890
26891 2004-04-07  Jesper Harder  <harder@ifa.au.dk>
26892
26893         * rfc2047.el (rfc2047-encoded-word-regexp): Remove unnecessary
26894         '+'.  Reported by Stefan Wiens <s.wi@gmx.net>.
26895
26896 2004-04-06  Jesper Harder  <harder@ifa.au.dk>
26897
26898         * gnus-cache.el (gnus-cache-save-buffers): Check if buffer is
26899         alive.  Reported by Laurent Martelli <laurent@aopsys.com>.
26900
26901 2004-04-03  Jesper Harder  <harder@ifa.au.dk>
26902
26903         * gnus.el (gnus-getenv-nntpserver): Strip whitespace.
26904
26905 2004-04-02  Teodor Zlatanov  <tzz@lifelogs.com>
26906
26907         * spam.el (spam-set-difference): Add function to replace
26908         gnus-set-difference in spam.el.
26909         (spam-summary-prepare-exit): Use spam-set-difference.
26910
26911 2004-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
26912
26913         * gnus-registry.el (gnus-registry-cache-file): Update to use
26914         gnus-dribble-directory OR gnus-home-directory OR ~.
26915         (gnus-registry-split-fancy-with-parent): Fix doc.
26916
26917 2004-03-27  Katsumi Yamaoka  <yamaoka@jpl.org>
26918
26919         * message.el (message-exchange-point-and-mark):
26920         Use message-mark-active-p.  Suggested by Jesper Harder
26921         <harder@ifa.au.dk>.
26922
26923 2004-03-26  Katsumi Yamaoka  <yamaoka@jpl.org>
26924
26925         * message.el (message-exchange-point-and-mark): Don't activate
26926         region if it was inactive.  Suggested by Hiroshi Fujishima
26927         <pooh@nature.tsukuba.ac.jp>.
26928
26929 2004-03-25  Katsumi Yamaoka  <yamaoka@jpl.org>
26930
26931         * gnus-art.el (article-display-face): Display Faces in the same
26932         order as X-Faces.
26933
26934 2004-03-24  Katsumi Yamaoka  <yamaoka@jpl.org>
26935
26936         * nndoc.el (nndoc-forward-type-p): Recognize envelope From_.
26937
26938 2004-03-23  Katsumi Yamaoka  <yamaoka@jpl.org>
26939
26940         * gnus-art.el (gnus-mime-recompute-hierarchical-structure): Remove.
26941         (gnus-mime-multipart-functions): Revert 2004-03-19 change.
26942         (gnus-article-mime-hierarchy): Remove.
26943         (gnus-article-mime-hierarchy-next): Remove.
26944         (gnus-article-mode): Revert 2004-03-19 change.
26945         (gnus-article-setup-buffer): Revert 2004-03-19 change.
26946         (gnus-insert-mime-button): Revert 2004-03-19 change.
26947         (gnus-mime-accumulate-hierarchy): Remove.
26948         (gnus-mime-enter-multipart): Remove.
26949         (gnus-mime-leave-multipart): Remove.
26950         (gnus-mime-display-part): Revert 2004-03-19 change.
26951         (gnus-mime-display-alternative): Revert 2004-03-19 change.
26952
26953         * mml.el (mml-preview): Revert 2004-03-19 change.
26954
26955 2004-03-18  Helmut Waitzmann  <Helmut.Waitzmann@web.de>  (tiny change)
26956
26957         * gnus-sum.el (gnus-newsgroup-variables): Doc fix.
26958
26959 2004-03-22  Katsumi Yamaoka  <yamaoka@jpl.org>
26960
26961         * mm-decode.el (mm-save-part): Bind enable-multibyte-characters to
26962         t while entering a file name using the mm-with-multibyte macro.
26963         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
26964
26965         * mm-util.el (mm-with-multibyte): New macro.
26966
26967 2004-03-19  Katsumi Yamaoka  <yamaoka@jpl.org>
26968
26969         * gnus-art.el (gnus-mime-recompute-hierarchical-structure):
26970         New user option.
26971         (gnus-mime-multipart-functions): Doc and customization fix.
26972         (gnus-article-mime-hierarchy): New variable.
26973         (gnus-article-mime-hierarchy-next): New variable.
26974         (gnus-article-mode): Make gnus-article-mime-hierarchy buffer-local.
26975         (gnus-article-setup-buffer): Set gnus-article-mime-hierarchy and
26976         gnus-article-mime-hierarchy-next to nil.
26977         (gnus-insert-mime-button): Show hierarchy numbers.
26978         (gnus-mime-accumulate-hierarchy): New function.
26979         (gnus-mime-enter-multipart): New function.
26980         (gnus-mime-leave-multipart): New function.
26981         (gnus-mime-display-part): Recompute hierarchical MIME structure.
26982         (gnus-mime-display-alternative): Show hierarchy numbers.
26983
26984         * mml.el (mml-preview): Set gnus-article-mime-hierarchy and
26985         gnus-article-mime-hierarchy-next to nil.
26986
26987 2004-03-19  Steve Youngs  <sryoungs@bigpond.net.au>
26988
26989         * dns.el: Don't require gnus-xmas.
26990
26991 2004-03-17  Jesper Harder  <harder@ifa.au.dk>
26992
26993         * mml.el (mml-generate-mime-1): Don't use format=flowed with
26994         inline PGP.
26995         (mml-menu): Disable mml-quote-region if mark is inactive.
26996
26997 2004-03-17  Katsumi Yamaoka  <yamaoka@jpl.org>
26998
26999         * gnus-agent.el (gnus-agent-regenerate-group): Activate the group
27000         when the group's active is not available.
27001
27002 2004-03-15  Katsumi Yamaoka  <yamaoka@jpl.org>
27003
27004         * gnus-agent.el (gnus-agent-read-agentview): Add a missing arg to
27005         error.
27006
27007 2004-03-12  Reiner Steib  <Reiner.Steib@gmx.de>
27008
27009         * imap.el (imap-store-password): New variable.
27010         (imap-interactive-login): Use it.
27011         Suggested by Mark Plaksin <happy@mcplaksin.org>.
27012
27013 2004-03-12  Katsumi Yamaoka  <yamaoka@jpl.org>
27014
27015         * gnus-art.el (gnus-article-read-summary-keys): Restore new
27016         window-start and hscroll to summary window.
27017
27018 2004-03-12  Kevin Greiner  <kgreiner@xpediantsolutions.com>
27019
27020         * gnus-start.el (gnus-convert-old-newsrc): Only write the
27021         conversion message to newsrc-dribble when an actual conversion is
27022         performed.
27023
27024 2004-03-10  Malcolm Purvis  <malcolmpurvis@optushome.com.au>  (tiny change)
27025
27026         * spam-stat.el (spam-stat-coding-system): Use mm-coding-system-p.
27027
27028 2004-03-10  Katsumi Yamaoka  <yamaoka@jpl.org>
27029
27030         * mm-decode.el (mm-complicated-handles): New function reviving
27031         former definition of mm-multiple-handles.
27032
27033         * gnus-art.el (gnus-mime-save-part-and-strip): Use it.
27034         (gnus-mime-delete-part): Use it.
27035
27036 2004-03-09  Kevin Greiner  <kgreiner@xpediantsolutions.com>
27037
27038         * gnus-agent.el (gnus-agent-read-local):
27039         Bind nnheader-file-coding-system to gnus-agent-file-coding-system to
27040         avoid the implicit assumption that they will always be equal.
27041         (gnus-agent-save-local): Bind buffer-file-coding-system, not
27042         coding-system-for-write, as the with-temp-file macro first prints
27043         to a buffer then saves the buffer.
27044
27045 2004-03-09  Katsumi Yamaoka  <yamaoka@jpl.org>
27046
27047         * gnus-art.el (gnus-article-edit-part): New function.
27048         (gnus-mime-save-part-and-strip): Use it; do query instead of
27049         signaling an error; don't use mm-multiple-handles.
27050         (gnus-mime-delete-part): Ditto.
27051
27052 2004-03-08  Kevin Greiner  <kgreiner@xpediantsolutions.com>
27053
27054         * gnus-agent.el (gnus-agent-read-agentview): Remove support for
27055         old file versions.
27056         (gnus-group-prepare-hook): Remove function that converted list
27057         form of gnus-agent-expire-days to group properties.
27058
27059         * gnus-int.el: Autoload gnus-agent-regenerate-group.
27060         (gnus-request-accept-article): Re-indented.
27061
27062         * gnus-start.el (gnus-convert-old-newsrc): Registered new
27063         converters to handle old agent file formats.  Add logic for a
27064         "backup before upgrading warning".
27065         (gnus-convert-mark-converter-prompt): Developers can mark
27066         functions as needing (default), or not needing,
27067         gnus-convert-old-newsrc's "backup before upgrading warning".
27068         (gnus-convert-converter-needs-prompt): Tests whether the user
27069         should be protected from potentially irreversable changes by the
27070         function.
27071
27072         * legacy-gnus-agent.el: New.  Provides converters that are only
27073         loaded when gnus-convert-old-newsrc needs to call them.
27074
27075 2004-03-08  Katsumi Yamaoka  <yamaoka@jpl.org>
27076
27077         * mail-source.el (mail-source-touch-pop): Doc fix.
27078
27079         * message.el (message-smtpmail-send-it): Doc fix.
27080
27081 2004-03-05  Jesper Harder  <harder@ifa.au.dk>
27082
27083         * sha1-el.el (sha1-maximum-internal-length): Doc fix.
27084
27085         * nnmail.el (nnmail-split-fancy): do.
27086
27087         * gnus-kill.el (gnus-kill, gnus-execute): do.
27088
27089 2004-03-05  Per Abrahamsen  <abraham@dina.kvl.dk>
27090
27091         * gnus-sum.el (gnus-widget-reversible-match)
27092         (gnus-widget-reversible-to-internal)
27093         (gnus-widget-reversible-to-external): New functions.
27094         (gnus-widget-reversible): New widget.
27095         (gnus-article-sort-functions, gnus-thread-sort-functions): Use it.
27096
27097 2004-03-05  Kai Grossjohann  <kgrossjo@eu.uu.net>
27098
27099         * gnus-sum.el (gnus-thread-sort-functions)
27100         (gnus-article-sort-functions): Document `(not F)' items.
27101
27102 2004-03-04  Teodor Zlatanov  <tzz@lifelogs.com>
27103
27104         * spam.el (spam-use-gmane-xref): Add new backend.
27105         (spam-gmane-xref-spam-group): Add variable to control the name of the
27106         Gmane spam group.
27107         (spam-blackhole-servers, spam-blackhole-good-server-regex)
27108         (spam-regex-headers-spam, spam-regex-headers-ham)
27109         (spam-regex-body-spam, spam-regex-body-ham): Clarify docs.
27110         (spam-list-of-checks): Add spam-use-gmane-xref to list of
27111         backends and checks.
27112         (spam-check-gmane-xref): Add function for spam-use-gmane-xref.
27113
27114         * gnus.el (spam-autodetect-methods): Add spam-use-gmane-xref as
27115         an autodetect method.
27116
27117 2004-03-04  Kevin Greiner  <kgreiner@xpediantsolutions.com>
27118
27119         * gnus-int.el (gnus-request-accept-article): Inform the agent that
27120         articles are being added to a group.
27121         (gnus-request-replace-article): Inform the agent that articles
27122         need to be uncached as the cached contents are no longer valid.
27123
27124 2004-03-04  Katsumi Yamaoka  <yamaoka@jpl.org>
27125
27126         * binhex.el: Don't autoload executable-find.
27127
27128         * canlock.el: Don't autoload mail-fetch-field.
27129
27130         * dgnushack.el: Autoload c-mode for XEmacs.
27131
27132         * gnus-ems.el: Don't autoload appt-select-lowest-window.
27133
27134         * gnus-msg.el: Don't autoload news-reply-mode, news-setup,
27135         rmail-dont-reply-to and rmail-output.
27136
27137         * gnus-score.el: Don't autoload ffap-string-at-point.
27138
27139         * gnus-setup.el: Don't autoload sc-cite-original.
27140
27141         * imap.el: Don't autoload base64-decode-string,
27142         base64-encode-string and md5.
27143
27144         * message.el: Autoload rmail-dont-reply-to, rmail-msg-is-pruned
27145         and rmail-msg-restore-non-pruned-header.
27146
27147         * mm-decode.el: Don't autoload executable-find.
27148
27149         * mm-url.el: Don't autoload executable-find.
27150
27151         * mm-view.el: Don't autoload diff-mode.
27152
27153         * nndb.el: Don't autoload news-reply-mode, news-setup,
27154         cancel-timer and telnet.
27155
27156         * password.el: Don't autoload run-at-time for Emacs.
27157
27158         * sha1-el.el: Don't autoload executable-find.
27159
27160         * sieve-mode.el: Don't autoload c-mode.
27161
27162         * uudecode.el: Don't autoload executable-find.
27163
27164 2004-03-04  Kevin Greiner  <kgreiner@xpediantsolutions.com>
27165
27166         * gnus-agent.el (gnus-agent-file-header-cache): Remove.
27167         (gnus-agent-possibly-alter-active): Avoid null in numeric
27168         comparison.
27169         (gnus-agent-set-local): Refuse to save null in local object table.
27170         (gnus-agent-regenerate-group): The REREAD parameter can now be a
27171         list of articles that will be marked as unread.
27172
27173 2004-03-04  Katsumi Yamaoka  <yamaoka@jpl.org>
27174
27175         * rfc2047.el (rfc2047-encoded-word-regexp): Mismatched paren.
27176
27177 2004-03-04  Jesper Harder  <harder@ifa.au.dk>
27178
27179         * rfc2047.el (rfc2047-encoded-word-regexp): Support RFC 2231
27180         language tags.
27181
27182 2004-03-03  Per Abrahamsen  <abraham@dina.kvl.dk>
27183
27184         * gnus-agent.el (gnus-agent-read-local, gnus-agent-save-local):
27185         Don't bind "obarray".
27186
27187         * gnus-sum.el (gnus-thread-sort-functions):
27188         Add `gnus-thread-sort-by-most-recent-number' and
27189         `gnus-thread-sort-by-most-recent-date'.
27190         Reported by Kai Grossjohann <kai@emptydomain.de>.
27191
27192 2004-03-03  Katsumi Yamaoka  <yamaoka@jpl.org>
27193
27194         * gnus-cus.el (gnus-agent-customize-category): Mismatched paren.
27195
27196 2004-03-02  Kevin Greiner  <kgreiner@xpediantsolutions.com>
27197
27198         * gnus-cus.el (gnus-agent-customize-category):
27199         Remove ignore-errors macro reference that required cl to be loaded at
27200         run-time.
27201
27202         * gnus-range.el (gnus-sorted-range-intersection): Now accepts
27203         single-interval range of the form (min . max).  Previously the
27204         range had to look like ((min . max)).  Likewise, return
27205         (min . max) rather than ((min . max)).
27206         (gnus-range-map): Use gnus-range-normalize to accept
27207         single-interval range.
27208
27209         * gnus-sum.el (gnus-summary-highlight-line): Articles stored in
27210         the cache, but not the agent, now appear with their usual face.
27211
27212         * dgnushack.el (loaddir): New variable that is bound to the
27213         directory containing the dgnushack.el file.  Use loaddir, rather
27214         than srcdir, to update load-path.  Change lets dgnushack compile
27215         code in directories other than GNUS/lisp.
27216
27217 2004-03-01  Katsumi Yamaoka  <yamaoka@jpl.org>
27218
27219         * lpath.el: Don't bind w3m-safe-url-regexp.
27220
27221         * gnus-art.el (gnus-article-wash-html-with-w3m): Don't make the
27222         w3m-safe-url-regexp variable buffer-local.
27223
27224         * mm-view.el (mm-inline-text-html-render-with-w3m): Ditto.
27225
27226 2004-02-27  Simon Josefsson  <jas@extundo.com>
27227
27228         * gnus-sum.el (gnus-move-group-prefix-function): Add, default to
27229         gnus-group-real-prefix.
27230         (gnus-summary-move-article): Use it, instead of
27231         gnus-group-real-prefix.
27232
27233 2004-02-27  Katsumi Yamaoka  <yamaoka@jpl.org>
27234
27235         * lpath.el: Bind w3m-safe-url-regexp.
27236
27237         * gnus-art.el (gnus-article-wash-html-with-w3m): Make the
27238         w3m-safe-url-regexp variable buffer-local and set it as the value
27239         of mm-w3m-safe-url-regexp.
27240
27241         * mm-view.el (mm-inline-text-html-render-with-w3m): Ditto.
27242
27243         * gnus-msg.el (gnus-setup-message): Ignore an article copy while
27244         parsing gnus-posting-styles when the message is not for replying.
27245
27246         * dgnushack.el: Autoload sgml-mode for XEmacs.
27247
27248         * nnrss.el (nnrss-opml-export):
27249         Use mm-set-buffer-file-coding-system instead of
27250         set-buffer-file-coding-system.
27251
27252 2004-02-27  Jesper Harder  <harder@ifa.au.dk>
27253
27254         * spam-stat.el: Pedantic docstring and whitespace fixes (courtesy
27255         of checkdoc.el).
27256         * nnrss.el: do.
27257         * gnus-mlspl.el: do.
27258         * gnus-ml.el: do.
27259         * gnus-srvr.el: do.
27260
27261         * nnrss.el (nnrss-opml-export): Turn on sgml-mode.
27262
27263 2004-02-27  Kevin Ryde  <user42@zip.com.au>  (tiny change)
27264
27265         * gnus.el (gnus-group, gnus-summary, gnus-summary-sort):
27266         Corrections to custom-manual links.
27267
27268         * gnus-art.el (gnus-article): Ditto.
27269
27270         * mm-decode.el (mime-display, mime-security): Ditto.
27271
27272 2004-02-26  Jesper Harder  <harder@ifa.au.dk>
27273
27274         * flow-fill.el: Typo.
27275
27276 2004-02-26  Andrew Cohen  <cohen@andy.bu.edu>
27277
27278         * spam-wash.el: New file.
27279
27280 2004-02-26  Mark A. Hershberger  <mah@everybody.org>
27281
27282         * nnrss.el (nnrss-opml-import, nnrss-opml-export): New functions.
27283
27284 2004-02-26  Teodor Zlatanov  <tzz@lifelogs.com>
27285
27286         * spam.el (spam-summary-prepare-exit): Fix gnus-set-difference: needs
27287         to be run with new-articles as LIST1, not LIST2.
27288         (spam-registration-functions): Add spam-use-ham-copy as a nil
27289         registration backend.
27290
27291 2004-02-26  Jesper Harder  <harder@ifa.au.dk>
27292
27293         * spam-stat.el (spam-stat-washing-hook): New option.
27294         (spam-stat-buffer-words): Use it.
27295         (spam-stat-process-directory, spam-stat-test-directory):
27296         Use insert-file-contents-literally.
27297         (spam-stat-coding-system): New variable.
27298         (spam-stat-load, spam-stat-save): Use it.
27299
27300 2004-02-25  Katsumi Yamaoka  <yamaoka@jpl.org>
27301
27302         * spam-report.el (spam-report-plug-agent):
27303         Quote spam-report-url-to-file and spam-report-url-ping-plain.
27304
27305 2004-02-25  Reiner Steib  <Reiner.Steib@gmx.de>
27306
27307         * gnus-art.el (gnus-button-alist, gnus-header-button-alist):
27308         Allow / in mailto URLs.
27309
27310 2004-02-24  Reiner Steib  <Reiner.Steib@gmx.de>
27311
27312         * spam-report.el (spam-report-process-queue): Fix interactive use.
27313         (spam-report-url-ping-temp-agent-function, spam-report-plug-agent)
27314         (spam-report-unplug-agent): Doc fixes.
27315         (spam-report-url-ping-mm-url, spam-report-url-to-file)
27316         (spam-report-agentize, spam-report-deagentize): Autoload.
27317
27318 2004-02-24  Katsumi Yamaoka  <yamaoka@jpl.org>
27319
27320         * dgnushack.el (with-syntax-table): Redefine it for XEmacs 21.5.
27321
27322         * message.el (message-setup-fill-variables): Add mml tags to
27323         paragraph-start and paragraph-separate.  Suggested by Andrew Korty
27324         <ajk@iu.edu>.
27325         (message-mode): Don't modify paragraph-separate there.
27326
27327 2004-02-17  Katsumi Yamaoka  <yamaoka@jpl.org>
27328
27329         * compface.el (uncompface-use-external): Default to undecided.
27330         (uncompface-use-external-threshold): New variable.
27331         (uncompface-float-time): New macro.
27332         (uncompface): Determine whether to use the external decoder if
27333         uncompface-use-external is undecided.
27334
27335 2004-02-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
27336
27337         * mm-view.el (mm-inline-image-emacs): Don't insert blank lines
27338         after images.
27339
27340         * gnus-art.el (gnus-mime-display-single): Remove dead code.
27341
27342 2004-02-14  Jesper Harder  <harder@ifa.au.dk>
27343
27344         * nnrss.el (nnrss-request-article, nnrss-find-el): Cleanup.
27345
27346         * html2text.el (html2text-get-attr, html2text-fix-paragraph): do.
27347
27348         * gnus-sum.el (gnus-summary-limit-to-age)
27349         (gnus-summary-limit-children): do.
27350
27351         * gnus-int.el (gnus-request-scan): do.
27352
27353         * gnus-group.el (gnus-group-suspend): do.
27354
27355         * gnus-cus.el (gnus-agent-cat-prepare-category-field): do.
27356
27357         * gnus-cite.el (gnus-cite-parse-attributions): do.
27358
27359         * gnus-agent.el (gnus-summary-set-agent-mark)
27360         (gnus-agent-regenerate-group): do.
27361
27362         * deuglify.el (gnus-article-outlook-unwrap-lines): do.
27363
27364         * binhex.el (binhex-decode-region-internal): do.
27365
27366 2004-02-12  Katsumi Yamaoka  <yamaoka@jpl.org>
27367
27368         * gnus-fun.el (gnus-face-properties-alist): New user option.
27369         (gnus-display-x-face-in-from): Use it.
27370
27371         * gnus-art.el (article-display-face): Ditto.
27372
27373         * compface.el (uncompface-use-external): Default to nil.
27374
27375 2004-02-12  Jesper Harder  <harder@ifa.au.dk>
27376
27377         * nntp.el (nntp-erase-buffer): New function.
27378         (nntp-retrieve-data, nntp-send-command)
27379         (nntp-send-buffer, nntp-retrieve-groups, nntp-handle-authinfo)
27380         (nntp-possibly-change-group): Use it.
27381
27382         * nnnil.el (nnnil-retrieve-headers, nnnil-request-list):
27383         Use with-current-buffer.
27384
27385 2004-02-12  TAKAI Kousuke  <tak@kmc.gr.jp>
27386
27387         * compface.el: Merge the ELisp-based uncompface program.
27388         (compface): New customization group.
27389         (uncompface-use-external): New user option.
27390         (uncompface): Call uncompface-internal if uncompface-use-external
27391         is nil.
27392         (uncompface-internal): New function.  Note that there are also
27393         some other functions and variables added for this function.
27394
27395 2004-02-10  Jesper Harder  <harder@ifa.au.dk>
27396
27397         * nnrss.el (nnrss-read-group-data): Initialize nnrss-group-hashtb
27398         if necessary.
27399
27400 2004-02-09  Teodor Zlatanov  <tzz@lifelogs.com>
27401
27402         * spam-report.el (spam-report-unplug-agent)
27403         (spam-report-plug-agent, spam-report-deagentize)
27404         (spam-report-agentize, spam-report-url-ping-temp-agent-function):
27405         Add support for the Agent in spam-report: when unplugged, report to a
27406         file; when plugged, submit all the requests.
27407
27408         * spam.el (spam-register-routine): Fix message about
27409         registration.
27410
27411 2004-02-09  Jesper Harder  <harder@ifa.au.dk>
27412
27413         * rfc2047.el (rfc2047-qp-or-base64): New function to reduce
27414         dependencies.
27415         (rfc2047-encode): Use it.
27416
27417         * gnus-art.el (gnus-button-marker-list): Move before first
27418         reference.
27419
27420         * imap.el (imap-parse-flag-list, imap-parse-body-extension)
27421         (imap-parse-body): Fix format string mismatch.
27422
27423         * gnus-score.el (gnus-summary-increase-score): do.
27424
27425         * nnrss.el (nnrss-close): New function.
27426
27427 2004-02-08  Jesper Harder  <harder@ifa.au.dk>
27428
27429         * nnrss.el (nnrss-make-filename): New function.
27430         (nnrss-request-delete-group, nnrss-read-server-data)
27431         (nnrss-save-server-data, nnrss-read-group-data)
27432         (nnrss-save-group-data): Use it.
27433         (nnrss-save-server-data, nnrss-save-group-data): Use gnus-prin1.
27434         (nnrss-read-server-data, nnrss-read-group-data): Use load.
27435         (nnrss-group-hashtb): Make it a hash table rather than an obarray.
27436
27437 2004-02-07  Jesper Harder  <harder@ifa.au.dk>
27438
27439         * mml.el (mml-compute-boundary-1): Don't uncompress files.
27440
27441 2004-02-06  Jesper Harder  <harder@ifa.au.dk>
27442
27443         * mml.el (mml-mode, mml-x-dnd-attach-file): Attach drop and drag
27444         files.
27445
27446         * message.el (message-generate-headers-first): Don't quote nil
27447         and t in docstrings.
27448
27449         * imap.el (imap-id): do.
27450
27451         * gnus-agent.el (gnus-agent-consider-all-articles)
27452         (gnus-agent-queue-mail): do.
27453
27454 2004-02-05  Reiner Steib  <Reiner.Steib@gmx.de>
27455
27456         * spam-report.el (spam-report-process-queue): New function.
27457         Process requests from `spam-report-requests-file'.
27458         (spam-report-process-queue): Doc fix.
27459
27460 2004-02-05  Teodor Zlatanov  <tzz@lifelogs.com>
27461
27462         * spam.el (spam-register-routine)
27463         (spam-log-processing-to-registry, spam-log-registered-p)
27464         (spam-log-unregistration-needed-p, spam-log-undo-registration):
27465         Change "check" to "spam-check" for semi-clarity.
27466
27467 2004-02-05  Jesper Harder  <harder@ifa.au.dk>
27468
27469         * pop3.el: Require nnheader.
27470
27471         * mml-smime.el: Require cl.  Autoload message-fetch-field.
27472
27473         * mml-sec.el (mml-signencrypt-style): Don't depend on Gnus.
27474
27475         * gnus-picon.el: Require cl.
27476
27477         * gnus-fun.el: Require gnus-ems and gnus-util.
27478
27479         * gnus.el (gnus-method-to-server): Move defsubst before first use.
27480
27481         * gnus-diary.el (gnus-diary-header-schedule): caddr -> car (cddr.
27482
27483         * gnus-art.el (gnus-article-edit-mode): Define before first
27484         reference.
27485
27486 2004-02-04  Jesper Harder  <harder@ifa.au.dk>
27487
27488         * gnus-uu.el (gnus-uu-check-correct-stripped-uucode): Simplify.
27489         (gnus-uu-post-encoded): Use point-at-bol.
27490
27491         * gnus-topic.el (gnus-group-active-topic-p): do.
27492
27493         * gnus-start.el (gnus-newsrc-to-gnus-format): do.
27494
27495         * gnus-group.el (gnus-group-kill-region): do.
27496
27497         * gnus-art.el (article-date-ut): do.
27498
27499         * message.el (message-fetch-field): Remove redundant
27500         case-fold-search binding.
27501         (message-narrow-to-field): Simplify.
27502
27503 2004-02-03  Reiner Steib  <Reiner.Steib@gmx.de>
27504
27505         * spam.el (spam-directory): Derive from `gnus-directory'.
27506
27507         * spam-report.el (spam-report-url-to-file)
27508         (spam-report-requests-file): New function and variable for offline
27509         reporting.
27510         (spam-report-url-ping-function): Add `spam-report-url-to-file'
27511         and user defined function.
27512         (spam-report-url-ping-mm-url): Remove doubled slash.
27513
27514 2004-02-03  Teodor Zlatanov  <tzz@lifelogs.com>
27515
27516         * spam.el (spam-list-of-processors): Fix spamassassin variable names.
27517
27518 2004-02-03  Jesper Harder  <harder@ifa.au.dk>
27519
27520         * spam.el (spam-check-spamoracle, spam-spamoracle-learn):
27521         Fix format string mismatch.
27522
27523         * sieve.el (sieve-deactivate-all): do.
27524
27525         * nnfolder.el (nnfolder-request-set-mark, nnfolder-save-marks): do.
27526
27527         * nnlistserv.el (nnlistserv-kk-wash-article): do.
27528
27529         * nnml.el (nnml-request-set-mark, nnml-save-marks): do.
27530
27531         * mm-bodies.el (mm-7bit-chars): Don't include \r.
27532
27533 2004-02-02  Teodor Zlatanov  <tzz@lifelogs.com>
27534
27535         * spam.el (spam-list-of-checks): Add spam-use-BBDB-eclusive to
27536         the list of checks.
27537
27538 2004-01-31  Jesper Harder  <harder@ifa.au.dk>
27539
27540         * rfc2047.el (rfc2047-pad-base64): Deal with more cases of invalid
27541         padding.
27542
27543 2004-01-27  Ralf Angeli  <angeli@iwi.uni-sb.de>
27544
27545         * mm-view.el (mm-fill-flowed): New variable.
27546         (mm-inline-text): Use it.
27547
27548 2004-01-27  Teodor Zlatanov  <tzz@lifelogs.com>
27549
27550         * spam.el (spam-spamassassin-register-ham-routine)
27551         (spam-spamassassin-register-spam-routine): Fix function names.
27552
27553 2004-01-27  Katsumi Yamaoka  <yamaoka@jpl.org>
27554
27555         * gnus.el (gnus-tmp-grouplens): Remove.
27556         (gnus-summary-line-format): Remove grouplens.
27557
27558         * gnus-group.el (gnus-group-line-format): Ditto.
27559
27560         * gnus-spec.el (gnus-format-specs): Ditto.
27561         (gnus-update-format-specifications): Flush the group format spec
27562         cache if there's the grouplens stuff.
27563         (gnus-parse-simple-format): Replace %l with the empty string.
27564
27565 2004-01-27  Jerry James  <james@xemacs.org>  (tiny change)
27566
27567         * gnus-spec.el (gnus-parse-simple-format): Fix setq value
27568         omission.
27569
27570 2004-01-26  Katsumi Yamaoka  <yamaoka@jpl.org>
27571
27572         * gnus-msg.el (gnus-summary-resend-message-edit): Call mime-to-mml.
27573         Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
27574
27575 2004-01-25  Paul Jarc  <prj@po.cwru.edu>
27576
27577         * nnmaildir.el (nnmaildir--num-file, nnmaildir--mkfile)
27578         (nnmaildir--emlink-p, nnmaildir--eexist-p, nnmaildir--new-number):
27579         New macros and functions.
27580         * nnmaildir.el (nnmaildir--group-maxnum, nnmaildir--update-nov):
27581         Handle > NLINK_MAX messages.
27582         * nnmaildir.el (nnmaildir-request-set-mark):
27583         Use nnmaildir--emlink-p and nnmaildir--eexist-p.
27584
27585 2004-01-25  Alex Schroeder  <alex@gnu.org>
27586
27587         * spam-stat.el (spam-stat-process-directory-age): New option.
27588         (spam-stat-process-directory): Use it.
27589
27590 2004-01-24  Hiroshi Fujishima  <pooh@nature.tsukuba.ac.jp>  (tiny change)
27591
27592         * spam-stat.el (spam-stat-reduce-size): Set spam-stat-dirty.
27593         (spam-stat-save): Accept prefix argument.
27594
27595 2004-01-23  Paul Jarc  <prj@po.cwru.edu>
27596
27597         * nnmaildir.el (nnmaildir-request-set-mark): Handle the "too many
27598         links" error.
27599
27600 2004-01-23  Katsumi Yamaoka  <yamaoka@jpl.org>
27601
27602         * dgnushack.el: Advise byte-optimize-form-code-walker to optimize
27603         the rest of the and/or forms.
27604
27605 2004-01-23  Jesper Harder  <harder@ifa.au.dk>
27606
27607         * gnus.el (gnus-tmp-grouplens): Define for the sake of backward
27608         compatibility with old .newsrc.eld files.
27609
27610         * gnus-xmas.el (gnus-xmas-grouplens-menu-add): Remove.
27611
27612         * gnus-sum.el (gnus-summary-line-format-alist): Remove grouplens.
27613
27614         * gnus-start.el (gnus-1): do.
27615
27616         * gnus-group.el (gnus-group-line-format-alist): do.
27617
27618         * gnus.el (gnus-use-grouplens, gnus-visual): do.
27619
27620         * gnus-gl.el: Remove.
27621
27622 2004-01-23  Kevin Greiner  <kgreiner@xpediantsolutions.com>
27623
27624         * gnus-sum.el (gnus-adjust-marks): Now correctly handles a list of
27625         marks consisting of a single range {for example, (3 . 5)} rather
27626         than a list of a single range { ((3 . 5)) }.
27627
27628 2004-01-23  Jesper Harder  <harder@ifa.au.dk>
27629
27630         * spam-stat.el (spam-stat-store-gnus-article-buffer):
27631         Use with-current-buffer.
27632         (spam-stat-store-current-buffer): Use insert-buffer-substring to
27633         avoid consing a string.
27634
27635         * mm-util.el (mm-charset-synonym-alist): Add ks_c_5601-1987.
27636         Remove obsolete entries for big5 and gb2312.
27637
27638 2004-01-22  Kevin Greiner  <kgreiner@xpediantsolutions.com>
27639
27640         * gnus-sum.el (gnus-adjust-marks): Avoid splicing null INTO the
27641         uncompressed list.
27642
27643 2004-01-22  Jesper Harder  <harder@ifa.au.dk>
27644
27645         * spam-stat.el (spam-stat-strip-xref): New function.
27646         (spam-stat-process-directory): Use it.
27647
27648         * gnus-util.el (gnus-fetch-field): Don't bind case-fold-search
27649         here -- it's done in message-fetch-field.
27650
27651 2004-01-21  Kevin Greiner  <kgreiner@xpediantsolutions.com>
27652
27653         * gnus-agent.el (gnus-agent-queue-mail)
27654         (gnus-agent-prompt-send-queue): New variables.
27655         (gnus-agent-send-mail): Use gnus-agent-queue-mail.
27656         * gnus-draft.el (gnus-group-send-queue): Pass the group name
27657         "nndraft:queue" along to gnus-draft-send.
27658         Use gnus-agent-prompt-send-queue.
27659         (gnus-draft-send): Rebind gnus-agent-queue-mail to nil when group
27660         is "nndraft:queue".  Suggested by Gaute Strokkenes
27661         <gs234@srcf.ucam.org>
27662
27663         * gnus-agent.el (agent-disable-undownloaded-faces): Remove.
27664         (agent-enable-undownloaded-faces): Add.
27665         (gnus-agent-cat-groups): Use eval-and-compile, not
27666         eval-when-compile, to define gnus-agent-set-cat-groups as the setf
27667         method of gnus-agent-cat-groups even when the buffer has been
27668         evaled.
27669         (gnus-agent-save-active, gnus-agent-save-active-1): Merge to
27670         delete gnus-agent-save-active-1.
27671         (gnus-agent-save-groups): Delete.  Identical to
27672         gnus-agent-save-active.
27673         (gnus-agent-write-active): No longer adjust agent's copy of active
27674         file as agent's adjustments are now stored in their own
27675         file.  Remove optional parameter.
27676         (gnus-agent-possibly-alter-active): Ignore groups of unagentized
27677         servers.  Add use of min/max range limits from server's local
27678         file.
27679         (gnus-agent-save-alist): Remove unused optional argument.
27680         (gnus-agent-load-local, gnus-agent-read-and-cache-local)
27681         (gnus-agent-read-local, gnus-agent-save-local, gnus-agent-get-local)
27682         (gnus-agent-set-local): A per-server file that keeps min/max range
27683         limits for articles known to the agent.  Provides a fast mechanism
27684         for altering many active ranges.
27685         (gnus-agent-expire-group, gnus-agent-expire): No longer save the
27686         active file (local makes it unnecessary).
27687         (gnus-agent-regenerate-group): Fix XEmacs compatibility.
27688
27689         * gnus-cus.el (agent-disable-undownloaded-faces): Remove.
27690         (agent-enable-undownloaded-faces): Add.
27691
27692         * gnus-draft.el (gnus-draft-send): Bind gnus-agent-queue-mail to
27693         disable it when sending to "nndraft:queue".
27694         (gnus-group-send-queue): Add safety check to avoid sending queue
27695         when unplugged.
27696
27697         * gnus-group.el (gnus-group-catchup): Use new
27698         gnus-sequence-of-unread-articles, not
27699         gnus-list-of-unread-articles, to avoid exhausting memory with huge
27700         numbers of articles.  Use gnus-range-map to avoid having to
27701         uncompress the unread list.
27702         (gnus-group-archive-directory, gnus-group-recent-archive-directory):
27703         Fix invalid ange-ftp reference.
27704
27705         * gnus-range.el (gnus-range-map): Iterate over list or sequence.
27706         (gnus-sorted-range-intersection): Intersection of two ranges
27707         without requiring that they first be uncompressed.
27708
27709         * gnus-start.el (gnus-activate-group): Unless blocked by the
27710         caller, possibly expand the active range to include both cached
27711         and agentized articles.
27712         (gnus-convert-old-newsrc): Rewrote in anticipation of having
27713         multiple version-dependent converters.
27714         (gnus-groups-to-gnus-format): Replace gnus-agent-save-groups with
27715         gnus-agent-save-active.
27716         (gnus-save-newsrc-file): Save dirty agent range limits.
27717
27718         * gnus-sum.el (gnus-select-newgroup): Replace inline code with
27719         gnus-agent-possibly-alter-active.
27720         (gnus-adjust-marked-articles): Faster handling of simple lists.
27721
27722 2004-01-21  Jesper Harder  <harder@ifa.au.dk>
27723
27724         * spam-stat.el (spam-stat-test-directory): New optional argument
27725         displays a list of files detected.  Suggested by Andrew Cohen
27726         <cohen@andy.bu.edu>.
27727         (spam-stat-buffer-words-with-scores): Don't narrow and change
27728         syntax table here.  Reported by Andrew Cohen <cohen@andy.bu.edu>.
27729
27730 2004-01-20  Hubert Chan  <hubert@uhoreg.ca>
27731
27732         * spam.el (spam-use-spamassassin, spam-use-spamassassin-headers)
27733         (spam-install-hooks, spam-spamassassin, spam-spamassassin-path)
27734         (spam-spamassassin-arguments)
27735         (spam-spamassassin-spam-flag-header)
27736         (spam-spamassassin-positive-spam-flag-header)
27737         (spam-spamassassin-spam-status-header, spam-sa-learn-path)
27738         (spam-sa-learn-rebuild, spam-sa-learn-spam-switch)
27739         (spam-sa-learn-ham-switch, spam-sa-learn-unregister-switch)
27740         (spam-list-of-processors, spam-list-of-checks)
27741         (spam-list-of-statistical-checks, spam-registration-functions)
27742         (spam-check-spamassassin-headers, spam-check-spamassassin)
27743         (spam-spamassassin-score)
27744         (spam-spamassassin-register-with-sa-learn)
27745         (spam-spamassassin-register-spam-routine)
27746         (spam-spamassassin-register-ham-routine)
27747         (spam-assassin-register-spam-routine)
27748         (spam-assassin-register-ham-routine): Add SpamAssassin support.
27749         (spam-bogofilter-score): Fix to show article before scoring.
27750
27751 2004-01-20  Teodor Zlatanov  <tzz@lifelogs.com>
27752
27753         * spam.el (gnus-summary-mode-map): Make spam-generic-score the
27754         default scoring function.
27755         (spam-generic-score): Call spam-spamassassin-score if
27756         spam-use-spamassassin or spam-use-spamassassin-headers is on;
27757         spam-bogofilter-score otherwise.
27758
27759         * gnus.el (spam-process, spam-autodetect-methods):
27760         Add spamassassin and spamassassin-headers.
27761
27762 2004-01-20  Nevin Kapur  <nkapur@cs.caltech.edu>
27763
27764         * gnus-registry.el (gnus-registry-split-fancy-with-parent):
27765         Suppress unnecessary messages.
27766
27767 2004-01-20  Jesper Harder  <harder@ifa.au.dk>
27768
27769         * spam-stat.el (spam-stat-to-hash-table): Use :size keyword in
27770         make-hash-table.
27771
27772 2004-01-19  Katsumi Yamaoka  <yamaoka@jpl.org>
27773
27774         * canlock.el (base64-encode-string): Don't autoload it.
27775
27776 2004-01-16  Katsumi Yamaoka  <yamaoka@jpl.org>
27777
27778         * run-at-time.el: Remove useless (require 'itimer),
27779         eval-and-compile and (featurep 'xemacs).
27780
27781 2004-01-16  Jesper Harder  <harder@ifa.au.dk>
27782
27783         * gnus-msg.el (gnus-post-news): Use blank Newsgroups line if
27784         GROUP is a virtual group.
27785
27786 2004-01-16  Steve Youngs  <sryoungs@bigpond.net.au>
27787
27788         * gnus.el: Autoload `message-y-or-n-p'.
27789
27790 2004-01-15  Jesper Harder  <harder@ifa.au.dk>
27791
27792         * pgg-parse.el: Remove unnecessary (require 'custom).
27793
27794         * pgg-def.el: do.
27795
27796         * nnmail.el: do.
27797
27798         * gnus-undo.el: do.
27799
27800         * gnus-picon.el: do.
27801
27802         * gnus-util.el: do.
27803
27804 2004-01-15  Reiner Steib  <Reiner.Steib@gmx.de>
27805
27806         * gnus-sum.el (gnus-pick-line-number): Add autoload.
27807
27808 2004-01-15  Katsumi Yamaoka  <yamaoka@jpl.org>
27809
27810         * mm-decode.el (mm-multiple-handles): Recognize a string as a mime
27811         handle, as well as a list.
27812
27813         * mm-view.el (mm-w3m-cid-retrieve-1): Call itself recursively.
27814         Suggested by ARISAWA Akihiro <ari@mbf.sphere.ne.jp>.
27815         (mm-w3m-cid-retrieve): Simplify.
27816
27817 2004-01-14  Vasily Korytov  <deskpot@myrealbox.com>
27818
27819         * message.el (message-kill-to-signature): Allow prefix arg to
27820         specify number of lines to keep before signature.
27821
27822 2004-01-14  Kai Grossjohann  <kai@emptydomain.de>
27823
27824         * message.el (message-kill-to-signature): Change docstring.
27825
27826 2004-01-14  Katsumi Yamaoka  <yamaoka@jpl.org>
27827
27828         * canlock.el: Always require sha1-el.
27829         (canlock-sha1): Bind sha1-maximum-internal-length to nil.
27830
27831         * message.el: Autoload sha1 only when compiling.
27832
27833         * lpath.el: Bind eudc-protocol for both Emacs and XEmacs; fbind
27834         eudc-expand-inline for XEmacs.
27835
27836 2004-01-13  Katsumi Yamaoka  <yamaoka@jpl.org>
27837
27838         * message.el (message-canlock-generate): Require sha1-el.
27839
27840 2004-01-13  Jesper Harder  <harder@ifa.au.dk>
27841
27842         * message.el (message-expand-name): Silence the byte compiler.
27843
27844         * lpath.el: Add detect-coding-system.
27845
27846         * dgnushack.el (dgnushack-compile): Remove obsolete check for
27847         cus-edit.
27848
27849 2004-01-13  Simon Josefsson  <jas@extundo.com>
27850
27851         * gnus-score.el (gnus-score-edit-all-score): Fix prototype.
27852         Invoke gnus-score-mode.
27853         Reported by bojohan+news@dd.chalmers.se (Johan Bockgård).
27854
27855         * gnus-range.el (gnus-compress-sequence): Doc fix.
27856         Suggested by Jim Blandy <jimb@redhat.com> (tiny change).
27857
27858 2004-01-12  Jesper Harder  <harder@ifa.au.dk>
27859
27860         * gnus-srvr.el (gnus-browse-foreign-server): Reduce consing.
27861
27862 2004-01-12  Teodor Zlatanov  <tzz@lifelogs.com>
27863
27864         * spam.el (spam-get-article-as-string): Update to use
27865         gnus-request-article-this-buffer, much simpler.
27866         (spam-get-article-as-buffer): Remove.
27867
27868 2004-01-12  Kai Grossjohann  <kai.grossjohann@mci.com>
27869
27870         * message.el (message-expand-name): Use EUDC if the user uses that.
27871
27872 2004-01-12  Jesper Harder  <harder@ifa.au.dk>
27873
27874         * rfc2047.el (rfc2047-parse-and-decode, rfc2047-decode): Use a
27875         character for the encoding to avoid consing a string.
27876
27877         * rfc2047.el (rfc2047-decode-string): Don't cons a string
27878         unnecessarily.
27879
27880         * mm-util.el (mm-replace-chars-in-string): Remove.
27881
27882         * rfc2047.el (rfc2047-decode): Use mm-subst-char-in-string instead
27883         of mm-replace-chars-in-string.
27884
27885 2004-01-11  Jesper Harder  <harder@ifa.au.dk>
27886
27887         * gnus.sum.el (gnus-remove-odd-characters): Don't cons two new strings.
27888
27889         * mm-util.el (mm-subst-char-in-string): Support inplace.
27890
27891         * gnus-sum.el (gnus-summary-remove-list-identifiers): Don't cons
27892         a new string in every iteration.  Use shy groups.
27893
27894 2004-01-10  Jesper Harder  <harder@ifa.au.dk>
27895
27896         * gnus-srvr.el (gnus-browse-unsubscribe-group):
27897         * gnus-soup.el (gnus-soup-group-brew):
27898         * gnus-msg.el (gnus-put-message):
27899         * gnus-move.el (gnus-group-move-group-to-server):
27900         * gnus-kill.el (gnus-batch-score):
27901         * gnus-group.el (gnus-group-prepare-flat, gnus-group-delete-group)
27902         (gnus-group-update-group-line, gnus-group-insert-group-line-info)
27903         (gnus-group-update-group, gnus-group-read-group)
27904         (gnus-group-make-group, gnus-group-make-help-group)
27905         (gnus-group-make-archive-group, gnus-group-make-directory-group)
27906         (gnus-group-make-empty-virtual, gnus-group-sort-selected-flat)
27907         (gnus-group-sort-by-unread, gnus-group-catchup)
27908         (gnus-group-unsubscribe-group, gnus-group-kill-group)
27909         (gnus-group-yank-group, gnus-group-set-info)
27910         (gnus-group-list-groups):
27911         * gnus.el (gnus-generate-new-group-name):
27912         * gnus-delay.el (gnus-delay-send-queue):
27913         * nnvirtual.el (nnvirtual-catchup-group):
27914         * nnkiboze.el (nnkiboze-generate-group, nnkiboze-generate-group):
27915         * gnus-topic.el (gnus-topic-find-groups, gnus-topic-clean-alist)
27916         (gnus-group-prepare-topics, gnus-topic-check-topology):
27917         * gnus-sum.el (gnus-update-read-articles, gnus-select-newsgroup)
27918         (gnus-mark-xrefs-as-read, gnus-compute-read-articles)
27919         (gnus-summary-walk-group-buffer, gnus-summary-move-article)
27920         (gnus-group-make-articles-read):
27921         * gnus-start.el (gnus-subscribe-newsgroup, gnus-start-draft-setup)
27922         (gnus-group-change-level, gnus-kill-newsgroup)
27923         (gnus-check-bogus-newsgroups, gnus-get-unread-articles-in-group)
27924         (gnus-get-unread-articles, gnus-make-articles-unread)
27925         (gnus-make-ascending-articles-unread): Use accessor
27926         macros (gnus-group-entry, gnus-group-unread, gnus-info-marks etc.)
27927         to get group information for improved readability.
27928
27929
27930 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
27931
27932         * gnus-art.el (article-decode-mime-words, article-babel)
27933         (gnus-article-highlight-signature, gnus-article-add-buttons)
27934         (gnus-signature-toggle): Use gnus-with-article-buffer.
27935
27936         * gnus-art.el (gnus-article-highlight-headers)
27937         (gnus-article-add-buttons-to-head): Use gnus-with-article-headers.
27938
27939         * gnus-art.el (gnus-mm-display-part, gnus-article-wash-status)
27940         (gnus-article-set-globals, gnus-request-article-this-buffer)
27941         (gnus-button-message-id, gnus-article-maybe-hide-headers)
27942         (gnus-mime-view-part-externally, gnus-mime-view-part-internally)
27943         (gnus-mime-display-alternative): Use with-current-buffer.
27944
27945 2004-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
27946
27947         * spam.el (spam-generate-fake-headers): Rewrite to be simpler,
27948         also under 80 char limit, and call gnus-error if needed.
27949         (spam-fetch-article-header): Fix - it was a
27950         buffer-local variable (gnus-newsgroup-data).
27951         (spam-find-spam): Use spam-generate-fake-headers, forget about
27952         spam-insert-fake-headers.
27953         (spam-insert-fake-headers): Remove.
27954
27955 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
27956
27957         * deuglify.el (gnus-article-outlook-unwrap-lines)
27958         (gnus-outlook-rearrange-article)
27959         (gnus-outlook-repair-attribution-outlook)
27960         (gnus-outlook-repair-attribution-block)
27961         (gnus-outlook-repair-attribution-other): Remove redundant
27962         save-excursion.
27963
27964 2004-01-09  Teodor Zlatanov  <tzz@lifelogs.com>
27965
27966         * spam.el (spam-fetch-field-fast, spam-fetch-field-from-fast)
27967         (spam-fetch-field-subject-fast)
27968         (spam-fetch-field-message-id-fast, spam-generate-fake-headers)
27969         (spam-fetch-article-header): Add functions to deal with Gnus
27970         internals for fast retrieval of article header data.
27971         (spam-initialize): Put spam-find-spam in the gnus-summary-prepared-hook.
27972
27973 2004-01-09  Jesper Harder  <harder@ifa.au.dk>
27974
27975         * pop3.el (pop3-md5): Remove.
27976         (pop3-apop): Replace pop3-md5 with md5.
27977
27978         * mm-bodies.el: base64 is always built-in.
27979
27980         * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups):
27981         Use with-current-buffer.
27982
27983 2004-01-08  Katsumi Yamaoka  <yamaoka@jpl.org>
27984
27985         * canlock.el (canlock-insert-header): Remove excessive grouping in
27986         regexp.
27987
27988         * gnus-sum.el (gnus-summary-read-document): Ditto.
27989
27990         * gnus-uu.el (gnus-uu-part-number): Ditto.
27991
27992         * html2text.el (html2text-remove-tags): Ditto.
27993         (html2text-format-tags): Ditto.
27994         (html2text-format-single-elements): Ditto.
27995
27996         * mml.el (mml-parse-1): Ditto.
27997
27998 2004-01-08  Jesper Harder  <harder@ifa.au.dk>
27999
28000         * gnus-sum.el (gnus-summary-update-mark): Revert previous change.
28001
28002         * gnus-group.el (gnus-group-mark-group): Fix for multibyte marks.
28003
28004         * gnus-sum.el (gnus-summary-update-mark): Fix for multibyte marks.
28005
28006         * gnus-util.el (gnus-replace-in-string): Remove Emacs 20 code.
28007
28008 2003-11-15  Simon Josefsson  <jas@extundo.com>
28009
28010         * pgg-gpg.el (pgg-gpg-lookup-all-secret-keys)
28011         (pgg-gpg-lookup-key): Use regexp match instead of
28012         split-string (split-string is different between emacs 21.2 and
28013         22.1).  Reported by ultrasoul@ultrasoul.com (David D. Smith).
28014
28015 2004-01-08  Jesper Harder  <harder@ifa.au.dk>
28016
28017         * gnus-art.el (gnus-mime-view-all-parts)
28018         (gnus-article-part-wrapper, gnus-article-view-part):
28019         Use with-current-buffer.
28020
28021 2004-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
28022
28023         * spam.el (spam-disable-spam-split-during-ham-respool)
28024         (spam-spamoracle-database, spam-cache-lookups)
28025         (spam-split-last-successful-check, spam-clear-cache, spam-xor)
28026         (spam-group-ham-mark-p, spam-group-spam-mark-p)
28027         (spam-group-ham-marks, spam-group-spam-marks)
28028         (spam-group-spam-contents-p, spam-group-ham-contents-p)
28029         (spam-list-of-processors, spam-list-of-statistical-checks): Fix doc,
28030         also add spam-use-blackholes to the statistical checks.
28031         (spam-fetch-field-fast): Add interface to fetching fields, may
28032         become a macro.
28033         (spam-fetch-field-from-fast, spam-fetch-field-subject-fast)
28034         (spam-fetch-field-message-id-fast): Use spam-fetch-field-fast.
28035         (spam-insert-fake-headers): Fake an article when needed.
28036         (spam-find-spam): Fake article when possible.
28037         (spam-check-blackholes, spam-check-BBDB, spam-from-listed-p)
28038         (spam-check-bogofilter-headers): Use message-fetch-field instead
28039         of nnmail-fetch-field.
28040
28041 2004-01-07  Reiner Steib  <Reiner.Steib@gmx.de>
28042
28043         * gnus-score.el (gnus-score-find-trace): Add `k' (kill-buffer).
28044
28045 2004-01-07  Teodor Zlatanov  <tzz@lifelogs.com>
28046
28047         * spam.el (spam-split): Do not require spam-use-CHECK to be
28048         enabled if that check is passed to spam-split explicitly; also
28049         fix so 'spam doesn't get converted to spam-split-group when
28050         spam-split-symbolic-return is t.
28051         (spam-find-spam): Find registrations of the article and use those
28052         instead of re-running spam-split to find the spam/ham
28053         classification of the article.
28054         (spam-log-processing-to-registry, spam-log-registered-p)
28055         (spam-log-unregistration-needed-p, spam-log-undo-registration):
28056         Use gnus-error instead of gnus-message.
28057         (spam-log-registration-type): Add function to determine the
28058         classification of a message based on registry entries; will
28059         return nil if both 'spam and 'ham are found.
28060         (spam-check-BBDB): Expand all the BBDB macros here so we can have
28061         a reasonably fast local cache without the loading errors.
28062         (spam-cache-lookups): Set to t by default.
28063         (spam-find-spam): Don't try to guess spam-cache-lookups.
28064         (spam-enter-whitelist, spam-enter-blacklist): Clear the
28065         spam-caches entry.
28066         (spam-filelist-build-cache, spam-filelist-check-cache):
28067         Fix caching of whitelist/blacklist entries.
28068         (spam-check-whitelist, spam-check-blacklist):
28069         Invoke spam-from-listed-p with a type, not a cache variable.
28070         (spam-from-listed-p): Wrap around spam-filelist-check-cache.
28071
28072 2004-01-07  Jesper Harder  <harder@ifa.au.dk>
28073
28074         * message.el (message-cite-prefix-regexp): Use with-syntax-table.
28075
28076         * nnmail.el (nnmail-split-fancy): do.
28077
28078         * mml.el (mml-parse): do.
28079
28080         * gnus-score.el (gnus-enter-score-words-into-hashtb)
28081         (gnus-score-adaptive): do.
28082
28083 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
28084
28085         * gnus-art.el (gnus-treat-emphasize): Ignore Emacs version number.
28086         (gnus-mime-button-map): Don't set keymap parent.
28087         (gnus-button-ctan-directory-regexp): Use shy grouping.
28088         (gnus-prev-page-map): Don't set keymap parent.
28089         (gnus-prev-page-map): Remove duplicated one.
28090         (gnus-next-page-map): Don't set keymap parent.
28091         (gnus-mime-security-button-map): Ditto.
28092
28093         * nnheader.el (nnheader-directory-files-is-safe): Ignore Emacs
28094         version number.
28095
28096         * sha1-el.el (sha1-string-external): Use with-temp-buffer.
28097
28098 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
28099
28100         * canlock.el (canlock-sha1-function): Remove.
28101         (canlock-sha1-function-for-verify): Remove.
28102         (canlock-openssl-program): Remove.
28103         (canlock-openssl-args): Remove.
28104         (canlock-ignore-errors): Remove.
28105         (canlock-sha1-with-openssl): Remove.
28106         (canlock-sha1): Use sha1 instead of to call canlock-sha1-function.
28107         (canlock-verify): Don't use canlock-ignore-errors.
28108
28109         * sha1-el.el (sha1-string-external): Make it can return a string
28110         in binary form.
28111         (sha1-region-external): Ditto.
28112         (sha1-string-internal): Ditto.
28113         (sha1-region-internal): Ditto.
28114         (sha1-region): Ditto.
28115         (sha1-string): Ditto.
28116         (sha1): Ditto.
28117
28118 2004-01-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
28119
28120         * spam.el (spam-report-articles-gmane): New command.
28121
28122 2004-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
28123
28124         * gnus.el: Don't make unnecessary *Group* buffer when loading.
28125
28126         * run-at-time.el (run-at-time-saved): Remove.
28127         (run-at-time): Doc fix.
28128
28129 2004-01-07  Jesper Harder  <harder@ifa.au.dk>
28130
28131         * gnus-sum.el (gnus-summary-limit-to-replied): New command.
28132         (gnus-summary-limit-map): Add it.
28133         (gnus-summary-make-menu-bar): do.
28134
28135 2004-01-06  Teodor Zlatanov  <tzz@lifelogs.com>
28136
28137         * spam.el (spam-cache-lookups, spam-caches, spam-clear-cache):
28138         Make attempt at some caching support (done for BBDB only now).
28139         (spam-find-spam): Set spam-cache-lookups if there are more than 2
28140         addresses to be checked.
28141         (spam-clear-cache-BBDB): Add function, to be invoked by
28142         bbdb-change-hook, and triggering spam-clear-cache of 'spam-use-BBDB.
28143         (spam-check-BBDB): Check and use the caches, if
28144         spam-cache-lookups is on, remove superfluous (provide).
28145
28146 2004-01-06  Reiner Steib  <Reiner.Steib@gmx.de>
28147
28148         * gnus-art.el (gnus-treat-ansi-sequences): Change default.
28149
28150 2004-01-07  Steve Youngs  <sryoungs@bigpond.net.au>
28151
28152         * run-at-time.el (run-at-time-saved): Move to after the definition
28153         of `run-at-time'.
28154
28155         * dgnushack.el: Autoload `font-lock-fontify-buffer' in XEmacs.
28156
28157 2004-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
28158
28159         * gnus-art.el (gnus-article-wash-html-with-w3m): Don't use
28160         mm-w3m-local-map-property.
28161
28162         * mm-view.el (mm-w3m-mode-map): Remove.
28163         (mm-w3m-local-map-property): Remove.
28164         (mm-inline-text-html-render-with-w3m): Don't use
28165         mm-w3m-local-map-property.
28166
28167 2004-01-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
28168
28169         * run-at-time.el: New file.
28170
28171         * dgnushack.el (dgnushack-compile): Don't compile run-at-time
28172         under Emacs.
28173
28174         * gnus.el ((fboundp 'gnus-set-text-properties)): Remove definition
28175         of gnus-set-text-properties.
28176
28177         * gnus-uu.el (gnus-uu-save-article): Ditto.
28178
28179         * gnus-salt.el (gnus-carpal-setup-buffer): Ditto.
28180
28181         * gnus-cite.el (gnus-cite-parse): Ditto.
28182
28183         * gnus-art.el (gnus-button-push): Use set-text-properties instead
28184         of gnus-.
28185
28186         * gnus-xmas.el (run-at-time): Require run-at-time.
28187
28188         * gnus.el: Change calls to nnheader-run-at-time and
28189         password-run-at-time throughout to use run-at-time directly.
28190
28191         * password.el: Remove definition of run-at-time.
28192
28193         * nnheaderxm.el: Remove definition of run-at-time.
28194
28195 2004-01-05  Karl Pflästerer  <sigurd@12move.de>  (tiny change)
28196
28197         * mml.el (mml-minibuffer-read-disposition): Show attachment type
28198         in prompt.
28199
28200 2004-01-06  Steve Youngs  <sryoungs@bigpond.net.au>
28201
28202         * messagexmas.el (message-xmas-redefine): Alias
28203         `message-make-caesar-translation-table' to
28204         ``message-xmas-make-caesar-translation-table' regardless of XEmacs
28205         version.
28206
28207         * gnus-xmas.el (gnus-xmas-set-text-properties): Removed.
28208         (gnus-xmas-define): Don't alias `gnus-set-text-properties' to
28209         `gnus-xmas-set-text-properties'.
28210         (gnus-xmas-redefine): Don't alias `gnus-completing-read' to
28211         `gnus-xmas-completing-read'.
28212         (gnus-xmas-completing-read): Removed.
28213         (gnus-xmas-open-network-stream): Removed.
28214
28215         * gnus-ems.el (gnus-mode-line-modified): Don't conditionalize on
28216         XEmacs version.
28217
28218         * dns.el (dns-make-network-process): Use `open-network-stream'
28219         instead of `gnus-xmas-open-network-stream'.
28220
28221         * dgnushack.el: Remove some XEmacs 21.1 specific stuff.
28222
28223         * .cvsignore: Add auto-autoloads.el, custom-load.el.
28224
28225 2004-01-06  Jesper Harder  <harder@ifa.au.dk>
28226
28227         * gnus-art.el (gnus-mime-display-alternative)
28228         (gnus-insert-mime-button, gnus-insert-mime-security-button)
28229         (gnus-insert-prev-page-button, gnus-insert-next-page-button):
28230         Don't use gnus-local-map-property.
28231
28232         * gnus-util.el (gnus-local-map-property): Remove.
28233
28234         * mm-view.el (mm-view-pkcs7-decrypt):
28235         Replace gnus-completing-read-maybe-default with completing-read.
28236
28237         * gnus-util.el (gnus-completing-read): do.
28238         (gnus-completing-read-maybe-default): Remove.
28239
28240 2004-01-06  Steve Youngs  <sryoungs@bigpond.net.au>
28241
28242         * password.el: Only autoload `run-at-time' if not XEmacs.
28243         Only autoload the itimer functions if XEmacs.
28244
28245 2004-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>
28246
28247         * gnus-xmas.el (gnus-xmas-define): Defun char-width for non-MULE
28248         XEmacsen.
28249
28250         * dgnushack.el: Autoload executable-find for XEmacs.
28251
28252 2004-01-06  Jesper Harder  <harder@ifa.au.dk>
28253
28254         * gnus-art.el (gnus-read-string): Remove.
28255         (gnus-summary-pipe-to-muttprint): Replace gnus-read-string with
28256         read-string.
28257
28258 2004-01-05  Teodor Zlatanov  <tzz@lifelogs.com>
28259
28260         * netrc.el: Autoload password-read.
28261         (netrc): Add configuration group.
28262         (netrc-encoding-method, netrc-openssl-path):
28263         Add variables for encoding and decoding of files with symmetric
28264         ciphers.
28265         (netrc-encode): Add assistant function to encode a file with
28266         netrc-encoding-method.
28267         (netrc-parse): Add interactive parameter, added optional
28268         decoding if netrc-encoding-method is non-nil but otherwise
28269         behavior is standard.
28270         (netrc-encrypting-method, netrc-encrypt, netrc-parse):
28271         Do s/encode/encrypt/ everywhere.
28272
28273         * spam.el: Remove executable-find autoload.
28274
28275 2004-01-05  Jesper Harder  <harder@ifa.au.dk>
28276
28277         * gnus-registry.el: Remove Emacs 20 hash table compatibility code.
28278
28279         * gnus-uu.el (gnus-uu-post-encoded): bury-buffer is always fbound.
28280
28281 2004-01-05  Reiner Steib  <Reiner.Steib@gmx.de>
28282
28283         * gnus-art.el (gnus-treat-ansi-sequences)
28284         (article-treat-ansi-sequences): New variable and function.
28285         Suggested by Dan Jacobson <jidanni@jidanni.org>.
28286
28287         * gnus-sum.el (gnus-summary-wash-map, gnus-summary-make-menu-bar):
28288         Use it.
28289
28290 2004-01-05  Jesper Harder  <harder@ifa.au.dk>
28291
28292         * mm-util.el (mm-quote-arg): Remove.
28293
28294         * mm-decode.el (mm-mailcap-command): Replace mm-quote-arg with
28295         shell-quote-argument.
28296
28297         * gnus-uu.el (gnus-uu-command): do.
28298
28299         * gnus-sum.el (gnus-summary-insert-pseudos): do.
28300
28301         * ietf-drums.el (ietf-drums-token-to-list): Replace mm-make-char
28302         with make-char.
28303
28304         * mm-util.el (mm-make-char): Remove.
28305
28306         * mml.el (mml-mode): Replace gnus-add-minor-mode with
28307         add-minor-mode.
28308
28309         * gnus-undo.el (gnus-undo-mode): do.
28310
28311         * gnus-topic.el (gnus-topic-mode): do.
28312
28313         * gnus-sum.el (gnus-dead-summary-mode): do.
28314
28315         * gnus-start.el (gnus-slave-mode): do.
28316
28317         * gnus-salt.el (gnus-binary-mode, gnus-pick-mode): do.
28318
28319         * gnus-ml.el (gnus-mailing-list-mode): do.
28320
28321         * gnus-gl.el (gnus-grouplens-mode): do.
28322
28323         * gnus-draft.el (gnus-draft-mode): do.
28324
28325         * gnus-dired.el (gnus-dired-mode): do.
28326
28327         * gnus-ems.el (gnus-add-minor-mode): Remove.
28328
28329         * gnus-spec.el (gnus-correct-length, gnus-correct-substring):
28330         Replace gnus-char-width with char-width.
28331
28332         * gnus-ems.el (gnus-char-width): Remove.
28333
28334         * gnus-spec.el (gnus-correct-length, gnus-correct-substring):
28335         Replace gnus-char-width with char-width.
28336
28337         * gnus-ems.el (gnus-char-width): Remove.
28338
28339         * spam-stat.el (with-syntax-table): Remove with-syntax-table
28340         definition.
28341         Remove Emacs 20 hash table compatibility code.
28342
28343         * rfc2047.el (with-syntax-table): Remove with-syntax-table Emacs
28344         20 compatibility code.
28345
28346         * spam.el (spam-point-at-eol): Replace with point-at-eol.
28347
28348         * smime.el (smime-point-at-eol): Replace with point-at-eol.
28349
28350         * rfc2047.el (rfc2047-point-at-bol, rfc2047-point-at-eol):
28351         Replace with point-at-{eol,bol}.
28352
28353         * netrc.el (netrc-point-at-eol): Replace with point-at-eol.
28354
28355         * imap.el (imap-point-at-eol): Replace with point-at-eol.
28356
28357         * flow-fill.el (fill-flowed-point-at-bol)
28358         (fill-flowed-point-at-eol): Replace with point-at-{eol,bol}.
28359
28360         * gnus-util.el (gnus-point-at-bol, gnus-point-at-eol): Remove.
28361         Replace with point-at-{eol,bol} throughout all files.
28362
28363 2004-01-05  Katsumi Yamaoka  <yamaoka@jpl.org>
28364
28365         * ntlm.el (ntlm-string-as-unibyte): New macro.
28366         (ntlm-build-auth-response): Use it.
28367
28368         Remove Emacs 20 stuff:
28369         * dgnushack.el (dgnushack-compile): Don't modify max-specpdl-size.
28370         (butlast, mapc, remove): Remove the compiler macros.
28371         * gnus-msg.el (gnus-summary-news-other-window): Use remove instead
28372         of delq and copy-sequence.
28373         * gnus-art.el (popup-menu): Remove the compiler macro.
28374         * nnmail.el (nnmail-split-fancy): Don't support customizing with
28375         Emacs 20.
28376
28377 2004-01-05  Simon Josefsson  <jas@extundo.com>
28378
28379         * ntlm.el: Fix namespace.  Change smb-passwd-hash into
28380         ntlm-smb-passwd-hash, smb-owf-encrypt into ntlm-smb-owf-encrypt,
28381         smb-passwd-hash into ntlm-smb-passwd-hash, smbdes-e-p16 into
28382         ntlm-smb-des-e-p16, smbdes-e-p24 into ntlm-smb-des-e-p24, smbhash
28383         into ntlm-smb-hash, smb-sp8 into ntlm-smb-sp8, smb-str-to-key into
28384         ntlm-smb-str-to-key, smb-dohash into ntlm-smb-dohash, smb-perm1
28385         into ntlm-smb-perm1, smb-perm2 into ntlm-smb-perm2, smb-perm3 into
28386         ntlm-smb-perm3, smb-perm4 into ntlm-smb-perm4, smb-perm5 into
28387         ntlm-smb-perm5, smb-perm6 into ntlm-smb-perm6, smb-sc into
28388         ntlm-smb-sc, smb-sbox into ntlm-smb-sbox, string-permute into
28389         ntlm-string-permute, string-lshift into ntlm-string-lshift,
28390         string-xor into ntlm-string-xor.
28391         Suggested by Jesper Harder <harder@myrealbox.com>.
28392
28393         * ntlm.el: Don't include poem.
28394
28395         * md4.el (print-int32, print-string-hexa): Remove.
28396         Suggested by Jesper Harder <harder@myrealbox.com>.
28397
28398         * sasl-ntlm.el, ntlm.el, md4.el: New files.
28399
28400         * hmac-md5.el (md5-binary): Fix byte compile warning.  (This
28401         probably breaks emacs with DL patch, but do we care? Is anyone
28402         still using the DL stuff?)
28403
28404         * sieve-manage.el: Use the password package.
28405         (sieve-manage-read-passwd): Remove.
28406         (sieve-manage-interactive-login): Use password.  Re-add
28407         condition-case around loop.
28408
28409         * pgg.el (pgg-passphrase-cache, pgg-run-at-time): Remove.
28410         (pgg-add-passphrase-cache, pgg-remove-passphrase-cache):
28411         Use the password package.
28412
28413 2003-02-19  Simon Josefsson  <jas@extundo.com>
28414
28415         * sieve-manage.el (sieve-sasl-auth): Quote optional initial SASL
28416         token.
28417
28418 2002-08-07  Simon Josefsson  <jas@extundo.com>
28419
28420         * sieve-manage.el (require): Use SASL, not RFC2104/MD5.
28421         (sieve-manage-authenticators)
28422         (sieve-manage-authenticator-alist): Add some SASL mechs.
28423         (sieve-sasl-auth): New function.
28424         (sieve-manage-cram-md5-auth)
28425         (sieve-manage-plain-auth): Rewrite using SASL library.
28426         (sieve-manage-digest-md5-p, sieve-manage-digest-md5-auth)
28427         (sieve-manage-scram-md5-p, sieve-manage-scram-md5-auth)
28428         (sieve-manage-ntlm-p, sieve-manage-ntlm-auth)
28429         (sieve-manage-login-p, sieve-manage-login-auth): Add wrappers.
28430
28431 2004-01-05  Simon Josefsson  <jas@extundo.com>
28432
28433         * sasl.el, sasl-cram.el, sasl-digest.el, hmac-md5.el, hmac-def.el:
28434         New files.
28435
28436 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
28437
28438         * gnus-group.el (gnus-no-groups-message): Update.
28439
28440         * gnus-sum.el (gnus-summary-insert-new-articles): Remove .
28441
28442 2003-11-09  Simon Josefsson  <jas@extundo.com>
28443
28444         * imap.el: Support for ID IMAP extension (RFC 2971).
28445         (imap-local-variables): Add imap-id.
28446         (imap-id): New variable.
28447         (imap-id): New function.
28448         (imap-parse-response): Parse untagged ID response.
28449         * nnimap.el (nnimap-id): New variable.
28450         (nnimap-open-connection): Use it.
28451
28452 2003-12-28  Simon Josefsson  <jas@extundo.com>
28453
28454         * gnus-score.el (gnus-score-edit-all-score): New.
28455         * gnus-group.el (gnus-group-score-map): Bind it to W e.
28456
28457 2004-01-04  Simon Josefsson  <jas@extundo.com>
28458
28459         * password.el: Add.
28460
28461 2004-01-04  Mario Lang  <lang@zid.tugraz.at>
28462
28463         * dns.el (dns-query-types): Fix typo.
28464         (dns-query-types): New function.
28465         (dns-read-type): Add support for AAAA records, see RFC 3596.  Parse MX,
28466         PTR and SOA replies, see RFC 1035.
28467
28468 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
28469
28470         * gnus.el (gnus-logo-color-style): Change colors to `no'.
28471
28472         * Move to Changelog.2.
28473
28474 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
28475
28476         * gnus.el (gnus-version-number): Bump version.
28477
28478 2004-01-04  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
28479
28480         * gnus.el: No Gnus v0.1 is released.
28481
28482 2004-01-04  Lars Magne Ingebrigtsen  <lars@ingebrigtsen.no>
28483
28484         * gnus.el: No Gnus v0.0 is released.
28485
28486 2004-01-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
28487
28488         * gnus.el (gnus-version-number): Bump.
28489         (gnus-version): No.
28490
28491 See ChangeLog.2 for earlier changes.
28492
28493   Copyright (C) 2004-2015 Free Software Foundation, Inc.
28494
28495   This file is part of GNU Emacs.
28496
28497   GNU Emacs is free software: you can redistribute it and/or modify
28498   it under the terms of the GNU General Public License as published by
28499   the Free Software Foundation, either version 3 of the License, or
28500   (at your option) any later version.
28501
28502   GNU Emacs is distributed in the hope that it will be useful,
28503   but WITHOUT ANY WARRANTY; without even the implied warranty of
28504   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
28505   GNU General Public License for more details.
28506
28507   You should have received a copy of the GNU General Public License
28508   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
28509
28510 ;; Local Variables:
28511 ;; coding: utf-8
28512 ;; fill-column: 79
28513 ;; add-log-time-zone-rule: t
28514 ;; End: