(Fdefine_charset_internal): Change the way of
[bpt/emacs.git] / lisp / gnus / ChangeLog
1 2008-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * mm-util.el (mm-set-buffer-multibyte): New function.
4 * mm-decode.el (mm-copy-to-buffer): Use it.
5
6 * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
7 Prefer fboundp to functionp so it works with macros as well.
8
9 2008-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
10
11 * nntp.el: Use with-current-buffer.
12 (nntp-send-buffer): Just set the buffer to unibyte rather than use the
13 dubious mm-with-unibyte-current-buffer.
14 (nntp-with-open-group-function): New function extracted from
15 nntp-with-open-group macro.
16 (nntp-with-open-group): Use the function, so it's easier to debug.
17 Add indentation and debugging info.
18 (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet): Recommend the
19 use of the netcat alternatives.
20
21 * rfc2047.el (rfc2047-decode-string): Don't use `m'.
22 Avoid mm-string-as-multibyte as well.
23
24 * nnweb.el (nnweb-insert-html):
25 Remove use of nnheader-string-as-multibyte.
26
27 * nnheader.el (nnheader-init-server-buffer): Use with-current-buffer.
28 (nnheader-string-as-multibyte): Remove.
29
30 * mm-view.el: Use inhibit-read-only.
31 (mm-inline-text-html-render-with-w3, mm-inline-message): Use dolist.
32 (mm-pkcs7-signed-magic, mm-pkcs7-enveloped-magic): Use just string
33 or unibyte-string.
34
35 * mm-uu.el (mm-uu-copy-to-buffer): Preserve (uni/multi)byteness.
36 (mm-uu-yenc-extract): Use with-current-buffer.
37
38 * gnus-soup.el (gnus-soup-send-packet): Don't use
39 mm-with-unibyte-current-buffer since the buffer is unibyte anyway.
40
41 * nnmh.el: Use with-current-buffer.
42 (nnmh-request-list-1): Use mm-string-to-multibyte rather than
43 mm-string-as-multibyte on the output of mm-encode-coding-string.
44
45 * nnimap.el (nnimap-retrieve-headers-progress): Use a unibyte buffer.
46 (nnimap-request-move-article): Use with-current-buffer.
47
48 * mm-decode.el (mm-with-part): Set the buffer to unibyte before
49 inserting the handle-buffer's text, so the implicit multibyte->unibyte
50 conversion uses string-make-unibyte rather than string-as-unibyte.
51
52 * gnus-msg.el: Use with-current-buffer.
53
54 * message.el (message-ignored-resent-headers): Add "Delivered-To".
55
56 2008-03-08 Reiner Steib <Reiner.Steib@gmx.de>
57
58 * mail-source.el (mail-source-delete-old-incoming-confirm):
59 Change default to nil.
60 (mail-source-delete-old-incoming): Make confirmation prompt more clear.
61
62 2008-03-07 Katsumi Yamaoka <yamaoka@jpl.org>
63
64 * gnus-art.el (gnus-narrow-to-page): Position point properly.
65 (gnus-article-goto-prev-page): Work for articles having ^L's.
66
67 * gnus-sum.el (gnus-summary-end-of-article): Remove needless narrowing.
68
69 * mm-view.el (mm-w3m-standalone-supports-m17n-p): Fix typo.
70
71 2008-03-07 Karl Fogel <kfogel@red-bean.com>
72
73 * gnus-bookmark.el: Adjust for renames in bookmark.el.
74 (gnus-bookmark-make-record): Was `gnus-bookmark-make-cell'.
75 (gnus-bookmark-jump): Adjust some variable names.
76
77 2008-03-06 Teodor Zlatanov <tzz@lifelogs.com>
78
79 * auth-source.el: New package.
80 (auth-source-choices): Add customization entry point variable.
81
82 * gnus-registry.el (gnus-registry-user-format-function-M): Fix concat
83 bug.
84
85 2008-03-05 Teodor Zlatanov <tzz@lifelogs.com>
86
87 * gnus-registry.el (gnus-registry-install): Allow 'ask as an option.
88 (gnus-registry-initialize, gnus-registry-install-p): Use it.
89 (gnus-registry-install-shortcuts): Rename from
90 gnus-registry-install-shortcuts-and-menus. Installs the shortcuts in
91 the `gnus-registry-mark-map' keymap dynamically from
92 `gnus-registry-marks'. The generated functions update the summary line
93 when a registry mark is added or deleted, and will call
94 `gnus-registry-install-p' (see the comments in the code).
95 (gnus-registry-user-format-function-M): Use concat intelligently.
96
97 * gnus-sum.el (gnus-summary-make-menu-bar): Add menu entries for all
98 the registry mark functions.
99
100 2008-03-05 Glenn Morris <rgm@gnu.org>
101
102 * gnus-art.el (gnus-article-mode-line-format-alist): Move to gnus-sum.
103 * gnus-sum.el (gnus-article-mode-line-format-alist): Move here from
104 gnus-art.
105 (top-level): No need to load own source when compiling.
106
107 2008-03-04 Reiner Steib <Reiner.Steib@gmx.de>
108
109 * gnus-sum.el (gnus-print-buffer): Honor ps-print-color-p.
110 Suggested by <chris.anderton@zetnet.co.uk>.
111
112 2008-03-04 Glenn Morris <rgm@gnu.org>
113
114 * gnus-sum.el (top-level): No need to require gnus when compiling,
115 since unconditionally required near start of file.
116 (gnus-summary-display-while-building): Move definition before use.
117
118 2008-03-04 Teodor Zlatanov <tzz@lifelogs.com>
119
120 * gnus-registry.el (gnus-registry-user-format-function-M): Add
121 formatting function.
122
123 2008-03-03 Teodor Zlatanov <tzz@lifelogs.com>
124
125 * gnus-registry.el (gnus-registry-marks): Changed format to be nicer
126 with plists.
127 (gnus-registry-do-marks, gnus-registry-install-shortcuts-and-menus):
128 Use new format.
129
130 2008-03-03 Katsumi Yamaoka <yamaoka@jpl.org>
131
132 * gnus-art.el (gnus-article-describe-bindings): Work for the version of
133 `where-is-internal' that returns a range of key sequences.
134
135 2008-03-03 Stefan Monnier <monnier@iro.umontreal.ca>
136
137 * mm-bodies.el (mm-decode-content-transfer-encoding): Simplify.
138
139 * gnus-sum.el: Use inhibit-read-only and with-current-buffer.
140 (gnus-summary-jump-to-group): Consider windows on other displayed
141 frames as well. Similar changes might be needed elsewhere, but that's
142 the one I've bumped into during my use.
143
144 * nndoc.el (nndoc-oe-dbx-type-p):
145 * gnus-msg.el (gnus-debug):
146 * gnus-group.el (gnus-update-group-mark-positions):
147 Use mm-string-to-multibyte.
148
149 2008-03-02 Reiner Steib <Reiner.Steib@gmx.de>
150
151 * mml2015.el (mml2015-extract-cleartext-signature): Explain that it
152 doesn't handle NotDashEscaped.
153
154 * mml.el (mml-menu): Improve help entries. Move Sign/Encrypt Part.
155 (mml-dnd-attach-options): Fix typo in custom choice.
156
157 * gnus-group.el (gnus-group-read-ephemeral-gmane-group): Change
158 nndoc-article-type to mbox.
159 (gnus-group-read-ephemeral-gmane-group-url): Support permalink.
160
161 * mm-decode.el (mm-text-html-renderer): Prefer w3m over w3. Fall back
162 to nil, instead of html2text.
163
164 * imap.el (imap-debug): Add `imap-ping-server'.
165
166 * gnus-bookmark.el: Add FIXMEs.
167
168 * message.el (message-form-letter-separator)
169 (message-send-form-letter-delay): New variables.
170 (message-send-form-letter): Use them. New command to send form
171 letters. Requested by Uwe Siart.
172 (message-send-mail-function): Doc fix. Add "Other" custom option.
173
174 2008-02-29 Andreas Seltenreich <andreas@gate450.dyndns.org>
175
176 * nnweb.el (nnweb-google-parse-1): Fix date parsing on articles with
177 empty author.
178
179 2008-02-29 Teodor Zlatanov <tzz@lifelogs.com>
180
181 * gnus-registry.el (gnus-registry-marks): Add variable for
182 customization of marks and their appearance.
183 (gnus-registry-read-mark): Use it.
184 (gnus-registry-do-marks): Add utility function to loop through
185 `gnus-registry-marks'.
186 (gnus-registry-install-shortcuts-and-menus): Add function to install
187 shortcuts and menus.
188 (gnus-registry-initialize): Use it.
189 (gnus-registry-default-mark): Clarify documentation.
190
191 2008-02-29 Glenn Morris <rgm@gnu.org>
192
193 * gnus-art.el, gnus-bookmark.el, gnus-dired.el, gnus-draft.el:
194 * gnus-group.el, gnus-msg.el, gnus-score.el, gnus-sum.el, gnus-util.el:
195 * gnus.el, mail-source.el, message.el, mm-decode.el, mm-uu.el, mml.el:
196 * nnmail.el, pop3.el, smiley.el, smime.el, spam-report.el:
197 Change defcustom :version from 23.0 to 23.1.
198
199 2008-02-28 Teodor Zlatanov <tzz@lifelogs.com>
200
201 * gnus-registry.el (gnus-registry-follow-group-p)
202 (gnus-registry-post-process-groups): Add functions to aid registry
203 splitting and improve logging. Clarify behavior in function
204 documentation.
205 (gnus-registry-split-fancy-with-parent): Use them.
206
207 2008-02-28 Stefan Monnier <monnier@iro.umontreal.ca>
208
209 * gnus-art.el: Use with-current-buffer.
210
211 2008-02-27 David Engster <dengste@eml.cc>
212
213 * nnmairix.el (nnmairix-request-group-with-article-number-correction):
214 Express real group name in the response.
215
216 2008-02-27 Katsumi Yamaoka <yamaoka@jpl.org>
217
218 * nnmairix.el (nnmairix-group-regexp, nnmairix-valid-backends)
219 (nnmairix-last-server, nnmairix-current-server): Defvar them.
220 (nnmairix-goto-original-article): Defvar gnus-registry-install and
221 autoload gnus-registry-fetch-group when compiling.
222 (nnmairix-request-group-with-article-number-correction): remove
223 unreferenced argument passed to nnmairix-call-backend.
224
225 2008-02-27 Reiner Steib <Reiner.Steib@gmx.de>
226
227 * mm-uu.el (mm-uu-type-alist): Fix message-marks non-hide arguments.
228 (mm-uu-extract): Improve face for low color ttys. Reported by Sascha
229 Wilde.
230
231 2008-02-27 Glenn Morris <rgm@gnu.org>
232
233 * nnmairix.el: Change defcustom :version from 23.0 to 23.1.
234 (nnmairix-group-regexp, nnmairix-valid-backends): Convert from free
235 variables to defconsts. Convert comments to doc-strings.
236 (nnmairix-last-server, nnmairix-current-server): Convert from free
237 variables to defvars. Convert comments to doc-strings.
238 (gnus-registry-fetch-group): Autoload.
239 (nnmairix-replace-group-and-numbers): Use mapc rather than mapcar.
240 (nnmairix-widget-get-values, nnmairix-widget-make-query-from-widgets)
241 (nnmairix-widget-build-editable-fields): Use car cddr rather than
242 caddr.
243 (nnmairix-request-group): Bind nnmairix-fast and nnmairix-group around
244 nnmairix-request-group-with-article-number-correction call.
245 (nnmairix-fast, nnmairix-group): New, less general names, for free
246 variables passed from nnmairix-request-group to
247 nnmairix-request-group-with-article-number-correction. Declare.
248 (nnmairix-request-group-with-article-number-correction):
249 Use nnmairix-fast, nnmairix-group rather than fast, group.
250
251 2008-02-26 David Engster <dengste@eml.cc>
252
253 * nnmairix.el: New file. Mairix back end for Gnus. Initial import of
254 version 0.5.
255
256 2008-02-26 Teodor Zlatanov <tzz@lifelogs.com>
257
258 * gnus-registry.el (gnus-registry-register-message-ids): Use `id'
259 instead of making an extra function call. Don't add the current group
260 to articles only when they have the group. Use
261 `gnus-registry-fetch-groups' instead of `gnus-registry-fetch-group'.
262 Reported by David <de_bb@arcor.de>.
263
264 2008-02-24 Miles Bader <miles@gnu.org>
265
266 * mm-util.el (mm-hack-charsets, mm-iso-8859-15-compatible)
267 (mm-iso-8859-x-to-15-table, mm-iso-8859-x-to-15-region)
268 (mm-find-mime-charset-region):
269 * mm-bodies.el (mm-encode-body):
270 * mml.el (mml-parse-1): Revert removal of `mm-hack-charsets'.
271
272 2008-02-16 Reiner Steib <Reiner.Steib@gmx.de>
273
274 * mail-source.el (mail-source-delete-incoming): Change default.
275 Supplement doc string.
276
277 * gnus-util.el (gnus-y-or-n-p, gnus-y-or-n-p): Update comments.
278
279 2008-02-14 Reiner Steib <Reiner.Steib@gmx.de>
280
281 * nnmail.el (nnmail-message-id-cache-file): Derive from
282 `gnus-home-directory'.
283
284 2008-02-11 Reiner Steib <Reiner.Steib@gmx.de>
285
286 * gnus-topic.el (gnus-topic-select-group, gnus-topic-read-group):
287 Document negative prefix.
288
289 * gnus-group.el (gnus-group-read-group): Document negative prefix.
290
291 2008-02-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
292
293 * message.el (message-unsent-separator): Add the Exim bounce
294 separator.
295
296 2008-02-10 Daiki Ueno <ueno@unixuser.org>
297
298 * mml2015.el (mml2015-epg-sign): Remove skipped signers from the signer
299 list.
300 (mml2015-epg-encrypt): Remove skipped recipients/signers from the
301 recipient/signer list.
302
303 2008-02-10 Reiner Steib <Reiner.Steib@gmx.de>
304
305 * mm-util.el (mm-codepage-setup): If cp-supported-codepages isn't
306 fbound (Emacs 23 unicode), signal an error.
307
308 2008-02-08 Glenn Morris <rgm@gnu.org>
309
310 * gnus-art.el (pgg-display-output-buffer): Declare as function.
311
312 2008-02-07 Tassilo Horn <tassilo@member.fsf.org>
313
314 * nnimap.el (nnimap-open-connection): Add "143" and "993" as default
315 ports to the calls to `netrc-machine-user-or-password' in addition to
316 "imap" and "imaps".
317
318 2008-02-03 Reiner Steib <Reiner.Steib@gmx.de>
319
320 * gnus.el (gnus-group-startup-message): Add `find-image' call before
321 image-load-path is let-bound. Reported by Harald Hanche-Olsen
322 <hanche@math.ntnu.no>.
323
324 2008-02-01 Katsumi Yamaoka <yamaoka@jpl.org>
325
326 * gnus-art.el (gnus-article-describe-bindings): Work for draft group.
327
328 2008-02-01 Zhang Wei <id.brep@gmail.com>
329
330 * rfc2047.el (rfc2047-charset-encoding-alist): Add gbk and GB18030.
331
332 * mm-util.el (mm-mime-mule-charset-alist): Add gbk and GB18030.
333
334 2008-02-01 Miles Bader <miles@gnu.org>
335
336 * mml.el (mml-parse-1): Remove apparently vestigial use of
337 `mm-hack-charsets'.
338 * mm-bodies.el (mm-encode-body): Likewise.
339
340 2008-02-01 Kenichi Handa <handa@m17n.org>
341
342 * rfc2104.el (rfc2104-hexstring-to-byte-list): Renamed from
343 rfc2104-hexstring-to-bitstring and changed to return a byte list.
344 (rfc2104-hash): Convert the result of concat to unibyte string.
345
346 2008-02-01 Dave Love <fx@gnu.org>
347
348 * gnus-start.el (gnus-read-newsrc-el-file): Don't bind
349 coding-system-for-read.
350 (gnus-gnus-to-quick-newsrc-format): Insert coding cookie.
351
352 * mm-util.el (mm-hack-charsets, mm-iso-8859-15-compatible)
353 (mm-iso-8859-x-to-15-table, mm-iso-8859-x-to-15-region): Deleted.
354 (mm-find-mime-charset-region): Remove hack-charsets stuff.
355
356 2008-01-24 Michael Sperber <sperber@deinprogramm.de>
357
358 * mail-source.el (mail-sources): Add `group' choice.
359
360 * nnmail.el (nnmail-get-new-mail-1): Abstract this out to add another
361 parameter `in-group' to control into which group the articles go.
362 Add treatment of `group' mail-source.
363
364 2008-01-24 Dan Nicolaescu <dann@ics.uci.edu>
365
366 * sieve.el (sieve-make-overlay, sieve-overlay-put, sieve-overlays-at):
367 * message.el (message-beginning-of-line): Use featurep instead of bound
368 tests in order to resolve conditionals at compile time.
369
370 2008-01-23 Katsumi Yamaoka <yamaoka@jpl.org>
371
372 * gnus-art.el (gnus-insert-mime-button): Don't decode description.
373
374 * mm-decode.el (mm-dissect-buffer): Decode description.
375
376 * mml.el (mml-to-mime): Encode message header first.
377
378 2008-01-18 Katsumi Yamaoka <yamaoka@jpl.org>
379
380 * gnus-art.el (gnus-article-describe-bindings): Make it possible to use
381 xrefs, i.e. [back] and [forward] buttons, in *Help* buffer.
382
383 2008-01-18 Teodor Zlatanov <tzz@lifelogs.com>
384
385 * gnus-registry.el (gnus-registry-trim): Use append, not concat.
386
387 2008-01-17 Katsumi Yamaoka <yamaoka@jpl.org>
388
389 * gnus-art.el (gnus-article-read-summary-keys): Work for some `A'
390 prefix keys.
391 (gnus-article-read-summary-send-keys): Use gnus-character-to-event.
392 (gnus-article-describe-bindings): Simplify; move XEmacs stuff to
393 gnus-xmas.el.
394
395 2008-01-16 Teodor Zlatanov <tzz@lifelogs.com>
396
397 * gnus-registry.el (gnus-registry-marks, gnus-registry-default-mark):
398 Add new variables for article mark management.
399 (gnus-registry-extra-entries-precious, gnus-registry-trim): Define a
400 list of extra data entries which, when present, will indicate that the
401 article ID should not be trimmed from the registry.
402 (gnus-registry-mark-article, gnus-registry-article-marks): Remove these
403 functions.
404 (gnus-registry-read-mark): New function to read a mark name from the
405 user.
406 (gnus-registry-set-article-mark, gnus-registry-remove-article-mark)
407 (gnus-registry-set-article-mark-internal): New functions to add and
408 remove marks.
409 (gnus-registry-get-article-marks): New function to show the marks for
410 an article, or retrieve them for further use.
411
412 2008-01-16 Katsumi Yamaoka <yamaoka@jpl.org>
413
414 * gnus-art.el (gnus-article-describe-bindings): Show all `S' prefix
415 keys when no argument is given.
416
417 2008-01-12 Reiner Steib <Reiner.Steib@gmx.de>
418
419 * gnus-sum.el (gnus-article-sort-by-random)
420 (gnus-thread-sort-by-random): Fix doc strings. Reported by
421 jidanni@jidanni.org.
422
423 2008-01-11 Katsumi Yamaoka <yamaoka@jpl.org>
424
425 * gnus-art.el (gnus-article-describe-bindings): New function.
426 (gnus-article-read-summary-keys): Use it.
427 (gnus-article-mode-map): Bind `C-h b' to it.
428
429 2008-01-10 Katsumi Yamaoka <yamaoka@jpl.org>
430
431 * gnus-art.el (gnus-article-read-summary-keys): Work for `C-h' on
432 XEmacs.
433 (gnus-article-describe-key, gnus-article-describe-key-briefly): Protect
434 against non-character events.
435
436 2008-01-09 Reiner Steib <Reiner.Steib@gmx.de>
437
438 * gnus-group.el (gnus-group-read-ephemeral-gmane-group-url): New
439 command.
440 (gnus-group-read-ephemeral-gmane-group): Use optional argument RANGE
441 instead of END. Change name of the temp file.
442 (gnus-group-gmane-group-download-format): Add doc string. Make it
443 customizable.
444
445 2008-01-09 Katsumi Yamaoka <yamaoka@jpl.org>
446
447 * gnus-art.el (gnus-article-send-map): New keymap for `S' prefix keys;
448 bind `S W' to gnus-article-wide-reply-with-original; set default
449 binding to gnus-article-read-summary-send-keys.
450 (gnus-article-read-summary-keys): Fix the order of keys; display
451 continuation keys correctly in the echo area; describe bindings
452 correctly when keys end with `C-h'.
453 (gnus-article-read-summary-send-keys): New function.
454 (gnus-article-describe-key, gnus-article-describe-key-briefly): Work
455 for gnus-article-read-summary-send-keys; display continuation keys
456 correctly in the echo area.
457 (gnus-article-reply-with-original): Ignore prefix argument.
458 (gnus-article-wide-reply-with-original): New function.
459
460 2008-01-08 Katsumi Yamaoka <yamaoka@jpl.org>
461
462 * gnus-bookmark.el (gnus-bookmark-mouse-available-p): Don't test for
463 display-color-p. Reported by Reiner Steib <Reiner.Steib@gmx.de>.
464
465 2008-01-06 Reiner Steib <Reiner.Steib@gmx.de>
466
467 * gnus-group.el (gnus-group-gmane-group-download-format): New variable.
468 (gnus-group-read-ephemeral-gmane-group): New command.
469
470 2008-01-06 Dan Nicolaescu <dann@ics.uci.edu>
471
472 * gnus.el (gnus-use-long-file-name): Remove reference to xenix.
473
474 2007-12-28 Reiner Steib <Reiner.Steib@gmx.de>
475
476 * message.el (message-send-mail-function): Increase custom version.
477
478 * mml-sec.el, sieve-manage.el, smime.el: Simplify loading of
479 password-cache or password. Suggested by Glenn Morris <rgm@gnu.org>.
480
481 2007-12-19 Katsumi Yamaoka <yamaoka@jpl.org>
482
483 * gnus-art.el (gnus-article-browse-html-parts): Work for two or more
484 html parts correctly; support forwarded messages.
485 (gnus-article-browse-html-article): Remove work buffers.
486
487 * netrc.el: Bind encrypt-file-alist for Emacs 21 and XEmacs when
488 compiling.
489 (netrc-bound-and-true-p): New macro.
490 (netrc-parse): Use it instead of bound-and-true-p that is not available
491 in XEmacs 21.4.
492
493 2007-12-19 Teodor Zlatanov <tzz@lifelogs.com>
494
495 * gnus-registry.el (gnus-registry-mark-article)
496 (gnus-registry-article-marks): Add functionality to mark articles
497 through the Gnus registry.
498
499 * netrc.el: Autoload encrypt when encrypt-file-alist is set.
500 (netrc-parse): Use encrypt-file-alist to determine if
501 encrypt-find-model or encrypt-insert-file-contents should be used.
502
503 2007-12-19 Glenn Morris <rgm@gnu.org>
504
505 * mml.el (message-options-set, message-narrow-to-head)
506 (message-in-body-p, message-mail-p, message-encode-message-body):
507 Autoload.
508 (message-remove-header, message-narrow-to-headers-or-head)
509 (message-subscribed-p, message-make-mail-followup-to)
510 (message-position-on-field, message-news-p)
511 (message-options-set-recipient, message-generate-headers)
512 (message-sort-headers): Declare as functions.
513
514 2007-12-18 Reiner Steib <Reiner.Steib@gmx.de>
515
516 * gnus-draft.el (gnus-draft-send-message): Mention process/prefix
517 convention in doc string.
518
519 2007-12-17 Katsumi Yamaoka <yamaoka@jpl.org>
520
521 * gnus-art.el (gnus-article-browse-html-parts): Add message header and
522 title to html parts.
523 (gnus-article-browse-html-article): Pass message header to it.
524
525 * mm-decode.el (mm-display-external): Use mm-add-meta-html-tag.
526
527 2007-12-16 Reiner Steib <Reiner.Steib@gmx.de>
528
529 * mml-sec.el, sieve-manage.el, smime.el: Make loading of password-cache
530 or password compatible with XEmacs.
531
532 2007-12-15 Reiner Steib <Reiner.Steib@gmx.de>
533
534 * gnus-art.el (article-verify-x-pgp-sig): Add reference to X-PGP-Sig
535 format document.
536 (gnus-mime-delete-part): Don't write description line if empty.
537 (gnus-article-encrypt-body): Add confirmation for gnus-novice-user.
538
539 2007-12-14 Johan Bockgård <bojohan@gnu.org>
540
541 * gnus-sum.el (gnus-summary-mark-unread-as-read)
542 (gnus-summary-mark-read-and-unread-as-read)
543 (gnus-summary-mark-current-read-and-unread-as-read)
544 (gnus-summary-mark-unread-as-ticked): Doc fix.
545 `gnus-mark-article-hook', not `gnus-summary-mark-article-hook'.
546
547 2007-12-14 Reiner Steib <Reiner.Steib@gmx.de>
548
549 * gnus-sum.el (gnus-summary-prev-article): Fix doc string. Reported by
550 Christoph Conrad <christoph.conrad@gmx.de>.
551
552 2007-12-14 Reiner Steib <Reiner.Steib@gmx.de>
553
554 * gnus-util.el (gnus-y-or-n-p, gnus-yes-or-no-p): Alias to y-or-n-p and
555 yes-or-no-p.
556
557 2007-12-11 Katsumi Yamaoka <yamaoka@jpl.org>
558
559 * mm-decode.el (mm-add-meta-html-tag): New function.
560 (mm-save-part-to-file, mm-pipe-part): Use it.
561
562 * gnus-art.el (gnus-article-browse-delete-temp-files): Use
563 gnus-y-or-n-p instead of y-or-n-p.
564 (gnus-article-browse-html-parts): Work with message/external-body; use
565 mm-add-meta-html-tag.
566
567 2007-12-11 Glenn Morris <rgm@gnu.org>
568
569 * gnus-cache.el: Require gnus-sum not just when compiling.
570
571 * gnus-fun.el (gnus-display-x-face-in-from): Require gnus-art.
572
573 * gnus-int.el (gnus-server-opened, gnus-status-message): Move
574 definitions before use.
575
576 * mm-decode.el: Require gnus-util.
577 (mm-remove-part): Only call delete-annotation on XEmacs.
578
579 * mm-uu.el (gnus-original-article-buffer): Define for compiler.
580
581 * nnmail.el: Require gnus-int.
582
583 * spam.el: Move `require's before `eval-when-compile's.
584
585 * gnus-ems.el (gnus-alive-p):
586 * gnus-fun.el (message-goto-eoh):
587 * gnus-util.el (gnus-group-name-decode):
588 * mail-source.el (gnus-compress-sequence):
589 * message.el (Info-goto-node, format-spec):
590 * mm-bodies.el (message-options-get):
591 * mm-decode.el (mm-view-pkcs7):
592 * mm-util.el (gmm-write-region):
593 * mml-smime.el (mml-compute-boundary)
594 (gnus-completing-read-with-default):
595 * mml.el (widget-button-press, gnus-make-hashtable):
596 * mml1991.el (mm-decode-content-transfer-encoding)
597 (mm-encode-content-transfer-encoding)
598 (message-options-get, message-options-set):
599 * mml2015.el (gnus-buffer-live-p, gnus-get-buffer-create):
600 * nnfolder.el (gnus-request-group):
601 * nnheader.el (ietf-drums-unfold-fws):
602 * rfc1843.el (mail-header-parse-content-type, message-narrow-to-head):
603 * smime.el (gnus-run-mode-hooks):
604 * spam-stat.el (gnus-message): Autoload.
605
606 * gnus-cache.el, gnus-fun.el, gnus-group.el, gnus.el, mail-source.el:
607 * mm-bodies.el, mm-decode.el, mm-extern.el, mm-util.el:
608 * mml-smime.el, mml.el, mml1991.el, mml2015.el, nndb.el, nnfolder.el:
609 * nnmail.el, nnmaildir.el, nnrss.el, rfc1843.el, spam.el:
610 Add declare-function compatibility definition.
611
612 * gnus-cache.el (nnvirtual-find-group-art):
613 * gnus-fun.el (article-narrow-to-head, gnus-article-goto-header)
614 (gnus-add-image, gnus-add-wash-type):
615 * gnus-group.el (nnkiboze-score-file):
616 * gnus-sum.el (turn-on-gnus-mailing-list-mode)
617 (gnus-cache-write-active, mm-uu-dissect, idna-to-unicode):
618 * gnus-util.el (gnus-find-method-for-group, gnus-group-name-charset)
619 (message-tokenize-header, gnus-get-buffer-create)
620 (mm-enable-multibyte, gnus-put-text-property, gnus-overlay-put)
621 (gnus-make-overlay, mm-disable-multibyte, gnus-add-text-properties):
622 * gnus.el (gnus-group-decoded-name):
623 * mail-source.el (imap-capability):
624 * mm-bodies.el (message-options-set):
625 * mm-decode.el (gnus-configure-windows):
626 * mm-extern.el (message-goto-body):
627 * mm-util.el (mm-delete-duplicates, mm-detect-coding-region):
628 * mml-smime.el (epg-key-sub-key-list, epg-sub-key-capability)
629 (epg-sub-key-validity, message-options-set):
630 * mml.el (widget-event-point, gnus-configure-windows):
631 * mml1991.el (mc-encrypt-generic, gpg-sign-encrypt, gpg-encrypt):
632 * mml2015.el (epg-check-configuration, epg-configuration)
633 (message-options-set):
634 * nndb.el (nndb-request-article):
635 * nnfolder.el (gnus-request-create-group):
636 * nnmail.el (gnus-activate-group, gnus-group-mark-article-read):
637 * nnmaildir.el (gnus-group-mark-article-read):
638 * nnrss.el (w3-parse-buffer, gnus-group-make-rss-group):
639 * rfc1843.el (message-fetch-field):
640 * spam.el (gnus-extract-address-components):
641 Declare as functions.
642
643 2007-12-10 Katsumi Yamaoka <yamaoka@jpl.org>
644
645 * gnus-art.el (gnus-article-browse-html-parts): Decode CTE.
646
647 2007-12-09 Glenn Morris <rgm@gnu.org>
648
649 * gnus-uu.el (gnus-uu-yenc-article): Use insert-buffer-substring.
650
651 * gnus-art.el, gnus-spec.el, gnus-sum.el, gnus-util.el:
652 * message.el, mm-view.el, sieve-manage, smime.el:
653 Add declare-function compatibility definition.
654
655 * gnus-art.el (w3-region, w3m-region, Info-menu):
656 * gnus-spec.el (gnus-summary-from-or-to-or-newsgroups):
657 * gnus-sum.el (gnus-get-predicate):
658 * gnus-util.el (mm-append-to-file, w32-focus-frame):
659 * message.el (mail-abbrev-in-expansion-header-p):
660 * mm-view.el (w3-do-setup, w3-region, w3-prepare-buffer)
661 (w3m-detect-meta-charset, w3m-region):
662 * sieve-manage.el (password-read, password-cache-add)
663 (password-cache-remove):
664 * smime.el (password-read-and-add): Declare as functions.
665
666 2007-12-08 David Kastrup <dak@gnu.org>
667
668 * gnus-sum.el (gnus-summary-simplify-subject-query):
669 * ecomplete.el (ecomplete-display-matches): Fix buggy call to
670 `message'.
671
672 2007-12-07 Glenn Morris <rgm@gnu.org>
673
674 * gnus-art.el (article-make-date-line): Revert previous change.
675
676 2007-12-06 Reiner Steib <Reiner.Steib@gmx.de>
677
678 * gnus-start.el (gnus-load): Rename local variable to avoid confusion.
679
680 2007-12-06 Christian Plate <cplate@web.de> (tiny change)
681
682 * nnmaildir.el (nnmaildir-request-update-info): Improved performance.
683 Call gnus-add-to-range ranges only once with a prepared article-list.
684
685 2007-12-06 Paul Jarc <prj@po.cwru.edu>
686
687 * nnmaildir.el (nnmaildir-request-list, nnmaildir-retrieve-groups,
688 nnmaildir-request-group, nnmaildir-retrieve-headers): Escape spaces in
689 group names with backslashes. Reported by Tassilo Horn
690 <tassilo@member.fsf.org>.
691
692 2007-12-06 D. Goel <deego3@gmail.com>
693
694 * gnus-art.el (article-make-date-line):
695 * gnus-start.el (gnus-load):
696 * pop3.el (pop3-read-response): Fix buggy call to `error'.
697
698 2007-12-05 Katsumi Yamaoka <yamaoka@jpl.org>
699
700 * gnus-art.el (gnus-use-idna)
701 * gnus-start.el (gnus-site-init-file)
702 * message.el (message-use-idna)
703 * mm-uu.el (mm-uu-hide-markers)
704 * smiley.el (smiley-style): Revert changes that suppress warnings.
705
706 2007-12-05 Katsumi Yamaoka <yamaoka@jpl.org>
707
708 * gnus-art.el (gnus-article-browse-html-parts): Add meta html tag to
709 specify charset to html source. Reported by Christoph Conrad
710 <christoph.conrad@gmx.de>.
711
712 2007-12-05 Katsumi Yamaoka <yamaoka@jpl.org>
713
714 * gnus-art.el (gnus-use-idna): Don't directly refer to the value of
715 idna-program in order to suppress byte compile warning issued by XEmacs
716 that came to byte compile the default value section of defcustom forms
717 recently.
718
719 * gnus-start.el (gnus-site-init-file): Don't directly refer to the
720 value of installation-directory.
721
722 * message.el (message-use-idna): Don't directly refer to the value of
723 idna-program.
724
725 * mm-uu.el (mm-uu-hide-markers): Don't directly call defined-colors.
726
727 * smiley.el (smiley-style): Don't directly call face-attribute.
728
729 2007-12-04 Reiner Steib <Reiner.Steib@gmx.de>
730
731 * gnus-group.el (gnus-group-highlight-line): Add FIXME.
732
733 * gnus-dired.el: Reduce Gnus dependencies.
734 (gnus-ems, gnus-msg, gnus-util, message, mm-decode, mml): Don't
735 require. Use autoloads instead.
736 (mml-attach-file, mm-default-file-encoding, mailcap-extension-to-mime)
737 (mailcap-mime-info, mm-mailcap-command, ps-print-preprint)
738 (message-buffers, gnus-setup-message, gnus-print-buffer): Autoload.
739 (gnus-dired-mode): Adjust doc string.
740 (gnus-dired-mail-mode): New variable.
741 (gnus-dired-mode-map): Avoid using `gnus-define-keys'.
742 (gnus-dired-mode): Avoid using `gnus-run-hooks'.
743 (gnus-dired-mail-buffers): New function. Return mail or message
744 composition buffers.
745 (gnus-dired-attach): Use it.
746 (gnus-dired-find-file-mailcap): Call `mailcap-mime-info' with
747 NO-DECODE.
748 (gnus-dired-print): Use `gnus-print-buffer' depending on
749 `gnus-dired-mail-mode'.
750
751 2007-12-04 Katsumi Yamaoka <yamaoka@jpl.org>
752
753 * rfc2047.el (rfc2047-encoded-word-regexp)
754 (rfc2047-encoded-word-regexp-loose): Move forward; add comments
755 explaining what regexp patterns are for.
756
757 2007-12-04 Glenn Morris <rgm@gnu.org>
758
759 * password.el: Move to ../password-cache.el.
760
761 * mml1991.el (password-read, password-cache-add, password-cache-remove):
762 * mml2015.el (password-read, password-cache-add, password-cache-remove):
763 * mml-smime.el (password-read, password-cache-add)
764 (password-cache-remove):
765 No need to autoload, since mml-sec requires password.
766
767 * gnus.el (gnus-spam-resend-to, gnus-ham-resend-to):
768 * message.el (gnus-extract-address-components):
769 * mml-smime.el (gnus-extract-address-components): Define for compiler.
770
771 * mml-sec.el, sieve-manage.el, smime.el: Require password-cache or
772 password.
773
774 2007-12-03 Reiner Steib <Reiner.Steib@gmx.de>
775
776 * mailcap.el: Reduce dependencies.
777 (mail-header-parse-content-type): Autoload.
778 (mailcap-delete-duplicates): New alias.
779 (mailcap-mime-info): Add optional argument NO-DECODE.
780 (mailcap-mime-types): Use mailcap-delete-duplicates.
781
782 * message.el (message-ignored-supersedes-headers): Add "X-ID".
783
784 2007-12-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
785
786 * gnus-sum.el (gnus-uu-extract-map): Add a command for the yenc
787 function.
788
789 * gnus-uu.el (gnus-uu-decode-yenc): New command.
790 (gnus-uu-yenc-article): New function.
791
792 * yenc.el (yenc-first-part-p, yenc-last-part-p): New functions.
793
794 * mm-uu.el (mm-uu-yenc-extract): Get the data from the original
795 buffer.
796
797 2007-12-02 Glenn Morris <rgm@gnu.org>
798
799 * sasl-cram.el, sasl-digest.el, sasl-ntlm.el, sasl.el:
800 Move to ../net.
801
802 * binhex.el, uudecode.el: Move to ../mail.
803
804 * encrypt.el: Remove file.
805
806 2007-12-01 Reiner Steib <Reiner.Steib@gmx.de>
807
808 * message.el (message-cite-prefix-regexp): Remove `-' and `+' to avoid
809 matches on patches.
810
811 * gnus-art.el (gnus-article-browse-html-article): Mention
812 `mm-text-html-renderer' in the doc string.
813
814 * rfc2047.el (rfc2047-encode-max-chars): Refer to RFC 2047 in doc
815 string. Add comments.
816
817 * message.el (message-idna-to-ascii-rhs-1): Don't call `idna-to-ascii'
818 if rhs is ASCII.
819
820 2007-12-01 Glenn Morris <rgm@gnu.org>
821
822 * dig.el, dns.el: Move to ../net.
823 * format-spec.el, hex-util.el, sha1.el: Move to ../.
824
825 * mail-source.el (top-level): Require format-spec before
826 eval-when-compile.
827
828 2007-11-30 Glenn Morris <rgm@gnu.org>
829
830 * encrypt.el: Require password, rather than autoloading password-read.
831
832 2007-11-28 Elias Oltmanns <eo@nebensachen.de>
833
834 * gnus.el (gnus-method-to-server): Add an optional parameter so the
835 caller can indicate whether the cache should be disregarded for this
836 call. This way the result of the call is reproducible at all times and
837 can be considered a canonical server name for the supplied method.
838 (gnus-agent-method-p): Canonicalize server names by pushing their
839 method through `gnus-method-to-server' using the no-cache argument.
840
841 * gnus-srvr.el (gnus-server-insert-server-line): Call
842 `gnus-method-to-server' with `no-cache' argument.
843
844 * gnus-agent.el (gnus-agent-toggle-plugged): Don't call
845 gnus-agent-possibly-synchronize-flags as this should be called when the
846 server is actually being opened.
847 (gnus-agent-possibly-synchronize-flags)
848 (gnus-agent-possibly-synchronize-flags-server): Move check for the
849 flags file of an agentized server to the latter function.
850
851 * gnus-int.el (gnus-agent-possibly-synchronize-flags-server): Autoload.
852 (gnus-open-server): Call gnus-agent-possibly-synchronize-flags-server
853 after a connection has been established successfully.
854
855 2007-11-28 Katsumi Yamaoka <yamaoka@jpl.org>
856
857 * gnus-art.el (article-display-face): Force to display face if called
858 interactively; check if gnus-article-x-face-too-ugly matches author.
859 (article-display-x-face): Display face even if From header is missing
860 as article-display-face does.
861
862 2007-11-28 Richard Stallman <rms@gnu.org>
863
864 * md4.el: Move to ../.
865 * hmac-def.el, hmac-md5.el, ntlm.el: Move to ../net.
866
867 2007-11-27 Reiner Steib <Reiner.Steib@gmx.de>
868
869 * mail-source.el (mail-sources): Default to fetch from file for
870 compatibility with default of nnmail-spool-file.
871
872 2007-11-27 Katsumi Yamaoka <yamaoka@jpl.org>
873
874 * rfc2047.el (rfc2047-allow-irregular-q-encoded-words): New variable.
875 (rfc2047-encodable-p): Use rfc2047-encoded-word-regexp instead of "=?"
876 to look for encoded word that should be encoded again.
877 (rfc2047-encoded-word-regexp): Make B encoding pattern strict.
878 (rfc2047-encoded-word-regexp-loose): New constant that has loose Q
879 encoding pattern.
880 (rfc2047-decode-region): Switch strict regexp and loose one according
881 to rfc2047-allow-irregular-q-encoded-words.
882
883 2007-11-26 Simon Josefsson <simon@josefsson.org>
884
885 * imap.el: Move to ../net directory.
886
887 2007-11-25 Romain Francoise <romain@orebokech.com>
888
889 * gnus-msg.el (gnus-summary-reply): Delete extra paren.
890
891 2007-11-24 Reiner Steib <Reiner.Steib@gmx.de>
892
893 * nnmail.el (nnmail-spool-file): Remove obsolete variable.
894 (nnmail-get-new-mail): Remove code using `nnmail-spool-file'.
895
896 * gnus-start.el (defvar, gnus-get-unread-articles): Remove code using
897 `nnmail-spool-file'.
898
899 * nnkiboze.el (nnkiboze-generate-groups): Don't bind obsolete
900 `nnmail-spool-file'.
901
902 * gnus-move.el (gnus-change-server): Ditto.
903
904 * gnus-kill.el (gnus-batch-score): Ditto.
905
906 * gnus-cache.el (gnus-jog-cache): Ditto.
907
908 * gnus-msg.el (gnus-summary-reply):
909 Ignore gnus-confirm-mail-reply-to-news for wide and very wide replies.
910
911 2007-11-24 Reiner Steib <Reiner.Steib@gmx.de>
912
913 * gnus-cache.el (gnus-cache-generate-nov-databases):
914 Use nnml-generate-nov-databases-directory instead of
915 nnml-generate-nov-databases-1.
916
917 2007-11-24 Glenn Morris <rgm@gnu.org>
918
919 * message.el (message-tool-bar-retro): Update for rename
920 mail_send.xpm->mail-send.xpm.
921
922 2007-11-22 Reiner Steib <Reiner.Steib@gmx.de>
923
924 * smime.el (smime-cert-by-ldap-1): Use `ldap-search' instead of
925 `smime-ldap-search' for Emacs 22 and up.
926
927 2007-11-22 Reiner Steib <Reiner.Steib@gmx.de>
928
929 * hashcash.el: Move to ../mail directory.
930
931 * smime-ldap.el: Remove. Not used in Emacs 22 and up.
932
933 * smime.el (smime-cert-by-ldap-1): Use `ldap-search' instead of
934 `smime-ldap-search' for Emacs 22 and up.
935
936 2007-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
937
938 * gnus-art.el (gnus-article-truncate-lines): Use `truncate-lines'.
939
940 * message.el (message-send-mail-function): Fix error convention.
941 (message-mailer-swallows-blank-line, message-send-mail-with-sendmail)
942 (message-widen-reply, message-send-mail, message-talkative-question)
943 (message-with-reply-buffer, message-generate-new-buffer-clone-locals)
944 (message-clone-locals, message-send-news): Use with-current-buffer.
945 (message-insert-or-toggle-importance): Remove unused var `valid'.
946 (message-make-references): Remove unused var `new-references'.
947 (message-make-mail-followup-to): Remove unused var `subscribed-lists'.
948
949 2007-11-22 Juanma Barranquero <lekktu@gmail.com>
950
951 * spam.el (spam-find-spam, spam-enter-list): Doc fixes.
952 (spam-split-symbolic-return-positive): Reflow docstring.
953 (spam-backends, spam-summary-exit-behavior)
954 (spam-mark-ham-unread-before-move-from-spam-group)
955 (spam-summary-score-preferred-header, spam-sa-learn-spam-switch)
956 (spam-sa-learn-ham-switch, spam-sa-learn-unregister-switch)
957 (spam-clear-cache, spam-backend-check, spam-install-backend)
958 (spam-install-statistical-backend, spam-list-of-processors)
959 (spam-group-processor-p, spam-split, spam-bogofilter-score)
960 (spam-bsfilter-score, spam-check-bsfilter, spam-crm114-score)
961 (spam-check-crm114, spam-initialize, spam-unload-hook):
962 Fix typos in docstrings.
963
964 2007-11-21 Katsumi Yamaoka <yamaoka@jpl.org>
965
966 * gnus-start.el (gnus-get-unread-articles): Mark groups as having never
967 been checked if they have never been read and those group levels are
968 higher than the one that a user specified.
969
970 2007-11-21 Katsumi Yamaoka <yamaoka@jpl.org>
971
972 * gnus-start.el (gnus-get-unread-articles): Don't prevent from checking
973 foreign groups unless a group level is specified by a user.
974 Reported by Dan Nicolaescu <dann@ics.uci.edu>.
975
976 2007-11-21 Reiner Steib <Reiner.Steib@gmx.de>
977
978 * message.el (message-send-mail-function): Require sendmail.
979
980 2007-11-20 Reiner Steib <Reiner.Steib@gmx.de>
981
982 * message.el (message-send-mail-function): Check for smtpmail too.
983
984 * utf7.el (utf7-encode, utf7-decode): Use coding system
985 `utf-7'/`utf-7-imap' from utf-7.el' if available.
986
987 * message.el (message-send-mail-function): New function.
988 (message-send-mail-function): Set default using
989 message-send-mail-function. Adjust doc string.
990 (message-send-mail-with-mailclient): New function.
991
992 2007-11-17 Richard Stallman <rms@gnu.org>
993
994 * assistant.el: Remove file.
995
996 2007-11-16 Dan Nicolaescu <dann@ics.uci.edu>
997
998 * smime.el (from):
999 * rfc2047.el (message-posting-charset):
1000 * qp.el (mm-use-ultra-safe-encoding):
1001 * pop3.el (parse-time-months):
1002 * nnrss.el (mm-text-html-renderer, mm-text-html-washer-alist):
1003 * nnml.el (files):
1004 * nnheader.el (gnus-newsgroup-name, nnheader-file-coding-system)
1005 (jka-compr-compression-info-list, ange-ftp-path-format)
1006 (efs-path-regexp):
1007 * nndiary.el (files):
1008 * mml2015.el (mc-default-scheme, mc-schemes, pgg-default-user-id)
1009 (pgg-errors-buffer, pgg-output-buffer, epg-user-id-alist)
1010 (epg-digest-algorithm-alist, inhibit-redisplay)
1011 (password-cache-expiry):
1012 * mml1991.el (pgg-default-user-id, pgg-errors-buffer)
1013 (pgg-output-buffer, password-cache-expiry):
1014 * mml.el (mml-dnd-protocol-alist, ange-ftp-name-format)
1015 (efs-path-regexp):
1016 * mml-smime.el (epg-user-id-alist, epg-digest-algorithm-alist)
1017 (inhibit-redisplay):
1018 * mm-uu.el (file-name, start-point, end-point, entry)
1019 (gnus-newsgroup-name, gnus-newsgroup-charset):
1020 * mm-util.el (mm-mime-mule-charset-alist, latin-unity-coding-systems)
1021 (latin-unity-ucs-list):
1022 * mm-bodies.el (mm-uu-yenc-decode-function, mm-uu-decode-function)
1023 (mm-uu-binhex-decode-function):
1024 * message.el (gnus-message-group-art, gnus-list-identifiers, )
1025 (rmail-enable-mime-composing, gnus-local-organization)
1026 (gnus-post-method, gnus-select-method, gnus-active-hashtb)
1027 (gnus-read-active-file, facemenu-add-face-function)
1028 (facemenu-remove-face-function, gnus-article-decoded-p)
1029 (tool-bar-mode):
1030 * mail-source.el (display-time-mail-function):
1031 * gnus-util.el (nnmail-pathname-coding-system)
1032 (nnmail-active-file-coding-system, gnus-emphasize-whitespace-regexp)
1033 (gnus-original-article-buffer, gnus-user-agent)
1034 (rmail-default-rmail-file, mm-text-coding-system, tool-bar-mode)
1035 (xemacs-codename, sxemacs-codename, emacs-program-version):
1036 * gnus-sum.el (tool-bar-mode, gnus-tmp-header, number):
1037 * gnus-start.el (gnus-agent-covered-methods)
1038 (gnus-agent-file-loading-local, gnus-agent-file-loading-cache)
1039 (gnus-current-headers, gnus-thread-indent-array, gnus-newsgroup-name)
1040 (gnus-newsgroup-headers, gnus-group-list-mode)
1041 (gnus-group-mark-positions, gnus-newsgroup-data)
1042 (gnus-newsgroup-unreads, nnoo-state-alist)
1043 (gnus-current-select-method, mail-sources)
1044 (nnmail-scan-directory-mail-source-once, nnmail-split-history)
1045 (nnmail-spool-file, gnus-cache-active-hashtb):
1046 * gnus-mh.el (mh-lib-progs):
1047 * gnus-ems.el (gnus-tmp-unread, gnus-tmp-replied)
1048 (gnus-tmp-score-char, gnus-tmp-indentation, gnus-tmp-opening-bracket)
1049 (gnus-tmp-lines, gnus-tmp-name, gnus-tmp-closing-bracket)
1050 (gnus-tmp-subject-or-nil, gnus-check-before-posting, gnus-mouse-face)
1051 (gnus-group-buffer):
1052 * gnus-cite.el (font-lock-defaults-computed, font-lock-keywords)
1053 (font-lock-set-defaults):
1054 * gnus-art.el (tool-bar-map, w3m-minor-mode-map)
1055 (gnus-face-properties-alist, charset, gnus-summary-article-menu)
1056 (gnus-summary-post-menu, total-parts, type, condition, length):
1057 * gnus-agent.el (gnus-agent-read-agentview):
1058 * flow-fill.el (show-trailing-whitespace):
1059 * gnus-group.el (tool-bar-mode, nnrss-group-alist): Remove unnecessary
1060 eval-and-compile wrappers for byte compiler pacifiers.
1061
1062 * mm-view.el (mm-inline-image-xemacs): Only do something for XEmacs.
1063 (mm-display-inline-fontify): Check for featurep 'xemacs not
1064 extent-list.
1065
1066 * mm-decode.el (mm-display-external): Check for featurep 'xemacs not
1067 itimer-list.
1068 (mm-create-image-xemacs): Only do something for XEmacs.
1069 (mm-image-fit-p): Check for featurep 'xemacs not glyph-width.
1070
1071 * mm-util.el (mm-find-buffer-file-coding-system): Add check for XEmacs.
1072
1073 * gnus-registry.el (gnus-adaptive-word-syntax-table):
1074 * gnus-fun.el (gnus-face-properties-alist): Pacify byte compiler.
1075
1076 2007-11-15 Juanma Barranquero <lekktu@gmail.com>
1077
1078 * nnimap.el (nnimap-split-download-body):
1079 * gnus-demon.el (gnus-demon):
1080 * gnus-uu.el (gnus-uu-default-view-rules): Fix typos in docstrings.
1081
1082 2007-11-15 Katsumi Yamaoka <yamaoka@jpl.org>
1083
1084 * nntp.el (nntp-insert-buffer-substring, nntp-copy-to-buffer): New
1085 macros.
1086 (nntp-wait-for, nntp-retrieve-articles, nntp-async-trigger)
1087 (nntp-retrieve-headers-with-xover): Use nntp-insert-buffer-substring to
1088 copy data from unibyte buffer to multibyte current buffer.
1089 (nntp-retrieve-headers, nntp-retrieve-groups); Use nntp-copy-to-buffer
1090 to copy data from unibyte current buffer to multibyte buffer.
1091 (nntp-make-process-buffer): Make process buffer unibyte.
1092
1093 * pop3.el (pop3-open-server): Fix typo in Lisp code.
1094
1095 2007-11-14 Denys Duchier <denys.duchier@univ-orleans.fr> (tiny change)
1096
1097 * pop3.el (pop3-open-server): Accept and process data more robustly at
1098 connexion start to avoid spurious "POP SSL connexion failed" errors.
1099
1100 2007-11-14 Katsumi Yamaoka <yamaoka@jpl.org>
1101
1102 * gnus-start.el (gnus-active-to-gnus-format): Use unibyte buffer to
1103 read group names.
1104
1105 2007-11-12 Reiner Steib <Reiner.Steib@gmx.de>
1106
1107 * gnus-msg.el (gnus-confirm-mail-reply-to-news): Adjust :version.
1108
1109 2007-11-12 Katsumi Yamaoka <yamaoka@jpl.org>
1110
1111 * nnmail.el (nnmail-parse-active): Make group names unibyte.
1112 (nnmail-save-active): Use a unibyte buffer when saving active file,
1113 which may contain non-ASCII group names.
1114
1115 * nnml.el (nnml-request-group): Decode group names in messages.
1116
1117 2007-11-05 Reiner Steib <Reiner.Steib@gmx.de>
1118
1119 * message.el (message-citation-line-function)
1120 (message-insert-formatted-citation-line): Fix spelling of
1121 `message-insert-formated-citation-line'.
1122
1123 2007-11-03 Reiner Steib <Reiner.Steib@gmx.de>
1124
1125 * gnus-sum.el (gnus-summary-highlight): Mark as risky local variable.
1126
1127 2007-11-02 Katsumi Yamaoka <yamaoka@jpl.org>
1128
1129 * nnml.el (nnml-request-rename-group): Bind file-name-coding-system to
1130 nnmail-pathname-coding-system.
1131
1132 * gnus-group.el (gnus-group-rename-group): Encode non-ASCII group name
1133 that a user enters; decode group names in messages.
1134
1135 * gnus-msg.el (gnus-inews-do-gcc): Encode non-ASCII group names.
1136
1137 2007-11-01 Reiner Steib <Reiner.Steib@gmx.de>
1138
1139 * mm-util.el (mm-charset-eval-alist): Mark as risky local variable.
1140
1141 * gnus.el (gnus-group-charter-alist): Mark as risky local variable.
1142
1143 * gnus-art.el (gnus-button-alist, gnus-header-button-alist): Mark as
1144 risky local variable.
1145
1146 * gnus-group.el (gnus-group-icon-list): Mark as risky local variable.
1147
1148 2007-11-01 Teodor Zlatanov <tzz@lifelogs.com>
1149
1150 * encrypt.el: Improve documentation to fix function name typo.
1151 Reported by Daiki Ueno <ueno@unixuser.org>.
1152
1153 2007-11-01 Katsumi Yamaoka <yamaoka@jpl.org>
1154
1155 * gnus-art.el (gnus-article-next-page): Honor gnus-article-over-scroll
1156 even if the point is not in the last page of an article.
1157 (gnus-article-prev-page): Honor gnus-article-over-scroll when moving
1158 back to the previous page.
1159
1160 2007-10-30 Reiner Steib <Reiner.Steib@gmx.de>
1161
1162 * qp.el (quoted-printable-decode-string): Fix typo in doc string.
1163
1164 2007-10-30 Katsumi Yamaoka <yamaoka@jpl.org>
1165
1166 * gnus-ems.el (gnus-x-splash): Work even if there's no scroll bar.
1167
1168 2007-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
1169
1170 * message.el (message-check-news-body-syntax): Avoid
1171 mm-string-as-multibyte.
1172 (message-hide-headers): Don't assume (point-min)==1.
1173
1174 2007-10-28 Reiner Steib <Reiner.Steib@gmx.de>
1175
1176 * message.el (message-remove-blank-cited-lines): Fix if remove is
1177 given.
1178 (message-bogus-address-regexp): New variable.
1179 (message-bogus-recipient-p): New function.
1180 (message-check-recipients): New command.
1181 (message-syntax-checks): Add `bogus-recipient'.
1182 (message-fix-before-sending): Add `bogus-recipient'.
1183
1184 * gnus-art.el (gnus-button-mid-or-mail-heuristic-alist): Add "alpine".
1185 (gnus-treat-emphasize, gnus-treat-body-boundary): Don't test
1186 window-system.
1187
1188 2007-10-28 Reiner Steib <Reiner.Steib@gmx.de>
1189
1190 * gnus.el: Bump version to Gnus v5.13.
1191
1192 2007-10-28 Miles Bader <miles@gnu.org>
1193
1194 * nnheader.el (nnheader-uniquify-message-id): Make sure this is defined
1195 at compile-time too.
1196
1197 2007-10-27 Reiner Steib <Reiner.Steib@gmx.de>
1198
1199 * gnus-msg.el (gnus-message-setup-hook): Add
1200 `message-remove-blank-cited-lines' to options.
1201
1202 2007-10-26 Reiner Steib <Reiner.Steib@gmx.de>
1203
1204 * message.el (message-remove-blank-cited-lines): New function.
1205 Suggested by Karl Plästerer.
1206
1207 2007-10-25 Katsumi Yamaoka <yamaoka@jpl.org>
1208
1209 * hashcash.el (mail-add-payment): Replace mapcar called for effect with
1210 mapc.
1211
1212 * imap.el (imap-open): Replace mapcar called for effect with mapc.
1213 (top-level): Use mapc to set functions to be traced for debugging.
1214
1215 * legacy-gnus-agent.el (gnus-agent-convert-agentview): Replace mapcar
1216 called for effect with while loop.
1217
1218 * message.el (message-talkative-question): Replace mapcar called for
1219 effect with mapc.
1220
1221 * mm-util.el: Use mapc instead of mapcar to make compatible functions.
1222 (mm-find-mime-charset-region, mm-find-charset-region): Replace mapcar
1223 called for effect with dolist.
1224
1225 * mml.el (mml-insert-mime): Replace mapcar called for effect with mapc.
1226
1227 * nndiary.el: Use dolist instead of mapcar to add diary headers to
1228 gnus-extra-headers and nnmail-extra-headers.
1229
1230 * nnimap.el (nnimap-request-update-info-internal): Replace mapcar
1231 called for effect with dolist.
1232 (top-level): Use mapc to set functions to be traced for debugging.
1233
1234 * nnmail.el (nnmail-read-incoming-hook): Doc fix.
1235 (nnmail-split-fancy-with-parent): Replace mapcar called for effect with
1236 dolist.
1237
1238 * nnmaildir.el (nnmaildir--delete-dir-files, nnmaildir-request-close):
1239 Replace mapcar called for effect with mapc.
1240 (nnmaildir--scan, nnmaildir-request-scan, nnmaildir-retrieve-groups)
1241 (nnmaildir-request-update-info, nnmaildir-request-delete-group)
1242 (nnmaildir-retrieve-headers, nnmaildir-request-set-mark)
1243 (nnmaildir-close-group): Replace mapcar called for effect with dolist.
1244
1245 * nnrss.el (nnrss-make-hash-index): Use gnus-remove-if instead of
1246 remove-if that's a cl function.
1247
1248 * webmail.el (webmail-debug): Replace mapcar called for effect with
1249 dolist.
1250
1251 2007-10-24 Katsumi Yamaoka <yamaoka@jpl.org>
1252
1253 * gnus-agent.el (gnus-agent-read-agentview, gnus-agent-save-alist)
1254 (gnus-agent-expire-unagentized-dirs): Replace mapcar called for effect
1255 with while loop.
1256
1257 * gnus-art.el: Use mapc instead of mapcar to make gnus-article-*
1258 functions from article-* functions.
1259 (gnus-multi-decode-header): Replace mapcar called for effect with
1260 dolist.
1261
1262 * gnus-bookmark.el (gnus-bookmark-bmenu-list)
1263 (gnus-bookmark-show-details): Replace mapcar called for effect with
1264 while loop.
1265
1266 * gnus-diary.el (gnus-diary-update-group-parameters): Replace mapcar
1267 called for effect with while loop.
1268
1269 * gnus-group.el (gnus-group-suspend): Replace mapcar called for effect
1270 with dolist.
1271
1272 * gnus-registry.el (gnus-registry-split-fancy-with-parent): Replace
1273 mapcar called for effect with dolist.
1274
1275 * gnus-spec.el (gnus-correct-length): Make it simple and fast.
1276
1277 * gnus-sum.el (gnus-multi-decode-encoded-word-string)
1278 (gnus-build-sparse-threads, gnus-summary-limit-include-expunged):
1279 Replace mapcar called for effect with dolist.
1280 (gnus-simplify-buffer-fuzzy): Replace mapcar called for effect with
1281 mapc.
1282
1283 * gnus-topic.el (gnus-topic-find-groups, gnus-topic-move-group):
1284 Replace mapcar called for effect with dolist.
1285 (gnus-topic-list): Replace mapcar called for effect with mapc.
1286
1287 * gnus.el: Use mapc instead of mapcar to add autoloads.
1288
1289 2007-10-23 Richard Stallman <rms@gnu.org>
1290
1291 * gnus-group.el (gnus-group-highlight): Mark as risky.
1292
1293 2007-10-23 Katsumi Yamaoka <yamaoka@jpl.org>
1294
1295 * gnus.el (gnus-server-to-method): Return method found first in
1296 gnus-newsrc-alist.
1297
1298 * gnus-art.el (gnus-article-highlight-signature)
1299 (gnus-insert-prev-page-button, gnus-insert-next-page-button): Make a
1300 button overlay without the front stickiness.
1301
1302 2007-10-22 Kevin Greiner <kevin.greiner@compsol.cc>
1303
1304 * gnus-agent.el (gnus-agent-expire-group-1): The check for an unsorted
1305 overview buffer needed a catch to receive its throw.
1306 (gnus-agent-flush-cache): Declared as interactive to make this function
1307 easier to use.
1308
1309 2007-10-20 Reiner Steib <Reiner.Steib@gmx.de>
1310
1311 * html2text.el (html2text-fix-paragraph): Use `forward-line' instead of
1312 `next-line'.
1313
1314 2007-10-18 Katsumi Yamaoka <yamaoka@jpl.org>
1315
1316 * nnmail.el (nnmail-fancy-expiry-target): Use rmail-dont-reply-to to
1317 exclude address matching message-dont-reply-to-names.
1318
1319 2007-10-15 Katsumi Yamaoka <yamaoka@jpl.org>
1320
1321 * gnus-util.el (gnus-string<): New function.
1322
1323 * gnus-sum.el (gnus-article-sort-by-author)
1324 (gnus-article-sort-by-recipient, gnus-article-sort-by-subject): Use it.
1325
1326 2007-10-15 Katsumi Yamaoka <yamaoka@jpl.org>
1327
1328 * gnus-win.el (gnus-configure-windows): Focus on the frame for which
1329 the frame-focus tag is set in gnus-buffer-configuration.
1330
1331 2007-10-12 Katsumi Yamaoka <yamaoka@jpl.org>
1332
1333 * gnus-art.el (gnus-article-add-button): Make a button overlay without
1334 the front stickiness.
1335
1336 2007-10-11 Katsumi Yamaoka <yamaoka@jpl.org>
1337
1338 * gnus-art.el (gnus-button-alist): Exclude newline in RFC2396-compliant
1339 url pattern; remove duplicate one.
1340 (gnus-article-extend-url-button): New function.
1341 (gnus-article-add-buttons): Use it.
1342 (gnus-button-push): Use concatenated url that it makes.
1343
1344 2007-10-04 Juanma Barranquero <lekktu@gmail.com>
1345
1346 * sieve-manage.el (sieve-manage-interactive-login): Doc fix.
1347 (sieve-manage-open): Use `mapc' instead of `mapcar'.
1348
1349 2007-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
1350
1351 * gnus-uu.el (gnus-uu-reginize-string, gnus-uu-expand-numbers):
1352 Don't hardcode point-min==1.
1353
1354 2007-09-30 David Kastrup <dak@gnu.org>
1355
1356 * gnus-art.el (gnus-article-reply-with-original)
1357 (gnus-article-followup-with-original): When `transient-mark-mode' is
1358 off, refrain from active-region behavior for followups.
1359
1360 2007-10-08 Reiner Steib <Reiner.Steib@gmx.de>
1361
1362 * mm-util.el (mm-charset-synonym-alist): Alias gbk to cp936.
1363 Fix comment about "iso8859-1".
1364
1365 2007-10-08 Daiki Ueno <ueno@unixuser.org>
1366
1367 * mm-decode.el (mm-possibly-verify-or-decrypt): Replace PARTS with the
1368 ones returned from the verify-function.
1369
1370 * mm-uu.el (mm-uu-pgp-signed-extract-1): Call
1371 mml2015-extract-cleartext-signature if extraction failed.
1372
1373 2007-10-07 Daiki Ueno <ueno@unixuser.org>
1374
1375 * mm-uu.el (mm-uu-pgp-signed-extract-1): Delete the first line
1376 beginning with "-----BEGIN PGP SIGNED MESSAGE-----" if extraction
1377 failed.
1378
1379 2007-10-04 Reiner Steib <Reiner.Steib@gmx.de>
1380
1381 * Relicense "GPLv2 or later" files to "GPLv3 or later".
1382
1383 2007-09-27 Teodor Zlatanov <tzz@lifelogs.com>
1384
1385 * gnus-sum.el (gnus-summary-kill-thread): Allow universal prefix zero
1386 to mark a thread as expirable. Add variable `hide' to handle hiding of
1387 thread for both the null and zero (kill/expire thread) universal prefix
1388 cases.
1389 (gnus-summary-expire-thread): Add new function to expire a thread,
1390 using gnus-summary-kill-thread.
1391 (gnus-summary-mode-map, gnus-summary-thread-map): Add 'M-C-e' and 'T e'
1392 shortcuts for gnus-summary-expire-thread.
1393 (gnus-summary-mode-map, gnus-summary-thread-map): Remove `M-C-e' and `T
1394 e' bindings for gnus-summary-expire-thread. Add `T E' binding.
1395
1396 2007-09-25 Teodor Zlatanov <tzz@lifelogs.com>
1397
1398 * gnus-registry.el (gnus-registry-store-extra-entry): Allow for nil
1399 extras value, so an extras entry can be deleted.
1400 (gnus-registry-delete-extra-entry): Use it.
1401 (gnus-registry-fetch-extra-flags, gnus-registry-has-extra-flag)
1402 (gnus-registry-store-extra-flags, gnus-registry-delete-extra-flags)
1403 (gnus-registry-delete-all-extra-flags): Allow for arbitrary flag symbol
1404 storage through the gnus-registry, and provide an appropriate API for
1405 it.
1406
1407 2007-09-13 Katsumi Yamaoka <yamaoka@jpl.org>
1408
1409 * gnus-sum.el (gnus-newsgroup-maximum-articles): Move from gnus.el.
1410 Suggested by Leo <sdl.web@gmail.com>.
1411
1412 * gnus.el: Do.
1413
1414 2007-09-13 Katsumi Yamaoka <yamaoka@jpl.org>
1415
1416 * gnus.el (gnus-newsgroup-maximum-articles): Rename from
1417 gnus-maximum-newsgroup. Suggested by Leo <sdl.web@gmail.com>.
1418
1419 * gnus-agent.el (gnus-agent-fetch-headers): Do.
1420
1421 * gnus-sum.el (gnus-articles-to-read, gnus-list-of-unread-articles)
1422 (gnus-list-of-read-articles, gnus-sequence-of-unread-articles): Do.
1423
1424 2007-09-13 Katsumi Yamaoka <yamaoka@jpl.org>
1425
1426 * nnmbox.el (nnmbox-request-article): Don't assume delim regexp matches
1427 newline.
1428 (nnmbox-request-accept-article): Don't change article in source buffer;
1429 narrow to header to use message-fetch-field rather than
1430 nnmail-fetch-field; use with-current-buffer instead of save-excursion.
1431 (nnmbox-request-replace-article): Quote lines that'll be misidentified
1432 as delimiters; make sure article ends with newline.
1433 (nnmbox-delete-mail): Correct last position of article to be deleted;
1434 ignore X-Gnus-Newsgroup header in article body.
1435 (nnmbox-save-mail): Quote lines looking like delimiters at the right
1436 positions; make sure article ends with newline.
1437
1438 * message.el (message-display-abbrev): Don't infloop when a user
1439 inserts SPC in the beginning of header.
1440
1441 2007-09-12 Teodor Zlatanov <tzz@lifelogs.com>
1442
1443 * gnus-registry.el (gnus-registry-unfollowed-groups): Add INBOX to the
1444 list of groups not followed by default. Fix type to be regexp.
1445 (gnus-registry-grep-in-list): Fix inverted parameters to string-match.
1446
1447 2007-09-06 Tassilo Horn <tassilo@member.fsf.org>
1448
1449 * hmac-def.el (define-hmac-function): Switch from old-style to
1450 new-style backquotes.
1451
1452 * md4.el (md4-make-step): Likewise.
1453
1454 2007-09-06 Katsumi Yamaoka <yamaoka@jpl.org>
1455
1456 * gnus-start.el (gnus-gnus-to-newsrc-format): Use a unibyte buffer and
1457 raw-text coding system when saving .newsrc file, which may contain
1458 non-ASCII group names.
1459
1460 2007-09-05 Katsumi Yamaoka <yamaoka@jpl.org>
1461
1462 * gnus-cus.el (gnus-score-extra): New widget.
1463 (gnus-score-extra-convert): New function.
1464 (gnus-score-customize): Use it for Extra.
1465
1466 2007-08-31 Daiki Ueno <ueno@unixuser.org>
1467
1468 * mml2015.el (mml2015-extract-cleartext-signature): New function.
1469 (mml2015-mailcrypt-clear-verify): Use it.
1470 (mml2015-gpg-clear-verify): Use it.
1471 (mml2015-pgg-clear-verify): Use it.
1472 (mml2015-epg-clear-verify): Replace the current part with the output
1473 from GnuPG; don't extract the plaintext by itself.
1474
1475 * mm-uu.el (mm-uu-pgp-beginning-signature): Abolish.
1476 (mm-uu-pgp-signed-extract-1): Bind coding-system-for-read when calling
1477 mml2015-clear-verify-function; don't touch the armor headers or
1478 dash-escaped text here.
1479
1480 2007-08-24 Katsumi Yamaoka <yamaoka@jpl.org>
1481
1482 * gnus-art.el (gnus-article-edit-part): Don't jump to nonexistent part.
1483 (gnus-mime-view-part-as-type-internal): Default to text/plain for text
1484 parts, or application/octet-stream as a last resort.
1485 (gnus-mime-view-part-as-type): Don't toggle display.
1486 (gnus-mime-view-part-as-charset): Don't turn off display before
1487 querying charset.
1488
1489 * mm-view.el (mm-inline-text-html-render-with-w3): Don't add XEmacs
1490 stuff to undisplayer function in Emacs.
1491 (mm-inline-text-html-render-with-w3m): Remove Emacs/W3 stuff.
1492
1493 * mml.el (mml-generate-mime-1): Prefer utf-8 when encoding
1494 text/calendar parts.
1495
1496 2007-08-23 Katsumi Yamaoka <yamaoka@jpl.org>
1497
1498 * gnus-art.el (gnus-mime-display-single): Use utf-8 by default for
1499 decoding text/calendar parts.
1500
1501 * message.el (message-forward-make-body-mime): Always mark body as
1502 having no illegible text; remove signed-or-encrypted argument.
1503 (message-forward-make-body): Don't pass signed-or-encrypted arg to it.
1504
1505 * mml.el (mml-generate-mime): Make sure it uses multibyte temp buffer.
1506 (mml-generate-mime-1): Don't encode body if it is specified to be in
1507 raw form; don't make buffer be unibyte when inserting multibyte string.
1508
1509 2007-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
1510
1511 * sha1.el: Fix up comment style.
1512 (sha1-F0, sha1-F1, sha1-F2, sha1-F3, sha1-S1, sha1-S5, sha1-S30)
1513 (sha1-OP, sha1-add-to-H): Use new-style backquotes.
1514
1515 * hex-util.el: Fix up comment style.
1516 (hex-char-to-num, num-to-hex-char): Use new-style backquotes.
1517
1518 * gnus-salt.el: Use with-current-buffer.
1519 (gnus-pick-setup-message): Fix long-standing typo.
1520
1521 2007-08-17 Katsumi Yamaoka <yamaoka@jpl.org>
1522
1523 * imap.el (imap-logout-timeout): New variable.
1524 (imap-logout, imap-logout-wait): New functions.
1525 (imap-kerberos4-open, imap-gssapi-open, imap-close): Use them.
1526
1527 * nnimap.el (nnimap-logout-timeout): New server variable.
1528 (nnimap-open-server, nnimap-close-server): Bind imap-logout-timeout to
1529 nnimap-logout-timeout.
1530
1531 * gnus-art.el (gnus-article-summary-command-nosave)
1532 (gnus-article-read-summary-keys): Don't use 3rd arg of pop-to-buffer.
1533
1534 2007-08-14 Katsumi Yamaoka <yamaoka@jpl.org>
1535
1536 * gnus.el (gnus-maximum-newsgroup): New variable.
1537
1538 * gnus-agent.el (gnus-agent-fetch-headers): Limit the range of articles
1539 according to gnus-maximum-newsgroup.
1540
1541 * gnus-sum.el (gnus-articles-to-read, gnus-list-of-unread-articles)
1542 (gnus-list-of-read-articles, gnus-sequence-of-unread-articles):
1543 Limit the range of articles according to gnus-maximum-newsgroup.
1544
1545 2007-08-14 Tassilo Horn <tassilo@member.fsf.org>
1546
1547 * gnus-art.el (gnus-sticky-article): Fixed problems described in
1548 <b4mps1qitio.fsf@jpl.org> on ding. Thanks to Katsumi.
1549 Don't perform gnus-configure-windows here; reuse existing sticky
1550 article buffer.
1551
1552 * gnus-sum.el (gnus-summary-display-article): Setup article buffer if
1553 it doesn't exist in gnus-article-mode.
1554
1555 2007-08-13 Katsumi Yamaoka <yamaoka@jpl.org>
1556
1557 * gnus-agent.el (gnus-agent-decoded-group-names): New variable.
1558 (gnus-agent-decoded-group-name): New function.
1559 (gnus-agent-group-path, gnus-agent-group-pathname): Use it.
1560 (gnus-agent-expire-group-1): Use it; decode group name in messages.
1561
1562 2007-08-12 Tassilo Horn <tassilo@member.fsf.org>
1563
1564 * gnus-sum.el (gnus-summary-article-map, gnus-summary-make-menu-bar):
1565 Add binding for gnus-sticky-article.
1566 (gnus-summary-exit): Don't kill sticky article buffers.
1567
1568 * gnus-art.el (gnus-sticky-article-mode): New mode to generate a sticky
1569 article buffer.
1570 (gnus-sticky-article, gnus-kill-sticky-article-buffer)
1571 (gnus-kill-sticky-article-buffers): New commands.
1572
1573 2007-08-10 Katsumi Yamaoka <yamaoka@jpl.org>
1574
1575 * nntp.el (nntp-xref-number-is-evil): New server variable.
1576 (nntp-find-group-and-number): If it is non-nil, don't trust article
1577 numbers in the Xref header.
1578
1579 2007-08-09 Katsumi Yamaoka <yamaoka@jpl.org>
1580
1581 * gnus-agent.el (gnus-agent-read-group): New function.
1582 (gnus-agent-flush-group, gnus-agent-expire-group)
1583 (gnus-agent-regenerate-group): Use it.
1584 (gnus-agent-expire-unagentized-dirs): Bind file-name-coding-system to
1585 nnmail-pathname-coding-system.
1586
1587 2007-08-06 Katsumi Yamaoka <yamaoka@jpl.org>
1588
1589 * gnus-ems.el (gnus-x-splash): Bind inhibit-read-only to t.
1590
1591 * gnus-sum.el (gnus-summary-insert-articles): Mark inserted articles
1592 that are unread as unread, and also as selected so that information of
1593 marks having been changed by a user may be updated when exiting group.
1594
1595 2007-08-04 Reiner Steib <Reiner.Steib@gmx.de>
1596
1597 * gnus-art.el (article-hide-headers): Bind inhibit-read-only to t.
1598
1599 2007-08-03 Katsumi Yamaoka <yamaoka@jpl.org>
1600
1601 * gnus-art.el (gnus-mime-display-single): Pass part number that is
1602 calculated ignoring signature parts to gnus-treat-article.
1603
1604 2007-08-02 Katsumi Yamaoka <yamaoka@jpl.org>
1605
1606 * gnus-art.el (gnus-mime-security-verify-or-decrypt): Don't narrow to
1607 a point here in order to keep the window start.
1608 (gnus-insert-mime-security-button): Make a button overlay without the
1609 front stickiness.
1610 (gnus-mime-display-security): Goto the end of a button.
1611
1612 * gnus-group.el (gnus-group-name-at-point): Fix regexps.
1613
1614 2007-08-01 Katsumi Yamaoka <yamaoka@jpl.org>
1615
1616 * gnus-group.el (gnus-group-name-at-point): Rewrite; rename from
1617 group-name-at-point.
1618 (gnus-group-completing-read): New function that offers decoded
1619 non-ASCII group names for completion.
1620 (gnus-fetch-group, gnus-group-read-ephemeral-group)
1621 (gnus-group-jump-to-group, gnus-group-make-group-simple)
1622 (gnus-group-unsubscribe-group, gnus-group-fetch-charter)
1623 (gnus-group-fetch-control): Use it.
1624 (gnus-fetch-group): Use group-name-at-point for the initial value
1625 rather than the default value; use gnus-alive-p.
1626
1627 * gnus-msg.el (gnus-group-mail, gnus-group-news, gnus-group-post-news)
1628 (gnus-summary-mail-other-window, gnus-summary-news-other-window)
1629 (gnus-summary-post-news): Use gnus-group-completing-read.
1630
1631 * gnus-sum.el (gnus-select-newsgroup): Decode group name in error msg.
1632 (gnus-read-move-group-name): Decode group name for completion.
1633
1634 2007-07-31 Ted Zlatanov <tzz@lifelogs.com>
1635
1636 * gnus-srvr.el (gnus-server-close-all-servers): Close servers not only
1637 in gnus-inserted-opened-servers but also in gnus-server-alist (Katsumi
1638 Yamaoka slightly modified the code).
1639
1640 2007-07-24 Katsumi Yamaoka <yamaoka@jpl.org>
1641
1642 * nnmail.el (nnmail-group-names-not-encoded-p): New variable.
1643 (nnmail-split-incoming): Bind it.
1644
1645 * nnml.el (nnml-group-name-charset): New function.
1646 (nnml-decoded-group-name): Use it; don't decode group name if
1647 nnmail-group-names-not-encoded-p is non-nil.
1648 (nnml-encoded-group-name): New function.
1649 (nnml-group-pathname): Inline nnml-decoded-group-name.
1650 (nnml-request-expire-articles): Decode group name in message.
1651 (nnml-request-delete-group): Ditto; bind file-name-coding-system to
1652 nnmail-pathname-coding-system.
1653 (nnml-save-mail, nnml-active-number): Work with decoded group names and
1654 not decoded ones according to nnmail-group-names-not-encoded-p.
1655 (nnml-generate-active-info): Use nnml-encoded-group-name.
1656
1657 2007-08-08 Glenn Morris <rgm@gnu.org>
1658
1659 * gmm-utils.el, gnus-async.el, gnus-msg.el, gnus-score.el
1660 * gnus-util.el, imap.el, mailcap.el, nnimap.el: Replace `iff' in
1661 doc-strings and comments.
1662
1663 2007-07-25 Glenn Morris <rgm@gnu.org>
1664
1665 * Relicense all FSF files to GPLv3 or later.
1666
1667 2007-07-23 Katsumi Yamaoka <yamaoka@jpl.org>
1668
1669 * gnus-sum.el (gnus-summary-move-article): Make
1670 gnus-summary-respool-article work.
1671
1672 2007-07-21 Reiner Steib <Reiner.Steib@gmx.de>
1673
1674 * mm-uu.el (mm-uu-type-alist): Refer to mm-uu-configure-list in doc
1675 string.
1676
1677 2007-07-20 Michaël Cadilhac <michael@cadilhac.name>
1678
1679 * nnrss.el (nnrss-ignore-article-fields): New variable. List of fields
1680 that should be ignored when comparing distant RSS articles with local
1681 ones.
1682 (nnrss-make-hash-index): New function. Create a hash index according
1683 to the ignored fields.
1684 (nnrss-check-group): Use it.
1685
1686 2007-07-20 Katsumi Yamaoka <yamaoka@jpl.org>
1687
1688 * gnus-agent.el (gnus-agent-group-pathname): Take notice of the method.
1689
1690 * gnus-art.el (article-decode-group-name): Decode Xref header too.
1691
1692 * gnus-group.el (gnus-group-make-group): Encode group name here unless
1693 the new optional argument ENCODED is non-nil.
1694 (gnus-group-make-doc-group): Use gnus-group-name-charset to determine
1695 coding system for encoding group name.
1696 (gnus-group-make-rss-group): Pass un-encoded group name to
1697 gnus-group-make-group.
1698 (gnus-group-set-info): Tell gnus-group-make-group that group name is
1699 encoded.
1700
1701 * gnus-sum.el (gnus-summary-move-article, gnus-read-move-group-name):
1702 Encode group name to which articles are moved or copied.
1703 (gnus-summary-edit-article): Use gnus-group-name-charset to determine
1704 coding system for encoding Newsgroup, Followup-To and Xref headers.
1705
1706 * nnagent.el (nnagent-request-set-mark): Use unibyte buffer to compose
1707 marks; use nnheader-file-coding-system to write a file.
1708 (nnagent-retrieve-headers): Bind file-name-coding-system to
1709 nnmail-pathname-coding-system.
1710
1711 * nnmail.el (nnmail-insert-xref): Don't break non-ASCII group name.
1712
1713 * nnml.el (nnml-decoded-group-name, nnml-group-pathname): New functions.
1714 (nnml-request-article, nnml-request-create-group)
1715 (nnml-request-rename-group, nnml-find-id)
1716 (nnml-possibly-change-directory, nnml-possibly-create-directory)
1717 (nnml-save-mail, nnml-active-number, nnml-marks-changed-p)
1718 (nnml-save-marks): Use nnml-group-pathname instead of
1719 nnmail-group-pathname.
1720
1721 (nnml-request-create-group, nnml-request-expire-articles)
1722 (nnml-request-move-article, nnml-request-delete-group)
1723 (nnml-deletable-article-p, nnml-possibly-create-directory)
1724 (nnml-get-nov-buffer, nnml-generate-nov-databases-directory)
1725 (nnml-open-marks): Bind file-name-coding-system to
1726 nnmail-pathname-coding-system.
1727
1728 (nnml-request-article): Pass server argument to nnml-find-group-number.
1729 (nnml-request-create-group, nnml-active-number, nnml-save-marks): Pass
1730 server argument to nnml-possibly-create-directory.
1731 (nnml-request-accept-article): Pass server argument to
1732 nnml-active-number and nnml-save-mail.
1733 (nnml-find-group-number): Pass server argument to nnml-find-id.
1734 (nnml-request-update-info): Pass server argument to
1735 nnml-marks-changed-p.
1736
1737 (nnml-find-id, nnml-find-group-number, nnml-possibly-create-directory)
1738 (nnml-save-mail, nnml-active-number): Add server argument.
1739
1740 (nnml-request-delete-group): Warn if group is missing.
1741 (nnml-get-nov-buffer): Decode group name.
1742 (nnml-generate-active-info): Encode group name.
1743 (nnml-open-marks): Decode group name in messages.
1744
1745 2007-07-19 Katsumi Yamaoka <yamaoka@jpl.org>
1746
1747 * gnus-art.el (gnus-article-part-wrapper): Work with the nearest part
1748 if it is not specified.
1749 (gnus-article-pipe-part, gnus-article-save-part)
1750 (gnus-article-interactively-view-part, gnus-article-copy-part)
1751 (gnus-article-view-part-as-charset, gnus-article-view-part-externally)
1752 (gnus-article-inline-part, gnus-article-save-part-and-strip)
1753 (gnus-article-replace-part, gnus-article-delete-part)
1754 (gnus-article-view-part-as-type): Pass raw prefix argument to
1755 gnus-article-part-wrapper.
1756
1757 2007-07-18 Katsumi Yamaoka <yamaoka@jpl.org>
1758
1759 * gnus-agent.el (gnus-agent-save-active): Bind
1760 nnheader-file-coding-system to gnus-agent-file-coding-system.
1761
1762 * gnus-cache.el (gnus-cache-save-buffers)
1763 (gnus-cache-possibly-enter-article, gnus-cache-request-article)
1764 (gnus-cache-retrieve-headers, gnus-cache-change-buffer)
1765 (gnus-cache-possibly-remove-article, gnus-cache-articles-in-group)
1766 (gnus-cache-braid-nov, gnus-cache-braid-heads)
1767 (gnus-cache-generate-active, gnus-cache-rename-group)
1768 (gnus-cache-delete-group, gnus-cache-update-file-total-fetched-for)
1769 (gnus-cache-update-overview-total-fetched-for): Bind
1770 file-name-coding-system to nnmail-pathname-coding-system.
1771 (gnus-cache-decoded-group-names, gnus-cache-unified-group-names): New
1772 variables.
1773 (gnus-cache-decoded-group-name): New function.
1774 (gnus-cache-file-name): Use it.
1775 (gnus-cache-generate-active): Use non-decoded group name for active.
1776
1777 * gnus-util.el (gnus-write-buffer): Bind file-name-coding-system at the
1778 right place.
1779 (gnus-write-active-file): Don't break non-ASCII group names.
1780
1781 * nntp.el (nntp-marks-changed-p): Bind file-name-coding-system to
1782 nnmail-pathname-coding-system.
1783
1784 * gnus-uu.el (gnus-uu-decode-save): Typo.
1785
1786 2007-07-16 Katsumi Yamaoka <yamaoka@jpl.org>
1787
1788 * gnus-srvr.el (gnus-server-font-lock-keywords): Quote faces.
1789
1790 2007-07-14 David Kastrup <dak@gnu.org>
1791
1792 * gnus-art.el (gnus-mime-delete-part): Don't go through article-edit
1793 finishing actions if we did not edit the article.
1794
1795 2007-07-13 Katsumi Yamaoka <yamaoka@jpl.org>
1796
1797 * gnus-agent.el (gnus-agent-rename-group, gnus-agent-delete-group)
1798 (gnus-agent-fetch-articles, gnus-agent-unfetch-articles)
1799 (gnus-agent-crosspost, gnus-agent-backup-overview-buffer)
1800 (gnus-agent-flush-group, gnus-agent-flush-cache)
1801 (gnus-agent-fetch-headers, gnus-agent-load-alist)
1802 (gnus-agent-read-agentview, gnus-agent-expire-group-1)
1803 (gnus-agent-retrieve-headers, gnus-agent-request-article)
1804 (gnus-agent-regenerate-group)
1805 (gnus-agent-update-files-total-fetched-for)
1806 (gnus-agent-update-view-total-fetched-for): Bind
1807 file-name-coding-system to nnmail-pathname-coding-system.
1808 (gnus-agent-group-pathname): Don't encode file names by
1809 nnmail-pathname-coding-system.
1810 (gnus-agent-save-local): Bind file-name-coding-system correctly; bind
1811 coding-system-for-write instead of buffer-file-coding-system to
1812 gnus-agent-file-coding-system.
1813
1814 * gnus-msg.el (gnus-inews-make-draft, gnus-inews-insert-archive-gcc):
1815 Decode group name.
1816
1817 * gnus-srvr.el (gnus-browse-foreign-server): Make group names unibyte.
1818
1819 * gnus-start.el (gnus-update-active-hashtb-from-killed)
1820 (gnus-read-newsrc-el-file): Make group names unibyte.
1821
1822 * nnmail.el (nnmail-group-pathname): Don't encode file names by
1823 nnmail-pathname-coding-system.
1824
1825 * nnrss.el (nnrss-file-coding-system): Doc fix; make it begin with *.
1826 (nnrss-request-delete-group): Bind file-name-coding-system to
1827 nnmail-pathname-coding-system.
1828 (nnrss-read-server-data, nnrss-read-group-data): Bind
1829 file-name-coding-system correctly.
1830 (nnrss-check-group): Pass nnrss-file-coding-system to md5.
1831
1832 * nntp.el: Require gnus-group for the function gnus-group-name-charset.
1833 (nntp-server-to-method-cache): New variable.
1834 (nntp-group-pathname): New function that decodes non-ASCII group names.
1835 (nntp-possibly-create-directory, nntp-marks-changed-p)
1836 (nntp-save-marks, nntp-open-marks): Use it.
1837 (nntp-possibly-create-directory, nntp-open-marks):
1838 Bind file-name-coding-system to nnmail-pathname-coding-system.
1839 (nntp-open-marks): Decode group names when bootstrapping marks.
1840
1841 * rfc2047.el (rfc2047-encode-message-header): Make XEmacs decode
1842 Newsgroups and Folowup-To headers.
1843
1844 2007-07-13 Katsumi Yamaoka <yamaoka@jpl.org>
1845
1846 * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
1847 (gnus-server-closed-face, gnus-server-denied-face)
1848 (gnus-server-offline-face): Remove variable.
1849 (gnus-server-font-lock-keywords): Use faces that are not aliases.
1850
1851 * gnus-util.el (gnus-message-with-timestamp-1): Use log-message instead
1852 of modifying message-stack directly for XEmacs.
1853
1854 * mm-util.el (mm-decode-coding-string, mm-encode-coding-string)
1855 (mm-decode-coding-region, mm-encode-coding-region): Don't modify string
1856 if the coding-system argument is nil for XEmacs.
1857
1858 * nnrss.el (nnrss-compatible-encoding-alist): Inherit the value of
1859 mm-charset-override-alist.
1860
1861 * rfc2047.el: Don't require base64; require rfc2045 for the function
1862 rfc2045-encode-string.
1863 (rfc2047-encode-parameter): Use rfc2045-encode-string to quote or not
1864 to quote the parameter value.
1865
1866 2007-07-06 Katsumi Yamaoka <yamaoka@jpl.org>
1867
1868 * gnus-group.el (gnus-group-name-charset): Allow a method of the short
1869 form in gnus-group-name-charset-method-alist.
1870
1871 * gnus-eform.el (gnus-edit-form): Add optional argument layout which
1872 overrides the default layout edit-form.
1873
1874 * gnus-win.el (gnus-buffer-configuration): Add edit-server.
1875
1876 * gnus-srvr.el (gnus-server-edit-server): Use edit-server layout.
1877
1878 2007-07-04 Katsumi Yamaoka <yamaoka@jpl.org>
1879
1880 * gnus-sum.el (gnus-summary-catchup): Don't recognize cached articles
1881 as unfetched articles.
1882
1883 2007-07-02 Reiner Steib <Reiner.Steib@gmx.de>
1884
1885 * gnus-start.el (gnus-level-unsubscribed): Improve doc string.
1886
1887 2007-07-02 Katsumi Yamaoka <yamaoka@jpl.org>
1888
1889 * nnagent.el (nnagent-request-set-mark): Also set the marks for the
1890 original back end that keeps marks in the local system.
1891
1892 2007-06-26 Katsumi Yamaoka <yamaoka@jpl.org>
1893
1894 * gnus-art.el (gnus-article-summary-command-nosave): Don't set the 3rd
1895 arg of pop-to-buffer for XEmacs.
1896 (gnus-article-read-summary-keys): Ditto; don't restore window
1897 configuration if summary command ends up with neither article buffer
1898 nor summary buffer; describe bindings if summary keys end with C-h.
1899
1900 2007-06-22 Katsumi Yamaoka <yamaoka@jpl.org>
1901
1902 * message.el (message-fix-before-sending): Skip raw message part to be
1903 forwarded while checking illegible text.
1904 (message-forward-make-body-mime, message-forward-make-body): Mark
1905 signed or encrypted raw message as having no illegible text.
1906
1907 2007-06-19 Katsumi Yamaoka <yamaoka@jpl.org>
1908
1909 * gnus-util.el (gnus-add-timestamp-to-message): New user option.
1910 (gnus-message-with-timestamp-1): New macro.
1911 (gnus-message-with-timestamp): New function.
1912 (gnus-message): Use them.
1913
1914 * nnheader.el (nnheader-message): Use them.
1915
1916 2007-06-16 Reiner Steib <Reiner.Steib@gmx.de>
1917
1918 * gnus-start.el (gnus-gnus-to-quick-newsrc-format): Add newlines to
1919 .newsrc.eld file.
1920
1921 2007-06-14 Katsumi Yamaoka <yamaoka@jpl.org>
1922
1923 * gnus-agent.el (gnus-agent-fetch-headers)
1924 (gnus-agent-retrieve-headers): Bind
1925 gnus-decode-encoded-address-function to identity.
1926
1927 * nntp.el (nntp-send-xover-command): Recognize an xover command is
1928 available also when the server returns simply a dot.
1929
1930 * gnus-ems.el (gnus-x-splash): Redisplay window before measuring it.
1931
1932 2007-06-08 Katsumi Yamaoka <yamaoka@jpl.org>
1933
1934 * gnus-ems.el (gnus-x-splash): Fix calculation; error in tty.
1935
1936 2007-06-07 Katsumi Yamaoka <yamaoka@jpl.org>
1937
1938 * gnus-ems.el (gnus-x-splash): Make it work.
1939
1940 * gnus-start.el (gnus-1): Relax restrictions that prevent gnus-x-splash
1941 from being used.
1942
1943 2007-06-05 Katsumi Yamaoka <yamaoka@jpl.org>
1944
1945 * gnus-art.el (gnus-insert-mime-button): Make a button overlay without
1946 the front stickiness.
1947 (gnus-article-summary-command-nosave): Correct the order of the
1948 arguments passed to pop-to-buffer.
1949 (gnus-article-read-summary-keys): Ditto; make it work properly when the
1950 summary command ends up with the article buffer.
1951
1952 * mm-decode.el (mm-insert-part): Separate the extracted parts that have
1953 the same faces.
1954
1955 2007-06-07 Juanma Barranquero <lekktu@gmail.com>
1956
1957 * gnus-art.el (gnus-split-methods): Fix typo in docstring.
1958
1959 2007-06-06 Juanma Barranquero <lekktu@gmail.com>
1960
1961 * gnus-diary.el (gnus-diary-time-format, gnus-summary-sort-by-schedule):
1962 * gnus-sum.el (gnus-summary-highlight):
1963 * mail-source.el (mail-source-delete-old-incoming-confirm):
1964 * nndiary.el (nndiary-reminders): Fix typos in docstrings.
1965
1966 2007-06-04 Katsumi Yamaoka <yamaoka@jpl.org>
1967
1968 * gnus-art.el (gnus-mime-view-part-externally)
1969 (gnus-mime-view-part-internally): Fix predicate function passed to
1970 completing-read.
1971
1972 * mm-decode.el (mm-image-fit-p): Return t if argument is not an image.
1973
1974 * gnus.el (gnus-update-message-archive-method): Add :version.
1975
1976 2007-06-01 Katsumi Yamaoka <yamaoka@jpl.org>
1977
1978 * gnus.el (gnus-update-message-archive-method): New variable.
1979
1980 * gnus-start.el (gnus-setup-news): Update saved "archive" method
1981 according to gnus-message-archive-method if
1982 gnus-update-message-archive-method is non-nil.
1983
1984 2007-05-29 Katsumi Yamaoka <yamaoka@jpl.org>
1985
1986 * gnus-sum.el (gnus-summary-limit-to-address): New function. Suggested
1987 by Loic Dachary <loic@dachary.org>.
1988 (gnus-summary-limit-map, gnus-summary-make-menu-bar): Add it.
1989
1990 2007-05-28 Katsumi Yamaoka <yamaoka@jpl.org>
1991
1992 * message.el (message-pop-to-buffer): Add switch-function argument.
1993 (message-mail): Pass switch-function argument to it.
1994
1995 2007-05-25 Reiner Steib <Reiner.Steib@gmx.de>
1996
1997 * mm-decode.el (mm-file-name-rewrite-functions): Make it customizable.
1998 Improve doc string.
1999
2000 2007-05-25 Katsumi Yamaoka <yamaoka@jpl.org>
2001
2002 * gnus-art.el (gnus-header-from, gnus-header-subject, gnus-header-name)
2003 (gnus-header-content)
2004 * gnus-cite.el (gnus-cite-10)
2005 * gnus-srvr.el (gnus-server-closed)
2006 * gnus.el (gnus-group-mail-1, gnus-group-mail-1-empty)
2007 (gnus-group-mail-2, gnus-group-mail-2-empty, gnus-group-mail-3)
2008 (gnus-group-mail-3-empty, gnus-group-mail-low)
2009 (gnus-group-mail-low-empty, gnus-splash)
2010 * message.el (message-header-to, message-header-cc)
2011 (message-header-subject, message-header-other, message-header-name)
2012 (message-header-xheader, message-separator, message-cited-text)
2013 (message-mml): Lighten colors of faces used for dark background.
2014
2015 2007-05-24 Simon Josefsson <simon@josefsson.org>
2016
2017 * nnimap.el (nnimap-need-unselect-to-notice-new-mail): Change default
2018 to t as an experiment. Suggested by Greg Troxel <gdt@work.lexort.com>.
2019
2020 2007-05-24 Katsumi Yamaoka <yamaoka@jpl.org>
2021
2022 * message.el (message-narrow-to-headers-or-head):
2023 Ignore mail-header-separator in the body.
2024
2025 2007-05-23 Katsumi Yamaoka <yamaoka@jpl.org>
2026
2027 * mm-decode.el (mm-image-fit-p): Return t if image size is just the
2028 same as window size.
2029
2030 2007-05-22 Kevin Ryde <user42@zip.com.au>
2031
2032 * message.el (message-font-lock-keywords): Use message-header-xheader
2033 face for "X-Foo", its apparent intended purpose. Move "X-" pattern
2034 ahead of the anything pattern, to get it recognised.
2035
2036 2007-05-12 Michaël Cadilhac <michael@cadilhac.name>
2037
2038 * gnus-sum.el (gnus-articles-to-read)
2039 (gnus-summary-insert-old-articles): Don't truncate group name for
2040 `read-string'.
2041
2042 * gnus-util.el (gnus-limit-string): Delete this function.
2043
2044 * gnus-sum.el (gnus-simplify-subject-fully): Use
2045 `truncate-string-to-width' instead.
2046
2047 2007-05-11 Michaël Cadilhac <michael@cadilhac.name>
2048
2049 * gnus-sum.el (gnus-summary-next-group-on-exit): New variable. Tell
2050 if, on summary exit, the next group has to be selected.
2051 (gnus-summary-exit): Use it.
2052
2053 2007-05-10 Reiner Steib <Reiner.Steib@gmx.de>
2054
2055 * gnus-art.el (gnus-article-mode): Fix comment about displaying
2056 non-break space.
2057
2058 2007-05-10 Katsumi Yamaoka <yamaoka@jpl.org>
2059
2060 * nnfolder.el (nnfolder-request-group, nnfolder-request-create-group):
2061 Check if group is not a directory.
2062 (nnfolder-request-expire-articles): Don't delete articles if the target
2063 group is not available.
2064
2065 * nnml.el (nnml-request-create-group): Properly check if group is not a
2066 file.
2067 (nnml-request-expire-articles): Don't delete articles if the target
2068 group is not available.
2069
2070 * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
2071 Don't quote characters that are within parentheses.
2072
2073 2007-05-09 Katsumi Yamaoka <yamaoka@jpl.org>
2074
2075 * gnus-sum.el (gnus-auto-select-on-ephemeral-exit): New variable.
2076 (gnus-handle-ephemeral-exit): Select article according to it.
2077
2078 2007-05-08 Reiner Steib <Reiner.Steib@gmx.de>
2079
2080 * message.el (message-insert-formated-citation-line): Remove newline.
2081 (message-citation-line-format): Add final \n here so that the user can
2082 avoid a blank line.
2083
2084 2007-05-03 Dan Christensen <jdc@uwo.ca>
2085
2086 * nndoc.el (nndoc-type-alist, nndoc-lanl-gov-announce-type-p)
2087 (nndoc-transform-lanl-gov-announce, nndoc-generate-lanl-gov-head):
2088 Update lanl/arXiv support.
2089
2090 2007-05-02 Reiner Steib <Reiner.Steib@gmx.de>
2091
2092 * gnus.el: Bump version number.
2093
2094 2007-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
2095
2096 * gnus.el (gnus-version-number): Bump version.
2097
2098 2007-05-01 Lars Magne Ingebrigtsen <lars@ingebrigtsen.no>
2099
2100 * gnus.el: No Gnus v0.6 is released.
2101
2102 2007-04-27 Didier Verna <didier@xemacs.org>
2103
2104 * gnus-util.el (gnus-orify-regexp): Moved and renamed to ...
2105 * gmm-utils.el (gmm-regexp-concat): here.
2106 * message.el: Don't require 'gnus-util.
2107 (message-dont-reply-to-names): Handle name change above.
2108 * gnus-sum.el (gnus-ignored-from-addresses): Ditto.
2109
2110 2007-04-26 Katsumi Yamaoka <yamaoka@jpl.org>
2111
2112 * mm-util.el (mm-charset-synonym-alist): Don't make it a user option
2113 since the initial value varies according to the system.
2114
2115 2007-04-25 Katsumi Yamaoka <yamaoka@jpl.org>
2116
2117 * mm-util.el (mm-charset-synonym-alist): Defcustom.
2118
2119 2007-04-25 NAKAJI Hiroyuki <nakaji@jp.freebsd.org> (tiny change)
2120
2121 * mm-util.el (mm-charset-synonym-alist): Map iso8859-1 to iso-8859-1.
2122
2123 2007-04-24 Didier Verna <didier@xemacs.org>
2124
2125 Improve the type of gnus-ignored-from-addresses.
2126 * gnus-util.el (gnus-orify-regexp): New function.
2127 * message.el (gnus-util): Require it.
2128 * message.el (message-dont-reply-to-names): Use gnus-orify-regexp.
2129 * gnus-sum.el (gnus-ignored-from-addresses): New function.
2130 * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Use it.
2131
2132 2007-04-24 Didier Verna <didier@xemacs.org>
2133
2134 * gnus-sum.el:
2135 * gnus-utils.el: Fix some trailing whitespaces.
2136
2137 2007-04-23 Katsumi Yamaoka <yamaoka@jpl.org>
2138
2139 * gnus-msg.el (gnus-summary-resend-message-edit): Add Gcc header.
2140 (gnus-summary-resend-bounced-mail): Ditto; search whole body for parent
2141 article's Message-ID; refer parent article in summary buffer.
2142
2143 * message.el (message-bounce): Call mime-to-mml.
2144
2145 2007-04-20 Katsumi Yamaoka <yamaoka@jpl.org>
2146
2147 * gnus-msg.el (gnus-summary-supersede-article): Add Gcc header.
2148
2149 2007-04-19 Katsumi Yamaoka <yamaoka@jpl.org>
2150
2151 * gnus-art.el (gnus-mime-strip-charset-parameters): New function.
2152 (gnus-mime-view-part-as-charset): Use it; redisplay subpart currently
2153 displayed of multipart/alternative part if it is invoked from summary
2154 buffer.
2155
2156 * mm-view.el (mm-inline-text-html-render-with-w3m)
2157 (mm-inline-text-html-render-with-w3m-standalone)
2158 (mm-inline-render-with-function): Use mail-parse-charset by default.
2159
2160 2007-04-18 Levin Du <zslevin@gmail.com> (tiny change)
2161
2162 * parse-time.el (parse-time-string-chars): Check if CHAR
2163 is less than the length of parse-time-syntax.
2164
2165 2007-04-17 Katsumi Yamaoka <yamaoka@jpl.org>
2166
2167 * gnus-uu.el (gnus-uu-digest-mail-forward): Pull articles processed
2168 from gnus-newsgroup-processable.
2169
2170 2007-04-16 Didier Verna <didier@xemacs.org>
2171
2172 * gnus-msg.el (gnus-configure-posting-styles): Handle
2173 message-signature-directory properly with :file syntax. Reported by
2174 "Leo".
2175
2176 2007-04-11 Didier Verna <didier@xemacs.org>
2177
2178 New user option: message-signature-directory.
2179 * gnus-msg.el (gnus-configure-posting-styles): Support it.
2180 * message.el (message-insert-signature): Ditto.
2181 * message.el (message-signature-file): Doc update.
2182 * message.el (message-signature-directory): New.
2183
2184 2007-04-10 Katsumi Yamaoka <yamaoka@jpl.org>
2185
2186 * gnus-msg.el (gnus-inews-yank-articles): Use
2187 message-exchange-point-and-mark instead of exchange-point-and-mark.
2188
2189 2007-04-09 Katsumi Yamaoka <yamaoka@jpl.org>
2190
2191 * message.el (message-yank-original): Make sure cited text ends with
2192 newline; don't exchange point and mark.
2193
2194 2007-04-07 Chong Yidong <cyd@stupidchicken.com>
2195
2196 * tls.el (open-tls-stream): Properly handle case where there
2197 is no associated buffer.
2198
2199 2007-04-03 Thien-Thi Nguyen <ttn@gnu.org>
2200
2201 * gnus-msg.el (gnus-inews-yank-articles): Fix bug: After
2202 message-yank-original, make sure (< mark TEXT point).
2203
2204 2007-03-31 Reiner Steib <Reiner.Steib@gmx.de>
2205
2206 * message.el (message-fill-column): New variable.
2207 (message-mode): Use it. Add comment on a possible new hook.
2208
2209 * nnmail.el (nnmail-spool-file): Mark as obsolete.
2210 (nnmail-get-new-mail): Reformat.
2211
2212 * gnus-registry.el (gnus-registry-cache-save): Add FIXME comment.
2213
2214 * gmm-utils.el: Fix Commentary.
2215 (gmm-tool-bar-from-list): Fix typo in doc string.
2216
2217 2007-03-27 Thien-Thi Nguyen <ttn@gnu.org>
2218
2219 * message.el (message-yank-original): Don't switch point and mark
2220 unnecessarily to put point and mark as documented.
2221
2222 2007-03-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
2223
2224 * message.el (message-put-addresses-in-ecomplete): Only fetch headers
2225 from the message heads.
2226
2227 2007-03-25 Kevin Greiner <kevin.greiner@compsol.cc>
2228
2229 * gnus-art.el (gnus-article-set-window-start): Do nothing when the
2230 article buffer does not have a window. This may not be the best
2231 solution but is certainly better than setting the start of the null,
2232 that is the current, window.
2233
2234 2007-03-24 Reiner Steib <Reiner.Steib@gmx.de>
2235
2236 * gnus-draft.el (gnus-draft-setup-hook): New hook.
2237 (gnus-draft-setup): Run it.
2238
2239 * gnus-score.el (gnus-inhibit-slow-scoring): New variable, renamed from
2240 gnus-score-fast-scoring. Allow regexp.
2241 (gnus-score-headers): Use it.
2242
2243 * gnus-util.el (gnus-emacs-version): Include "no MULE" in no-MULE
2244 XEmacs.
2245
2246 * gnus-art.el (gnus-article-browse-html-article): Fix typo in doc
2247 string.
2248 (gnus-button-alist): Also catch `<f1> k ...'.
2249 (gnus-treat-display-x-face): Fix doc string.
2250
2251 2007-03-25 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
2252
2253 * gnus-msg.el (gnus-setup-message, gnus-inews-add-send-actions): Move
2254 evaluation of gnus-extended-version to ensure correct generation of the
2255 User-Agent header when message-generate-headers-first is used.
2256
2257 2007-03-24 Simon Josefsson <simon@josefsson.org>
2258
2259 * hashcash.el (hashcash-generate-payment-async): Don't crash if
2260 hashcash-path is nil. Don't call callback with incorrect number of
2261 parameters if val is 0.
2262
2263 2007-03-20 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
2264
2265 * message.el (message-required-news-headers):
2266 * gnus-util.el (gnus-intern-safe): Fix typo in docstring.
2267
2268 2007-03-15 Katsumi Yamaoka <yamaoka@jpl.org>
2269
2270 * message.el (message-generate-new-buffers): Change the meaning of the
2271 nil value; add `standard' to the choices; treat t as `unique'; improve
2272 doc string.
2273 (gnus-select-frame-set-input-focus): Autoload.
2274 (message-buffer-name): Search for the existing message buffer if
2275 message-generate-new-buffers is nil or `standard'; treat the value t of
2276 message-generate-new-buffers as `unique'.
2277 (message-pop-to-buffer): Raise the frame already displaying the message
2278 buffer; clear the echo area after querying.
2279 (message-setup): Pass the `continue' argument to compose-mail.
2280 (message-mail): Prefer `switch-function' if it is given; search for the
2281 existing message buffer if the `continue' argument is non-nil; pass
2282 continue and switch-function arguments to compose-mail by way of
2283 message-setup.
2284 (message-mail-other-window): Adjust argument of message-setup.
2285 (message-mail-other-frame): Ditto.
2286
2287 2007-03-13 Katsumi Yamaoka <yamaoka@jpl.org>
2288
2289 * gnus-cite.el (font-lock-set-defaults): Autoload it for Emacs.
2290 (gnus-message-citation-mode): Require font-lock for XEmacs; make sure
2291 to turn font-lock on when turning gnus-message-citation-mode on.
2292
2293 2007-03-06 Daiki Ueno <ueno@unixuser.org>
2294
2295 * mml-smime.el (mml-smime-use): New variable; default to use openssl.
2296 (mml-smime-function-alist): New variable; add epg as the backend.
2297 * mml-sec.el (mml-smime-sign): Don't require mml-smime, autoload
2298 mml-smime- functions instead.
2299 * mm-view.el: Require smime.
2300
2301 2007-03-05 Didier Verna <didier@xemacs.org>
2302
2303 * gnus-topic.el (gnus-topic-hierarchical-parameters): Perform merging
2304 instead of just inheritance for posting styles.
2305 * gnus.el (gnus-group-fast-parameter): Fix typo in comment.
2306
2307 2007-02-24 John Paul Wallington <jpw@pobox.com>
2308
2309 * tls.el (tls-certtool-program): Fix custom type.
2310
2311 2007-02-28 Katsumi Yamaoka <yamaoka@jpl.org>
2312
2313 * gnus-cite.el (gnus-message-search-citation-line): Use point-at-bol
2314 and point-at-eol instead of line-(beginning|end)-position.
2315
2316 * assistant.el (assistant-parse-buffer): Ditto.
2317
2318 2007-02-28 Daiki Ueno <ueno@unixuser.org>
2319
2320 * mml2015.el (mml2015-epg-find-usable-key): New function.
2321 (mml2015-epg-sign): Use it.
2322 (mml2015-epg-encrypt): Use it.
2323
2324 2007-02-28 Katsumi Yamaoka <yamaoka@jpl.org>
2325
2326 * message.el (message-make-in-reply-to): Quote name containing
2327 non-ASCII characters. It will make the RFC2047 encoder cause an error
2328 if there are special characters. Reported by NAKAJI Hiroyuki
2329 <nakaji@jp.freebsd.org>.
2330
2331 2007-02-27 Didier Verna <didier@xemacs.org>
2332
2333 Include the group parameters as well as the topic ones in the
2334 inheritance filter process.
2335 * gnus-topic.el (gnus-topic-hierarchical-parameters): New optional
2336 argument GROUP-PARAMS-LIST.
2337 * gnus-topic.el (gnus-group-topic-parameters): Use it.
2338
2339 2007-02-27 Katsumi Yamaoka <yamaoka@jpl.org>
2340
2341 * nntp.el (nntp-never-echoes-commands)
2342 (nntp-open-connection-functions-never-echo-commands): New variables.
2343 (nntp-send-command): Use them.
2344
2345 2007-02-20 Daiki Ueno <ueno@unixuser.org>
2346
2347 * mml2015.el (mml2015-epg-verify): Simplified.
2348
2349 2007-02-19 Katsumi Yamaoka <yamaoka@jpl.org>
2350
2351 * mml.el (mml-content-disposition-alist): New user option.
2352 (mml-content-disposition): New function.
2353 (mml-insert-mime-headers, mml-minibuffer-read-disposition): Use it.
2354 (mml-attach-file, mml-dnd-attach-file): Pass file name to it.
2355
2356 2007-02-19 Daiki Ueno <ueno@unixuser.org>
2357
2358 * mml2015.el (mml2015-epg-verify): Convert LF to CRLF before signature
2359 verification.
2360
2361 2007-02-15 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
2362
2363 * nnweb.el (nnweb-google-parse-1): Fix date parsing to also match on
2364 articles posted in the last 24 hours.
2365
2366 2007-02-14 Chong Yidong <cyd@stupidchicken.com>
2367
2368 * smiley.el (smiley-regexp-alist): Add "dead" smiley.
2369
2370 2007-02-14 Michaël Cadilhac <michael@cadilhac.name>
2371
2372 * nntp.el (nntp-send-command): Don't wait for echoes when
2373 nntp-open-ssl-stream is used.
2374
2375 2007-02-13 Katsumi Yamaoka <yamaoka@jpl.org>
2376
2377 * gnus-cite.el (gnus-test-font-lock-add-keywords)
2378 (gnus-message-add-citation-keywords)
2379 (gnus-message-remove-citation-keywords): Remove.
2380 (gnus-message-citation-mode): Instead of modifying font-lock-keywords
2381 directly, make the variables in font-lock-defaults buffer-local, add
2382 gnus-message-citation-keywords to them and then update the value of
2383 font-lock-keywords.
2384
2385 2007-02-09 Katsumi Yamaoka <yamaoka@jpl.org>
2386
2387 * message.el (message-cite-original-1): Don't call
2388 gnus-article-highlight-citation.
2389
2390 * gnus-cite.el (gnus-cite-parse): Work with two or more MS-type
2391 citations; fix line count.
2392
2393 2007-02-08 Katsumi Yamaoka <yamaoka@jpl.org>
2394
2395 * gnus-cite.el (gnus-test-font-lock-add-keywords): New function.
2396 (gnus-message-add-citation-keywords)
2397 (gnus-message-remove-citation-keywords): Use it; fix the emulating
2398 versions of font-lock-add-keywords and font-lock-remove-keywords to
2399 work with XEmacs correctly.
2400
2401 2007-02-07 Katsumi Yamaoka <yamaoka@jpl.org>
2402
2403 * gnus-cite.el (gnus-cite-face-list): Set the values of
2404 gnus-message-max-citation-depth and gnus-message-citation-keywords.
2405 (gnus-message-max-citation-depth): Use defvar rather than defconst.
2406 (gnus-message-cite-prefix-regexp): New variable.
2407 (gnus-message-search-citation-line): Use it; protect against long
2408 citation prefix; fill match data with nil rather than 0 for XEmacs; set
2409 the 0th match data for Emacs.
2410 (gnus-message-citation-keywords): Set LAXMATCH flag in every HIGHLIGHT.
2411 (gnus-message-add-citation-keywords): Append keywords rather than
2412 prepending; emulate font-lock-add-keywords if it is not available.
2413 (gnus-message-remove-citation-keywords): Emulate
2414 font-lock-remove-keywords if it is not available.
2415
2416 * gnus-msg.el (gnus-message-highlight-citation): Default to t.
2417
2418 * message.el (message-cite-prefix-regexp): Set the value of
2419 gnus-message-cite-prefix-regexp.
2420
2421 2007-02-01 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
2422
2423 * nnweb.el (nnweb-google-parse-1): Update parser.
2424
2425 2007-01-29 Juanma Barranquero <lekktu@gmail.com>
2426
2427 * gnus-art.el (gnus-button-prefer-mid-or-mail): Fix typo in docstring.
2428
2429 2007-01-28 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
2430
2431 * nnslashdot.el (nnslashdot-request-article): Update end-of-article
2432 regexp.
2433
2434 2007-01-24 Katsumi Yamaoka <yamaoka@jpl.org>
2435
2436 * uudecode.el (uudecode-string-to-multibyte): New function emulating
2437 string-to-multibyte.
2438 (uudecode-decode-region-internal): Use it.
2439
2440 2007-01-23 Reiner Steib <Reiner.Steib@gmx.de>
2441
2442 * gnus-score.el (gnus-home-score-file, gnus-home-adapt-file): Fix
2443 custom choice.
2444
2445 * gnus-art.el (gnus-signature-limit): Fix custom choice.
2446
2447 2007-01-22 Daiki Ueno <ueno@unixuser.org>
2448
2449 * mm-util.el (mm-inhibit-file-name-handlers): Add epa-file-handler.
2450
2451 * mm-decode.el (mm-save-part-to-file): Use `mm-write-region' instead of
2452 `write-region' to respect `mm-inhibit-file-name-handlers'.
2453
2454 2007-01-19 Reiner Steib <Reiner.Steib@gmx.de>
2455
2456 * nnsoup.el (nnsoup-directory, nnsoup-packer, nnsoup-packet-directory):
2457 Use gnus-home-directory instead of "~/" or "$HOME".
2458
2459 2007-01-17 Teodor Zlatanov <tzz@lifelogs.com>
2460
2461 * encrypt.el (encrypt-insert-file-contents): Add better prompt
2462 to mention filename.
2463 Add comments at beginning regarding usage.
2464 (encrypt-write-file-contents): Change interactive so a string is
2465 acceptable. If the file has no associated model, show an error instead
2466 of a nonsense prompt.
2467
2468 2007-01-16 TSUCHIYA Masatoshi <tsuchiya@namazu.org>
2469
2470 * spam.el (spam-bsfilter-ham-switch): Fix typo.
2471 Thanks to Yoshihiko Yamada for kind notification of this typo.
2472
2473 2007-01-12 Kenichi Handa <handa@m17n.org>
2474
2475 * uudecode.el (uudecode-decode-region-internal): Make it work in a
2476 multibyte buffer.
2477
2478 2007-01-14 Reiner Steib <Reiner.Steib@gmx.de>
2479
2480 * gnus-score.el (gnus-score-fast-scoring): New variable.
2481 (gnus-score-headers): Use it.
2482
2483 * gnus-sum.el (gnus-auto-select-first): Improve doc string.
2484
2485 * message.el (message-cite-original-1): Call
2486 gnus-article-highlight-citation if requested.
2487 (message-make-from): Allow name and address as optional arguments.
2488
2489 * gnus-cite.el (gnus-article-highlight-citation): Add SAME-BUFFER arg.
2490
2491 * gnus-art.el (gnus-article-browse-html-article): Add warning about web
2492 bugs to doc string.
2493 (gnus-button-alist): Add mid\\|message-id.
2494 (gnus-button-fetch-group): Extend for use in
2495 `browse-url-browser-function'.
2496 (gnus-button-url-regexp): Try to catch paired parentheses like in
2497 Wikipedia URLs.
2498
2499 * gnus-sum.el (gnus-summary-reparent-children): Another doc string fix.
2500 Suggested by Simon Krahnke <overlord@gmx.li>.
2501
2502 2007-01-13 Romain Francoise <romain@orebokech.com>
2503
2504 * nnml.el (nnml-use-compressed-files): Fix typo in docstring.
2505 Update copyright.
2506
2507 2007-01-13 Patric Mueller <bhaak@bigfoot.com> (tiny change)
2508
2509 * gnus-sum.el (gnus-summary-reparent-children): Fix typo in doc string.
2510
2511 2007-01-09 Teodor Zlatanov <tzz@lifelogs.com>
2512
2513 * gnus-registry.el (gnus-registry-unfollowed-groups)
2514 (gnus-registry-split-fancy-with-parent): Fix documentation.
2515
2516 2007-01-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
2517
2518 * spam-report.el (spam-report-gmane-internal): Speed up spam reporting
2519 from nnweb groups.
2520
2521 2006-12-31 Lars Magne Ingebrigtsen <larsi@gnus.org>
2522
2523 * spam-report.el (spam-report-gmane-internal): Add necessary "/" to
2524 Xref urls. Erase buffer before requesting head.
2525
2526 * mm-decode.el (mm-display-external): Use itimer function for XEmacs.
2527
2528 2007-01-07 Reiner Steib <Reiner.Steib@gmx.de>
2529
2530 * gnus-soup.el (gnus-soup): New custom group. Make user variables
2531 customizable.
2532
2533 2007-01-05 Daiki Ueno <ueno@unixuser.org>
2534
2535 * mml2015.el (mml2015-epg-sign): Ask user whether to skip or abort if
2536 no signing key is found.
2537 (mml2015-epg-encrypt): Ask user whether to skip or abort if
2538 no encrypting and/or signing key is found.
2539
2540 2007-01-03 Reiner Steib <Reiner.Steib@gmx.de>
2541
2542 * spam-report.el (spam-report-gmane-spam): Remove redundant message.
2543
2544 2007-01-01 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
2545
2546 * nnweb.el (nnweb-gmane-create-mapping): Put back code to merge the
2547 headers read from disk with the ones newly found in the current search.
2548 This should no longer cause problems, because the article numbers in
2549 Gmane's `nov.php' output are ignored since the previous change.
2550
2551 2007-01-02 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
2552
2553 * gmm-utils.el (gmm-tool-bar-style): Fix custom type.
2554
2555 2007-01-01 Katsumi Yamaoka <yamaoka@jpl.org>
2556
2557 * mm-decode.el (mm-display-external): Use itimer function for XEmacs.
2558
2559 2007-01-01 Romain Francoise <romain@orebokech.com>
2560
2561 * gnus-sum.el (gnus-summary-make-menu-bar): Fix typo.
2562
2563 2006-12-31 Steve Youngs <steve@sxemacs.org>
2564
2565 * gnus-cite.el: Load easy-mmode at compile time for (S)XEmacs to get
2566 `define-minor-mode' macro definition expanded properly.
2567 (gnus-message-citation-mode): This is now OK for (S)XEmacs so don't
2568 exclude it there.
2569
2570 * gnus-msg.el (gnus-message-highlight-citation): Revert Reiner's patch
2571 of 2006-12-30. The default is nil on (S)XEmacs already because of the
2572 `fboundp' test.
2573 (gnus-message-citation-mode): Revert Reiner's patch of 2006-12-30.
2574 This is OK to autoload in (S)XEmacs now.
2575
2576 2006-12-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
2577
2578 * gnus-sum.el (gnus-summary-limit-to-singletons): New command and
2579 keystroke.
2580 (gnus-summary-limit-to-singletons): Fix typo.
2581
2582 * spam-report.el (spam-report-gmane-internal): Fall back on Xref if all
2583 else fails.
2584
2585 2006-12-30 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
2586
2587 * gnus-cite.el (turn-off-gnus-message-citation-mode): Fix typo in
2588 docstring.
2589
2590 * gnus-sum.el (gnus-summary-insert-ticked-articles): New command.
2591 (gnus-summary-make-menu-bar, gnus-summary-buffer-map): Bind it.
2592 (gnus-summary-insert-dormant-articles): Fix typo in message.
2593
2594 2006-12-30 Reiner Steib <Reiner.Steib@gmx.de>
2595
2596 * gnus-msg.el (gnus-message-highlight-citation): Ensure default to be
2597 nil for XEmacs.
2598 (gnus-message-citation-mode): Don't autoload in XEmacs.
2599
2600 * gnus-cite.el (gnus-message-citation-mode): Don't define in XEmacs.
2601
2602 2006-12-29 Jouni K. Seppänen <jks@iki.fi>
2603
2604 * nnimap.el (nnimap-expunge-search-string): Mention
2605 nnimap-search-uids-not-since-is-evil in docstring.
2606
2607 2006-12-28 Reiner Steib <Reiner.Steib@gmx.de>
2608
2609 * spam.el: Revert to make-obsolete-variable because
2610 define-obsolete-variable-alias is not supported in Emacs 21.
2611
2612 * spam.el (spam-ifile-path, spam-ifile-database-path)
2613 (spam-bogofilter-path): Use define-obsolete-variable-alias instead of
2614 make-obsolete-variable.
2615 (spam-bsfilter-path, spam-bsfilter-program)
2616 (spam-spamassassin-path, spam-spamassassin-program)
2617 (spam-sa-learn-path, spam-sa-learn-program): Rename variables. Don't
2618 use "path" inappropriately.
2619 (spam-check-spamassassin, spam-spamassassin-register-with-sa-learn)
2620 (spam-check-bsfilter, spam-bsfilter-register-with-bsfilter): Use new
2621 variable names.
2622
2623 2006-12-28 Daiki Ueno <ueno@unixuser.org>
2624
2625 * gnus-sum.el (gnus-summary-next-article): Make sure we are in the
2626 summary buffer.
2627
2628 * password.el (password-cache-remove): Use clear-string to burn
2629 password, if available.
2630
2631 2006-12-26 Reiner Steib <Reiner.Steib@gmx.de>
2632
2633 * gnus-msg.el (gnus-message-citation-mode): Fix autoload.
2634
2635 * gnus-cite.el (gnus-message-highlight-citation): Move to gnus-msg.el.
2636
2637 * gnus-msg.el (gnus-setup-message): Add gnus-message-citation-mode.
2638 (gnus-message-highlight-citation): Move defcustom here from
2639 gnus-cite.el.
2640 (gnus-message-citation-mode): Autoload.
2641
2642 * gnus-cite.el: Adjust Oliver's code to Gnus namespace. Add some
2643 checks to make it compile with XEmacs.
2644 (gnus-message-citation-mode): New minor mode.
2645 (gnus-message-max-citation-depth, gnus-message-citation-keywords)
2646 (gnus-message-highlight-citation): New variables.
2647 (gnus-message-search-citation-line)
2648 (gnus-message-add-citation-keywords)
2649 (gnus-message-remove-citation-keywords)
2650 (turn-on-gnus-message-citation-mode)
2651 (turn-off-gnus-message-citation-mode): New functions.
2652
2653 2006-12-26 Oliver Scholz <epameinondas@gmx.de>
2654
2655 * gnus-cite.el: Enable highlighting of different citation levels in
2656 message-mode.
2657
2658 2006-12-26 Reiner Steib <Reiner.Steib@gmx.de>
2659
2660 * message.el (message-make-fqdn): Fix comment.
2661 (message-bogus-system-names): Add ".local".
2662
2663 * spam.el (spam-ifile-path, spam-ifile-program)
2664 (spam-ifile-database-path, spam-ifile-database)
2665 (spam-bogofilter-path, spam-bogofilter-program): Rename variables.
2666 Don't use "path" inappropriately.
2667 (spam-spamoracle-database, spam-get-ifile-database-parameter): Fix doc
2668 strings.
2669 (spam-check-ifile, spam-ifile-register-with-ifile)
2670 (spam-check-bogofilter, spam-bogofilter-register-with-bogofilter): Use
2671 new variable names.
2672
2673 * gnus-art.el (gnus-treat-display-x-face, gnus-treat-display-face)
2674 (gnus-treat-display-smileys): Simplify using
2675 gnus-image-type-available-p.
2676
2677 * gnus-ems.el (gnus-image-type-available-p): Use display-images-p if
2678 available.
2679
2680 2006-12-22 Katsumi Yamaoka <yamaoka@jpl.org>
2681
2682 * nnrss.el (nnrss-fetch): Replace buffer's contents with the decoded
2683 one after turning on the buffer's multibyteness instead of decoding
2684 them directly in the unibyte buffer that causes unexpected conversion
2685 in Emacs 23 (unicode).
2686
2687 2006-12-21 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
2688
2689 * message.el (message-generate-hashcash): Fix custom type.
2690
2691 2006-12-20 Reiner Steib <Reiner.Steib@gmx.de>
2692
2693 * gnus-sum.el (gnus-summary-recenter): Remove debug messages.
2694
2695 2006-12-20 Reiner Steib <Reiner.Steib@gmx.de>
2696
2697 * gnus-group.el (gnus-group-tool-bar-gnome): Exchange connect and
2698 disconnect icons. Add help text.
2699
2700 2006-12-20 Teodor Zlatanov <tzz@lifelogs.com>
2701
2702 * spam.el (spam-extra-header-to-number): CRM114 spam score is
2703 negated to be consistent with the others we handle.
2704
2705 2006-12-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
2706
2707 * gnus-art.el (gnus-article-setup-buffer): Actually set the local
2708 version of gnus-summary-buffer to something, so that we can use two
2709 article buffers at the same time.
2710
2711 2006-12-18 Teodor Zlatanov <tzz@lifelogs.com>
2712
2713 * spam.el (spam-necessary-extra-headers): Make spam-use-regex-headers
2714 trigger all the extra headers.
2715 (spam-extra-header-to-number): Don't require spam-use-crm114 for header
2716 sorting.
2717
2718 2006-12-14 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
2719
2720 * nnweb.el (nnweb-gmane-create-mapping): Keep the mapping stable for
2721 solid groups.
2722
2723 2006-12-13 Reiner Steib <Reiner.Steib@gmx.de>
2724
2725 * legacy-gnus-agent.el: Add Copyright notice.
2726
2727 2006-12-12 Chong Yidong <cyd@stupidchicken.com>
2728
2729 * gnus-sum.el (gnus-make-thread-indent-array): Fix last change.
2730
2731 2006-12-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
2732
2733 * nnweb.el (nnweb-gmane-search): Placeholder TOPDOC setting.
2734
2735 * gnus-sum.el (gnus-summary-recenter): Force setting the window start
2736 to make it work reliably in CVS Emacs.
2737 (gnus-summary-limit-strange-charsets-predicate)
2738 (gnus-summary-limit-to-predicate): New functions.
2739
2740 2006-12-08 Chong Yidong <cyd@stupidchicken.com>
2741
2742 * gnus-sum.el (gnus-make-thread-indent-array): New optional arg
2743 specifying array size.
2744 (gnus-summary-insert-line, gnus-summary-prepare-threads): Regrow indent
2745 array if it is too small.
2746 (gnus-sort-threads-recursive): Renamed from gnus-sort-thread-1.
2747 (gnus-sort-threads-loop): New function.
2748
2749 2006-12-06 Chris Moore <dooglus@gmail.com>
2750
2751 * gnus-sum.el (gnus-sort-threads, gnus-summary-limit-children):
2752 Use `max' to avoid the value of `max-lisp-eval-depth' decreasing.
2753
2754 2006-12-04 Jouni K. Seppänen <jks@iki.fi>
2755
2756 * mm-url.el (mm-url-predefined-programs): Call curl with correct
2757 options.
2758
2759 2006-12-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
2760
2761 * spam-report.el (spam-report-url-ping-plain): Wait for output to avoid
2762 DOS-ing the recipient.
2763
2764 * nnweb.el (nnweb-gmane-create-mapping): Use the article number from
2765 the headers when creating the mapping to avoid mismappings.
2766 (nnweb-gmane-create-mapping): Always nix out old mapping.
2767
2768 2006-11-30 Katsumi Yamaoka <yamaoka@jpl.org>
2769
2770 * message.el (message-signed-or-encrypted-p): Bind mm-decrypt-option
2771 and mm-verify-option to never.
2772
2773 2006-11-30 Katsumi Yamaoka <yamaoka@jpl.org>
2774
2775 * message.el (message-signed-or-encrypted-p): New function.
2776 (message-forward-make-body): Use it.
2777
2778 * mml2015.el (mml2015-pgg-clear-verify, mml2015-epg-clear-verify):
2779 Replace encode-coding-string with mm-encode-coding-string.
2780
2781 2006-11-29 Katsumi Yamaoka <yamaoka@jpl.org>
2782
2783 * nneething.el (nneething-decode-file-name): Replace
2784 decode-coding-string with mm-decode-coding-string.
2785
2786 * gnus-int.el (gnus-open-server): Say failed server's name.
2787
2788 2006-11-24 Juanma Barranquero <lekktu@gmail.com>
2789
2790 * gnus-agent.el (gnus-agent-expire-unagentized-dirs)
2791 (gnus-agent-regenerate-group): Fix space/tab mixup in messages.
2792
2793 * gnus-art.el (gnus-article-x-face-command, gnus-numeric-save-name):
2794 * gnus-group.el (gnus-group-sort-function, gnus-group-line-format)
2795 (gnus-group-mode, gnus-group-read-group, gnus-group-delete-group)
2796 (gnus-group-make-directory-group, gnus-group-transpose-groups):
2797 * gnus-start.el (gnus-options-subscribe, gnus-options-not-subscribe)
2798 (gnus-subscribe-newsgroup, gnus-1):
2799 * gnus-sum.el (gnus-summary-make-false-root, gnus-make-threads):
2800 * gnus.el (gnus-nntp-server, gnus-use-cross-reference)
2801 (gnus-valid-select-methods, total-expire, gnus-summary-line-format)
2802 (gnus-group-read-only-p): Fix space/tab mixup in docstrings.
2803
2804 2006-11-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
2805
2806 * gnus-sum.el (gnus-summary-limit-to-headers): New command and
2807 keystroke.
2808 (gnus-summary-limit-to-bodies): Implement headersp.
2809
2810 2006-11-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
2811
2812 * dns.el (query-dns): Protect against "Process dns deleted" strings.
2813
2814 2006-11-21 Katsumi Yamaoka <yamaoka@jpl.org>
2815
2816 * mm-util.el (mm-string-to-multibyte): Alias to identity in XEmacs.
2817
2818 2006-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
2819
2820 * message.el (message-generate-hashcash): Expand range of values to
2821 include `opportunistic'.
2822 (message-send-mail): Use it.
2823
2824 2006-11-18 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
2825
2826 * mm-uu.el (mm-uu-pgp-signed-extract-1): Make last fix more thorough
2827 and comment it.
2828
2829 * nnslashdot.el (nnslashdot-retrieve-headers-1): Update regexp.
2830
2831 2006-11-15 Reiner Steib <Reiner.Steib@gmx.de>
2832
2833 * gnus-util.el (gnus-extract-address-components): Improve comment.
2834
2835 2006-11-14 Katsumi Yamaoka <yamaoka@jpl.org>
2836
2837 * gnus-util.el (gnus-extract-address-components): Work with address in
2838 which the name portion contains @.
2839
2840 2006-11-14 Reiner Steib <Reiner.Steib@gmx.de>
2841
2842 * gnus.el (gnus-start): Move custom group up.
2843 (gnus-select-method): Don't autoload, but make it available for
2844 `customize-variable'.
2845 (gnus-getenv-nntpserver): Don't autoload.
2846
2847 2006-11-14 Teodor Zlatanov <tzz@lifelogs.com>
2848
2849 * spam.el: Revert to 7.82 (removed changes since 2006-10-16).
2850
2851 2006-11-14 Reiner Steib <Reiner.Steib@gmx.de>
2852
2853 * message.el (message-sendmail-extra-arguments): New variable.
2854 (message-send-mail-with-sendmail): Use it.
2855
2856 2006-11-14 Katsumi Yamaoka <yamaoka@jpl.org>
2857
2858 * mml.el (mml-generate-mime-1): Use mm-string-as-unibyte instead of
2859 mm-with-unibyte-current-buffer to make string unibyte.
2860
2861 * mm-decode.el (mm-insert-part): Use mm-string-to-multibyte instead of
2862 mm-string-as-multibyte.
2863
2864 2006-11-14 Daiki Ueno <ueno@unixuser.org>
2865
2866 * mml2015.el (mml2015-epg-sign): Prefix "pgp-" to a micalg value.
2867 Reported by Werner Koch <wk@gnupg.org>.
2868
2869 2006-11-14 Daiki Ueno <ueno@p360>
2870
2871 * mml2015.el: Autoload epa-select-keys when compiling.
2872
2873 2006-11-13 Daiki Ueno <ueno@unixuser.org>
2874
2875 * mml2015.el (mml2015-epg-sign): Save the signing keys in
2876 message-options.
2877 (mml2015-epg-encrypt): Save the recipient keys in message-options.
2878
2879 2006-11-13 Daiki Ueno <ueno@unixuser.org>
2880
2881 * mml2015.el (mml2015-epg-encrypt): Removed backward compatibility for
2882 EasyPG (< 0.0.6).
2883 (mml2015-always-trust): New user option.
2884 (mml2015-epg-passphrase-callback): Display key ID on the passphrase
2885 prompt.
2886
2887 2006-11-10 Katsumi Yamaoka <yamaoka@jpl.org>
2888
2889 * nntp.el (nntp-authinfo-force): New variable.
2890 (nntp-send-authinfo): Use it.
2891
2892 2006-11-09 Reiner Steib <Reiner.Steib@gmx.de>
2893
2894 * message.el (message-strip-subject-encoded-words): Allow _not_ to
2895 decode encoded words. Improve prompt. Add comment about forwarding.
2896 (message-replacement-char): Move up.
2897
2898 2006-11-08 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
2899
2900 * gnus-sum.el (gnus-summary-catchup): Use gnus-sorted-intersection
2901 instead of gnus-intersection because arguments of gnus-sorted-nunion
2902 must be sorted. This avoids corruption of gnus-newsgroup-unreads.
2903
2904 2006-11-07 Reiner Steib <Reiner.Steib@gmx.de>
2905
2906 * message.el (message-strip-subject-encoded-words): Reformat prompt.
2907 (message-simplify-subject-functions): Enable
2908 message-strip-subject-encoded-words by default.
2909
2910 2006-11-06 Reiner Steib <Reiner.Steib@gmx.de>
2911
2912 * message.el (message-strip-subject-encoded-words): New function
2913 (message-simplify-subject-functions): New variable.
2914 (message-simplify-subject): Use it. Fix typo in doc string.
2915 Support message-strip-subject-encoded-words.
2916
2917 2006-11-03 Juanma Barranquero <lekktu@gmail.com>
2918
2919 * gnus-diary.el (gnus-diary-delay-format-function):
2920 * nndiary.el (nndiary-reminders):
2921 * nnsoup.el (nnsoup-always-save): Use "non-nil" in docstrings.
2922
2923 2006-11-01 Reiner Steib <Reiner.Steib@gmx.de>
2924
2925 * gnus-art.el (article-hide-boring-headers): Fetch date from
2926 gnus-original-article-buffer to avoid problems with localized date
2927 strings.
2928
2929 2006-10-30 Katsumi Yamaoka <yamaoka@jpl.org>
2930
2931 * html2text.el (html2text-format-tags): Avoid infloop on open tags.
2932
2933 2006-10-29 Reiner Steib <Reiner.Steib@gmx.de>
2934
2935 * mm-util.el (mm-codepage-iso-8859-list, mm-codepage-ibm-list):
2936 New variables.
2937 (mm-setup-codepage-iso-8859, mm-setup-codepage-ibm): New functions.
2938 (mm-charset-synonym-alist): Move some entries to
2939 mm-codepage-iso-8859-list.
2940 (mm-charset-synonym-alist, mm-charset-override-alist): Add
2941 iso-8859-8/windows-1255 and iso-8859-9/windows-1254.
2942
2943 2006-10-29 Katsumi Yamaoka <yamaoka@jpl.org>
2944
2945 * gnus-sum.el (gnus-set-mode-line): Quote % in group name.
2946
2947 2006-10-28 Reiner Steib <Reiner.Steib@gmx.de>
2948
2949 * gnus-agent.el (gnus-agent-make-mode-line-string): Make it compatible
2950 with Emacs 21 and XEmacs.
2951
2952 2006-10-27 Teodor Zlatanov <tzz@lifelogs.com>
2953
2954 * spam.el (spam-parse-address): New function for better parsing,
2955 catching errors, etc.
2956 (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list): Use it.
2957
2958 2006-10-26 Reiner Steib <Reiner.Steib@gmx.de>
2959
2960 * mm-view.el: Add interactive arg to html2text autoload.
2961
2962 2006-10-25 Katsumi Yamaoka <yamaoka@jpl.org>
2963
2964 * gnus-sum.el (gnus-summary-move-article): Use no-encode for `B B'.
2965
2966 2006-10-24 Reiner Steib <Reiner.Steib@gmx.de>
2967
2968 * mm-util.el (mm-codepage-iso-8859-list, mm-codepage-ibm-list): New
2969 variables.
2970 (mm-setup-codepage-iso-8859, mm-setup-codepage-ibm): New functions.
2971 (mm-charset-synonym-alist): Move some entries to
2972 mm-codepage-iso-8859-list.
2973
2974 * gnus.el (gnus-getenv-nntpserver, gnus-select-method): Autoload.
2975
2976 2006-10-23 Reiner Steib <Reiner.Steib@gmx.de>
2977
2978 * message.el (message-citation-line-format)
2979 (message-insert-formated-citation-line): Fix implementation of %E, %N
2980 and %n according to the doc string.
2981
2982 2006-10-20 Teodor Zlatanov <tzz@lifelogs.com>
2983
2984 * spam.el (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list): Use
2985 car-safe to avoid bad parses.
2986
2987 2006-10-20 Katsumi Yamaoka <yamaoka@jpl.org>
2988
2989 * gnus-group.el (gnus-group-make-doc-group): Work for non-ASCII group
2990 names.
2991
2992 * gnus-sum.el (gnus-select-newsgroup): Decode group name.
2993
2994 2006-10-19 Katsumi Yamaoka <yamaoka@jpl.org>
2995
2996 * gnus-draft.el (gnus-draft-edit-message): Make sure to remove Date
2997 header.
2998
2999 * message.el (message-draft-headers): Add Date.
3000 (message-headers-to-generate): Fix typo in docstring.
3001
3002 * nndraft.el (nndraft-required-headers): New variable.
3003 (nndraft-generate-headers): Use it.
3004
3005 * gnus-registry.el (gnus-registry-wash-for-keywords): Bind `word'.
3006
3007 2006-10-16 Teodor Zlatanov <tzz@lifelogs.com>
3008
3009 * gnus-registry.el (gnus-registry-wash-for-keywords)
3010 (gnus-registry-find-keywords): New functions to allow easy searching of
3011 articles that are in the registry.
3012
3013 2006-10-16 Teodor Zlatanov <tzz@lifelogs.com>
3014
3015 * spam.el (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list): Use
3016 ietf-drums-parse-address instead of gnus-extract-address-components.
3017 Reported by Damien Elmes <damien@repose.cx>.
3018
3019 2006-10-19 Reiner Steib <Reiner.Steib@gmx.de>
3020
3021 * gnus.el (gnus-mime): Remove unused custom group.
3022
3023 2006-10-13 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
3024
3025 * mm-uu.el (mm-uu-pgp-signed-extract-1): Use RFC 2440 definition of
3026 "blank line" when searching for end of armor headers.
3027
3028 2006-10-11 Katsumi Yamaoka <yamaoka@jpl.org>
3029
3030 * gmm-utils.el (gmm-write-region): Fix variable name.
3031
3032 2006-10-10 Reiner Steib <Reiner.Steib@gmx.de>
3033
3034 * gmm-utils.el (gmm-write-region): New function based on compatibility
3035 code from `mm-make-temp-file'.
3036
3037 * mm-util.el (mm-make-temp-file): Use `gmm-write-region'.
3038
3039 * nnmaildir.el (nnmaildir--update-nov)
3040 (nnmaildir-request-replace-article, nnmaildir-request-accept-article):
3041 Use `gmm-write-region'.
3042
3043 2006-10-04 Reiner Steib <Reiner.Steib@gmx.de>
3044
3045 * mm-util.el (mm-charset-synonym-alist, mm-charset-override-alist): Add
3046 iso-8859-8/windows-1255 and iso-8859-9/windows-1254.
3047
3048 * nnheader.el (nnheader-find-file-noselect): Inhibit version-control.
3049
3050 * message.el (message-replacement-char): New variable.
3051 (message-fix-before-sending): Use it.
3052 (message-simplify-subject): New function to remove duplicate code.
3053 (message-reply, message-followup): Use it.
3054
3055 * gnus-sum.el (gnus-summary-make-menu-bar): Clarify
3056 gnus-summary-limit-to-articles.
3057
3058 2006-10-03 Katsumi Yamaoka <yamaoka@jpl.org>
3059
3060 * gnus-util.el (gnus-with-local-quit): New macro.
3061
3062 * gnus-demon.el (gnus-demon): Replace with-local-quit with it.
3063
3064 2006-10-02 Teodor Zlatanov <tzz@lifelogs.com>
3065
3066 * gnus-util.el (gnus-string-remove-all-properties): Another fix to
3067 ignore non-string data.
3068
3069 2006-09-29 Teodor Zlatanov <tzz@lifelogs.com>
3070
3071 * gnus-util.el (gnus-string-remove-all-properties): Fix to ignore
3072 non-string data (needs to be done in the registry too).
3073
3074 2006-09-28 Teodor Zlatanov <tzz@lifelogs.com>
3075
3076 * gnus-registry.el (gnus-registry-save, gnus-registry-cache-save)
3077 (gnus-registry-remove-alist-text-properties, gnus-registry-action)
3078 (gnus-registry-split-fancy-with-parent)
3079 (gnus-registry-fetch-simplified-message-subject-fast)
3080 (gnus-registry-fetch-sender-fast, gnus-registry-store-extra-entry):
3081 Remove text properties on ingress into the registry and when it's saved.
3082 (gnus-registry-clean-empty-function): Fix bug with cleaning the
3083 registry from entries with no groups.
3084
3085 2006-09-28 Teodor Zlatanov <tzz@lifelogs.com>
3086
3087 * gnus-util.el (gnus-string-remove-all-properties): Add utility
3088 function to remove string properties.
3089
3090 2006-09-28 Reiner Steib <Reiner.Steib@gmx.de>
3091
3092 * gmm-utils.el (gmm): Adjust custom version.
3093
3094 * mm-util.el (mm-charset-override-alist, mm-charset-eval-alist): Adjust
3095 custom version.
3096
3097 * gnus-draft.el (gnus-draft-mode): Don't call `mml-mode'.
3098
3099 2006-09-27 Reiner Steib <Reiner.Steib@gmx.de>
3100
3101 * gnus-art.el (gnus-insert-prev-page-button)
3102 (gnus-insert-next-page-button): Simplify. Reformat.
3103
3104 2006-09-27 Maxime Edouard Robert Froumentin <max@lapin-bleu.net>
3105
3106 * gnus-art.el (gnus-insert-prev-page-button)
3107 (gnus-insert-next-page-button): Apply gnus-article-button-face.
3108
3109 2006-09-25 Chong Yidong <cyd@stupidchicken.com>
3110
3111 * gnus-demon.el (gnus-demon): Use with-local-quit to avoid hangs.
3112
3113 2006-09-20 Maxime Edouard Robert Froumentin <max@lapin-bleu.net>
3114
3115 (gnus-insert-mime-button, gnus-insert-mime-security-button): Apply
3116 gnus-article-button-face to MIME and security buttons.
3117
3118 2006-09-20 Reiner Steib <Reiner.Steib@gmx.de>
3119
3120 * gnus-art.el (gnus-button-url-regexp): Try to make the value more
3121 readable.
3122
3123 2006-09-20 Steve Youngs <steve@sxemacs.org>
3124
3125 * gnus-art.el (gnus-article-browse-html-parts): They're files, so use
3126 `browse-url-of-file' instead of `browse-url'.
3127
3128 2006-09-19 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
3129
3130 * nnslashdot.el (nnslashdot-request-article): Update end-of-article
3131 regexp. Articles containing quotation were cut prematurely.
3132
3133 2006-09-16 Katsumi Yamaoka <yamaoka@jpl.org>
3134
3135 * message.el (message-cite-original-1): Use nobody by default for the
3136 value of From header.
3137 (message-reply): Ditto.
3138
3139 2006-09-11 Daiki Ueno <ueno@unixuser.org>
3140
3141 * mml2015.el (mml2015-epg-clear-decrypt): Don't append verify results
3142 to the gnus-info. This fixes a bug of inline-PGP message verification.
3143 Reported by Michael Piotrowski <mxp@dynalabs.de>.
3144
3145 2006-09-09 Reiner Steib <Reiner.Steib@gmx.de>
3146
3147 * pop3.el (pop3-leave-mail-on-server): Mention problem of duplicate
3148 mails in the doc string. Add some URLs in comment.
3149 (pop3-movemail): Warn about pop3-leave-mail-on-server.
3150
3151 2006-09-07 Katsumi Yamaoka <yamaoka@jpl.org>
3152
3153 * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings): Fix
3154 backslashes handling and the way to find boundaries of quoted strings.
3155
3156 2006-09-07 Daiki Ueno <ueno@unixuser.org>
3157
3158 * mml1991.el (mml1991-epg-encrypt): Simply throw an error if
3159 mml1991-encrypt-to-self is set and mml1991-signers is not set.
3160 * mml2015.el (mml2015-epg-encrypt): Simply throw an error if
3161 mml2015-encrypt-to-self is set and mml2015-signers is not set.
3162
3163 2006-09-06 Reiner Steib <Reiner.Steib@gmx.de>
3164
3165 * gnus-art.el (gnus-button-marker-list): Move up. Convert comment into
3166 doc string.
3167 (gnus-button-regexp, gnus-button-last): Remove unused variables.
3168
3169 2006-09-06 Simon Josefsson <jas@extundo.com>
3170
3171 * mml2015.el (mml2015-use): Doc fix, mention epg.
3172
3173 2006-09-06 Daiki Ueno <ueno@unixuser.org>
3174
3175 * mml2015.el (mml2015-use): Default to epg, if available.
3176
3177 2006-09-06 Daiki Ueno <ueno@unixuser.org>
3178
3179 * mml1991.el (mml1991-epg-sign): Don't lookup a private key by
3180 message-sender.
3181 (mml1991-epg-encrypt): Ditto.
3182 * mml2015.el (mml2015-epg-sign): Don't lookup a private key by
3183 message-sender.
3184 (mml2015-epg-encrypt): Ditto.
3185
3186 2006-09-04 Chong Yidong <cyd@stupidchicken.com>
3187
3188 * message.el (message-send-mail-with-sendmail): Look for sendmail in
3189 several common directories.
3190
3191 2006-09-05 Daiki Ueno <ueno@unixuser.org>
3192
3193 * mml2015.el (mml2015-epg-encrypt): Expand group configuration.
3194 * mml1991.el (mml1991-epg-encrypt): Expand group configuration.
3195
3196 2006-09-04 Katsumi Yamaoka <yamaoka@jpl.org>
3197
3198 * gnus-art.el (article-decode-encoded-words): Make it fast.
3199
3200 2006-09-04 Katsumi Yamaoka <yamaoka@jpl.org>
3201
3202 * gnus-art.el (article-decode-encoded-words): Don't infloop in XEmacs.
3203
3204 * rfc2047.el (rfc2047-strip-backslashes-in-quoted-strings): Decode `\\'
3205 in quoted string into `\'.
3206
3207 2006-09-01 Katsumi Yamaoka <yamaoka@jpl.org>
3208
3209 * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
3210 Use standard-syntax-table.
3211
3212 2006-09-01 Katsumi Yamaoka <yamaoka@jpl.org>
3213
3214 * gnus-art.el (gnus-decode-address-function): New variable.
3215 (article-decode-encoded-words): Use it to decode headers which are
3216 assumed to contain addresses.
3217 (gnus-mime-delete-part): Remove useless `or'.
3218
3219 * gnus-sum.el (gnus-decode-encoded-address-function): New variable.
3220 (gnus-summary-from-or-to-or-newsgroups): Use it to decode To header.
3221 (gnus-nov-parse-line): Use it to decode From header.
3222 (gnus-get-newsgroup-headers): Ditto.
3223 (gnus-summary-enter-digest-group): Use it to decode `to-address'.
3224
3225 * mail-parse.el (mail-decode-encoded-address-region): New alias.
3226 (mail-decode-encoded-address-string): New alias.
3227
3228 * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
3229 New function.
3230 (rfc2047-encode-message-header, rfc2047-encode-region): Use it.
3231 (rfc2047-strip-backslashes-in-quoted-strings): New fnction.
3232 (rfc2047-decode-region): Use it; add optional argument `address-mime'.
3233 (rfc2047-decode-string): Ditto.
3234 (rfc2047-decode-address-region): New function.
3235 (rfc2047-decode-address-string): New function.
3236
3237 2006-08-31 Reiner Steib <Reiner.Steib@gmx.de>
3238
3239 * message.el (message-caesar-buffer-body): Allow rotating headers.
3240
3241 * gnus-sum.el (gnus-summary-caesar-message): Allow rotating headers.
3242
3243 * message.el (message-insert-formated-citation-line): Fix %f.
3244 Reported by Torsten Bronger <bronger@physik.rwth-aachen.de> .
3245
3246 2006-08-18 Katsumi Yamaoka <yamaoka@jpl.org>
3247
3248 * gnus-bookmark.el (gnus-bookmark-file-coding-system): New variable.
3249 (gnus-bookmark-mouse-available-p): New macro.
3250 (gnus-bookmark-bmenu-list): Use it; use gnus-mouse-2.
3251 (gnus-bookmark-bmenu-show-infos): Use it.
3252 (gnus-bookmark-insert-details): Use it; use gnus-mouse-2.
3253 (gnus-bookmark-bmenu-hide-infos): Ditto.
3254 (gnus-bookmark-remove-properties): New function.
3255 (gnus-bookmark-set, gnus-bookmark-make-cell): Use it.
3256 (gnus-bookmark-set-bookmark-name): Don't use 2nd arg of split-string.
3257 (gnus-bookmark-write-file): Bind coding-system-for-write.
3258 (gnus-bookmark-insert-file-format-version-stamp): Add coding cookie.
3259 (gnus-bookmark-jump): Make completing-read work with XEmacs; activate
3260 group before selecting it.
3261 (gnus-bookmark-get-bookmark): Use assoc instead of assoc-string.
3262 (gnus-bookmark-bmenu-mode-map): Bind `q' to bury-buffer instead of
3263 quit-window if it is not available; use gnus-mouse-2 and bind it to
3264 gnus-bookmark-bmenu-select-by-mouse.
3265 (gnus-bookmark-show-details): Remove unused variable `details-list'.
3266 (gnus-bookmark-bmenu-select-by-mouse): New function.
3267
3268 2006-08-13 Romain Francoise <romain@orebokech.com>
3269
3270 * mm-extern.el (mm-extern-mail-server): End `y-or-n-p' prompt with a
3271 space.
3272
3273 2006-08-09 Katsumi Yamaoka <yamaoka@jpl.org>
3274
3275 * compface.el (uncompface): Use binary rather than raw-text-unix.
3276
3277 2006-08-09 Katsumi Yamaoka <yamaoka@jpl.org>
3278
3279 * compface.el (uncompface): Make sure the eol conversion doesn't take
3280 place when communicating with the external programs. Reported by
3281 ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
3282
3283 2006-07-31 Katsumi Yamaoka <yamaoka@jpl.org>
3284
3285 * nnheader.el (nnheader-insert-head): Fix typo in comment.
3286
3287 2006-07-31 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
3288
3289 * nnweb.el (nnweb-google-parse-1): Update regexp for author and date.
3290 Make it more robust by parsing author and date independently.
3291
3292 2006-07-28 Katsumi Yamaoka <yamaoka@jpl.org>
3293
3294 * nnheader.el (nnheader-insert-head): Make it work with Mac as well.
3295
3296 2006-07-28 Daiki Ueno <ueno@unixuser.org>
3297
3298 * mml2015.el (mml2015-epg-sign): If mml2015-signers is not set, use the
3299 first matching secret key.
3300 (mml2015-epg-encrypt): Ditto.
3301
3302 * mml1991.el (mml1991-epg-sign): If mml1991-signers is not set, use the
3303 first matching secret key.
3304 (mml1991-epg-encrypt): Ditto.
3305
3306 * mml2015.el (mml2015-encrypt-to-self): New user option.
3307 (mml2015-epg-encrypt): Append mml2015-signers to recipients list if
3308 mml2015-epg-encrypt-to-self is set.
3309
3310 * mml1991.el (mml1991-encrypt-to-self): New variable.
3311 (mml1991-epg-encrypt): Append mml1991-signers to recipients list if
3312 mml1991-epg-encrypt-to-self is set.
3313
3314 * mml2015.el (mml2015-signers): New user option.
3315 (mml2015-epg-sign): Reflect the value of mml2015-signers.
3316 (mml2015-epg-encrypt): Allow to select signing keys.
3317
3318 * mml1991.el (mml1991-signers): New variable.
3319 (mml1991-epg-sign): Reflect the value of mml1991-signers.
3320 (mml1991-epg-encrypt): Allow to select signing keys.
3321
3322 2006-07-27 Katsumi Yamaoka <yamaoka@jpl.org>
3323
3324 * nnheader.el (nnheader-insert-head): Make it work even if the file
3325 uses CRLF for the line-break code.
3326
3327 2006-07-25 Daiki Ueno <ueno@unixuser.org>
3328
3329 * mml2015.el: Require mml-sec instead of password.
3330 (mml2015-verbose): Inherit the default value from mml-secure-verbose.
3331 (mml2015-cache-passphrase): Inherit the default value from
3332 mml-secure-cache-passphrase.
3333 (mml2015-passphrase-cache-expiry): Inherit the default value from
3334 mml-secure-passphrase-cache-expiry.
3335
3336 * mml1991.el: Require mml-sec instead of password.
3337 (mml1991-verbose): Inherit the default value from mml-secure-verbose.
3338 (mml1991-cache-passphrase): Inherit the default value from
3339 mml-secure-cache-passphrase.
3340 (mml1991-passphrase-cache-expiry): Inherit the default value from
3341 mml-secure-passphrase-cache-expiry.
3342
3343 * mml-sec.el: Require password.
3344 (mml-secure-verbose): New user option.
3345 (mml-secure-cache-passphrase): New user option.
3346 (mml-secure-passphrase-cache-expiry): New user option.
3347
3348 2006-07-24 Daiki Ueno <ueno@unixuser.org>
3349
3350 * pgg-def.el (pgg-truncate-key-identifier): Truncate the key ID to 8
3351 letters from the end. Thanks to "David Smith" <davidsmith@acm.org> and
3352 andreas@altroot.de (Andreas Vögele).
3353
3354 FIXME: Use `tiny change'?
3355
3356 2006-07-19 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
3357
3358 * mm-url.el (mm-url-insert-file-contents): Inhibit Connection: close
3359 workaround for the url package included with Emacs.
3360
3361 * nnweb.el (nnweb-google-create-mapping): Update regexp.
3362
3363 2006-07-19 Katsumi Yamaoka <yamaoka@jpl.org>
3364
3365 * gnus-sum.el (gnus-select-newsgroup): Setup the article buffer
3366 correctly. This fixes a bug caused by the 2006-05-12 change.
3367
3368 2006-07-18 Karl Fogel <kfogel@red-bean.com>
3369
3370 * nnmail.el (nnmail-article-group): If splitting raises an error, give
3371 some information about the error when saying that the `bogus' mail
3372 group will be used.
3373
3374 2006-07-17 Reiner Steib <Reiner.Steib@gmx.de>
3375
3376 * gnus-sum.el (gnus-summary-delete-article): Don't use TAB in doc
3377 string.
3378
3379 2006-07-16 NAKAJI Hiroyuki <nakaji@heimat.jp> (tiny change)
3380
3381 * mm-util.el (mm-charset-synonym-alist): Map windows-31j to cp932.
3382
3383 2006-07-14 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
3384
3385 * gnus-start.el (gnus-subscribe-options-newsgroup-method): Doc fix.
3386
3387 2006-07-10 Daiki Ueno <ueno@unixuser.org>
3388
3389 * mml1991.el (mml1991-function-alist): Add epg.
3390 (mml1991-epg-passphrase-callback, mml1991-epg-sign)
3391 (mml1991-epg-encrypt): New functions.
3392
3393 2006-07-10 Daiki Ueno <ueno@unixuser.org>
3394
3395 * mml2015.el (mml2015-verbose): New variable.
3396 (mml2015-cache-passphrase): Ditto.
3397 (mml2015-passphrase-cache-expiry): Ditto.
3398 (mml2015-function-alist): Add epg.
3399 (mml2015-epg-passphrase-callback, mml2015-epg-decrypt)
3400 (mml2015-epg-clear-decrypt, mml2015-epg-verify)
3401 (mml2015-epg-clear-verify, mml2015-epg-sign, mml2015-epg-encrypt): New
3402 functions.
3403
3404 2006-07-08 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
3405
3406 * message.el (message-cite-original-1): Preserve region when removing
3407 quoted text due to X-No-Archive in order to avoid bogus attribution
3408 when citing multiple messages.
3409
3410 2006-06-27 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
3411
3412 * gnus-group.el (gnus-group-sort-by-unread): Fix typo. Reported by
3413 Kenneth Jacker <khj@be.cs.appstate.edu>.
3414
3415 2006-06-26 Reiner Steib <Reiner.Steib@gmx.de>
3416
3417 * gnus-diary.el (gnus-user-format-function-d)
3418 (gnus-user-format-function-D): Autoload.
3419
3420 * imap.el (Commentary): Fix typo.
3421
3422 * gnus-util.el (kill-empty-logs, gnus-byte-compile): Remove anonymous
3423 2006-04-22 contribution.
3424
3425 2006-06-26 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
3426
3427 * gnus.el (gnus-valid-select-methods): Revert last change for nnweb.
3428 It didn't really fix the bogosity I'm seeing with solid web groups.
3429
3430 2006-06-26 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
3431
3432 * gnus.el (gnus-valid-select-methods): Declare nnweb with 'address.
3433 Since revision 6.95 (2003-01-05) of gnus-group.el, solid web groups are
3434 created using server names. If we use the feature without declaring
3435 it, Gnus does not properly manage server and group state.
3436
3437 * nnweb.el (nnweb-google-search): Respect nnweb-max-hits as upper
3438 bound.
3439
3440 2006-06-25 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
3441
3442 * gnus.el (gnus-find-method-for-group): On killed/unknown groups, try
3443 looking up the method using GROUP's prefix before inventing a new one.
3444 It is used on killed/unknown groups in various places where returning
3445 an all-new method isn't expected by the caller.
3446
3447 * gnus-util.el (gnus-group-server): Fix for empty virtual server names
3448 and match semantics of gnus-group-real-prefix.
3449
3450 2006-06-22 Reiner Steib <Reiner.Steib@gmx.de>
3451
3452 * nnmail.el (nnmail-broken-references-mailers): New variable.
3453 (nnmail-ignore-broken-references): New function generalizing
3454 nnmail-fix-eudora-headers.
3455 (nnmail-fix-eudora-headers): Now obsolete.
3456
3457 * gnus-art.el (gnus-button-handle-custom): Support
3458 `customize-apropos*'.
3459
3460 2006-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
3461
3462 * gnus-art.el (article-hide-headers): Inhibit read-only stuff.
3463
3464 * gnus-group.el (gnus-fetch-group): Document ARTICLES and select those
3465 articles.
3466
3467 2006-06-21 Reiner Steib <Reiner.Steib@gmx.de>
3468
3469 * message.el (message-cite-reply-above): New variable.
3470 (message-yank-original): Use it.
3471
3472 2006-06-20 Katsumi Yamaoka <yamaoka@jpl.org>
3473
3474 * rfc2231.el (rfc2231-parse-string): Allow `*'s in parameter values.
3475
3476 2006-06-20 Reiner Steib <Reiner.Steib@gmx.de>
3477
3478 * gnus-bookmark.el (gnus-bookmark-jump): Don't mark unrelated articles
3479 as read.
3480
3481 * gnus-group.el (gnus-group-quick-select-group): Add GROUP argument.
3482
3483 2006-06-19 Reiner Steib <Reiner.Steib@gmx.de>
3484
3485 * gnus-bookmark.el: Fix Copyright, keywords, whitespace, etc.
3486 (gnus-bookmark-default-file): Use gnus-directory.
3487 (gnus-bookmark-bmenu-file-column, gnus-bookmark-use-annotations):
3488 Remove "*" in doc string.
3489 (gnus-bookmark-write-file): Simplify.
3490 (gnus-bookmark-maybe-sort-alist): Use `when'.
3491 (gnus-bookmark-get-bookmark): Fix typo in doc string.
3492 (gnus-bookmark-set-bookmark-name, gnus-bookmark-get-bookmark): Add
3493 FIXME about Emacs 21 and XEmacs compatibility.
3494 (gnus-bookmark-set-bookmark-name): Use `gnus-replace-in-string' for
3495 compatibility.
3496 (gnus-bookmark-bmenu-mode): Use `gnus-run-mode-hooks' for
3497 compatibility.
3498 (gnus-bookmark-menu-heading): Fix version.
3499
3500 2006-06-19 Bastien Guerry <bzg@altern.org>
3501
3502 * gnus-bookmark.el: New file.
3503
3504 2006-06-19 Katsumi Yamaoka <yamaoka@jpl.org>
3505
3506 * message.el (message-syntax-checks): Doc fix.
3507
3508 2006-06-17 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
3509
3510 * gnus-srvr.el (gnus-browse-unsubscribe-group): Don't subscribe
3511 unsubscribed groups as if they were killed ones. It causes duplicate
3512 entries in gnus-newsrc-alist.
3513
3514 2006-06-16 Katsumi Yamaoka <yamaoka@jpl.org>
3515
3516 * message.el (message-syntax-checks): Doc fix.
3517 (message-send-mail): Add check for continuation headers.
3518 (message-check-news-header-syntax): Fix regexp used to check for
3519 continuation headers.
3520
3521 2006-06-14 Katsumi Yamaoka <yamaoka@jpl.org>
3522
3523 * gnus-art.el (gnus-display-mime): Make sure body ends with newline.
3524
3525 2006-06-11 Reiner Steib <Reiner.Steib@gmx.de>
3526
3527 * gnus-art.el (gnus-article-toggle-truncate-lines): Fix code.
3528
3529 2006-06-11 Katsumi Yamaoka <yamaoka@jpl.org>
3530
3531 * gnus-art.el (gnus-article-truncate-lines): Default to the value of
3532 default-truncate-lines.
3533
3534 2006-06-06 Katsumi Yamaoka <yamaoka@jpl.org>
3535
3536 * mm-util.el (mm-mime-mule-charset-alist): Use unicode-precedence-list
3537 to fill the utf-8 entry.
3538
3539 2006-06-01 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
3540
3541 * nnweb.el (nnweb-google-parse-1): Update regexp for author and date.
3542
3543 2006-05-30 Kevin Greiner <kevin.greiner@compsol.cc>
3544
3545 * gnus-agent.el (directory-files-and-attributes): Move all the way
3546 forward (the third and final move).
3547 (gnus-agent-read-agentview): Trap reconstruction errors due to
3548 nonexistant directory. Handle by returning nil.
3549
3550 2006-05-30 Didier Verna <didier@xemacs.org>
3551
3552 * message.el (message-dont-reply-to-names): Update the custom type.
3553 * message.el (message-dont-reply-to-names): New defsubst: potentially
3554 convert a list of regexps into a single one.
3555 * message.el (message-get-reply-headers): Use it.
3556 * nnmail.el (nnmail-fancy-expiry-target): Ditto.
3557
3558 2006-05-30 Katsumi Yamaoka <yamaoka@jpl.org>
3559
3560 * gnus-agent.el (directory-files-and-attributes): Move forward.
3561
3562 2006-05-29 Reiner Steib <Reiner.Steib@gmx.de>
3563
3564 * gnus-ml.el (gnus-mailing-list-subscribe)
3565 (gnus-mailing-list-unsubscribe, gnus-mailing-list-owner)
3566 (gnus-mailing-list-message): Fix doc strings.
3567
3568 2006-05-29 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
3569
3570 * gnus-ml.el (gnus-mailing-list-message): Use gnus-url-mailto instead
3571 of doing it manually.
3572
3573 2006-05-29 Reiner Steib <Reiner.Steib@gmx.de>
3574
3575 * gnus-art.el (gnus-article-toggle-truncate-lines): Fix typo in
3576 comment.
3577
3578 2006-05-29 Kevin Greiner <kevin.greiner@compsol.cc>
3579
3580 * gnus-agent.el: Added gnus-agent-flush* to purge agent info.
3581 (gnus-agent-read-agentview): Fixed handling of end-of-file error.
3582 (gnus-agent-read-local): All symbols allocated in my-obarray
3583 (gnus-agent-set-local): Skip invalid entries (min and/or max is nil).
3584 (gnus-agent-regenerate-group): Check numeric names to see if they are
3585 messages or groups.
3586 (gnus-agent-total-fetched-for): Ignore 'dummy.group' (there should be a
3587 better way of do this...)
3588
3589 * gnus-cache.el (gnus-agent-total-fetched-for): Ignore
3590 'dummy.group' (there should be a better way of do this...)
3591
3592 2006-05-29 Katsumi Yamaoka <yamaoka@jpl.org>
3593
3594 * gnus-art.el (gnus-save-all-headers): Mention it might be overridden.
3595 (gnus-saved-headers): Ditto.
3596 (gnus-default-article-saver): Mention functions may have properties.
3597 (gnus-article-save): Override gnus-save-all-headers and
3598 gnus-saved-headers by :headers property which saver function may have.
3599 (gnus-summary-save-in-file): Add :headers property.
3600 (gnus-summary-write-to-file): Ditto.
3601
3602 * gnus-sum.el (gnus-summary-save-article): Bind
3603 gnus-prompt-before-saving to t when saving many articles in a file;
3604 always show all headers.
3605
3606 2006-05-26 Reiner Steib <Reiner.Steib@gmx.de>
3607
3608 * deuglify.el (gnus-outlook-rearrange-article): Add missing citation
3609 marks.
3610
3611 * message.el (message-indent-citation): Add optional arguments to allow
3612 using it outside of message buffers.
3613
3614 * gnus-art.el (gnus-article-unfold-long-headers): New variable.
3615 (gnus-article-treat-unfold-headers): Use it.
3616 (gnus-article-truncate-lines): New variable.
3617 (gnus-article-mode): Use it.
3618 (gnus-article-toggle-truncate-lines): New function.
3619
3620 * gnus-sum.el (gnus-summary-wash-map, gnus-summary-make-menu-bar): Add
3621 gnus-article-toggle-truncate-lines.
3622
3623 * uudecode.el (uudecode-decode-region-external): nil isn't a valid
3624 coding system in XEmacs, use binary.
3625
3626 2006-05-26 Katsumi Yamaoka <yamaoka@jpl.org>
3627
3628 * mm-util.el (mm-enrich-utf-8-by-mule-ucs): Don't edit
3629 after-load-alist.
3630
3631 * gnus-art.el (gnus-summary-save-in-file): Use property to specify
3632 this function should save decoded articles.
3633 (gnus-summary-write-to-file): Use property to specify this function
3634 should save decoded articles and specify gnus-summary-save-in-file
3635 should be used to save articles other than the first one when saving
3636 many articles.
3637 (gnus-summary-save-body-in-file): Use property to specify this
3638 function should save decoded articles.
3639 (gnus-summary-write-body-to-file): Use property to specify this
3640 function should save decoded articles and specify
3641 gnus-summary-save-body-in-file should be used to save articles other
3642 than the first one when saving many articles.
3643
3644 * gnus-sum.el (gnus-summary-save-article): Simplify.
3645
3646 2006-05-25 Katsumi Yamaoka <yamaoka@jpl.org>
3647
3648 * gnus-art.el (gnus-default-article-saver): Add
3649 gnus-summary-write-body-to-file.
3650 (gnus-article-save-coding-system): Don't use coding system object
3651 in XEmacs.
3652 (gnus-read-save-file-name): Add optional `dir-var' argument which
3653 specifies directory in which files are saved; work even if optional
3654 `variable' argument is not specified.
3655 (gnus-summary-write-to-file): Read file name.
3656 (gnus-summary-save-body-in-file): Add optional `overwrite' argument.
3657 (gnus-summary-write-body-to-file): New function.
3658
3659 * gnus-sum.el (gnus-newsgroup-last-directory): New variable.
3660 (gnus-summary-local-variables): Add it.
3661 (gnus-summary-save-map): Add gnus-summary-write-article-body-file.
3662 (gnus-summary-save-article): Remove optional `decode' argument;
3663 determine whether to decode articles by the value of
3664 gnus-default-article-saver; when saving many files using
3665 gnus-summary-write-to-file or gnus-summary-write-body-to-file, use
3666 it first and use gnus-summary-save-in-file or
3667 gnus-summary-save-body-in-file thereafter unless
3668 gnus-prompt-before-saving is always; move point to article which
3669 will be saved.
3670 (gnus-summary-save-article-file): Revert.
3671 (gnus-summary-write-article-file): Revert.
3672 (gnus-summary-save-article-body-file): Revert.
3673 (gnus-summary-write-article-body-file): New function.
3674
3675 2006-05-26 Reiner Steib <Reiner.Steib@gmx.de>
3676
3677 * gnus-art.el (gnus-article-browse-html-article): Remove comment.
3678
3679 2006-05-24 Katsumi Yamaoka <yamaoka@jpl.org>
3680
3681 * gnus-art.el (gnus-default-article-saver): Doc fix.
3682 (gnus-article-save-coding-system): Move from gnus-sum.el, rename
3683 from gnus-summary-save-article-coding-system, and default to a
3684 certain coding system.
3685 (gnus-output-to-file): Add coding cookie and encode text according
3686 to gnus-article-save-coding-system; don't use mm-append-to-file.
3687
3688 * gnus-sum.el (gnus-summary-save-article-coding-system): Move to
3689 gnus-art.el and rename to gnus-article-save-coding-system.
3690 (gnus-summary-save-article): Require gnus-art; don't show all
3691 headers if it decodes articles; don't add coding cookie here;
3692 don't bind mm-text-coding-system-for-write.
3693 (gnus-summary-save-article-file): Save decoded articles.
3694 (gnus-summary-write-article-file): When saving many files, use
3695 gnus-summary-write-to-file first and gnus-summary-save-in-file
3696 thereafter unless gnus-prompt-before-saving is always.
3697 (gnus-summary-save-article-body-file): Save decoded articles.
3698
3699 2006-05-23 Reiner Steib <Reiner.Steib@gmx.de>
3700
3701 * nnrss.el (nnrss-check-group): Bind hash-index.
3702
3703 2006-05-23 Michaël Cadilhac <michael.cadilhac@lrde.org>
3704
3705 * nnrss.el (nnrss-check-group): Use the md5sum of the whole RSS item as
3706 its hash index. Store this hash in `nnrss-group-data'.
3707 (nnrss-read-group-data): Update accordingly.
3708
3709 2006-05-23 Reiner Steib <Reiner.Steib@gmx.de>
3710
3711 * gnus-art.el (gnus-button-alist): Improve gnus-button-handle-symbol
3712 entry.
3713
3714 * gnus-sum.el (gnus-summary-make-menu-bar): Add
3715 gnus-article-browse-html-article.
3716
3717 2006-05-23 Hynek Schlawack <hynek@ularx.de>
3718
3719 * gnus-sum.el (gnus-summary-mime-map): Add
3720 gnus-article-browse-html-article.
3721 2006-05-23 Reiner Steib <Reiner.Steib@gmx.de>
3722
3723 * gnus-sum.el (gnus-summary-save-article-coding-system): Offer some
3724 suitable coding systems in customize.
3725
3726 2006-05-22 Reiner Steib <Reiner.Steib@gmx.de>
3727
3728 * mail-source.el (mail-sources): Fix custom type.
3729
3730 2006-05-18 Reiner Steib <Reiner.Steib@gmx.de>
3731
3732 * gnus-sum.el (gnus-summary-save-article-mail): Clarify doc string.
3733 (gnus-summary-expire-articles-now): Shorten prompt.
3734
3735 * gmm-utils.el (wid-edit): Require.
3736 (defun-gmm): Renamed from `gmm-defun-compat'.
3737 (gmm-image-search-load-path): Use it.
3738 (gmm-image-load-path-for-library): Use it. Sync with `mh-compat.el'.
3739
3740 2006-05-17 Katsumi Yamaoka <yamaoka@jpl.org>
3741
3742 * gnus-sum.el (gnus-summary-save-article-coding-system): New
3743 variable.
3744 (gnus-summary-save-article): Add optional `decode' argument. If
3745 it is set and gnus-summary-save-article-coding-system is non-nil,
3746 save decoded article.
3747 (gnus-summary-write-article-file): Save decoded article if
3748 gnus-summary-save-article-coding-system is non-nil.
3749
3750 * ecomplete.el (ecomplete-database-file-coding-system): Fix custom
3751 type.
3752
3753 2006-05-16 Katsumi Yamaoka <yamaoka@jpl.org>
3754
3755 * gnus-art.el (easy-menu-define): Use :active instead of :enable.
3756
3757 2006-05-12 Katsumi Yamaoka <yamaoka@jpl.org>
3758
3759 * gnus-art.el (gnus-article-setup-buffer): Go to summary buffer
3760 first to test gnus-single-article-buffer which may be buffer-local.
3761
3762 * gnus-sum.el (gnus-summary-setup-buffer): Make
3763 gnus-single-article-buffer buffer-local and nil in ephemeral
3764 group; make gnus-article-buffer, gnus-article-current, and
3765 gnus-original-article-buffer always buffer-local.
3766 (gnus-summary-exit): Kill article buffer belonging to ephemeral
3767 group.
3768 (gnus-handle-ephemeral-exit): Don't move to next summary line.
3769
3770 2006-05-08 Reiner Steib <Reiner.Steib@gmx.de>
3771
3772 * nnml.el (nnml-request-compact-group): Compressed files might not
3773 have .gz extension.
3774
3775 2006-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
3776
3777 * mm-decode.el (mm-dissect-buffer): Remove spurious double assignment.
3778 (mm-copy-to-buffer): Use with-current-buffer.
3779 (mm-display-part): Simplify.
3780 (mm-inlinable-p): Add optional arg `type'.
3781
3782 2006-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
3783
3784 * gnus-art.el (gnus-mime-view-part-as-type): Add optional PRED arg.
3785 (gnus-mime-view-part-externally, gnus-mime-view-part-internally):
3786 Try harder to show the attachment internally or externally using
3787 gnus-mime-view-part-as-type.
3788
3789 2006-05-02 Reiner Steib <Reiner.Steib@gmx.de>
3790
3791 * message.el (message-from-style, message-signature-separator)
3792 (message-user-organization-file, message-send-mail-function)
3793 (message-citation-line-function, message-yank-prefix)
3794 (message-indent-citation-function, message-signature)
3795 (message-signature-file, message-signature-insert-empty-line):
3796 Remove autoloads.
3797
3798 * gnus-art.el (gnus-buttonized-mime-types): Remove
3799 "multipart/signed". Revert 2006-04-26 change.
3800
3801 2006-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
3802
3803 * gnus.el (gnus-version-number): Bump version.
3804
3805 2006-05-01 Lars Magne Ingebrigtsen <lars@ingebrigtsen.no>
3806
3807 * gnus.el: No Gnus v0.5 is released.
3808
3809 2006-04-30 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
3810
3811 * nnweb.el (nnweb-request-article): Do proper xwfu encoding when
3812 fetching articles by message-id.
3813
3814 2006-04-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
3815
3816 * message.el (hashcash): Require hashcash as normal.
3817
3818 * ecomplete.el (ecomplete-highlight-match-line): Use
3819 point-at-eol.
3820 (ecomplete-highlight-match-line): Use `highlight', because that
3821 face exists in both Emacs and XEmacs.
3822
3823 * message.el (message-display-abbrev): Use point-at-bol.
3824
3825 * mail-source.el: Don't require timer/timer-funcs.
3826
3827 * gnus-async.el: Ditto.
3828
3829 * password.el: Ditto.
3830
3831 * mm-url.el: Ditto.
3832
3833 * mm-util.el: Require timer/timer-funcs.
3834
3835 2006-04-23 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
3836
3837 * mm-url.el (mm-url-insert-file-contents): Don't set Connection:
3838 Close.
3839
3840 2006-04-28 Katsumi Yamaoka <yamaoka@jpl.org>
3841
3842 * mm-uu.el (mm-uu-pgp-encrypted-extract-1): Assume buffer is made
3843 unibyte after clear-decrypt function runs.
3844
3845 * mml2015.el (mml2015-pgg-clear-decrypt): Treat data which pgg
3846 returns as a unibyte string.
3847
3848 2006-04-27 Katsumi Yamaoka <yamaoka@jpl.org>
3849
3850 * mml1991.el (mml1991-pgg-sign): No need to load pgg.el, which is
3851 always loaded by way of gnus-art.el -> mm-uu.el -> mml2015.el.
3852 (mml1991-pgg-encrypt): Ditto.
3853
3854 2006-04-26 Reiner Steib <Reiner.Steib@gmx.de>
3855
3856 * message.el (message-user-organization-file): Check several
3857 locations of the organization file.
3858
3859 * gnus-sum.el (gnus-summary-mime-map, gnus-summary-make-menu-bar):
3860 Add gnus-article-view-part-as-type.
3861
3862 * gnus-art.el (gnus-article-view-part-as-type): New function.
3863
3864 * message.el (message-valid-fqdn-regexp): Add TLDs .cat, jobs,
3865 .mobi and .travel. Remove .nato, .bitnet and .uucp.
3866
3867 * mml.el: Simplify autoload.
3868 (mml-mode): defvar dnd-protocol-alist instead of using
3869 symbol-value.
3870 (mml-default-directory): New variable.
3871 (mml-minibuffer-read-file): Use it.
3872 (mml-dnd-protocol-alist, mml-dnd-attach-options): Adjust :version.
3873
3874 * message.el (message-citation-line-format): New variable.
3875 (message-insert-formated-citation-line): New function.
3876 (message-citation-line-function): Add
3877 `message-insert-formated-citation-line' to custom type.
3878
3879 * mm-decode.el (mm-verify-option): Add gnus-buttonized-mime-types
3880 to doc string.
3881
3882 * gnus-art.el (gnus-buttonized-mime-types): Add "multipart/signed"
3883 depending on mm-verify-option.
3884
3885 2006-04-26 Katsumi Yamaoka <yamaoka@jpl.org>
3886
3887 * mml1991.el (mml1991-pgg-sign): Make sure to load pgg.el before
3888 binding pgg-* variables; reimplement the section which prevents
3889 MIME header from being signed.
3890 (mml1991-pgg-encrypt): Make sure to load pgg.el before binding
3891 pgg-text-mode; remove a blank line at the top of body.
3892
3893 * mm-uu.el (mm-uu-pgp-encrypted-extract-1): Don't remove blank
3894 lines at the top of body; use gnus-newsgroup-charset if there's no
3895 Charset header.
3896
3897 2006-04-25 Katsumi Yamaoka <yamaoka@jpl.org>
3898
3899 * message.el (message-self-insert-commands): Doc fix.
3900
3901 * mm-uu.el (mm-uu-pgp-signed-test): Erase prompt.
3902 (mm-uu-pgp-encrypted-test): Ditto.
3903 (mm-uu-pgp-encrypted-extract-1): Make sure there's a blank line
3904 between header and body; return application/pgp-encrypted handle
3905 if decryption failed; decode decrypted body by charset.
3906
3907 * mm-decode.el (mm-automatic-display): Don't make application/pgp
3908 element match to application/pgp-*.
3909
3910 2006-04-23 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
3911
3912 * nnweb.el (nnweb-google-wash-article): Sync up to new Google
3913 HTML.
3914
3915 2006-04-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
3916
3917 * mail-source.el (mail-source-call-script): Message the error
3918 string.
3919
3920 2006-04-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
3921
3922 * gnus-util.el (gnus-byte-compile): Use it.
3923
3924 2006-04-22 xyblor <fake@invalid.email> (tiny change)
3925
3926 * gnus-util.el (kill-empty-logs): New function.
3927
3928 2006-04-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
3929
3930 * message.el (message-mail-alias-type): Doc fix.
3931 (message-mail-alias-type-p): New function.
3932 (message-send): Use it.
3933 (message-mode): Ditto.
3934 (message-strip-forbidden-properties): Ditto.
3935
3936 * ecomplete.el (ecomplete-database-file-coding-system): New
3937 variable.
3938 (ecomplete-save): Use it.
3939 (ecomplete-setup): Use it.
3940
3941 2006-04-22 Katsumi Yamaoka <yamaoka@jpl.org>
3942
3943 * message.el (message-self-insert-commands): New variable.
3944 (message-strip-forbidden-properties): Use it.
3945
3946 2006-04-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
3947
3948 * message.el (message-put-addresses-in-ecomplete): Use a regexp
3949 that doesn't make XEmacs choke.
3950
3951 2006-04-20 Reiner Steib <Reiner.Steib@gmx.de>
3952
3953 * gnus-util.el (gnus-replace-in-string):
3954 Prefer replace-regexp-in-string over of replace-in-string.
3955
3956 2006-04-20 Katsumi Yamaoka <yamaoka@jpl.org>
3957
3958 * gnus-util.el (gnus-select-frame-set-input-focus):
3959 Use select-frame-set-input-focus if it is available in XEmacs; use
3960 definition defined in Emacs 22 for old Emacsen.
3961
3962 2006-04-19 Katsumi Yamaoka <yamaoka@jpl.org>
3963
3964 * mm-view.el (mm-inline-text): Use equal instead of equalp.
3965
3966 2006-04-18 Teodor Zlatanov <tzz@lifelogs.com>
3967
3968 * gnus-registry.el (gnus-registry-cache-save): Remove text
3969 properties when saving via the temp buffer.
3970
3971 2006-04-18 Reiner Steib <Reiner.Steib@gmx.de>
3972
3973 * message.el (message-generate-hashcash): Honor custom type.
3974
3975 2006-04-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
3976
3977 * message.el (message-generate-hashcash): Default to non-nil when
3978 hashcash is found.
3979
3980 * gnus-sum.el (gnus-summary-expire-articles-now): Clarify prompt.
3981 (gnus-refer-thread-limit): Increase default to 500.
3982
3983 * mm-view.el (mm-inline-text): Supply delsp to flow-fill.
3984
3985 * flow-fill.el (fill-flowed): Allow delete-space.
3986
3987 2006-04-18 Reiner Steib <Reiner.Steib@gmx.de>
3988
3989 * deuglify.el (gnus-outlook-deuglify-unwrap-min)
3990 (gnus-outlook-deuglify-unwrap-max, gnus-outlook-display-hook):
3991 Remove autoloads.
3992
3993 2006-04-18 Simon Josefsson <jas@extundo.com>
3994
3995 * message.el (message-generate-hashcash): Default to.
3996
3997 2006-04-18 Katsumi Yamaoka <yamaoka@jpl.org>
3998
3999 * rfc2231.el (rfc2231-parse-string): Decode encoded value after
4000 concatenating segments rather than before concatenating them.
4001
4002 2006-04-17 Reiner Steib <Reiner.Steib@gmx.de>
4003
4004 * gnus-group.el: Move comment to gnus-group-update-tool-bar.
4005
4006 * imap.el (imap-quote-specials): New function.
4007 (imap-login-auth): Quote specials.
4008
4009 2006-04-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
4010
4011 * rfc2231.el (rfc2231-parse-string): Sort the parameters first.
4012
4013 * message.el (message-forward-make-body-plain): Allow
4014 message-forward-ignored-headers to be a list.
4015 (message-remove-ignored-headers): Factor out into function.
4016 (message-forward-make-body-mml): Use it.
4017 * rfc2231.el (rfc2231-parse-string): Remove dead code.
4018 (rfc2231-parse-string): Allow concatanation of parameters that
4019 aren't contiguous. The test case is
4020 (mail-header-parse-content-type "message/external-body;
4021 name*0*=us-ascii''~%2ffoo%2fbar%2fbaz%2fxyzzy%2f;
4022 access-type=LOCAL-FILE;
4023 name*1*=plugh%2fhello-sailor%2fbing.pdf")
4024
4025 2006-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
4026
4027 * nntp.el (nntp-accept-process-output): Return the value of
4028 `nnheader-accept-process-output'.
4029
4030 2006-04-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
4031
4032 * gnus-art.el (gnus-article-treat-types): Add text/x-patch.
4033 (gnus-button-alist): Recognize more diff formats.
4034 (gnus-button-patch): Strip directory.
4035
4036 2006-04-17 Reiner Steib <Reiner.Steib@gmx.de>
4037
4038 * gnus-util.el (gnus-select-frame-set-input-focus): Check for
4039 Emacs 22 when setting focus.
4040
4041 2006-04-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
4042
4043 * gnus-art.el (gnus-article-treat-types): Do treatment of
4044 text/x-verbatim parts.
4045 (gnus-button-patch): New command.
4046
4047 * ietf-drums.el (ietf-drums-parse-address): Attempt parsing
4048 addresses that contain invalid characters.
4049
4050 2006-04-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
4051
4052 * message.el (message-put-addresses-in-ecomplete): Use
4053 gnus-replace-in-string.
4054 (message-is-yours-p): Use the more correct
4055 mail-header-parse-address instead of
4056 mail-extract-address-components.
4057 (message-put-addresses-in-ecomplete): Fix typo.
4058
4059 * gnus-sum.el (gnus-summary-limit-to-bodies): New command and
4060 keystroke.
4061
4062 * gnus-art.el (gnus-treatment-function-alist): Change order of
4063 newsgroups/generic header folding to avoid double-folding.
4064
4065 * message.el (message-hidden-headers): Add X-Draft-From.
4066
4067 * gnus-sum.el (gnus-summary-repeat-search-article-forward): New
4068 command.
4069 (gnus-summary-repeat-search-article-backward): New command.
4070
4071 * gnus-topic.el (gnus-topic-display-missing-topic): Skip past
4072 groups in the parent topic.
4073
4074 2006-04-16 João Cachopo <joao.cachopo@inesc-id.pt> (tiny change)
4075
4076 * spam.el (spam-necessary-extra-headers): Add X-CRM114-Status.
4077 (spam-extra-header-to-number): Return the CRM114 number as a
4078 number instead of a string.
4079
4080 2006-04-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
4081
4082 * gnus-art.el (gnus-face-properties-alist): Moved here from
4083 gnus-fun.
4084
4085 * gnus-fun.el (gnus-face-properties-alist): Move to gnus-art.
4086
4087 2006-04-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
4088
4089 * message.el (message-strip-forbidden-properties): Only display on
4090 self-insert-command.
4091
4092 * hashcash.el (hashcash-insert-payment-async): Remove dead code;
4093 reindent.
4094 (hashcash-insert-payment-async-2): Make sure the buffer is alive.
4095
4096 2006-04-15 NAKAJI Hiroyuki <nakaji@takamatsu-nct.ac.jp> (tiny change)
4097
4098 * smiley.el (smiley-style): Fix typo.
4099
4100 2006-03-23 Kenichi Handa <handa@m17n.org>
4101
4102 * rfc2231.el (rfc2231-encode-string): Use mm-disable-multibyte
4103 instead of set-buffer-multibyte.
4104
4105 2006-03-23 Kenichi Handa <handa@m17n.org>
4106
4107 * rfc2231.el (rfc2231-decode-encoded-string): Work on unibyte
4108 buffer and then decode the buffer text if necessary.
4109 (rfc2231-encode-string): Be sure to work on multibyte buffer at
4110 first, and after mm-encode-body, change the buffer to unibyte.
4111
4112 2006-04-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
4113
4114 * hashcash.el (hashcash-insert-payment-async-2): Use
4115 message-goto-eoh instead of doing it manually.
4116 (mail-add-payment): Use message-narrow-to-header instead of trying
4117 to do the same itself.
4118
4119 * message.el (message-hidden-headers): Add Face.
4120
4121 * gnus-sum.el (gnus-summary-reparent-thread): Factor out
4122 reparenting code.
4123 (gnus-summary-reparent-children): Refactored out code.
4124 (gnus-summary-thread-map): New keystroke.
4125 (gnus-summary-reparent-children): Make into command.
4126
4127 * smiley.el (smiley-style): Default to `medium' if using a large
4128 font.
4129
4130 * gnus-sum.el (unmorse-region): Remove autoload, because morse.el
4131 does it itself.
4132
4133 * message.el (message-point-in-header-p): Simplify definition.
4134
4135 2006-04-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
4136
4137 * nnagent.el (nnagent-request-set-mark): Silence log file
4138 writing.
4139 (nnagent-request-set-mark): Use write-region instead of
4140 append-to-file.
4141
4142 * gnus-sum.el (gnus-read-header): Fudge article number if using a
4143 strange select method.
4144
4145 * ecomplete.el (ecomplete-display-matches): Get highlightling
4146 right.
4147 (ecomplete-display-matches): Use literals.
4148 (ecomplete-display-matches): Disable message logging.
4149
4150 * message.el (message-display-abbrev): Small optimization.
4151
4152 * ecomplete.el (ecomplete-display-matches): Allow automatic
4153 display.
4154
4155 * message.el (message-strip-forbidden-properties): Display
4156 abbrevs.
4157 (message-display-abbrev): Get automatic display right.
4158
4159 * ecomplete.el (ecomplete-display-matches): Use M-n/M-p
4160 keystrokes.
4161
4162 2006-04-13 Romain Francoise <romain@orebokech.com>
4163
4164 TODO: Backport to v5-10!
4165
4166 * gnus-util.el (gnus-alist-to-hashtable, gnus-hashtable-to-alist):
4167 Moved here (and renamed) from gnus-registry.el.
4168
4169 * gnus-registry.el: Require gnus-util.
4170 Use `gnus-alist-to-hashtable' and `gnus-hashtable-to-alist'.
4171
4172 2006-04-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
4173
4174 * gnus-group.el (gnus-group-catchup-current): Change
4175 if-then-else-if-then-else into cond.
4176 (gnus-group-catchup): Indent.
4177 (group-name-at-point): New function.
4178 (gnus-fetch-group): Provide default from thing at point.
4179
4180 2006-04-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
4181
4182 * message.el (message-display-abbrev): Fix regexp.
4183
4184 * ecomplete.el (ecomplete-highlight-match-line): Reimplement
4185 choosing.
4186 (ecomplete-highlight-match-line): Fix up code rewrite, remove
4187 dead variables.
4188
4189 * message.el (message-newline-and-indent): Remove debugging.
4190 (message-display-abbrev): Use new implementation.
4191
4192 2006-04-12 Reiner Steib <Reiner.Steib@gmx.de>
4193
4194 * gnus-art.el (gnus-article-mode): Set
4195 cursor-in-non-selected-windows to nil.
4196
4197 * smiley.el: Revert previous change.
4198 (smiley-data-directory): defvar it before using it in the
4199 defcustom of `smiley-style'.
4200
4201 2006-04-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
4202
4203 * message.el (message-newline-and-indent): New function.
4204
4205 * ecomplete.el: Implement more bits.
4206
4207 * message.el (message-put-addresses-in-ecomplete): Clean up the
4208 string.
4209
4210 * ecomplete.el (ecomplete-add-item): Chop off decimals.
4211
4212 * gnus-sum.el (gnus-summary-save-parts): Bind
4213 gnus-summary-save-parts-counter and use it to make unique file
4214 names.
4215
4216 * gnus-art.el (gnus-ignored-headers): Add some more headers.
4217
4218 * ietf-drums.el (ietf-drums-parse-addresses): Take a RAWP
4219 parameter to say whether to actually parse the individual
4220 addresses.
4221
4222 * message.el (message-put-addresses-in-ecomplete): New function.
4223 (ecomplete): Require.
4224 (message-mail-alias-type): Add ecomplete as an option.
4225
4226 2006-04-12 Ralf Angeli <angeli@iwi.uni-sb.de>
4227
4228 * flow-fill.el (fill-flowed): Remove trailing space from blank
4229 quoted lines.
4230
4231 2006-04-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
4232
4233 * smiley.el (smiley-style): Move definition later to avoid a
4234 compilation warning.
4235
4236 2006-04-12 Kenichi Handa <handa@m17n.org>
4237
4238 * rfc2231.el (rfc2231-decode-encoded-string): Work on unibyte
4239 buffer and then decode the buffer text if necessary.
4240 (rfc2231-encode-string): Be sure to work on multibyte buffer at
4241 first, and after mm-encode-body, change the buffer to unibyte.
4242 Use mm-disable-multibyte instead of set-buffer-multibyte.
4243
4244 2006-04-12 Katsumi Yamaoka <yamaoka@jpl.org>
4245
4246 * gnus-art.el (gnus-mime-copy-part): Find name parameter in
4247 Content-Type header instead of Content-Disposition header.
4248 (gnus-mime-inline-part): Ditto.
4249 (gnus-mime-view-part-as-charset): Ignore charset that the part
4250 specifies.
4251
4252 * mm-decode.el (mm-display-part): Work with external parts and
4253 usual parts similarly.
4254
4255 * mm-extern.el (mm-inline-external-body): Use mm-display-part
4256 instead of gnus-display-mime.
4257
4258 * mm-util.el (mm-decompress-buffer): Use mm-with-unibyte-buffer
4259 instead of with-temp-buffer.
4260
4261 * gnus-uu.el (gnus-uu-save-article): Put mml tags instead of part
4262 tag to summarized topics part in order to encode non-ASCII text.
4263
4264 2006-04-11 Reiner Steib <Reiner.Steib@gmx.de>
4265
4266 * smiley.el (smiley-style): New variable.
4267 (smiley-directory): New function.
4268 (smiley-data-directory): Derive from `smiley-style' using
4269 `smiley-directory'.
4270 (smiley-regexp-alist): Add new entries.
4271
4272 * gnus-art.el (gnus-button-valid-localpart-regexp): Exclude `@'.
4273 (gnus-article-browse-delete-temp): Add :version.
4274
4275 2006-04-11 Arne Jørgensen <arne@arnested.dk>
4276
4277 * gnus-sieve.el (gnus-sieve-generate): Delete from the start of
4278 the sieve region.
4279
4280 2006-04-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
4281
4282 * gnus.el (gnus-version-number): Bump version.
4283
4284 2006-04-11 Reiner Steib <Reiner.Steib@gmx.de>
4285
4286 * gnus.el: No Gnus v0.4 is released.
4287
4288 2006-04-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
4289
4290 * nnslashdot.el (nnslashdot-retrieve-headers-1): Fix up to new
4291 layout.
4292
4293 * rfc2047.el (rfc2047-decode-encoded-words): Don't message about
4294 unknown charset.
4295
4296 * message.el (message-header-synonyms): Add Original-To to the
4297 default.
4298
4299 * gnus-sum.el (gnus-get-newsgroup-headers-xover): group is an
4300 optional parameter.
4301
4302 2006-04-06 Reiner Steib <Reiner.Steib@gmx.de>
4303
4304 * gnus-fun.el (gnus): Require it for gnus-directory.
4305
4306 2006-04-06 Katsumi Yamaoka <yamaoka@jpl.org>
4307
4308 * gnus-fun.el (gnus-face-properties-alist): Add :version.
4309
4310 2006-04-05 Daiki Ueno <ueno@unixuser.org>
4311
4312 * pgg-gpg.el (pgg-gpg-process-filter): Fix.
4313
4314 2006-04-05 Simon Josefsson <jas@extundo.com>
4315
4316 * password.el (password-reset): New function.
4317
4318 2006-04-05 Daiki Ueno <ueno@unixuser.org>
4319
4320 * pgg-gpg.el (pgg-gpg-encrypt-region, pgg-gpg-sign-region): Wait
4321 for BEGIN_SIGNING too, new in GnuPG 1.4.3.
4322
4323 2006-04-04 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
4324
4325 * nnweb.el (nnweb-google-create-mapping): Update regexp.
4326 Some whitespace was matched into the url, which broke browsing hits
4327 > 100 when mm-url-use-external was nil.
4328
4329 2006-04-04 Reiner Steib <Reiner.Steib@gmx.de>
4330
4331 * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Check
4332 gnus-extra-headers for 'Newsgroups.
4333
4334 * message.el (message-tool-bar-gnome): Check if `flyspell-mode' is
4335 bound.
4336
4337 2006-04-04 Daiki Ueno <ueno@unixuser.org>
4338
4339 * pgg-gpg.el: Clean up process buffers every time gpg processes
4340 complete.
4341
4342 2006-04-03 Reiner Steib <Reiner.Steib@gmx.de>
4343
4344 * gnus-fun.el (gnus-convert-image-to-face-command): Fix typo in
4345 doc string.
4346
4347 2006-04-03 Daiki Ueno <ueno@unixuser.org>
4348
4349 * pgg-gpg.el (pgg-gpg-process-filter)
4350 (pgg-gpg-wait-for-completion): Check if buffer is alive.
4351
4352 * pgg-gpg.el (pgg-gpg-process-sentinel): Don't remove GNUPG:
4353 lines, temporary fix.
4354
4355 2006-03-31 Reiner Steib <Reiner.Steib@gmx.de>
4356
4357 * gnus-group.el (gnus-group-update-tool-bar): Add :initialize and :set.
4358
4359 2006-03-29 Daiki Ueno <ueno@unixuser.org>
4360
4361 * pgg-gpg.el (pgg-gpg-start-process): Don't bind
4362 default-enable-multibyte-characters. This reverts the change from
4363 revision 6.17 which is no longer necessary because the passphrase
4364 is sent separately now. GnuPG messages are unreadable under
4365 multibyte locales with default-enable-multibyte-characters set to
4366 nil.
4367
4368 2006-03-28 Reiner Steib <Reiner.Steib@gmx.de>
4369
4370 * message.el (message-tool-bar-gnome): Move "spell".
4371
4372 2006-03-27 Reiner Steib <Reiner.Steib@gmx.de>
4373
4374 * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Don't use
4375 XEmacs-only `replace-in-string'. Use `gnus-group-real-name'
4376 instead.
4377
4378 2006-03-27 Karl Kleinpaste <karl@charcoal.com>
4379
4380 * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Improve
4381 newsgroups handling for NNTP overviews which don't include
4382 Newsgroups.
4383
4384 2006-03-26 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
4385
4386 * message.el (message-resend): Bind message-generate-hashcash to nil.
4387
4388 2006-03-26 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
4389
4390 * hashcash.el (hashcash-already-paid-p): Bind case-fold-search
4391 when searching for already-paid recipients.
4392
4393 2006-03-27 Daiki Ueno <ueno@unixuser.org>
4394
4395 * pgg-gpg.el: Invoke gpg asynchronous, to avoid querying for
4396 passphrases when it is not needed.
4397 (pgg-gpg-use-agent): Add, to hard code that pgg shouldn't wait for
4398 passphrase stuff from gpg, should only be necessary when you use
4399 gpg with a smartcard.
4400
4401 2006-03-23 Katsumi Yamaoka <yamaoka@jpl.org>
4402
4403 * mml.el (mml-insert-mime): Ignore cached contents of
4404 message/external-body part.
4405
4406 * mm-decode.el (mm-get-part): Add optional 'no-cache' argument.
4407 (mm-insert-part): Ditto.
4408
4409 2006-03-23 Simon Josefsson <jas@extundo.com>
4410
4411 * pgg-gpg.el (pgg-gpg-update-agent): Add again, with fixes from
4412 Reiner.
4413 (pgg-gpg-use-agent-p): Use it again.
4414
4415 2006-03-23 Simon Josefsson <jas@extundo.com>
4416
4417 * pgg-gpg.el (pgg-gpg-update-agent): Remove, doesn't work with
4418 older emacsen.
4419 (pgg-gpg-use-agent-p): Don't use it.
4420
4421 2006-03-23 Reiner Steib <Reiner.Steib@gmx.de>
4422
4423 * pgg-gpg.el (pgg-gpg-update-agent): Only use make-network-process
4424 if we can.
4425
4426 2006-03-22 Sascha Wilde <wilde@sha-bang.de>
4427
4428 * pgg-gpg.el (pgg-gpg-use-agent): Disable by default.
4429 (pgg-gpg-update-agent): New function.
4430 (pgg-gpg-use-agent-p): New function.
4431 (pgg-gpg-process-region, pgg-gpg-encrypt-region)
4432 (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
4433 (pgg-gpg-sign-region): Use it.
4434
4435 2006-03-22 Katsumi Yamaoka <yamaoka@jpl.org>
4436
4437 * gnus-sum.el (gnus-map-articles): Don't funcall symbol macro.
4438 Reported by Ralf Wachinger <rwachinger@gmx.de>.
4439
4440 2006-03-21 Simon Josefsson <jas@extundo.com>
4441
4442 * pgg-gpg.el: Ideas below based on patch from Sascha Wilde
4443 <wilde@sha-bang.de>.
4444 (pgg-gpg-use-agent): New variable.
4445 (pgg-gpg-process-region): Use it.
4446 (pgg-gpg-encrypt-region): Likewise.
4447 (pgg-gpg-encrypt-symmetric-region): Likewise.
4448 (pgg-gpg-decrypt-region): Likewise.
4449 (pgg-gpg-sign-region): Likewise.
4450 (pgg-gpg-possibly-cache-passphrase): Don't cache a nil password.
4451
4452 2006-03-21 Reiner Steib <Reiner.Steib@gmx.de>
4453
4454 * gnus-agent.el (gnus-agent-queue-mail): Fix custom tag for `t'.
4455
4456 * spam.el (spam-mark-new-messages-in-spam-group-as-spam):
4457 Add comment on version.
4458
4459 2006-03-20 Reiner Steib <Reiner.Steib@gmx.de>
4460
4461 * smiley.el: Add missing test smiley.
4462
4463 2006-03-17 Katsumi Yamaoka <yamaoka@jpl.org>
4464
4465 * mm-decode.el (mm-with-part): New macro.
4466 (mm-get-part): Use it; work with message/external-body as well.
4467 (mm-save-part): Treat name and filename equally.
4468
4469 * mm-extern.el (mm-extern-cache-contents): New function.
4470 (mm-inline-external-body): Use it; force the part to be displayed;
4471 move undisplayer added to the cached handle to the parent.
4472
4473 * gnus-art.el (gnus-mime-save-part-and-strip): Add name parameter.
4474 (gnus-mime-view-part-as-type): Work with message/external-body.
4475
4476 * gnus-util.el (gnus-tool-bar-update): Bind tool-bar-mode.
4477
4478 2006-03-16 Reiner Steib <Reiner.Steib@gmx.de>
4479
4480 * gmm-utils.el (gmm-image-load-path-for-library): Prefer user's
4481 images in image-load-path. [Sync with image.el at 2006-03-16T16:55:26Z!wohler@newt.com, in
4482 Emacs.]
4483
4484 2006-03-15 Reiner Steib <Reiner.Steib@gmx.de>
4485
4486 * gmm-utils.el (gmm-image-load-path-for-library): Pass value of
4487 path rather than symbol. Always return list of directories.
4488 Guarantee that image directory comes first. [Sync with image.el,
4489 , in Emacs2006-03-15T17:06:16Z!wohler@newt.com.]
4490
4491 * message.el (message-make-tool-bar): Adjust to new API of
4492 `gmm-image-load-path-for-library'.
4493
4494 * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
4495
4496 * gnus-group.el (gnus-group-make-tool-bar): Ditto.
4497
4498 2006-03-15 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
4499
4500 * gnus-art.el (gnus-article-only-boring-p):
4501 Bind inhibit-point-motion-hooks to avoid infinite loop when entering
4502 intangible text.
4503 Reported by Ralf Wachinger <rwnewsmampfer@geekmail.de>.
4504
4505 2006-03-14 Reiner Steib <Reiner.Steib@gmx.de>
4506
4507 * gmm-utils.el (gmm-image-load-path-for-library): Fix typo. Use
4508 `defun' instead of `gmm-defun-compat'.
4509
4510 2006-03-14 Simon Josefsson <jas@extundo.com>
4511
4512 * message.el (message-unique-id): Don't use message-number-base36
4513 if (user-uid) is a float.
4514 Reported by Bjorn Solberg <bjorn_ding1@hekneby.org>.
4515
4516 2006-03-13 Katsumi Yamaoka <yamaoka@jpl.org>
4517
4518 * mm-uu.el (mm-uu-dissect): Dissect all parts correctly.
4519
4520 * gnus-art.el (gnus-mime-display-single): Make sure there is an
4521 empty line between a part and a message part.
4522
4523 2006-03-10 Reiner Steib <Reiner.Steib@gmx.de>
4524
4525 * smiley.el: Add more test smileys.
4526 (smiley-data-directory, smiley-regexp-alist)
4527 (gnus-smiley-file-types): Fix doc strings.
4528 (smiley-update-cache): Clear smiley-cached-regexp-alist before
4529 adding new elements.
4530 (smiley-mouse-map): Unused code. Make it a comment.
4531
4532 2006-03-10 Katsumi Yamaoka <yamaoka@jpl.org>
4533
4534 * gnus-nocem.el (gnus-nocem-scan-groups): Add autoload cookie;
4535 scan latest NoCeM messages instead of old ones.
4536 (gnus-nocem-check-article): Fix regexps so as to match to PGP
4537 delimiters that are recently used.
4538 (gnus-nocem-load-cache): Add autoload cookie.
4539
4540 * gnus.el (gnus-use-nocem): Enable it to be set to also a number.
4541
4542 * gnus-start.el (gnus-setup-news): Scan NoCeM messages if a group
4543 level which is larger than gnus-use-nocem is specified.
4544
4545 * gnus-group.el (gnus-group-get-new-news): Ditto.
4546
4547 2006-03-08 Reiner Steib <Reiner.Steib@gmx.de>
4548
4549 * gnus-util.el (gnus-tool-bar-update): New function.
4550
4551 * gnus-group.el (gnus-group-update-tool-bar): New variable.
4552 (gnus-group-insert-group-line): Add gnus-tool-bar-update.
4553
4554 * gnus-topic.el (gnus-topic-prepare-topic): Add gnus-tool-bar-update.
4555
4556 * gnus-group.el (gnus-group-redraw-when-idle)
4557 (gnus-group-redraw-check): Remove.
4558 (gnus-group-make-tool-bar): Remove gnus-group-redraw-check.
4559
4560 2006-03-08 Katsumi Yamaoka <yamaoka@jpl.org>
4561
4562 * nnmail.el (nnmail-split-it): Invert match-partial-words behavior
4563 if optional last element is specified in splits (FIELD VALUE...).
4564
4565 2006-03-07 Reiner Steib <Reiner.Steib@gmx.de>
4566
4567 * message.el (message-make-tool-bar): Rename gmm-image-load-path
4568 to gmm-image-load-path-for-library. Call with no-error argument.
4569 (message-tool-bar-gnome): Rename "mail/attach" to "attach".
4570
4571 * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
4572
4573 * gnus-group.el (gnus-group-make-tool-bar): Ditto.
4574
4575 * gmm-utils.el (gmm-image-load-path): Remove alias.
4576
4577 2006-03-06 Reiner Steib <Reiner.Steib@gmx.de>
4578
4579 * gmm-utils.el (gmm-image-load-path): Add alias.
4580
4581 * nnml.el (nnml-generate-nov-databases-directory): Rename from
4582 nnml-generate-nov-databases-1.
4583 (nnml-generate-nov-databases): Use it.
4584 (nnml-generate-nov-databases-directory): Document no-active
4585 argument.
4586
4587 * gmm-utils.el (gmm-image-load-path-for-library): Return single
4588 directory if path is t. Add no-error.
4589
4590 * gnus-group.el (gnus-group-make-tool-bar): Use add-hook.
4591 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
4592
4593 * gnus-art.el (gnus-article-browse-delete-temp-files): Simplify
4594 resetting gnus-article-browse-html-temp-list.
4595
4596 * gmm-utils.el (gmm-image-load-path-for-library): Sync with
4597 mh-compat.el at 2006-03-04T21:23:21Z!wohler@newt.com in Emacs. Rename `gmm-image-load-path'.
4598 Add example to docstring. Rename local variables. Move error
4599 checks to default case in cond and simplify.
4600
4601 2006-03-06 Katsumi Yamaoka <yamaoka@jpl.org>
4602
4603 * mm-view.el (mm-w3m-cid-retrieve-1): Check carefully whether
4604 handle is multipart when calling it recursively.
4605 (mm-w3m-cid-retrieve): Display warning if retrieving fails.
4606
4607 2006-03-03 Daniel Pittman <daniel@rimspace.net>
4608
4609 * nnimap.el (nnimap-request-update-info-internal): Optimize.
4610 Don't `gnus-uncompress-range' to avoid excessive memory usage.
4611
4612 2006-03-03 Katsumi Yamaoka <yamaoka@jpl.org>
4613
4614 * gnus-group.el (gnus-group-tool-bar-gnome): Check if gnus-topic.el
4615 is loaded.
4616
4617 * gnus-sum.el (gnus-summary-tool-bar-gnome): Check if spam.el is
4618 loaded.
4619
4620 2006-03-03 Reiner Steib <Reiner.Steib@gmx.de>
4621
4622 * mm-util.el (mm-with-unibyte-current-buffer): Change "Emacs 23"
4623 to "Emacs 23 (unicode)" in doc string.
4624
4625 * gnus-sum.el (gnus-summary-set-display-table): Change "Emacs 23" to
4626 "Emacs 23 (unicode)" in comment.
4627
4628 2006-03-03 Katsumi Yamaoka <yamaoka@jpl.org>
4629
4630 * mm-decode.el (mm-get-part): Don't use mm-with-unibyte-current-buffer.
4631
4632 * gnus-sum.el (gnus-summary-set-display-table): Don't nix out
4633 characters 160 through 255 in Emacs 23.
4634
4635 2006-03-02 Reiner Steib <Reiner.Steib@gmx.de>
4636
4637 * gnus-art.el (gnus-article-browse-html-temp-list): Rename from
4638 gnus-article-browse-html-temp.
4639 (gnus-article-browse-delete-temp): Make it customizable. Add
4640 `file'. Adjust doc string.
4641 (gnus-article-browse-delete-temp-files): Add argument. Allow
4642 query for each file. Adjust doc string.
4643 (gnus-article-browse-html-parts): Add
4644 `gnus-article-browse-delete-temp-files' to
4645 `gnus-summary-prepare-exit-hook' and `gnus-exit-gnus-hook'.
4646
4647 2006-03-02 Hynek Schlawack <hynek@ularx.de>
4648
4649 * gnus-art.el (gnus-article-browse-html-temp)
4650 (gnus-article-browse-delete-temp): New variables.
4651 (gnus-article-browse-delete-temp-files): New function.
4652 (gnus-article-browse-html-parts): Use it.
4653
4654 2006-03-02 Reiner Steib <Reiner.Steib@gmx.de>
4655
4656 * gnus-group.el (gnus-group-redraw-check): Remove redundant tests.
4657
4658 * gmm-utils.el (gmm-image-load-path): Mention ../etc search in doc
4659 string.
4660
4661 * gnus-sum.el (gnus-summary-tool-bar-gnome): Don't use
4662 gnus-summary-insert-new-articles when unplugged. Remove
4663 gnus-summary-search-article-forward.
4664
4665 * gmm-utils.el (gmm-tool-bar-style): Test tool-bar-mode and
4666 display-visual-class instead of display-color-cells.
4667
4668 2006-03-02 Katsumi Yamaoka <yamaoka@jpl.org>
4669
4670 * mml.el (mml-generate-mime-1): Encode parts other than text/* or
4671 message/* containing non-ASCII text properly.
4672
4673 2006-03-01 Reiner Steib <Reiner.Steib@gmx.de>
4674
4675 * message.el: Require gmm-utils, remove autoloads.
4676 (message-tool-bar): Set default based on
4677 gmm-tool-bar-style.
4678 (message-tool-bar-gnome): Add gmm-customize-mode.
4679
4680 * gnus-sum.el (gnus-summary-tool-bar): Set default based on
4681 gmm-tool-bar-style.
4682 (gnus-summary-tool-bar-gnome): Add gmm-customize-mode.
4683
4684 * gnus-group.el (gnus-group-tool-bar): Set default based on
4685 gmm-tool-bar-style.
4686 (gnus-group-tool-bar-gnome): Add gmm-customize-mode.
4687
4688 * gmm-utils.el (gmm-image-directory): Rename variable from
4689 gmm-image-load-path.
4690 (gmm-image-load-path): Use gmm-image-directory.
4691 (gmm-customize-mode): New function.
4692 (gmm-tool-bar-style): New variable.
4693
4694 * gnus-group.el (gnus-group-redraw-when-idle): Rename from
4695 gnus-group-redraw-line-number.
4696 (gnus-group-redraw-check): Simplify.
4697 (gnus-group-tool-bar-update): Remove redraw check.
4698 (gnus-group-make-tool-bar): Add redraw check.
4699
4700 2006-03-01 Michael Piotrowski <mxp@dynalabs.de> (tiny change)
4701
4702 * gnus-art.el (gnus-button): Add missing parentheses.
4703
4704 2006-02-28 Katsumi Yamaoka <yamaoka@jpl.org>
4705
4706 * mm-util.el (mm-with-unibyte-current-buffer): Add note.
4707
4708 2006-02-28 Reiner Steib <Reiner.Steib@gmx.de>
4709
4710 * gnus-art.el (gnus-button): New face.
4711 (gnus-article-button-face): Use it.
4712
4713 * gnus-sum.el (gnus-summary-tool-bar-gnome): Add
4714 gnus-summary-next-page. Re-order.
4715
4716 * gnus-group.el (gnus-group-tool-bar-gnome): prev-node and
4717 next-node are now included.
4718 (gnus-group-redraw-line-number): New internal variable.
4719 (gnus-group-redraw-check): Helper function for updating the tool
4720 bar.
4721 (gnus-group-tool-bar-update): Add gnus-group-redraw-check.
4722
4723 * gmm-utils.el (gmm-tool-bar-item): Add TODO about modifiers.
4724
4725 * spam.el (spam-spamassassin-score-regexp): New internal variable.
4726 (spam-extra-header-to-number, spam-check-spamassassin-headers):
4727 Use it to match format of Spamassassin 3.0 and later. Reported by
4728 IRIE Tetsuya <irie@t.email.ne.jp>.
4729 (spam-check-bogofilter)
4730 (spam-bogofilter-register-with-bogofilter): Fix args of
4731 `gnus-error' calls.
4732
4733 2006-02-28 Reiner Steib <Reiner.Steib@gmx.de>
4734
4735 * gnus-draft.el (gnus-draft-send): Bind message-signature to avoid
4736 unnecessary interaction when sending queued mails. Reported by
4737 TAKAHASHI Yoshio <tkh@jp.fujitsu.com>.
4738
4739 2006-02-27 Reiner Steib <Reiner.Steib@gmx.de>
4740
4741 * gnus-sum.el (gnus-sequence-of-unread-articles): Return nil if
4742 first or last are nil.
4743
4744 2006-02-24 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
4745
4746 * nnweb.el (nnweb-gmane-create-mapping): Don't choke on ^M.
4747
4748 2006-02-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
4749
4750 * gnus-int.el (gnus-open-server): Respect gnus-batch-mode.
4751
4752 2006-02-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
4753
4754 * dns.el (query-dns): Protect more against buggy tcp output.
4755
4756 2006-02-24 Reiner Steib <Reiner.Steib@gmx.de>
4757
4758 * nnweb.el (nnweb-type-definition, nnweb-gmane-search): Use new
4759 nov.php.
4760
4761 2006-02-24 Andreas Seltenreich <uwi7@stud.uni-karlsruhe.de>
4762
4763 * nnweb.el (nnweb-type-definition, nnweb-gmane-create-mapping)
4764 (nnweb-gmane-wash-article, nnweb-gmane-search): Fix Gmane web
4765 groups. Kudos to Olly Betts <olly@survex.com> for providing NOV
4766 output on the server side.
4767 (nnweb-google-create-mapping): Update regexps and add some
4768 progress indication.
4769
4770 2006-02-23 Reiner Steib <Reiner.Steib@gmx.de>
4771
4772 * gnus-group.el (gnus-group-tool-bar-gnome): Fix
4773 gnus-agent-toggle-plugged. Re-order icons.
4774 (gnus-group-tool-bar-gnome): Add
4775 gnus-group-{prev,next}-unread-group.
4776 (gnus-group-tool-bar-gnome): Re-order icons.
4777
4778 * gnus-sum.el (gnus-summary-tool-bar-gnome): Move
4779 gnus-summary-insert-new-articles.
4780
4781 * message.el (message-tool-bar-gnome, message-tool-bar-retro): Fix
4782 comments.
4783
4784 * utf7.el (utf7-utf-16-coding-system): Fix comment. utf-16-be is
4785 also available in Emacs 21.3.
4786
4787 * message.el (message-fix-before-sending): Change "Emacs 22" to
4788 "Emacs 23 (unicode)" in comment.
4789
4790 * qp.el (quoted-printable-encode-region): Change "Emacs 22" to
4791 "Emacs 23 (unicode)" in comment.
4792
4793 * mm-util.el: Change "Emacs 22" to "Emacs 23 (unicode)" in
4794 comment.
4795 (mm-coding-system-p): Add comment about no-MULE XEmacs.
4796
4797 * mm-view.el (mm-fill-flowed): Add :version.
4798
4799 2006-02-23 Katsumi Yamaoka <yamaoka@jpl.org>
4800
4801 * gmm-utils.el (gmm-image-load-path): Don't modify image-load-path
4802 and load-path.
4803
4804 2006-02-22 Reiner Steib <Reiner.Steib@gmx.de>
4805
4806 * message.el: Autoload gmm-image-load-path.
4807 (message-tool-bar-retro): Prepend "gnus/" subdirectory to some
4808 icon file names. Use old Emacs 21 "mail_send.xpm" icon for
4809 consitency.
4810
4811 * gmm-utils.el (gmm-image-load-path): Also search in
4812 "../etc/images". Don't set gmm-image-load-path if we don't find
4813 the image.
4814
4815 2006-02-22 Katsumi Yamaoka <yamaoka@jpl.org>
4816
4817 * gmm-utils.el (gmm-image-load-path): Don't make
4818 `gmm-image-load-path' include subdirectories which the second arg
4819 `image' might specify.
4820
4821 * gnus-group.el (gnus-group-tool-bar-retro): Prepend the "gnus/"
4822 subdirectory to icon file names.
4823
4824 * gnus-sum.el (gnus-summary-tool-bar-retro): Ditto.
4825
4826 2006-02-21 Reiner Steib <Reiner.Steib@gmx.de>
4827
4828 * gnus-group.el (gnus-group-make-tool-bar): Add IMAGE argument to
4829 gmm-image-load-path calls.
4830
4831 * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
4832
4833 * message.el (message-make-tool-bar): Ditto.
4834
4835 * mml.el (mml-preview): Added comment concerning tool bar icons.
4836
4837 * gnus-group.el (gnus-group-tool-bar-gnome): Use new icon names.
4838 (gnus-group-make-tool-bar): Use `gmm-image-load-path'.
4839
4840 * gnus-sum.el (gnus-summary-tool-bar-gnome): Use new icon names.
4841 (gnus-summary-make-tool-bar): Use `gmm-image-load-path'.
4842
4843 * message.el (message-tool-bar-gnome): Use new icon names.
4844 (message-make-tool-bar): Use `gmm-image-load-path'.
4845
4846 * gmm-utils.el (gmm-defun-compat, gmm-image-search-load-path): New
4847 functions from MH-E.
4848 (gmm-image-load-path): New variable from MH-E.
4849 (gmm-image-load-path): New function from MH-E. Added arguments
4850 LIBRARY, IMAGE and PATH. Don't modify paths. Don't use
4851 *-image-load-path-called-flag.
4852
4853 2006-02-21 Milan Zamazal <pdm@brailcom.org>
4854
4855 * mm-view.el (mm-view-pkcs7-verify): Implement using smime.el.
4856
4857 2006-02-21 Wolfram Fenske <wolfram.fenske@student.uni-magdeburg.de> (tiny change)
4858
4859 * nnimap.el (nnimap-request-move-article): Change folder back to
4860 source group before deleting.
4861
4862 2006-02-20 Reiner Steib <Reiner.Steib@gmx.de>
4863
4864 * mm-util.el (mm-charset-override-alist): Fix type in doc string.
4865
4866 * gnus-art.el (mm-url-insert-file-contents-external): Autoload
4867 mm-url.
4868
4869 * mm-uu.el (mm-uu-type-alist): Improve `LaTeX'.
4870
4871 2006-02-20 Katsumi Yamaoka <yamaoka@jpl.org>
4872
4873 * rfc2047.el (rfc2047-charset-to-coding-system): Don't check the
4874 coding system which mm-charset-to-coding-system returns for a
4875 given charset is valid.
4876
4877 2006-02-16 Juanma Barranquero <lekktu@gmail.com>
4878
4879 * html2text.el (html2text-remove-tag-list):
4880 * spam-stat.el (spam-stat-buffer-words): Fix typo in docstring.
4881
4882 2006-02-14 Chong Yidong <cyd@stupidchicken.com>
4883
4884 * gnus-cus.el: Revert 2005-10-17 change.
4885
4886 2006-02-17 Katsumi Yamaoka <yamaoka@jpl.org>
4887
4888 * gnus-art.el (article-strip-banner): Call
4889 article-really-strip-banner only when the regexp match is made.
4890
4891 2006-02-16 Katsumi Yamaoka <yamaoka@jpl.org>
4892
4893 * gnus-art.el (article-strip-banner): Use
4894 gnus-extract-address-components instead of
4895 mail-header-parse-addresses to make it work with non-ASCII text;
4896 remove mail-encode-encoded-word-string.
4897
4898 * rfc2231.el (rfc2231-parse-string): Attempt to parse parameter
4899 values which are surrounded with \"...\"; make it never cause a
4900 Lisp error; give up parsing of parameters if it failed in
4901 extracting type.
4902
4903 2006-02-14 Arne Jørgensen <arne@arnested.dk>
4904
4905 * smime.el (smime-cert-by-ldap-1): Fix bug where
4906 `smime-ldap-search' returns results without userCertificates.
4907
4908 2006-02-15 Katsumi Yamaoka <yamaoka@jpl.org>
4909
4910 * mm-util.el (mm-make-temp-file): Don't catch file-error in Emacs.
4911
4912 2006-02-14 Reiner Steib <Reiner.Steib@gmx.de>
4913
4914 * spam.el (spam-check-spamassassin-headers): Adapt format for
4915 Spamassassin 3.0 or later. Reported by ARISAWA Akihiro
4916 <ari@mbf.ocn.ne.jp>.
4917 (spam-list-of-processors): Add spam-use-gmane.
4918
4919 2006-02-14 Katsumi Yamaoka <yamaoka@jpl.org>
4920
4921 * mm-util.el (mm-make-temp-file): Import the Emacs 22 version of
4922 make-temp-file; make it work with XEmacs as well.
4923
4924 * gnus-art.el (gnus-article-browse-html-parts): Use the 3rd arg of
4925 mm-make-temp-file.
4926
4927 * mm-decode.el (mm-display-external): Use the 3rd arg of
4928 mm-make-temp-file.
4929 (mm-create-image-xemacs): Ditto.
4930
4931 2006-02-14 Katsumi Yamaoka <yamaoka@jpl.org>
4932
4933 * gnus-draft.el (gnus-draft-send): Replace message-narrow-to-head
4934 with message-narrow-to-headers.
4935 (gnus-draft-setup): Narrow to header to run message-fetch-field.
4936 (gnus-draft-check-draft-articles): New function.
4937 (gnus-draft-edit-message, gnus-draft-send-message): Use it.
4938
4939 2006-02-13 Reiner Steib <Reiner.Steib@gmx.de>
4940
4941 * gnus-art.el (gnus-article-browse-html-parts):
4942 `hs-show-html-list' should read `gnus-article-browse-html-parts'.
4943 Don't use suffix argument for mm-make-temp-file for Emacs 21
4944 compatibility. Remove useless `format'.
4945
4946 2006-02-13 Andreas Seltenreich <uwi7@stud.uni-karlsruhe.de>
4947
4948 * nnweb.el (nnweb-google-wash-article): Update regexps.
4949 (nnweb-group-alist): Use defvoo instead of defvar.
4950
4951 2006-02-13 Katsumi Yamaoka <yamaoka@jpl.org>
4952
4953 * nnoo.el (nnoo-declare): Don't generate duplicate entries when
4954 re-loading nn* modules.
4955
4956 2006-02-10 Reiner Steib <Reiner.Steib@gmx.de>
4957
4958 * gnus-group.el (gnus-group-make-tool-bar): Remove duplicate check
4959 for `tool-bar-mode' and don't check it's default-value.
4960
4961 * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
4962
4963 * message.el (message-make-tool-bar): Ditto.
4964
4965 * gnus-art.el (gnus-article-browse-html-parts): Remove useless
4966 `substring'. Shorten tmp-file name.
4967
4968 * gnus.el: Remove bogus comment.
4969
4970 2006-02-10 Hynek Schlawack <hynek@ularx.de>
4971
4972 * gnus-art.el (gnus-article-browse-html-parts): New function.
4973 (gnus-article-browse-html-article): New function for viewing html
4974 articles with a browser.
4975
4976 2006-02-09 Daiki Ueno <ueno@unixuser.org>
4977
4978 * mml2015.el (mml2015-pgg-sign): Enable pgg-text-mode.
4979 (mml2015-pgg-encrypt): Ditto.
4980
4981 * mml1991.el (mml1991-pgg-sign): Enable pgg-text-mode.
4982 (mml1991-pgg-encrypt): Ditto.
4983
4984 2006-02-08 Katsumi Yamaoka <yamaoka@jpl.org>
4985
4986 * nnfolder.el (nnfolder-insert-newsgroup-line): Use
4987 message-make-date instead of current-time-string.
4988
4989 * mm-view.el (mm-inline-message): Don't set gnus-newsgroup-charset
4990 to gnus-decoded which mm-uu might set.
4991
4992 2006-02-08 Katsumi Yamaoka <yamaoka@jpl.org>
4993
4994 * rfc2231.el (rfc2231-parse-string): Sort segmented parameters;
4995 don't decode quoted parameters; remove misimported Emacs code.
4996 Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
4997 (rfc2231-decode-encoded-string): Don't use split-string which
4998 behaves differently according to Emacs version; use
4999 mm-decode-coding-region to convert charset to coding-system.
5000 Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
5001 (rfc2231-encode-string): Remove misimported Emacs code.
5002
5003 2006-02-07 Katsumi Yamaoka <yamaoka@jpl.org>
5004
5005 * gnus-art.el (article-decode-charset): Don't use ignore-errors
5006 when calling mail-header-parse-content-type.
5007 (article-de-quoted-unreadable): Ditto.
5008 (article-de-base64-unreadable): Ditto.
5009 (article-wash-html): Ditto.
5010
5011 * mm-decode.el (mm-dissect-buffer): Don't use ignore-errors when
5012 calling mail-header-parse-content-type and
5013 mail-header-parse-content-disposition.
5014 (mm-find-raw-part-by-type): Don't use ignore-errors when calling
5015 mail-header-parse-content-type.
5016
5017 * mml.el (mml-insert-mime-headers): Use mml-insert-parameter to
5018 insert charset and format parameters; encode description after
5019 inserting it to buffer.
5020 (mml-insert-parameter): Fold lines properly even if a parameter is
5021 segmented into two or more lines; change the max column to 76.
5022
5023 * rfc1843.el (rfc1843-decode-article-body): Don't use
5024 ignore-errors when calling mail-header-parse-content-type.
5025
5026 * rfc2231.el (rfc2231-parse-string): Return at least type if
5027 possible; don't cause an error even if it fails in parsing of
5028 parameters. Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
5029 (rfc2231-encode-string): Don't break lines at the beginning, leave
5030 it to mml-insert-parameter.
5031
5032 * webmail.el (webmail-yahoo-article): Don't use ignore-errors when
5033 calling mail-header-parse-content-type.
5034
5035 2006-02-06 Reiner Steib <Reiner.Steib@gmx.de>
5036
5037 * spam-report.el (spam-report-gmane-use-article-number):
5038 Improve doc string.
5039 (spam-report-gmane-internal): Check if a suitable header was found
5040 in the article.
5041
5042 2006-02-04 Katsumi Yamaoka <yamaoka@jpl.org>
5043
5044 * rfc2231.el (rfc2231-parse-string): Revert 2006-02-03 change.
5045 (rfc2231-encode-string): Make param*=value always begin with LWSP.
5046
5047 2006-02-05 Romain Francoise <romain@orebokech.com>
5048
5049 Update copyright notices of all files in the gnus directory.
5050
5051 2006-02-03 Andreas Seltenreich <uwi7@stud.uni-karlsruhe.de>
5052
5053 * nnweb.el (nnweb-request-group): Avoid growing overview files.
5054
5055 2006-02-03 Katsumi Yamaoka <yamaoka@jpl.org>
5056
5057 * rfc2231.el (rfc2231-parse-string): Add missing semicolons to
5058 segmented lines of parameter value to cope with Thunderbird 1.5
5059 bug (cf. https://bugzilla.mozilla.org/show_bug.cgi?id=323318).
5060 Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
5061 (rfc2231-encode-string): Don't make lines exceeding 76 column.
5062
5063 2006-02-01 Max Froumentin <max@lapin-bleu.net> (tiny change)
5064
5065 * mml.el (mml-generate-mime-1): Correct the order of inline signed
5066 parts.
5067
5068 2006-01-31 Andreas Seltenreich <uwi7@stud.uni-karlsruhe.de>
5069
5070 * nnweb.el (nnweb-group-alist): Use defvar instead of defvoo,
5071 there's only one active file for all servers.
5072 (nnweb-request-scan): Make sure nnweb-articles is initialized on
5073 solid groups. Gnus might have used a FAST request to select the group.
5074 (nnweb-request-group, nnweb-google-parse-1): Don't keep nnweb-type
5075 and nnweb-search redundantly in the active file.
5076 (nnweb-request-list): Don't list bogus groups. There can only be one.
5077 (nnweb-request-create-group): Don't use ARGS.
5078 (nnweb-possibly-change-server, nnweb-request-group): Remove some
5079 initialisations. Let nnoo do the work.
5080
5081 2006-01-31 Katsumi Yamaoka <yamaoka@jpl.org>
5082
5083 * mm-uu.el (mm-uu-emacs-sources-extract, mm-uu-diff-extract):
5084 Say the part has been decoded.
5085
5086 * mm-view.el (mm-display-inline-fontify): Get decoded part rightly.
5087
5088 2006-01-31 Kevin Ryde <user42@zip.com.au>
5089
5090 * mailcap.el (mailcap-viewer-passes-test): Don't put "(nil t)" into
5091 mailcap-viewer-test-cache when there's no 'test clause, since that
5092 will invert the meaning of a "nil" test previously determined by
5093 mailcap-mailcap-entry-passes-test.
5094
5095 2006-01-30 Katsumi Yamaoka <yamaoka@jpl.org>
5096
5097 * gnus-group.el: Bind tool-bar-mode instead of tool-bar-map when
5098 compiling.
5099
5100 * gnus-sum.el: Ditto.
5101
5102 * message.el: Don't bind tool-bar-map when compiling.
5103
5104 2006-01-30 Reiner Steib <Reiner.Steib@gmx.de>
5105
5106 * nnweb.el (nnweb-google-parse-1): Clarify some comments.
5107
5108 2006-01-30 Andreas Seltenreich <uwi7@stud.uni-karlsruhe.de>
5109
5110 * nnweb.el (nnweb-type-definition, nnweb-google-parse-1)
5111 (nnweb-google-create-mapping, nnweb-google-search): Adapt to
5112 current Google Groups.
5113
5114 2006-01-26 Reiner Steib <Reiner.Steib@gmx.de>
5115
5116 * gnus-sum.el (gnus-summary-make-tool-bar): Add checks for XEmacs
5117 and tool-bar-mode.
5118
5119 * gnus-group.el (gnus-group-make-tool-bar): Add checks for XEmacs
5120 and tool-bar-mode.
5121
5122 * message.el (message-tool-bar-update): Simplify.
5123 (message-make-tool-bar): Add checks for XEmacs and tool-bar-mode.
5124
5125 * gnus-sum.el (gnus-summary-tool-bar-update): Check for
5126 gnus-summary-buffer.
5127 (gnus-summary-tool-bar-gnome): Use "reply-author" icon for
5128 gnus-summary-reply.
5129
5130 * gmm-utils.el (gmm): Add :version.
5131
5132 2006-01-26 Katsumi Yamaoka <yamaoka@jpl.org>
5133
5134 * Makefile.in (clean): New rule.
5135 (distclean): Use it.
5136
5137 2006-01-26 Steve Youngs <steve@sxemacs.org>
5138
5139 * gmm-utils.el (gmm-tool-bar-item, gmm-tool-bar-zap-list): Don't
5140 autoload.
5141
5142 2006-01-26 Katsumi Yamaoka <yamaoka@jpl.org>
5143
5144 * gmm-utils.el (gmm-verbose): Add :group.
5145
5146 2006-01-25 Reiner Steib <Reiner.Steib@gmx.de>
5147
5148 * message.el: Change some comments WRT tool-bars.
5149
5150 * gnus-sum.el (gnus-summary-tool-bar)
5151 (gnus-summary-tool-bar-gnome, gnus-summary-tool-bar-retro)
5152 (gnus-summary-tool-bar-zap-list): New variables.
5153 (gnus-summary-make-tool-bar): Complete rewrite using
5154 `gmm-tool-bar-from-list'.
5155
5156 * gnus-group.el (gnus-group-tool-bar, gnus-group-tool-bar-gnome)
5157 (gnus-group-tool-bar-retro, gnus-group-tool-bar-zap-list): New
5158 variables.
5159 (gnus-group-make-tool-bar): Complete rewrite using
5160 `gmm-tool-bar-from-list'.
5161 (gnus-group-tool-bar-update): New function.
5162
5163 * message.el (message-mode-field-menu): Add "Show hidden Headers".
5164
5165 2006-01-25 Katsumi Yamaoka <yamaoka@jpl.org>
5166
5167 * mm-uu.el (mm-uu-dissect-text-parts): Ignore it if a given part
5168 is dissected into a single part of which the type is the same as
5169 the given one; decode charset.
5170
5171 2006-01-21 Kevin Ryde <user42@zip.com.au>
5172
5173 * mailcap.el (mailcap-parse-mailcap-extras): "test" key must go
5174 into alists as symbol not string, since that's what
5175 mailcap-viewer-passes-test and mailcap-mailcap-entry-passes-test
5176 look for.
5177
5178 2006-01-24 Reiner Steib <Reiner.Steib@gmx.de>
5179
5180 * gmm-utils.el (gmm-tool-bar-item): Add "Separator".
5181 (gmm-tool-bar-from-list): Suppress tooltip for `gmm-ignore'.
5182
5183 * message.el (message-tool-bar-gnome): Use gmm-ignore.
5184
5185 2006-01-24 Katsumi Yamaoka <yamaoka@jpl.org>
5186
5187 * gnus-art.el (gnus-mime-security-button-commands): New variable.
5188 (gnus-mime-security-button-menu): New definition.
5189 (gnus-mime-security-button-map): Use them.
5190 (gnus-mime-security-button-menu): New function.
5191 (gnus-insert-mime-security-button): Addition to help echo.
5192 (gnus-mime-security-run-function, gnus-mime-security-save-part)
5193 (gnus-mime-security-pipe-part): New functions.
5194
5195 * mm-uu.el (mm-uu-buttonize-original-text-parts): Remove.
5196 (mm-uu-dissect-text-parts): Revert a part of 2006-01-23 change.
5197
5198 * mm-decode.el (mm-handle-set-disposition): Remove.
5199 (mm-handle-set-description): Remove.
5200
5201 2006-01-24 Katsumi Yamaoka <yamaoka@jpl.org>
5202
5203 * mm-view.el (mm-w3m-standalone-supports-m17n-p): New variable.
5204 (mm-w3m-standalone-supports-m17n-p): New function.
5205 (mm-inline-text-html-render-with-w3m-standalone): Use it to alter
5206 w3m usage.
5207
5208 * gnus-art.el (gnus-article-wash-html-with-w3m-standalone): Use
5209 mm-w3m-standalone-supports-m17n-p to alter w3m usage.
5210
5211 2006-01-23 Reiner Steib <Reiner.Steib@gmx.de>
5212
5213 * message.el (message-tool-bar-zap-list): Use
5214 gmm-tool-bar-zap-list as custom type.
5215 (message-tool-bar-update): New function.
5216 (message-tool-bar, message-tool-bar-gnome)
5217 (message-tool-bar-retro): Add message-tool-bar-update.
5218 (message-tool-bar-gnome): Add flyspell-buffer.
5219
5220 * gnus-util.el (gnus-error): Describe `args'.
5221
5222 * gmm-utils.el (gmm-error): Describe `args'.
5223 (gmm-tool-bar-zap-list): New widget.
5224 (gmm-tool-bar-from-list): Improve description of `zap-list'.
5225
5226 2006-01-23 Katsumi Yamaoka <yamaoka@jpl.org>
5227
5228 * mm-uu.el (mm-uu-buttonize-original-text-parts): New variable.
5229 (mm-uu-dissect-text-parts): Buttonize original text parts; reduce
5230 the number of recursive calls.
5231
5232 * mm-decode.el (mm-handle-set-disposition): New macro.
5233 (mm-handle-set-description): New macro.
5234
5235 2006-01-23 Katsumi Yamaoka <yamaoka@jpl.org>
5236
5237 * mm-uu.el (mm-uu-dissect-text-parts): Decode content transfer
5238 encoding.
5239
5240 2006-01-20 Reiner Steib <Reiner.Steib@gmx.de>
5241
5242 * message.el (message-tool-bar-zap-list, message-tool-bar)
5243 (message-tool-bar-gnome, message-tool-bar-retro): New variables.
5244 (message-tool-bar-local-item-from-menu): Remove.
5245 (message-tool-bar-map): Replace by `message-make-tool-bar'.
5246 (message-make-tool-bar): New function.
5247 (message-mode): Use `message-make-tool-bar'.
5248
5249 * gmm-utils.el: New file.
5250 (gmm-verbose, gmm-message, gmm-error): From gnus-utils.el.
5251 (gmm-lazy): New widget copied from `nnmail.el'.
5252 (gmm-tool-bar-from-list): New function for creating customizable
5253 tool bars.
5254 (gmm-tool-bar-from-list): Fix typos in doc string. Remove debug
5255 output.
5256 (gmm): Add :prefix to defgroup.
5257
5258 2006-01-20 Per Abrahamsen <abraham@dina.kvl.dk>
5259
5260 * gmm-utils.el (gmm-widget-p): New function.
5261
5262 2006-01-20 Reiner Steib <Reiner.Steib@gmx.de>
5263
5264 * mml.el (mml-attach-file): Describe `description' in doc string.
5265 (mml-menu): Add Emacs MIME manual and PGG manual.
5266
5267 2006-01-20 Richard M. Stallman <rms@gnu.org>
5268
5269 * mm-url.el (mm-url-load-url): Require url-parse and url-vars.
5270
5271 2006-01-20 Kevin Greiner <kevin.greiner@compsol.cc>
5272
5273 * nntp.el (nntp-end-of-line): Doc fix.
5274
5275 2006-01-20 Chong Yidong <cyd@stupidchicken.com>
5276
5277 * imap.el (imap-open): Handle case where buffer is a buffer
5278 object.
5279
5280 2005-01-20 Stefan Monnier <monnier@iro.umontreal.ca>
5281
5282 * gnus-delay.el (gnus-delay): Don't autoload.
5283 It's useless and could trigger a bug in cus-dep.el causing ldefs-boot
5284 to be re-loaded when customizing the `gnus-delay' group.
5285
5286 2005-01-20 Chong Yidong <cyd@stupidchicken.com>
5287
5288 * message.el (message-insert-citation-line): Use newlines.
5289
5290 2006-01-19 Katsumi Yamaoka <yamaoka@jpl.org>
5291
5292 * mm-bodies.el (mm-decode-body): Don't decode decoded body.
5293
5294 * mm-uu.el (mm-uu-dissect-text-parts): Dissect dissected parts.
5295
5296 2006-01-19 Mark D. Baushke <mdb@gnu.org>
5297
5298 * pgg-gpg.el (pgg-gpg-encrypt-region): Add --textmode to gpg args.
5299
5300 2006-01-17 Katsumi Yamaoka <yamaoka@jpl.org>
5301
5302 * mm-decode.el (mm-inlined-types): Add application/pgp.
5303 (mm-automatic-display): Ditto.
5304
5305 * mm-uu.el (mm-uu-dissect-text-parts): Recognize application/pgp
5306 part as text.
5307
5308 2006-01-16 Katsumi Yamaoka <yamaoka@jpl.org>
5309
5310 * nnrss.el: Update copyright.
5311 (nnrss-opml-import): Query whether to subscribe to each entry.
5312
5313 * gnus-art.el:
5314 * gnus-sum.el:
5315 * mm-uu.el:
5316 * mm-view.el: Update copyright.
5317
5318 2006-01-16 Reiner Steib <Reiner.Steib@gmx.de>
5319
5320 * message.el (message-info): New function.
5321 (message-mode-menu): Add it.
5322 Update copyright.
5323
5324 * ChangeLog: Fix and update copyright.
5325
5326 2006-01-13 Romain Francoise <romain@orebokech.com>
5327
5328 * message.el (message-forward-subject-name-subject): Prefer the
5329 address to 'nowhere' if the sender has no name.
5330 Fix typo. Update copyright year.
5331
5332 2006-01-13 Katsumi Yamaoka <yamaoka@jpl.org>
5333
5334 * gnus-art.el (article-wash-html): Use
5335 gnus-summary-show-article-charset-alist if a numeric arg is given.
5336 (gnus-article-wash-html-with-w3m-standalone): New function.
5337
5338 * mm-view.el (mm-text-html-renderer-alist): Map w3m-standalone to
5339 mm-inline-text-html-render-with-w3m-standalone.
5340 (mm-text-html-washer-alist): Map w3m-standalone to
5341 gnus-article-wash-html-with-w3m-standalone.
5342 (mm-inline-text-html-render-with-w3m-standalone): New function.
5343
5344 2006-01-12 Reiner Steib <Reiner.Steib@gmx.de>
5345
5346 * mm-uu.el (mm-uu-type-alist): Fix previous message-marks commit.
5347 Improve LaTeX.
5348
5349 2006-01-10 Katsumi Yamaoka <yamaoka@jpl.org>
5350
5351 * nnrss.el (nnrss-wash-html-in-text-plain-parts): New variable.
5352 (nnrss-request-article): Render text/plain parts as HTML.
5353
5354 * gnus-art.el (gnus-article-wash-html-with-w3m): No need to narrow
5355 the buffer.
5356
5357 2006-01-08 Reiner Steib <Reiner.Steib@gmx.de>
5358
5359 * gnus-cus.el (gnus-group-parameters): Sync posting-style with
5360 custom definition of `gnus-posting-styles'.
5361
5362 * gnus-start.el (gnus-gnus-to-quick-newsrc-format): Bind
5363 print-circle. Suggested by Kalle Olavi Niemitalo <kon@iki.fi>.
5364
5365 2006-01-05 Reiner Steib <Reiner.Steib@gmx.de>
5366
5367 * gnus-group.el (gnus-useful-groups): Use Gmane for ding.
5368 Use nntp for bug archive.
5369
5370 2006-01-05 Katsumi Yamaoka <yamaoka@jpl.org>
5371
5372 * nnrss.el (nnrss-request-article): Fix the way to fill text/plain
5373 parts.
5374 (nnrss-normalize-date): New function converts ISO 8601 date into
5375 RFC822 style. Suggested by Mark Plaksin <happy@mcplaksin.org>.
5376 (nnrss-check-group): Use it.
5377
5378 2006-01-01 Katsumi Yamaoka <yamaoka@jpl.org>
5379
5380 * gnus-sum.el (gnus-summary-work-articles): Remove useless `min'.
5381
5382 * nnrss.el (nnrss-fetch): Make it fail gracefully when it can't
5383 fetch a feed. Suggested by Mark Plaksin <happy@mcplaksin.org>.
5384 (nnrss-insert-w3): Ditto.
5385
5386 2005-12-22 Katsumi Yamaoka <yamaoka@jpl.org>
5387
5388 * gnus-uu.el (gnus-uu-digest-mail-forward): Reverse the order of
5389 the articles to be forwarded including the case where neither a
5390 number of articles nor a region is specified.
5391
5392 2005-12-21 Katsumi Yamaoka <yamaoka@jpl.org>
5393
5394 * nnrss.el (nnrss-request-article): Fix last change; fill
5395 text/plain parts.
5396
5397 2005-12-20 Katsumi Yamaoka <yamaoka@jpl.org>
5398
5399 * nnrss.el (nnrss-request-article): Replace <br />s with newlines
5400 in text/plain part.
5401 (nnrss-check-group): Don't add excessive newline to dc:subject.
5402
5403 2005-12-19 Mark Plaksin <happy@mcplaksin.org> (tiny change)
5404
5405 * nnrss.el (nnrss-check-group): Put the RSS dc:subject in the
5406 article.
5407
5408 2005-12-18 Reiner Steib <Reiner.Steib@gmx.de>
5409
5410 * nnml.el: Don't require gnus-bcklg. Autoload it.
5411 (nnml-use-compressed-files, nnml-save-mail): Support other
5412 comression programs such as bzip2.
5413
5414 2005-12-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
5415
5416 * dns.el (query-dns): Make sure we check the buffer size before
5417 removing tcp headers.
5418
5419 2005-12-16 Katsumi Yamaoka <yamaoka@jpl.org>
5420
5421 * gnus-art.el (gnus-article-delete-text-of-type): Enable it to
5422 remove MIME buttons associated with multipart/alternative parts.
5423 (gnus-mime-display-alternative): Tag buttons using `article-type'
5424 text property.
5425
5426 * gnus-msg.el (gnus-copy-article-buffer): Remove MIME buttons
5427 associated with multipart/alternative parts.
5428
5429 * gnus-art.el (gnus-signature-separator): Fix custom type.
5430
5431 * mm-decode.el (mm-inlined-types): Fix custom type.
5432 (mm-keep-viewer-alive-types): Ditto.
5433 (mm-automatic-display): Ditto.
5434 (mm-attachment-override-types): Ditto.
5435 (mm-inline-override-types): Ditto.
5436 (mm-automatic-external-display): Ditto.
5437
5438 2005-12-15 Reiner Steib <Reiner.Steib@gmx.de>
5439
5440 * spam-report.el (spam-report-user-mail-address)
5441 (spam-report-user-agent): New variables.
5442 (spam-report-url-ping-plain): Use spam-report-user-agent.
5443
5444 2005-12-14 Ralf Angeli <angeli@iwi.uni-sb.de>
5445
5446 * gnus-art.el (gnus-button-handle-custom): Do not just use
5447 `customize-apropos' for any "M-x customize-*" button but the
5448 function called for. Accept both the function name and its
5449 argument in order to achieve this.
5450 (gnus-button-alist): Remove support for "custom:" URL's. Pass
5451 function name to `gnus-button-handle-custom' in case of "M-x
5452 customize-*" buttons.
5453
5454 2005-12-12 Katsumi Yamaoka <yamaoka@jpl.org>
5455
5456 * gnus-art.el (gnus-buttonized-mime-types): Mention addition of
5457 multipart/alternative and add xref to mm-discouraged-alternatives
5458 in doc string.
5459
5460 * mm-decode.el (mm-discouraged-alternatives): Add xref to
5461 gnus-buttonized-mime-types in doc string.
5462
5463 2005-12-08 Reiner Steib <Reiner.Steib@gmx.de>
5464
5465 * mm-decode.el (mm-discouraged-alternatives): Fix custom type.
5466 Suggest image/.* in the doc string.
5467
5468 2005-12-12 Reiner Steib <Reiner.Steib@gmx.de>
5469
5470 * mm-uu.el (mm-uu-type-alist): Don't depend on message.el for
5471 message-marks (Debian bug #342521).
5472
5473 2005-12-12 Simon Josefsson <jas@extundo.com>
5474
5475 * password.el (password-read-from-cache): Add.
5476 (password-read): Use it.
5477
5478 2005-12-12 Katsumi Yamaoka <yamaoka@jpl.org>
5479
5480 * rfc2047.el (rfc2047-charset-to-coding-system): Recognize
5481 us-ascii as a MIME charset.
5482
5483 * mm-bodies.el (mm-decode-content-transfer-encoding): Protect
5484 against the case where the 2nd arg TYPE is nil.
5485
5486 2005-12-09 Reiner Steib <Reiner.Steib@gmx.de>
5487
5488 * pop3.el (pop3-stream-type): Fix custom version.
5489
5490 * mm-uu.el (mm-uu-type-alist): Simplify uu regexp.
5491
5492 2005-12-09 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
5493
5494 * mm-decode.el (mm-display-external): Add missing cdr.
5495
5496 2005-12-07 Katsumi Yamaoka <yamaoka@jpl.org>
5497
5498 * mm-decode.el (mm-display-external): Use nametemplate (defined in
5499 RFC1524) if it is in mailcap or add a suffix according to
5500 mailcap-mime-extensions when generating a temp filename; postpone
5501 deleting a temp file for 2 seconds for some wrappers, shell
5502 scripts, and so on, which might exit right after having started a
5503 viewer command as a background job.
5504
5505 2005-12-06 Reiner Steib <Reiner.Steib@gmx.de>
5506
5507 * nntp.el (nntp-marks-directory): Fix custom group.
5508
5509 * gnus-fun.el (gnus-face-from-file): Decrease quant in smaller
5510 steps when < 10.
5511
5512 * gnus-start.el (gnus-no-server-1): Mention
5513 `gnus-level-default-subscribed' in doc string.
5514
5515 2005-12-02 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
5516
5517 * mm-view.el (mm-inline-text-html-render-with-w3m): Fix misplaced
5518 parens.
5519
5520 2005-11-26 Dave Love <fx@gnu.org>
5521
5522 * tls.el (open-tls-stream): Rename arg SERVICE to PORT.
5523 (tls-program, tls-success): Provide openssl alternative.
5524
5525 * starttls.el: Doc fixes.
5526 (starttls-open-stream-gnutls, starttls-open-stream): Rename arg
5527 SERVICE to PORT.
5528
5529 * pop3.el (pop3-open-server) <ssl>: Clarify a loop. Deal with
5530 port null or service name.
5531 (starttls-negotiate): Autoload.
5532
5533 2005-11-25 Katsumi Yamaoka <yamaoka@jpl.org>
5534
5535 * message.el (message-kill-to-signature): Fix interactive spec.
5536
5537 2005-11-24 Katsumi Yamaoka <yamaoka@jpl.org>
5538
5539 * pop3.el (pop3-open-server): Recognize a string as a service name.
5540
5541 2005-11-24 Pascal Rigaux <pixel@mandriva.com> (tiny change)
5542
5543 * rfc2231.el (rfc2231-parse-string): Support non-ascii chars.
5544
5545 2005-11-23 Dave Love <fx@gnu.org>
5546
5547 Add pop3s, pop3/starttls.
5548
5549 * pop3.el (pop3-authentication-scheme): Clarify doc.
5550 (open-tls-stream, starttls-open-stream): Autoload.
5551 (pop3-stream-type): New.
5552 (pop3-open-server): Use it.
5553
5554 * mail-source.el (mail-sources): Fix some :types. Add stream type
5555 for POP.
5556 (mail-source-keyword-map): Add :stream for POP.
5557 (mail-source-fetch-pop): Use pop3-stream-type.
5558
5559 2005-11-22 Katsumi Yamaoka <yamaoka@jpl.org>
5560
5561 * nnmail.el (nnmail-fancy-expiry-target): Use current-time instead
5562 of current-time-string.
5563
5564 2005-11-20 Stefan Schimanski <schimmi@debian.org> (tiny change)
5565
5566 * nnmail.el (nnmail-fancy-expiry-target): Protect against invalid
5567 date header.
5568
5569 2005-11-19 Kevin Greiner <kevin.greiner@compsol.cc>
5570
5571 * gnus-sum.el (gnus-fetch-old-headers): Updated docs to warn that
5572 it can seriously impact performance as it bypasses the agent's
5573 local caches.
5574
5575 2005-11-19 Kevin Greiner <kevin.greiner@compsol.cc>
5576
5577 * gnus-agent.el (gnus-agent-possibly-synchronize-flags): A server
5578 must be explicitly online rather than "not explicitly offline" for
5579 its flags to be synchronized.
5580
5581 * gnus-sum.el (gnus-summary-remove-process-mark): Always return t so
5582 that gnus-uu-unmark-thread will function correctly.
5583
5584 * gnus-group.el (gnus-total-fetched-for): Reduced cutoff so that
5585 1024K is instead displayed as 1M.
5586
5587 2005-11-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
5588
5589 * flow-fill.el (fill-flowed): Bind adaptive-fill-mode to nil.
5590
5591 2005-11-16 Boris Samorodov <bsam@ipt.ru> (tiny change)
5592
5593 * imap.el (imap-kerberos4-open): Ignore SSL stuff.
5594
5595 2005-11-13 Kevin Greiner <kevin.greiner@compsol.cc>
5596
5597 * gnus-agent.el (gnus-agent-read-local): Trivial fix to format of
5598 error message to display actual error condition.
5599 (gnus-agent-save-local): Avoid saving symbols that are bound to
5600 nil as they simply result in a warning message in
5601 gnus-agent-read-local.
5602
5603 2005-11-13 Katsumi Yamaoka <yamaoka@jpl.org>
5604
5605 * gnus-start.el (gnus-dribble-read-file): Use make-local-variable
5606 rather than make-variable-buffer-local for file-precious-flag.
5607
5608 2005-11-12 Kevin Greiner <kevin.greiner@compsol.cc>
5609
5610 * gnus-agent.el (gnus-agent-braid-nov): Now tests new nov entries
5611 for duplicates which are removed. The invalid sort check then
5612 triggers a rescan after the sort as sorting may have moved
5613 duplicate entries such that they can be cheaply detected.
5614
5615 2005-11-13 Katsumi Yamaoka <yamaoka@jpl.org>
5616
5617 * gnus-start.el (gnus-dribble-read-file): Quote file-precious-flag.
5618
5619 2005-11-12 Kevin Greiner <kevin.greiner@compsol.cc>
5620
5621 * gnus-agent.el (gnus-agent-article-alist-save-format): Changed
5622 internal variable to a custom variable. Changed default value
5623 from compressed(2) to uncompressed(1).
5624 (gnus-agent-read-agentview): Reversed revision 7.8 to restore
5625 support for uncompressed agentview files. Taken together, reading
5626 the agentview file should now be 6-7 times faster.
5627
5628 2005-11-11 Jan Nieuwenhuizen <janneke@gnu.org>
5629
5630 * gnus-start.el (gnus-dribble-read-file): Set file-precious-flag,
5631 as a buffer-local variable. This avoids creating truncated
5632 dribble files as a result of a hang up, eg.
5633
5634 2005-12-09 Reiner Steib <Reiner.Steib@gmx.de>
5635
5636 * gnus-start.el (gnus-start-draft-setup): Enforce
5637 `gnus-draft-mode' for nndraft:drafts at startup.
5638
5639 * gnus.el (gnus-splash): Change custom group.
5640 (gnus-group-get-parameter, gnus-group-parameter-value): Describe
5641 allow-list argument.
5642
5643 * gnus-agent.el (gnus-agent-article-alist-save-format): Format doc
5644 string.
5645
5646 2005-12-06 Reiner Steib <Reiner.Steib@gmx.de>
5647
5648 * gnus-art.el (gnus-default-article-saver): Add user-defined
5649 `function' to custom type.
5650
5651 2005-10-30 Chong Yidong <cyd@stupidchicken.com>
5652
5653 * imap.el (imap-open): Handle case where buffer is a buffer
5654 object.
5655
5656 2005-11-29 Reiner Steib <Reiner.Steib@gmx.de>
5657
5658 * gnus-cache.el (gnus-cache-rename-group): Wrap doc strings and
5659 long lines.
5660 (gnus-cache-delete-group): Wrap doc strings.
5661
5662 * gnus-agent.el (gnus-agent-rename-group)
5663 (gnus-agent-delete-group): Wrap doc strings.
5664
5665 2005-11-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
5666
5667 * gnus-start.el (gnus-1): Add "native" to
5668 gnus-predefined-server-alist.
5669
5670 * gnus.el (gnus-method-to-server): Don't add "native" to the
5671 lists here, because that leads to problems when
5672 gnus-select-method is bound.
5673
5674 2005-11-09 Simon Josefsson <jas@extundo.com>
5675
5676 * gnus-sum.el (gnus-article-sort-by-date-reverse): Remove,
5677 use (not sort-by-date) instead.
5678
5679 2005-11-30 Stefan Monnier <monnier@iro.umontreal.ca>
5680
5681 * gnus-delay.el (gnus-delay-group): Don't autoload.
5682 It's useless and could trigger a bug in cus-dep.el causing ldefs-boot
5683 to be re-loaded when customizing the `gnus-delay' group.
5684
5685 2005-11-19 Chong Yidong <cyd@stupidchicken.com>
5686
5687 * message.el: Revert last changes.
5688 (message-insert-citation-line): Use newlines.
5689
5690 2005-11-17 Chong Yidong <cyd@stupidchicken.com>
5691
5692 * message.el (message-courtesy-message)
5693 (message-mark-insert-begin, message-mark-insert-end)
5694 (message-elide-ellipsis, message-cancel-message)
5695 (message-add-header, message-change-subject)
5696 (message-cross-post-followup-to-header)
5697 (message-cross-post-insert-note, message-reduce-to-to-cc)
5698 (message-widen-reply, message-delete-not-region)
5699 (message-kill-to-signature, message-insert-signature)
5700 (message-insert-importance-high, message-insert-importance-low)
5701 (message-insert-or-toggle-importance)
5702 (message-insert-disposition-notification-to)
5703 (message-indent-citation, message-yank-original)
5704 (message-cite-original-without-signature, message-cite-original)
5705 (message-insert-citation-line, message-position-on-field)
5706 (message-fix-before-sending, message-send-mail-partially)
5707 (message-send-mail, message-send-mail-with-sendmail)
5708 (message-send-mail-with-qmail, message-send-news)
5709 (message-check-news-header-syntax, message-generate-headers)
5710 (message-insert-courtesy-copy, message-fill-address)
5711 (message-fill-header, message-shorten-references)
5712 (message-setup-1, message-cancel-news)
5713 (message-forward-make-body-plain, message-forward-make-body-mime)
5714 (message-forward-make-body-mml, message-encode-message-body)
5715 (message-forward-make-body-digest-plain)
5716 (message-forward-make-body-digest-mime)
5717 (message-use-alternative-email-as-from): Insert `hard-newline'
5718 instead of ordinary newlines.
5719
5720 2005-11-09 Katsumi Yamaoka <yamaoka@jpl.org>
5721
5722 * message.el (message-generate-headers): Downcase the argument
5723 given to message-check-element.
5724
5725 2005-11-08 Kevin Greiner <kevin.greiner@compsol.cc>
5726
5727 * nntp.el (nntp-authinfo-rejected): New error condition.
5728 (nntp-wait-for): Use new error condition to signal authentication
5729 error.
5730 (nntp-retrieve-data): Rethrow new error condition to break out of
5731 recursive call to nntp-send-authinfo.
5732
5733 2005-11-08 Romain Francoise <romain@orebokech.com>
5734
5735 * gnus-sum.el (gnus-summary-catchup-and-goto-prev-group): New function.
5736 (gnus-summary-exit-map): Bind to `Z p'.
5737 (gnus-summary-make-menu-bar): Add menu item.
5738
5739 2005-11-02 Reiner Steib <Reiner.Steib@gmx.de>
5740
5741 * gnus-art.el (gnus-article-treat-custom): Add `first'.
5742 (gnus-treat-*): Add `first' in all doc strings.
5743
5744 * gnus-group.el (gnus-group-compact-group): Fix typo.
5745
5746 2005-11-01 Katsumi Yamaoka <yamaoka@jpl.org>
5747
5748 * gnus.el (gnus-parameters-case-fold-search): New variable.
5749 (gnus-parameters-get-parameter): Use it.
5750
5751 * gnus-score.el (gnus-home-score-file): Doc fix.
5752
5753 2005-11-01 Xavier Maillard <zedek@gnu-rox.org> (tiny change)
5754
5755 * gnus-score.el (gnus-update-score-entry-dates): Doc fix.
5756
5757 2005-10-31 Katsumi Yamaoka <yamaoka@jpl.org>
5758
5759 * mm-util.el (mm-special-display-p): New function.
5760
5761 * mml.el (mml-preview): Use it; doc fix.
5762
5763 2005-10-29 Romain Francoise <romain@orebokech.com>
5764
5765 * message.el (message-fix-before-sending): Fix comment.
5766
5767 2005-10-29 Jari Aalto <jari.aalto@cante.net>
5768
5769 * gnus-sum.el (gnus-article-sort-by-date-reverse): New function.
5770
5771 2005-10-29 Jari Aalto <jari.aalto@cante.net>
5772
5773 * score-mode.el (gnus-score-edit-done-hook): Introduce variable.
5774 Used in gnus-score.el.
5775
5776 2005-10-28 Reiner Steib <Reiner.Steib@gmx.de>
5777
5778 * mm-util.el (mm-codepage-setup): Remove bogus alias test.
5779
5780 2005-10-27 Reiner Steib <Reiner.Steib@gmx.de>
5781
5782 * flow-fill.el (fill-flowed-encode-tests): Restore trailing
5783 whitespace removed in revision 7.8. Use concatenated string to
5784 protect trailing whitespace.
5785
5786 2005-10-27 Jouni K. Seppänen <jks@iki.fi>
5787
5788 * nnimap.el (nnimap-search-uids-not-since-is-evil): Add variable.
5789 (nnimap-request-expire-articles): Use it to avoid sending 'UID
5790 SEARCH UID ... NOT SINCE' queries, for inefficient servers like
5791 Courier IMAP ("some version from 2004"). Mostly based on similar
5792 code in the same function.
5793
5794 2005-10-26 Didier Verna <didier@xemacs.org>
5795
5796 * gnus-group.el (gnus-group-compact-group): Invalidate original
5797 article buffer.
5798 * gnus-srvr.el (gnus-server-compact-server): Ditto.
5799 * nnml.el (nnml-request-compact-group): Handle self Xref: field in
5800 NOV database and in article itself.
5801 Invalidate article backlog.
5802
5803 2005-10-26 Reiner Steib <Reiner.Steib@gmx.de>
5804
5805 * mm-uu.el (mm-uu-hide-markers): Fix XEmacs case.
5806
5807 2005-10-26 Simon Josefsson <jas@extundo.com>
5808
5809 * flow-fill.el (fill-flowed): Flow-fill unquoted lines too, revert
5810 part of 2004-07-25 change.
5811
5812 2005-10-26 Katsumi Yamaoka <yamaoka@jpl.org>
5813
5814 * message.el (message-display-completion-list): New function.
5815 (message-expand-group): Use it; make sure the Completions buffer
5816 is modifiable.
5817
5818 2005-10-30 Chong Yidong <cyd@stupidchicken.com>
5819
5820 * imap.el (imap-open): Handle case where buffer is a buffer object.
5821
5822 2005-10-24 Eli Zaretskii <eliz@gnu.org>
5823
5824 * pgg-def.el:
5825 * pgg-gpg.el:
5826 * pgg-parse.el:
5827 * pgg-pgp.el:
5828 * pgg-pgp5.el:
5829 * pgg.el: Move to the parent lisp directory.
5830
5831 2005-10-23 Chong Yidong <cyd@stupidchicken.com>
5832
5833 * gnus-sum.el (gnus-ignored-from-addresses): Handle case where
5834 user-mail-name is an empty string.
5835
5836 2005-10-25 Reiner Steib <Reiner.Steib@gmx.de>
5837
5838 * gnus-score.el (gnus-default-adaptive-score-alist): Set defaults
5839 depending on gnus-score-decay-constant.
5840
5841 * encrypt.el (encrypt-insert-file-contents)
5842 (encrypt-write-file-contents): Don't use `gnus-message'.
5843
5844 * mm-uu.el (mm-uu-verbatim-marks-extract): Add four start and end
5845 arguments.
5846 (mm-uu-type-alist): Add message-marks and insert-marks. Pass
5847 arguments to mm-uu-verbatim-marks-extract.
5848 (mm-uu-hide-markers): New variable.
5849 (mm-uu-extract): Use face similar to `gnus-cite-3'.
5850
5851 * gnus-fun.el (gnus-convert-image-to-x-face-command)
5852 (gnus-convert-image-to-face-command): Use "convert" by default to
5853 allow other input image formats.
5854 (gnus-x-face-from-file, gnus-face-from-file): Adjust doc strings
5855 accordingly.
5856
5857 2005-10-23 Simon Josefsson <jas@extundo.com>
5858
5859 * imap.el (imap-gssapi-program): Align command line parameters
5860 with latest GNU SASL.
5861 (imap-gssapi-open): Ignore 'Trying ...' messages from GNU SASL.
5862
5863 2005-10-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
5864
5865 * nnslashdot.el (nnslashdot-retrieve-headers-1): Update to new
5866 HTML.
5867 (nnslashdot-request-article): Ditto.
5868
5869 2005-10-20 Hiroshi Fujishima <hiroshi.fujishima@gmail.com> (tiny change)
5870
5871 * mail-source.el (mail-source-fetch-pop): Require pop3.
5872 (mail-source-check-pop): Ditto.
5873
5874 2005-10-20 Katsumi Yamaoka <yamaoka@jpl.org>
5875
5876 * rfc2047.el (rfc2047-decode-encoded-words): Fix the handling of
5877 errors.
5878
5879 2005-10-19 Reiner Steib <Reiner.Steib@gmx.de>
5880
5881 * gnus-art.el (gnus-treat-strip-trailing-blank-lines)
5882 (gnus-treat-strip-leading-blank-lines): Improve doc string.
5883
5884 * message.el (message-tool-bar-local-item-from-menu): Fix comment.
5885
5886 * mm-bodies.el (mm-decode-string): Call
5887 `mm-charset-to-coding-system' with allow-override argument.
5888
5889 2005-10-19 Katsumi Yamaoka <yamaoka@jpl.org>
5890
5891 * rfc2047.el (rfc2047-allow-incomplete-encoded-text): New variable.
5892 (rfc2047-charset-to-coding-system): New function.
5893 (rfc2047-decode-encoded-words): New function.
5894 (rfc2047-decode-region): Use them.
5895 (rfc2047-decode-cte): Remove.
5896 (rfc2047-parse-and-decode): Remove.
5897 (rfc2047-decode): Remove.
5898
5899 2005-10-15 Kenichi Handa <handa@m17n.org>
5900
5901 * rfc2047.el (rfc2047-decode-cte): New function.
5902 (rfc2047-decode-region): Change the way to decode successive
5903 encoded-words: decode B- or Q-encoding in each encoded-word,
5904 concatenate them, and decode it as charset.
5905
5906 2005-10-17 Chong Yidong <cyd@stupidchicken.com>
5907
5908 * gnus-cus.el (gnus-custom-map): New variable. Bind mouse-1 to
5909 widget-move-and-invoke.
5910 (gnus-custom-mode): Use gnus-custom-map.
5911
5912 2005-10-15 Bill Wohler <wohler@newt.com>
5913
5914 * message.el (message-tool-bar-map): Renamed image file from
5915 mail_send to mail/send.
5916
5917 2005-10-16 Masatake YAMATO <jet@gyve.org>
5918
5919 * message.el (message-expand-group): Pass the common
5920 prefix substring of completion to `display-completion-list'.
5921
5922 2005-10-13 Reiner Steib <Reiner.Steib@gmx.de>
5923
5924 * mml-sec.el (mml-secure-method): New internal variable.
5925 (mml-secure-sign, mml-secure-encrypt, mml-secure-message-sign)
5926 (mml-secure-message-sign-encrypt, mml-secure-message-encrypt): New
5927 functions using mml-secure-method.
5928
5929 * mml.el (mml-mode-map): Add key bindings for those functions.
5930 (mml-menu): Simplify security menu entries. Suggested by Jesper
5931 Harder <harder@myrealbox.com>.
5932 (mml-attach-file, mml-attach-buffer, mml-attach-external): Goto
5933 end of message if point is the headers of the message.
5934
5935 * message.el (message-in-body-p): New function.
5936
5937 * assistant.el: Autoload gnus-util and netrc.
5938
5939 * mm-util.el (mm-charset-to-coding-system): Add allow-override.
5940 Use `mm-charset-override-alist' only when decoding.
5941
5942 * mm-bodies.el (mm-decode-body): Call
5943 `mm-charset-to-coding-system' with allow-override argument.
5944
5945 * gnus-art.el (gnus-mime-view-part-as-type-internal): Try to fetch
5946 `filename' from Content-Disposition if Content-Type doesn't
5947 provide `name'.
5948 (gnus-mime-view-part-as-type): Set default instead of
5949 initial-input.
5950
5951 2005-10-09 Daniel Brockman <daniel@brockman.se>
5952
5953 * format-spec.el (format-spec): Propagate text properties of % spec.
5954
5955 2005-10-12 Reiner Steib <Reiner.Steib@gmx.de>
5956
5957 * gnus-art.el (gnus-treat-predicate): Add `first'.
5958
5959 2005-10-11 Reiner Steib <Reiner.Steib@gmx.de>
5960
5961 * mm-util.el (mm-charset-synonym-alist): Improve doc string.
5962 (mm-charset-override-alist): New variable.
5963 (mm-charset-to-coding-system): Use it.
5964 (mm-codepage-setup): New helper function.
5965 (mm-charset-eval-alist): New variable.
5966 (mm-charset-to-coding-system): Use mm-charset-eval-alist. Warn
5967 about unknown charsets.
5968
5969 2005-10-04 David Hansen <david.hansen@gmx.net>
5970
5971 * nnrss.el (nnrss-request-article): Add support for the comments tag.
5972 (nnrss-check-group): Ditto.
5973
5974 2005-10-04 Reiner Steib <Reiner.Steib@gmx.de>
5975
5976 * mm-uu.el (mm-uu-verbatim-marks-extract, mm-uu-latex-extract):
5977 Rename x-gnus-verbatim to x-verbatim.
5978 (mm-uu-type-alist): Fix regexp for verbatim-marks.
5979
5980 * mm-decode.el (mm-automatic-display): Rename x-gnus-verbatim to
5981 x-verbatim.
5982
5983 * mm-url.el (mm-url-predefined-programs): Add switches for curl.
5984
5985 * gnus-util.el (gnus-remove-duplicates): Remove.
5986
5987 * nnmail.el (nnmail-article-group): Use mm-delete-duplicates
5988 instead of gnus-remove-duplicates.
5989
5990 * message.el (message-remove-duplicates): Remove.
5991 (message-idna-to-ascii-rhs-1): Use mm-delete-duplicates instead of
5992 message-remove-duplicates.
5993
5994 * mm-util.el (mm-delete-duplicates): Use `delete-dups' if
5995 available, else use implementation from `delete-dups'.
5996
5997 * message.el (message-insert-expires): New function.
5998 (message-mode-map): Add key binding.
5999 (message-mode-field-menu): Add menu entry.
6000 (message-mode): Document it.
6001 (message-make-expires-date): Use `message-make-date'.
6002
6003 2005-10-04 Josh Huber <huber@alum.wpi.edu>
6004
6005 * message.el (message-make-expires-date): New function.
6006
6007 2005-10-04 Katsumi Yamaoka <yamaoka@jpl.org>
6008
6009 * Makefile.in (list-installed-shadows): New entry.
6010 (install): Use it.
6011 (remove-installed-shadows): New entry.
6012
6013 2005-10-02 Katsumi Yamaoka <yamaoka@jpl.org>
6014
6015 * time-date.el: Autoload parse-time-string, XEmacs needs it.
6016
6017 2005-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
6018
6019 * mm-decode.el (mm-inline-media-tests): Check presence of the diff-mode
6020 function rather than the diff-mode.el package.
6021 (mm-display-external): Use with-current-buffer.
6022 (mm-viewer-completion-map, mm-viewer-completion-map):
6023 Move initialization inside declaration.
6024
6025 2005-09-29 Simon Josefsson <jas@extundo.com>
6026
6027 * spam.el: Load hashcash when compiling, to avoid warnings. Don't
6028 autoload mail-check-payment.
6029 (spam-check-hashcash): Define unconditionally, since hashcash.el
6030 is part of Gnus now. Ignore errors from payment checking.
6031
6032 2005-09-28 Reiner Steib <Reiner.Steib@gmx.de>
6033
6034 * message.el (message-bold-region, message-unbold-region): Rename
6035 from `bold-region' and `unbold-region'.
6036
6037 * message.el: Remove useless autoloads.
6038
6039 2005-09-28 Simon Josefsson <jas@extundo.com>
6040
6041 * message.el (message-use-idna): Default to t.
6042 (message-use-idna): Test whether encoding works too. Doc fix.
6043
6044 2005-09-28 Katsumi Yamaoka <yamaoka@jpl.org>
6045
6046 * nntp.el (nntp-warn-about-losing-connection): Remove.
6047
6048 2005-09-27 Reiner Steib <Reiner.Steib@gmx.de>
6049
6050 * mm-uu.el (mm-uu-emacs-sources-regexp): Make variable
6051 customizable. Change default value.
6052 (mm-uu-diff-groups-regexp): Change default value.
6053 (mm-uu-type-alist): Add doc string.
6054 (mm-uu-configure): Add doc string. Make it interactive.
6055 (mm-uu-tex-groups-regexp): New variable.
6056 (mm-uu-latex-extract, mm-uu-latex-test): New functions.
6057 (mm-uu-type-alist): Add LaTeX documents.
6058 (mm-uu-verbatim-marks-extract): Use "text/x-gnus-verbatim" instead
6059 of "text/verbatim".
6060 (mm-uu-diff-groups-regexp): Fix missing quotes from previous commit.
6061
6062 * mm-decode.el (mm-automatic-display): Use "text/x-gnus-verbatim"
6063 instead of "text/verbatim".
6064
6065 * message.el (message-mark-inserted-region)
6066 (message-mark-insert-file): Use slrn style marks when called with
6067 prefix argument.
6068
6069 2005-09-27 Simon Josefsson <jas@extundo.com>
6070
6071 * message.el (message-idna-to-ascii-rhs-1): Reformat.
6072
6073 2005-09-27 Arne Jørgensen <arne@arnested.dk>
6074
6075 * message.el (message-remove-duplicates): New function.
6076 Implementation borrowed from `gnus-remove-duplicates'.
6077 (message-idna-to-ascii-rhs): Also encode idna addresses in
6078 Reply-To:, Mail-Reply-To: and Mail-Followup-To:.
6079 (message-idna-to-ascii-rhs-1): When `message-use-idna' is 'ask
6080 only ask about the same idna domain once per header and also tell
6081 in what header to replace the idna domain.
6082
6083 * gnus-art.el (article-decode-idna-rhs): Also decode idna
6084 addresses in Reply-To:, Mail-Reply-To: and Mail-Followup-To:.
6085 (article-decode-idna-rhs): Fix regexp so that all idna-address in
6086 a header is decoded and not just the last one.
6087
6088 2005-09-27 Katsumi Yamaoka <yamaoka@jpl.org>
6089
6090 * gnus-art.el (gnus-mime-display-single): Don't modify text if it
6091 has been decoded.
6092
6093 * mm-decode.el (mm-automatic-display): Add text/verbatim.
6094 (mm-insert-part): Don't modify text if it has been decoded.
6095
6096 * mm-uu.el (mm-uu-verbatim-marks-extract): Say text has been
6097 decoded.
6098
6099 * mm-view.el (mm-inline-text): Don't strip text props unless
6100 decoding enriched or richtext parts.
6101
6102 2005-09-25 Romain Francoise <romain@orebokech.com>
6103
6104 * gnus-agent.el (gnus-agent-expire-group, gnus-agent-expire):
6105 * gnus-start.el (gnus-subscribe-interactively):
6106 * gnus-uu.el (gnus-uu-grab-articles):
6107 End `yes-or-no-p' and `y-or-n-p' prompts with question mark and
6108 space.
6109
6110 2005-09-24 Emilio C. Lopes <eclig@gmx.net>
6111
6112 * smime.el (smime-sign-buffer, smime-decrypt-buffer):
6113 * mm-view.el (mm-view-pkcs7-decrypt):
6114 * gnus-sum.el (gnus-summary-limit-to-extra)
6115 (gnus-summary-respool-article, gnus-read-move-group-name):
6116 * gnus-score.el (gnus-summary-increase-score):
6117 * gnus-util.el (gnus-completing-read-with-default):
6118 * gnus-art.el (gnus-read-save-file-name)
6119 (gnus-summary-save-in-rmail, gnus-summary-save-in-mail)
6120 (gnus-summary-save-in-file, gnus-summary-save-body-in-file):
6121 * message.el (message-check-news-header-syntax):
6122 Follow convention for reading with the minibuffer.
6123
6124 2005-09-22 Reiner Steib <Reiner.Steib@gmx.de>
6125
6126 * spam-report.el (spam-report-url-ping-plain):
6127 Use gnus-extended-version as User-Agent.
6128
6129 * gnus-agent.el (gnus-agent-synchronize-flags): Explain why the
6130 default value is nil.
6131
6132 * mm-uu.el (mm-uu-type-alist): Added slrn style verbatim-marks.
6133 (mm-uu-verbatim-marks-extract): New function.
6134 (mm-uu-extract): New face.
6135 (mm-uu-copy-to-buffer): Use it.
6136
6137 * spam-report.el (spam-report-gmane-ham): Renamed from
6138 `spam-report-gmane-unspam'.
6139 (spam-report-gmane-internal): Renamed from `spam-report-gmane'.
6140 Simplify use of UNSPAM argument. Fetch "X-Report-Unspam" header.
6141
6142 * spam.el (spam-report-gmane-spam, spam-report-gmane-ham):
6143 Autoload.
6144 (spam-report-gmane-unregister-routine): Renamed
6145 `spam-report-gmane-unspam' to `spam-report-gmane-ham'.
6146
6147 2005-09-21 Teodor Zlatanov <tzz@lifelogs.com>
6148
6149 * spam.el (spam-use-gmane, spam-report-gmane-register-routine)
6150 (spam-report-gmane-unregister-routine): Add support for gmane
6151 unregistration.
6152
6153 * spam-report.el (spam-report-gmane-unspam)
6154 (spam-report-gmane-spam): Add new wrappers around spam-report-gmane.
6155 (spam-report-gmane): Change to take a single article and do unspam
6156 registration.
6157
6158 2005-09-19 Reiner Steib <Reiner.Steib@gmx.de>
6159
6160 * mm-url.el (mm-url-decode-entities): Fix regexp.
6161
6162 2005-09-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
6163
6164 * gnus-agent.el (gnus-agent-synchronize-flags): Switch the
6165 default to nil, to be able to use Gnus at all. If the default
6166 switches to something else, then the function should be fixed not
6167 be exceedingly slow.
6168
6169 2005-09-20 Teodor Zlatanov <tzz@lifelogs.com>
6170
6171 * gnus-start.el (gnus-activate-group): If the server is nil, don't
6172 fail hard.
6173
6174 * spam-report.el: Add better Keywords line.
6175
6176 * spam.el: Add Maintainer and better Keywords line.
6177
6178 2005-09-19 Reiner Steib <Reiner.Steib@gmx.de>
6179
6180 * gnus-art.el (gnus-article-replace-part)
6181 (gnus-mime-replace-part): New functions.
6182 (gnus-mime-action-alist, gnus-mime-button-commands)
6183 (gnus-mime-save-part-and-strip): Added file argument.
6184 (gnus-article-part-wrapper): Added interactive argument.
6185
6186 * gnus-sum.el (gnus-summary-mime-map): Add
6187 `gnus-article-replace-part'.
6188
6189 2005-09-19 Didier Verna <didier@xemacs.org>
6190
6191 The nnml compaction feature:
6192 * nnml.el (nnml-request-compact-group): New function.
6193 * nnml.el (nnml-request-compact): New function.
6194 * gnus-int.el (gnus-request-compact-group): New function.
6195 * gnus-int.el (gnus-request-compact): New function.
6196 * gnus-group.el (gnus-group-compact-group): New function.
6197 * gnus-group.el (gnus-group-group-map): Bind it to 'G z'.
6198 * gnus-group.el (gnus-group-make-menu-bar): Add an entry for it.
6199 * gnus-srvr.el (gnus-server-compact-server): New function.
6200 * gnus-srvr.el (gnus-server-mode-map): Bind it to 'z'.
6201 * gnus-srvr.el (gnus-server-make-menu-bar): Add an entry for it.
6202
6203 2005-09-18 Deepak Goel <deego@gnufans.org>
6204
6205 * sieve.el (sieve-help): Fix `message' call: first arg should be a
6206 format spec.
6207
6208 2005-09-16 Katsumi Yamaoka <yamaoka@jpl.org>
6209
6210 * gnus.el (gnus-group-startup-message): Bind image-load-path.
6211
6212 2005-09-15 Romain Francoise <romain@orebokech.com>
6213
6214 * message.el (message-fill-paragraph): Clarify docstring.
6215
6216 2005-09-14 Katsumi Yamaoka <yamaoka@jpl.org>
6217
6218 * gnus-art.el (gnus-mime-display-part): Protect against broken
6219 MIME messages.
6220
6221 2005-09-13 Katsumi Yamaoka <yamaoka@jpl.org>
6222
6223 * gnus-sum.el (gnus-summary-edit-article-done): Remove text props
6224 before parsing header.
6225
6226 2005-09-11 Jari Aalto <jari.aalto@cante.net>
6227
6228 * html2text.el (html2text-replace-list): Add new entities.
6229
6230 2005-09-11 Romain Francoise <romain@orebokech.com>
6231
6232 * message.el (message-alternative-emails): Improve docstring.
6233 (message-setup-1): Call `message-use-alternative-email-as-from'
6234 after `message-setup-hook' to give it precedence over posting
6235 styles, etc.
6236 (message-use-alternative-email-as-from): Add docstring. Remove
6237 the original From header if present.
6238
6239 * nnml.el (nnml-compressed-files-size-threshold): New variable.
6240 (nnml-save-mail): Use it.
6241
6242 * gnus-uu.el (gnus-uu-mark-series): Return number of marked
6243 articles. Add new argument `silent'.
6244 (gnus-uu-mark-all): Report the total number of marked articles.
6245
6246 2005-09-10 Romain Francoise <romain@orebokech.com>
6247
6248 * gnus-uu.el (gnus-message-process-mark): Use gnus-message.
6249 (gnus-uu-mark-series): Likewise.
6250
6251 2005-09-10 Reiner Steib <Reiner.Steib@gmx.de>
6252
6253 * spam-report.el (spam-report-gmane): Fix generation of spam
6254 report URL.
6255
6256 2005-09-10 Simon Josefsson <jas@extundo.com>
6257
6258 * gnus-agent.el (gnus-agent-synchronize-flags): Make the default
6259 t, based on discussion on the ding list with Robert Epprecht
6260 <epprecht@solnet.ch>.
6261
6262 2005-09-07 Reiner Steib <Reiner.Steib@gmx.de>
6263
6264 * spam-report.el (spam-report-gmane): Make it work without
6265 X-Report-Spam header. Gmane now only provides Archived-At.
6266 This is only used if `spam-report-gmane-use-article-number' is nil.
6267 (spam-report-gmane-spam-header): Remove. Not used anymore.
6268
6269 * gnus-sum.el (gnus-thread-sort-by-recipient): New function to
6270 make `gnus-summary-sort-by-recipient' work with threading.
6271
6272 * nnweb.el (nnweb-google-wash-article): Print a message if article
6273 is not available.
6274
6275 2005-09-07 TSUCHIYA Masatoshi <tsuchiya@namazu.org>
6276
6277 * gnus-art.el (gnus-mime-display-single): Revert 2004-10-07
6278 change. Decode text/* parts content before displaying.
6279
6280 2005-09-06 Reiner Steib <Reiner.Steib@gmx.de>
6281
6282 * mml-smime.el: Remove defvar of gnus-extract-address-components.
6283
6284 2005-09-06 Katsumi Yamaoka <yamaoka@jpl.org>
6285
6286 * mm-view.el (mm-display-inline-fontify): Disable support modes.
6287
6288 2005-09-05 Reiner Steib <Reiner.Steib@gmx.de>
6289
6290 * message.el (message-tab-body-function): Fix mismatched custom type.
6291
6292 * gnus.el (gnus-group-change-level-function): Ditto.
6293
6294 * gnus-msg.el (gnus-outgoing-message-group): Ditto.
6295
6296 * gnus-art.el (gnus-signature-limit)
6297 (gnus-article-mime-part-function): Ditto.
6298
6299 2005-09-05 Katsumi Yamaoka <yamaoka@jpl.org>
6300
6301 * mml.el (mml-mode): Silence the byte compiler.
6302
6303 * gnus-art.el (gnus-article-jump-to-part): Redisplay the article
6304 using `(sit-for 0)' before moving the point to the specified part;
6305 skip unbuttonized parts.
6306 (gnus-article-part-wrapper): Don't use save-window-excursion; don't
6307 return to the summary window if gnus-auto-select-part is non-nil.
6308
6309 2005-09-04 Reiner Steib <Reiner.Steib@gmx.de>
6310
6311 * mml.el (mml-dnd-protocol-alist, mml-dnd-attach-options): New
6312 variables.
6313 (mml-dnd-attach-file, mml-mode): Use them.
6314
6315 * nnweb.el (nnweb-type-definition, nnweb-google-wash-article):
6316 Make fetching article by MID work again for Google Groups. Added
6317 FIXME concerning gnus-group-make-web-group.
6318
6319 * mml-smime.el (mml-smime-sign-query, mml-smime-get-dns-cert):
6320 Don't depend on Gnus by using mail-extract-address-components if
6321 gnus-extract-address-components is not bound.
6322
6323 2005-09-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
6324
6325 * gnus-art.el (gnus-mime-display-security): Don't display the
6326 signature, but only the signed part.
6327
6328 2005-09-02 Katsumi Yamaoka <yamaoka@jpl.org>
6329
6330 * gnus-sum.el (gnus-thread-hide-subtree): Doc fix.
6331
6332 * gnus-msg.el (gnus-inews-insert-gcc): Fix the mistake of using
6333 list, not listp.
6334
6335 2005-09-02 Hrvoje Niksic <hniksic@xemacs.org>
6336
6337 * mm-encode.el (mm-encode-content-transfer-encoding): Likewise
6338 when encoding.
6339
6340 * mm-bodies.el (mm-decode-content-transfer-encoding):
6341 De-canonicalize CRLF for all text content types, not just
6342 text/plain.
6343
6344 2005-09-01 Katsumi Yamaoka <yamaoka@jpl.org>
6345
6346 * gnus-art.el (gnus-article-part-wrapper): Error if there's no
6347 valid article; point arrow and cursor at the MIME button.
6348
6349 2005-08-30 Katsumi Yamaoka <yamaoka@jpl.org>
6350
6351 * gnus-art.el (gnus-mime-save-part-and-strip): Clarify prompt.
6352 Suggested by Dan Christensen <jdc@uwo.ca>.
6353
6354 * mm-decode.el (mm-save-part): Enable change of prompt.
6355
6356 2005-08-29 Jari Aalto <jari.aalto@cante.net>
6357
6358 * gnus-msg.el (gnus-inews-add-send-actions): Made
6359 `message-post-method' lambda parameter ARG `&optional'.
6360
6361 2005-08-29 Reiner Steib <Reiner.Steib@gmx.de>
6362
6363 * gnus-sum.el (gnus-summary-mime-map): Added
6364 gnus-article-save-part-and-strip, gnus-article-delete-part and
6365 gnus-article-jump-to-part.
6366
6367 * gnus-art.el (gnus-article-edit-article): Added quiet argument.
6368 (gnus-article-edit-part): Use it.
6369 (gnus-article-part-wrapper): Added no-handle argument.
6370 (gnus-article-save-part-and-strip, gnus-article-delete-part): New
6371 functions.
6372
6373 2005-08-29 Romain Francoise <romain@orebokech.com>
6374
6375 * gnus-fun.el (gnus-convert-image-to-face-command): Fix typo in
6376 docstring.
6377 (gnus-face-from-file): Likewise.
6378
6379 2005-08-29 Reiner Steib <Reiner.Steib@gmx.de>
6380
6381 * gnus-art.el (gnus-mime-save-part-and-strip): Don't prompt.
6382 (gnus-mime-delete-part): Don't prompt if `gnus-expert-user' is
6383 non-nil.
6384 (gnus-auto-select-part): New variable.
6385 (gnus-article-jump-to-part): New function.
6386 (gnus-article-edit-part, gnus-mime-save-part-and-strip)
6387 (gnus-mime-delete-part): Allow selecting specified part after
6388 deleting or stripping parts.
6389 (gnus-article-jump-to-part): Don't use `read-number'. Use last
6390 part if argument is bogus.
6391
6392 2005-08-31 Juanma Barranquero <lekktu@gmail.com>
6393
6394 * gnus-art.el (w3m-minor-mode-map):
6395 * gnus-spec.el (gnus-newsrc-file-version):
6396 * gnus-util.el (nnmail-active-file-coding-system)
6397 (gnus-original-article-buffer, gnus-user-agent):
6398 * gnus.el (gnus-ham-process-destinations)
6399 (gnus-parameter-ham-marks-alist)
6400 (gnus-parameter-spam-marks-alist, gnus-spam-autodetect)
6401 (gnus-spam-autodetect-methods, gnus-spam-newsgroup-contents)
6402 (gnus-spam-process-destinations, gnus-spam-process-newsgroups):
6403 * mm-decode.el (gnus-current-window-configuration):
6404 * mm-extern.el (gnus-article-mime-handles):
6405 * mm-url.el (url-current-object, url-package-name)
6406 (url-package-version):
6407 * mm-view.el (gnus-article-mime-handles, gnus-newsgroup-charset)
6408 (smime-keys, w3m-cid-retrieve-function-alist)
6409 (w3m-current-buffer, w3m-display-inline-images)
6410 (w3m-minor-mode-map):
6411 * mml-smime.el (gnus-extract-address-components):
6412 * mml.el (gnus-article-mime-handles, gnus-mouse-2)
6413 (gnus-newsrc-hashtb, message-default-charset)
6414 (message-deletable-headers, message-options)
6415 (message-posting-charset, message-required-mail-headers)
6416 (message-required-news-headers):
6417 * mml1991.el (mc-pgp-always-sign):
6418 * mml2015.el (mc-pgp-always-sign):
6419 * nnheader.el (nnmail-extra-headers):
6420 * rfc1843.el (gnus-decode-encoded-word-function)
6421 (gnus-decode-header-function, gnus-newsgroup-name):
6422 * spam-stat.el (gnus-original-article-buffer): Add defvars.
6423
6424 2005-08-22 Karl Chen <quarl@cs.berkeley.edu>
6425
6426 * gnus-art.el (gnus-treatment-function-alist): Move date-lapsed to
6427 the end of the date treatments.
6428
6429 2005-08-15 Simon Josefsson <jas@extundo.com>
6430
6431 * pgg.el (url-insert-file-contents): Don't autoload it, Emacs has
6432 it in url-handlers.el and XEmacs in url.el. Reported by Luca
6433 Capello and Romain Francoise.
6434 (pgg-fetch-key-function): Removed, not used?
6435 (pgg-insert-url-with-w3): Require url, to get
6436 url-insert-file-contents regardless of where it is defined.
6437
6438 2005-08-13 Romain Francoise <romain@orebokech.com>
6439
6440 * message.el (message-cite-original-1): New function.
6441 (message-cite-original): Use it.
6442 (message-cite-original-without-signature): Ditto.
6443
6444 2005-08-08 Romain Francoise <romain@orebokech.com>
6445
6446 * message.el (message-yank-empty-prefix): New variable.
6447 (message-indent-citation): Use it.
6448 (message-cite-original-without-signature): Respect X-No-Archive.
6449
6450 2005-08-08 Simon Josefsson <jas@extundo.com>
6451
6452 * pgg.el: Autoload url-insert-file-contents instead of loading
6453 w3/url.
6454 (pgg-insert-url-with-w3): Don't load url here.
6455
6456 2005-08-07 Jesper Harder <harder@phys.au.dk>
6457
6458 * message.el (message-kill-to-signature): Don't insert newline at
6459 bol.
6460 (message-newline-and-reformat): Bind fill-paragraph-function to nil.
6461
6462 2005-08-06 Romain Francoise <romain@orebokech.com>
6463
6464 * message.el (message-user-fqdn): Fix typo in docstring.
6465
6466 2005-08-05 Daiki Ueno <ueno@unixuser.org>
6467
6468 * mml2015.el (mml2015-pgg-sign): Make sure micalg is correct.
6469
6470 * pgg-parse.el (pgg-parse-hash-algorithm-alist): Add SHA-2.
6471
6472 2005-08-05 Katsumi Yamaoka <yamaoka@jpl.org>
6473
6474 * mm-bodies.el (mm-encode-body): Use coding system rather than
6475 charset to encode text.
6476
6477 * mm-util.el (mm-find-mime-charset-region): Attempt to reduce the
6478 number of charsets if utf-8 is available (XEmacs).
6479
6480 2005-08-04 Reiner Steib <Reiner.Steib@gmx.de>
6481
6482 * gnus-art.el (gnus-button-valid-localpart-regexp): New variable
6483 taken from `gnus-button-mid-or-mail-regexp'.
6484 (gnus-button-mid-or-mail-regexp, gnus-button-alist): Use it.
6485 (gnus-button-alist): Improve regexp for domain part of the MIDs
6486 for news:localpart@domain buttons.
6487 (gnus-button-ctan-directory-regexp): Update.
6488
6489 2005-08-02 Katsumi Yamaoka <yamaoka@jpl.org>
6490
6491 * sieve-manage.el (sieve-manage-interactive-login): Use
6492 make-local-variable rather than make-variable-buffer-local.
6493 (sieve-manage-open): Ditto.
6494 (sieve-manage-authenticate): Ditto.
6495
6496 * mml.el (mml-generate-mime-1): Make the content type default to
6497 text/plain if the filename is not specified.
6498
6499 2005-08-01 Katsumi Yamaoka <yamaoka@jpl.org>
6500
6501 * gnus-uu.el (gnus-uu-save-article): Use insert-buffer-substring
6502 instead of insert-buffer.
6503
6504 * message.el (message-yank-original): Ditto; set the mark at the
6505 end of the yanked message.
6506
6507 2005-07-29 Katsumi Yamaoka <yamaoka@jpl.org>
6508
6509 * gnus-art.el (gnus-article-next-page-1): Reduce the number of
6510 lines to scroll rather than to stop it.
6511
6512 * mml.el (mml-generate-default-type): Add doc string.
6513 (mml-generate-mime-1): Use mm-default-file-encoding or make it
6514 default to application/octet-stream when determining the content
6515 type if it is not specified for the part or the mml contents; add
6516 a comment about mml-generate-default-type.
6517
6518 2005-07-29 Reiner Steib <Reiner.Steib@gmx.de>
6519
6520 * mml.el (mml-generate-mime-1): Use mm-default-file-encoding or
6521 make it default to application/octet-stream when determining the
6522 content type if it is not specified for the external contents.
6523
6524 2005-07-28 Katsumi Yamaoka <yamaoka@jpl.org>
6525
6526 * rfc2231.el (rfc2231-parse-string): Take care that not only a
6527 segmented parameter but also other parameters might be there.
6528
6529 2005-07-27 Katsumi Yamaoka <yamaoka@jpl.org>
6530
6531 * mm-decode.el (mm-display-external): Delete temp file, directory
6532 and buffer immediately if the external process is exited.
6533
6534 2005-07-26 Katsumi Yamaoka <yamaoka@jpl.org>
6535
6536 * gnus-art.el (gnus-article-next-page-1): Don't scroll if there're
6537 fewer lines than that of scroll-margin.
6538 (gnus-article-prev-page): Narrow the range to bind scroll-in-place.
6539
6540 2005-07-25 Katsumi Yamaoka <yamaoka@jpl.org>
6541
6542 * gnus-art.el (gnus-article-next-page): Revert.
6543 (gnus-article-beginning-of-window): New macro.
6544 (gnus-article-next-page-1): Use it.
6545 (gnus-article-prev-page): Ditto.
6546 (gnus-article-edit-part): Use insert-buffer-substring instead of
6547 insert-buffer.
6548 (gnus-article-edit-exit): Ditto.
6549
6550 * gnus-util.el (gnus-beginning-of-window): Remove.
6551 (gnus-end-of-window): Remove.
6552
6553 2005-07-25 Simon Josefsson <jas@extundo.com>
6554
6555 * pgg.el (pgg-insert-url-with-w3): Don't load w3, it is possible
6556 to have the url package without w3. Reported by Daiki Ueno
6557 <ueno@unixuser.org> and Luigi Panzeri <matley@muppetslab.org>.
6558
6559 2005-07-20 Didier Verna <didier@xemacs.org>
6560
6561 * gnus-diary.el: Remove the description comment (nndiary is now
6562 properly documented in the Gnus manual).
6563 Fix the spelling of "Back End".
6564 * nndiary.el: Ditto.
6565 Fix the copyright notice.
6566
6567 2005-07-18 Romain Francoise <romain@orebokech.com>
6568
6569 * gnus-sum.el (gnus-summary-to-prefix,
6570 gnus-summary-newsgroup-prefix): New variables.
6571 (gnus-summary-from-or-to-or-newsgroups): Use them.
6572
6573 2005-07-17 Romain Francoise <romain@orebokech.com>
6574
6575 * mml2015.el (mml2015-clean-buffer): Prefix buffer name with a
6576 space as it's generally not especially interesting to the user.
6577
6578 2005-07-16 Romain Francoise <romain@orebokech.com>
6579
6580 * nnfolder.el (nnfolder-save-buffer): Bind `copyright-update' to
6581 nil to avoid prompting and file modification if one of the
6582 messages at the top of the nnfolder file contains a copyright
6583 notice.
6584 Update copyright notice.
6585
6586 * gnus-uu.el (gnus-uu-save-article): Use `message-make-date'
6587 instead of `current-time-string' as the latter creates a time
6588 string that is not RFC 2822 compliant (it lacks the zone).
6589 Update copyright notice.
6590
6591 2005-07-21 Stefan Monnier <monnier@iro.umontreal.ca>
6592
6593 * mml.el (mml-minibuffer-read-disposition): Don't use inline by default
6594 for text/rtf. Display default in prompt. Pass default for M-n.
6595
6596 * mm-uu.el (mm-uu-copy-to-buffer): Use with-current-buffer.
6597
6598 2005-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
6599
6600 * gnus-msg.el (gnus-button-mailto): Remove
6601 save-selected-window-window hackery because it relies on
6602 save-selected-window internals.
6603
6604 2005-07-15 Katsumi Yamaoka <yamaoka@jpl.org>
6605
6606 * gnus-art.el (gnus-article-next-page): Use gnus-end-of-window.
6607 (gnus-article-next-page-1): Use gnus-beginning-of-window.
6608 (gnus-article-prev-page): Ditto.
6609
6610 * gnus-util.el (gnus-beginning-of-window): New function.
6611 (gnus-end-of-window): New function.
6612
6613 2005-07-14 Hiroshi Fujishima <hiroshi.fujishima@gmail.com> (tiny change)
6614
6615 * gnus-score.el (gnus-score-edit-all-score): Set
6616 gnus-score-edit-exit-function to gnus-score-edit-done and call
6617 gnus-message.
6618
6619 2005-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
6620
6621 * gnus-msg.el (gnus-button-mailto): Remove
6622 save-selected-window-window hackery because it relies on
6623 save-selected-window internals.
6624
6625 2005-07-13 Katsumi Yamaoka <yamaoka@jpl.org>
6626
6627 * gnus-salt.el (gnus-pick-mode): Remove the 5th arg of
6628 add-minor-mode.
6629 (gnus-binary-mode): Ditto.
6630
6631 * gnus-topic.el (gnus-topic-mode): Ditto.
6632
6633 2005-07-08 Ralf Angeli <angeli@iwi.uni-sb.de>
6634
6635 * gnus-art.el (gnus-article-next-page, gnus-article-next-page-1)
6636 (gnus-article-prev-page): Take scroll-margin into consideration.
6637
6638 2005-07-04 Lute Kamstra <lute@gnu.org>
6639
6640 Update FSF's address in GPL notices.
6641
6642 2005-07-04 Juanma Barranquero <lekktu@gmail.com>
6643
6644 * gnus.el (gnus-exit):
6645 * gnus-group.el (gnus-group-icons):
6646 * nnmail.el (nnmail-prepare): Fix typos in docstrings.
6647
6648 * gnus-nocem.el (gnus-nocem):
6649 * message.el (message-various, message-buffers, message-sending)
6650 (message-interface, message-forwarding, message-insertion)
6651 (message-headers, message-news, message-mail):
6652 * pgg-gpg.el (pgg-gpg):
6653 * pgg-parse.el (pgg-parse):
6654 * pgg-pgp.el (pgg-pgp):
6655 * pgg-pgp5.el (pgg-pgp5):
6656 * pop3.el (pop3): Finish `defgroup' description with period.
6657
6658 2005-07-01 Katsumi Yamaoka <yamaoka@jpl.org>
6659
6660 * gnus-art.el (article-display-face): Improve the efficiency.
6661 (article-display-x-face): Ditto; remove grey x-face stuff.
6662
6663 2005-06-30 Katsumi Yamaoka <yamaoka@jpl.org>
6664
6665 * gnus-art.el (article-display-face): Correct the position in
6666 which Faces are inserted.
6667
6668 2005-06-29 Didier Verna <didier@xemacs.org>
6669
6670 * gnus-art.el (article-display-face): Display faces in correct
6671 order.
6672
6673 2005-06-29 Katsumi Yamaoka <yamaoka@jpl.org>
6674
6675 * gnus-nocem.el (gnus-nocem-verifyer): Default to pgg-verify.
6676 (gnus-fill-real-hashtb): Use hash table instead of obarray.
6677 (gnus-nocem-check-article): Fetch the Type header.
6678 (gnus-nocem-message-wanted-p): Fix the way to examine types.
6679 (gnus-nocem-verify-issuer): Use functionp instead of fboundp.
6680 (gnus-nocem-enter-article): Use hash tables rather than obarrays;
6681 make sure gnus-nocem-hashtb is initialized.
6682 (gnus-nocem-alist-to-hashtb): Use hash table instead of obarray.
6683 (gnus-nocem-unwanted-article-p): Ditto.
6684
6685 * pgg.el (pgg-verify): Return the verification result.
6686
6687 2005-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
6688
6689 * gnus-art.el (gnus-mime-copy-part): Check whether coding-system
6690 is ascii.
6691
6692 2005-06-24 Juanma Barranquero <lekktu@gmail.com>
6693
6694 * gnus-art.el (gnus-article-mode): Set `nobreak-char-display', not
6695 `show-nonbreak-escape'.
6696
6697 2005-06-23 Lute Kamstra <lute@gnu.org>
6698
6699 * gnus-art.el (gnus-article-mode): Use kill-all-local-variables.
6700
6701 * dig.el (dig-mode):
6702 * smime.el (smime-mode): Use gnus-run-mode-hooks.
6703
6704 2005-06-21 Juanma Barranquero <lekktu@gmail.com>
6705
6706 * nnimap.el (nnimap-split-download-body): Fix spellings.
6707
6708 2005-06-16 Juanma Barranquero <lekktu@gmail.com>
6709
6710 * gnus-art.el (gnus-article-encrypt-body):
6711 * gnus-cus.el (gnus-score-customize):
6712 * mm-extern.el (mm-extern-local-file, mm-inline-external-body):
6713 * pop3.el (pop3-user): Don't use `format' on `error' arguments.
6714
6715 2005-06-16 Arne Jørgensen <arne@arnested.dk>
6716
6717 * smime.el (smime-cert-by-ldap-1): Detect PEM format without
6718 header by looking for magic "MII" at the beginnig.
6719
6720 2005-06-16 Miles Bader <miles@gnu.org>
6721
6722 * assistant.el (assistant-field): Remove "-face" suffix from face name.
6723 (assistant-field-face): New backward-compatibility alias for renamed
6724 face.
6725 (assistant-render-text): Use renamed assistant-field face.
6726
6727 * spam.el (spam): Remove "-face" suffix from face name.
6728 (spam-face): New backward-compatibility alias for renamed face.
6729 (spam-face, spam-initialize): Use renamed spam face.
6730
6731 * message.el (message-header-to, message-header-cc)
6732 (message-header-subject, message-header-newsgroups)
6733 (message-header-other, message-header-name)
6734 (message-header-xheader, message-separator, message-cited-text)
6735 (message-mml): Remove "-face" suffix from face names.
6736 (message-header-to-face, message-header-cc-face)
6737 (message-header-subject-face, message-header-newsgroups-face)
6738 (message-header-other-face, message-header-name-face)
6739 (message-header-xheader-face, message-separator-face)
6740 (message-cited-text-face, message-mml-face):
6741 New backward-compatibility aliases for renamed faces.
6742 (message-font-lock-keywords): Use renamed message faces.
6743
6744 * sieve-mode.el (sieve-control-commands, sieve-action-commands)
6745 (sieve-test-commands, sieve-tagged-arguments):
6746 Remove "-face" suffix from face names.
6747 (sieve-control-commands-face, sieve-action-commands-face)
6748 (sieve-test-commands-face, sieve-tagged-arguments-face):
6749 New backward-compatibility aliases for renamed faces.
6750 (sieve-control-commands-face, sieve-action-commands-face)
6751 (sieve-test-commands-face, sieve-tagged-arguments-face):
6752 Use renamed sieve faces.
6753
6754 * gnus.el (gnus-group-news-1, gnus-group-news-1-empty)
6755 (gnus-group-news-2, gnus-group-news-2-empty, gnus-group-news-3)
6756 (gnus-group-news-3-empty, gnus-group-news-4)
6757 (gnus-group-news-4-empty, gnus-group-news-5)
6758 (gnus-group-news-5-empty, gnus-group-news-6)
6759 (gnus-group-news-6-empty, gnus-group-news-low)
6760 (gnus-group-news-low-empty, gnus-group-mail-1)
6761 (gnus-group-mail-1-empty, gnus-group-mail-2)
6762 (gnus-group-mail-2-empty, gnus-group-mail-3)
6763 (gnus-group-mail-3-empty, gnus-group-mail-low)
6764 (gnus-group-mail-low-empty, gnus-summary-selected)
6765 (gnus-summary-cancelled, gnus-summary-high-ticked)
6766 (gnus-summary-low-ticked, gnus-summary-normal-ticked)
6767 (gnus-summary-high-ancient, gnus-summary-low-ancient)
6768 (gnus-summary-normal-ancient, gnus-summary-high-undownloaded)
6769 (gnus-summary-low-undownloaded)
6770 (gnus-summary-normal-undownloaded, gnus-summary-high-unread)
6771 (gnus-summary-low-unread, gnus-summary-normal-unread)
6772 (gnus-summary-high-read, gnus-summary-low-read)
6773 (gnus-summary-normal-read, gnus-splash):
6774 Remove "-face" suffix from face names.
6775 (gnus-group-news-1-face, gnus-group-news-1-empty-face)
6776 (gnus-group-news-2-face, gnus-group-news-2-empty-face)
6777 (gnus-group-news-3-face, gnus-group-news-3-empty-face)
6778 (gnus-group-news-4-face, gnus-group-news-4-empty-face)
6779 (gnus-group-news-5-face, gnus-group-news-5-empty-face)
6780 (gnus-group-news-6-face, gnus-group-news-6-empty-face)
6781 (gnus-group-news-low-face, gnus-group-news-low-empty-face)
6782 (gnus-group-mail-1-face, gnus-group-mail-1-empty-face)
6783 (gnus-group-mail-2-face, gnus-group-mail-2-empty-face)
6784 (gnus-group-mail-3-face, gnus-group-mail-3-empty-face)
6785 (gnus-group-mail-low-face, gnus-group-mail-low-empty-face)
6786 (gnus-summary-selected-face, gnus-summary-cancelled-face)
6787 (gnus-summary-high-ticked-face, gnus-summary-low-ticked-face)
6788 (gnus-summary-normal-ticked-face)
6789 (gnus-summary-high-ancient-face, gnus-summary-low-ancient-face)
6790 (gnus-summary-normal-ancient-face)
6791 (gnus-summary-high-undownloaded-face)
6792 (gnus-summary-low-undownloaded-face)
6793 (gnus-summary-normal-undownloaded-face)
6794 (gnus-summary-high-unread-face, gnus-summary-low-unread-face)
6795 (gnus-summary-normal-unread-face, gnus-summary-high-read-face)
6796 (gnus-summary-low-read-face, gnus-summary-normal-read-face)
6797 (gnus-splash-face):
6798 New backward-compatibility aliases for renamed faces.
6799 (gnus-group-startup-message): Use renamed gnus faces.
6800
6801 * gnus-srvr.el (gnus-server-agent, gnus-server-opened)
6802 (gnus-server-closed, gnus-server-denied, gnus-server-offline)
6803 (gnus-server-agent): Remove "-face" suffix from face names.
6804 (gnus-server-agent-face, gnus-server-opened-face)
6805 (gnus-server-closed-face, gnus-server-denied-face)
6806 (gnus-server-offline-face):
6807 New backward-compatibility aliases for renamed faces.
6808 (gnus-server-agent-face, gnus-server-opened-face)
6809 (gnus-server-closed-face, gnus-server-denied-face)
6810 (gnus-server-offline-face): Use renamed gnus faces.
6811
6812 * gnus-picon.el (gnus-picon-xbm, gnus-picon):
6813 Remove "-face" suffix from face names.
6814 (gnus-picon-xbm-face, gnus-picon-face):
6815 New backward-compatibility aliases for renamed faces.
6816
6817 * gnus-cite.el (gnus-cite-attribution, gnus-cite-1, gnus-cite-2)
6818 (gnus-cite-3, gnus-cite-4, gnus-cite-5, gnus-cite-6)
6819 (gnus-cite-7, gnus-cite-8, gnus-cite-9, gnus-cite-10)
6820 (gnus-cite-11): Remove "-face" suffix from face names.
6821 (gnus-cite-attribution-face, gnus-cite-face-1, gnus-cite-face-2)
6822 (gnus-cite-face-3, gnus-cite-face-4, gnus-cite-face-5)
6823 (gnus-cite-face-6, gnus-cite-face-7, gnus-cite-face-8)
6824 (gnus-cite-face-9, gnus-cite-face-10, gnus-cite-face-11):
6825 New backward-compatibility aliases for renamed faces.
6826 (gnus-cite-attribution-face, gnus-cite-face-list)
6827 (gnus-article-boring-faces): Use renamed gnus faces.
6828
6829 * gnus-art.el (gnus-signature, gnus-header-from)
6830 (gnus-header-subject, gnus-header-newsgroups, gnus-header-name)
6831 (gnus-header-content): Remove "-face" suffix from face names.
6832 (gnus-signature-face, gnus-header-from-face)
6833 (gnus-header-subject-face, gnus-header-newsgroups-face)
6834 (gnus-header-name-face, gnus-header-content-face):
6835 New backward-compatibility aliases for renamed faces.
6836 (gnus-signature-face, gnus-header-face-alist): Use renamed gnus faces.
6837
6838 * gnus-sum.el (gnus-summary-selected-face)
6839 (gnus-summary-highlight): Use renamed gnus faces.
6840 * gnus-group.el (gnus-group-highlight): Likewise.
6841
6842 2005-06-14 Juanma Barranquero <lekktu@gmail.com>
6843
6844 * gnus-sieve.el (gnus-sieve-article-add-rule):
6845 * legacy-gnus-agent.el (gnus-agent-unlist-expire-days):
6846 * spam-stat.el (spam-stat-buffer-change-to-spam)
6847 (spam-stat-buffer-change-to-non-spam): Follow error conventions.
6848
6849 * message.el (message-is-yours-p):
6850 * gnus-sum.el (gnus-auto-select-subject): Fix quoting in docstring.
6851
6852 2005-06-14 Katsumi Yamaoka <yamaoka@jpl.org>
6853
6854 * mm-view.el (mm-inline-text): Withdraw the last change.
6855
6856 2005-06-09 Katsumi Yamaoka <yamaoka@jpl.org>
6857
6858 * mm-view.el (mm-inline-text): Turn off adaptive-fill-mode while
6859 executing enriched-decode.
6860
6861 2005-06-07 Katsumi Yamaoka <yamaoka@jpl.org>
6862
6863 * mm-util.el (mm-find-buffer-file-coding-system): Don't examine
6864 charset of tar files.
6865
6866 2005-06-04 Luc Teirlinck <teirllm@auburn.edu>
6867
6868 * gnus-art.el (article-update-date-lapsed): Use `save-match-data'.
6869
6870 2005-06-04 Lute Kamstra <lute@gnu.org>
6871
6872 * nnfolder.el (nnfolder-read-folder): Make sure that undo
6873 information is never recorded.
6874
6875 2005-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
6876
6877 * gnus-art.el (gnus-emphasis-alist): Disable the strikethru thingy.
6878
6879 2005-06-02 Katsumi Yamaoka <yamaoka@jpl.org>
6880
6881 * pop3.el (pop3-apop): Run md5 in the binary mode.
6882
6883 * starttls.el (starttls-set-process-query-on-exit-flag):
6884 Use eval-and-compile.
6885
6886 2005-05-31 Simon Josefsson <jas@extundo.com>
6887
6888 * smime.el (smime-replace-in-string): Define.
6889 (smime-cert-by-ldap-1): Use it.
6890
6891 2005-05-31 Katsumi Yamaoka <yamaoka@jpl.org>
6892
6893 * gnus-art.el (article-display-x-face): Replace
6894 process-kill-without-query by gnus-set-process-query-on-exit-flag.
6895
6896 * gnus-util.el (gnus-set-process-query-on-exit-flag): Alias to
6897 set-process-query-on-exit-flag or process-kill-without-query.
6898
6899 * html2text.el (html2text-fix-paragraphs): Use `while - re-search'
6900 loop instead of replace-regexp.
6901
6902 * imap.el (imap-ssl-open): Use set-process-query-on-exit-flag
6903 instead of process-kill-without-query if it is available.
6904
6905 * mm-util.el (mm-insert-file-contents): Bind find-file-hook
6906 instead of find-file-hooks if it is available.
6907
6908 * mml1991.el: Bind pgg-default-user-id when compiling.
6909
6910 * mml2015.el: Bind pgg-default-user-id when compiling.
6911
6912 * nndraft.el (nndraft-request-associate-buffer):
6913 Use write-contents-functions instead of write-contents-hooks if it is
6914 available.
6915
6916 * nnheader.el (nnheader-find-file-noselect): Bind find-file-hook
6917 instead of find-file-hooks if it is available.
6918
6919 * nntp.el (nntp-open-connection): Replace
6920 process-kill-without-query by gnus-set-process-query-on-exit-flag.
6921 (nntp-open-ssl-stream): Ditto.
6922 (nntp-open-tls-stream): Ditto.
6923
6924 * starttls.el (starttls-set-process-query-on-exit-flag): Alias to
6925 set-process-query-on-exit-flag or process-kill-without-query.
6926 (starttls-open-stream-gnutls): Use it instead of
6927 process-kill-without-query.
6928 (starttls-open-stream): Ditto.
6929
6930 2005-05-31 Ulf Stegemann <ulf@zeitform.de> (tiny change)
6931
6932 * smime.el (smime-cert-by-ldap-1): Don't use
6933 replace-regexp-in-string.
6934
6935 2005-05-31 Arne Jørgensen <arne@arnested.dk>
6936
6937 * smime-ldap.el (smime-ldap-search): Add compatibility for XEmacs.
6938
6939 * smime.el (smime-cert-by-ldap-1): Handle certificates distributed
6940 in PEM format. Adjust to the XEmacs compability.
6941
6942 2005-05-30 Reiner Steib <Reiner.Steib@gmx.de>
6943
6944 * encrypt.el (encrypt-xor-process-buffer): Replace `string-to-int'
6945 by `string-to-number'.
6946 * gnus-agent.el (gnus-agent-regenerate-group)
6947 (gnus-agent-fetch-articles): Ditto.
6948 * gnus-art.el (gnus-button-fetch-group): Ditto.
6949 * gnus-cache.el (gnus-cache-generate-active)
6950 (gnus-cache-articles-in-group): Ditto.
6951 * gnus-group.el (gnus-group-set-current-level)
6952 (gnus-group-insert-group-line): Ditto.
6953 * gnus-score.el (gnus-score-set-expunge-below)
6954 (gnus-score-set-mark-below, gnus-summary-score-effect)
6955 (gnus-summary-score-entry): Ditto.
6956 * gnus-soup.el (gnus-soup-send-packet, gnus-soup-parse-areas)
6957 (gnus-soup-pack): Ditto.
6958 * gnus-spec.el (gnus-xmas-format): Ditto.
6959 * gnus-start.el (gnus-newsrc-to-gnus-format): Ditto.
6960 * gnus-sum.el (gnus-create-xref-hashtb): Ditto.
6961 * gnus-uu.el (gnus-uu-expand-numbers): Ditto.
6962 * nnbabyl.el (nnbabyl-article-group-number): Ditto.
6963 * nndb.el (nndb-get-remote-expire-response): Ditto.
6964 * nndiary.el (nndiary-parse-schedule-value)
6965 (nndiary-string-to-number, nndiary-request-replace-article)
6966 (nndiary-request-article): Ditto.
6967 * nndoc.el (nndoc-rnews-body-end, nndoc-mbox-body-end): Ditto.
6968 * nndraft.el (nndraft-articles, nndraft-request-group): Ditto.
6969 * nneething.el (nneething-make-head): Ditto.
6970 * nnfolder.el (nnfolder-request-article)
6971 (nnfolder-retrieve-headers): Ditto.
6972 * nnheader.el (nnheader-file-to-number): Ditto.
6973 * nnkiboze.el (nnkiboze-request-article): Ditto.
6974 * nnmail.el (nnmail-process-unix-mail-format)
6975 (nnmail-process-babyl-mail-format): Ditto.
6976 * nnmbox.el (nnmbox-read-mbox, nnmbox-article-group-number): Ditto.
6977 * nnmh.el (nnmh-update-gnus-unreads, nnmh-active-number)
6978 (nnmh-request-create-group, nnmh-request-list-1)
6979 (nnmh-request-group, nnmh-request-article): Ditto.
6980 * nnml.el (nnml-request-replace-article, nnml-request-article): Ditto.
6981 * nnrss.el (nnrss-find-rss-via-syndic8): Ditto.
6982 * nnsoup.el (nnsoup-make-active): Ditto.
6983 * nnspool.el (nnspool-find-id, nnspool-request-group): Ditto.
6984 * nntp.el (nntp-find-group-and-number)
6985 (nntp-retrieve-headers-with-xover): Ditto.
6986 * pgg-gpg.el (pgg-gpg-snarf-keys-region): Ditto.
6987 * pgg-parse.el (pgg-read-body, pgg-read-bytes)
6988 (pgg-format-key-identifier): Ditto.
6989 * pop3.el (pop3-last, pop3-stat): Ditto.
6990 * qp.el (quoted-printable-decode-region): Ditto.
6991
6992 * spam-report.el (spam-report-url-ping-mm-url): Use format instead
6993 of concat.
6994
6995 2005-05-30 Katsumi Yamaoka <yamaoka@jpl.org>
6996
6997 * gnus-agent.el (gnus-category-mode): Use gnus-run-mode-hooks.
6998
6999 * gnus-art.el (gnus-article-mode): Use gnus-run-mode-hooks.
7000
7001 * gnus-cus.el (gnus-custom-mode): Use gnus-run-mode-hooks.
7002
7003 * gnus-eform.el (gnus-edit-form-mode): Use gnus-run-mode-hooks.
7004
7005 * gnus-group.el (gnus-group-mode): Use gnus-run-mode-hooks.
7006
7007 * gnus-kill.el (gnus-kill-file-mode): Use gnus-run-mode-hooks.
7008
7009 * gnus-salt.el (gnus-tree-mode): Use gnus-run-mode-hooks.
7010 (gnus-carpal-mode): Ditto.
7011
7012 * gnus-srvr.el (gnus-server-mode): Use gnus-run-mode-hooks.
7013 (gnus-browse-mode): Ditto.
7014
7015 * gnus-sum.el (gnus-summary-mode): Use gnus-run-mode-hooks.
7016
7017 * gnus-util.el (gnus-run-mode-hooks): Save current buffer.
7018
7019 2005-05-29 Richard M. Stallman <rms@gnu.org>
7020
7021 * gnus-cite.el (gnus-cite-add-face): Set overlay's evaporate property.
7022
7023 2005-05-27 Katsumi Yamaoka <yamaoka@jpl.org>
7024
7025 * gnus-util.el (gnus-run-mode-hooks): New function.
7026
7027 * score-mode.el (gnus-score-mode): Use gnus-run-mode-hooks.
7028
7029 2005-05-26 Luc Teirlinck <teirllm@auburn.edu>
7030
7031 * gnus-agent.el (gnus-agent-make-mode-line-string):
7032 Use mode-line-highlight as mouse-face.
7033
7034 2005-05-17 Katsumi Yamaoka <yamaoka@jpl.org>
7035
7036 * canlock.el (canlock): Change the parent group to news.
7037
7038 * deuglify.el (gnus-outlook-deuglify): Add :group.
7039
7040 * dig.el (dig): Add :group.
7041
7042 * dns-mode.el (dns-mode): Add :group.
7043
7044 * encrypt.el (encrypt): Add :group.
7045
7046 * gnus-cite.el (gnus-cite-attribution-face): Add :group.
7047 (gnus-cite-face-1, gnus-cite-face-2, gnus-cite-face-3): Ditto.
7048 (gnus-cite-face-4, gnus-cite-face-5, gnus-cite-face-6): Ditto.
7049 (gnus-cite-face-7, gnus-cite-face-8, gnus-cite-face-9): Ditto.
7050 (gnus-cite-face-10, gnus-cite-face-11): Ditto.
7051
7052 * gnus-diary.el (gnus-diary): Add :group.
7053
7054 * gnus.el (gnus-group-news-1-face): Add :group.
7055 (gnus-group-news-1-empty-face): Ditto.
7056 (gnus-group-news-2-face, gnus-group-news-2-empty-face): Ditto.
7057 (gnus-group-news-3-face, gnus-group-news-3-empty-face): Ditto.
7058 (gnus-group-news-4-face, gnus-group-news-4-empty-face): Ditto.
7059 (gnus-group-news-5-face, gnus-group-news-5-empty-face): Ditto.
7060 (gnus-group-news-6-face, gnus-group-news-6-empty-face): Ditto.
7061 (gnus-group-news-low-face, gnus-group-news-low-empty-face): Ditto.
7062 (gnus-group-mail-1-face, gnus-group-mail-1-empty-face): Ditto.
7063 (gnus-group-mail-2-face, gnus-group-mail-2-empty-face): Ditto.
7064 (gnus-group-mail-3-face, gnus-group-mail-3-empty-face): Ditto.
7065 (gnus-group-mail-low-face, gnus-group-mail-low-empty-face): Ditto.
7066 (gnus-summary-selected-face, gnus-summary-cancelled-face): Ditto.
7067 (gnus-summary-high-ticked-face): Ditto.
7068 (gnus-summary-low-ticked-face): Ditto.
7069 (gnus-summary-normal-ticked-face): Ditto.
7070 (gnus-summary-high-ancient-face): Ditto.
7071 (gnus-summary-low-ancient-face): Ditto.
7072 (gnus-summary-normal-ancient-face): Ditto.
7073 (gnus-summary-high-undownloaded-face): Ditto.
7074 (gnus-summary-low-undownloaded-face): Ditto.
7075 (gnus-summary-normal-undownloaded-face): Ditto.
7076 (gnus-summary-high-unread-face): Ditto.
7077 (gnus-summary-low-unread-face): Ditto.
7078 (gnus-summary-normal-unread-face): Ditto.
7079 (gnus-summary-high-read-face, gnus-summary-low-read-face): Ditto.
7080 (gnus-summary-normal-read-face, gnus-splash-face): Ditto.
7081
7082 * hashcash.el (hashcash): New custom group.
7083 (hashcash-default-payment): Add :group.
7084 (hashcash-payment-alist): Ditto.
7085 (hashcash-default-accept-payment): Ditto.
7086 (hashcash-accept-resources): Ditto.
7087 (hashcash-path): Ditto.
7088 (hashcash-extra-generate-parameters): Ditto.
7089 (hashcash-double-spend-database): Ditto.
7090 (hashcash-in-news): Ditto.
7091
7092 * message.el (message-minibuffer-local-map): Add :group.
7093
7094 * netrc.el (netrc): Add :group.
7095
7096 * sieve-manage.el (sieve-manage-log): Add :group.
7097 (sieve-manage-default-user): Diito.
7098 (sieve-manage-server-eol, sieve-manage-client-eol): Ditto.
7099 (sieve-manage-streams, sieve-manage-stream-alist): Ditto.
7100 (sieve-manage-authenticators): Ditto.
7101 (sieve-manage-authenticator-alist): Ditto.
7102 (sieve-manage-default-port): Ditto.
7103
7104 * sieve-mode.el (sieve-control-commands-face): Add :group.
7105 (sieve-action-commands-face): Ditto.
7106 (sieve-test-commands-face): Ditto.
7107 (sieve-tagged-arguments-face): Ditto.
7108
7109 * smime.el (smime): Add :group.
7110
7111 * spam-report.el (spam-report): Add :group.
7112
7113 * spam.el (spam, spam-face): Add :group.
7114
7115 2005-05-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
7116
7117 * nntp.el (nntp-next-result-arrived-p): Some news servers may
7118 return \n.\n.\n at the end of articles. Protect against that.
7119 (nntp-with-open-group): Allow debugging.
7120
7121 * nnheader.el (mail-header-set-extra): Make into a function
7122 because I just could't understand how to quote the list properly.
7123
7124 * dns.el (query-dns-cached): New function.
7125
7126 2005-05-26 Lute Kamstra <lute@gnu.org>
7127
7128 * score-mode.el (gnus-score-mode): Use run-mode-hooks.
7129
7130 2005-05-16 Katsumi Yamaoka <yamaoka@jpl.org>
7131
7132 * gnus-art.el: Don't autoload mail-extract-address-components.
7133
7134 * gnus.el: Remove duplicated autoload for message-y-or-n-p; use
7135 eval-and-compile to evaluate it.
7136
7137 * hashcash.el: Don't autoload executable-find.
7138
7139 * nndb.el: Don't declare the nndb back end two or more times; don't
7140 autoload news-reply-mode, news-setup, cancel-timer and telnet.
7141
7142 * nntp.el: Autoload format-spec instead of format; use
7143 eval-and-compile to evaluate autoload forms.
7144
7145 2005-05-09 Georg C. F. Greve <greve@gnu.org> (tiny change)
7146
7147 * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Fix PIN caching.
7148
7149 2005-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
7150
7151 * gnus.el (gnus-version-number): Bump version.
7152
7153 2005-05-01 Lars Magne Ingebrigtsen <lars@ingebrigtsen.no>
7154
7155 * gnus.el: No Gnus v0.3 is released.
7156
7157 2005-04-28 Katsumi Yamaoka <yamaoka@jpl.org>
7158
7159 * gnus-art.el (gnus-article-edit-part): Disable undo.
7160
7161 2005-04-25 Katsumi Yamaoka <yamaoka@jpl.org>
7162
7163 * gnus-art.el (article-date-ut): Don't delete X-Sent header when
7164 gnus-article-date-lapsed-new-header is t if date timer is active;
7165 skip headers in which the original date value is empty.
7166 (gnus-article-save-original-date): Redefine it as a macro.
7167 (gnus-display-mime): Use it.
7168
7169 2005-04-22 Katsumi Yamaoka <yamaoka@jpl.org>
7170
7171 * gnus-art.el (article-date-ut): Support converting date in
7172 forwarded parts as well.
7173 (gnus-article-save-original-date): New function.
7174 (gnus-display-mime): Use it.
7175
7176 2005-04-22 David Hansen <david.hansen@physik.fu-berlin.de>
7177
7178 * nnrss.el (nnrss-check-group, nnrss-request-article): Support the
7179 enclosure element of <item>.
7180
7181 2005-04-21 Reiner Steib <Reiner.Steib@gmx.de>
7182
7183 * message.el (message-kill-buffer-query): Renamed from
7184 `message-kill-buffer-query-if-modified'. Added :version.
7185
7186 2005-04-19 Katsumi Yamaoka <yamaoka@jpl.org>
7187
7188 * mml.el (mml-preview): Bind gnus-message-buffer while setting the
7189 window layout.
7190
7191 2005-04-18 Katsumi Yamaoka <yamaoka@jpl.org>
7192
7193 * mml.el: Autoload dnd when compiling.
7194
7195 2005-04-18 Reiner Steib <Reiner.Steib@gmx.de>
7196
7197 * mml.el (mml-mode, mml-dnd-attach-file): Use dnd-* instead of
7198 x-dnd-*.
7199
7200 2005-04-18 Katsumi Yamaoka <yamaoka@jpl.org>
7201
7202 * qp.el (quoted-printable-encode-region): Save excursion.
7203
7204 2005-04-14 Teodor Zlatanov <tzz@lifelogs.com>
7205
7206 * message.el (message-kill-buffer-query-if-modified): Add new variable
7207 so the user can kill a modified message buffer quickly.
7208 (message-kill-buffer): Use it.
7209
7210 2005-04-13 Katsumi Yamaoka <yamaoka@jpl.org>
7211
7212 * gnus-art.el (gnus-mime-inline-part): Use mm-string-to-multibyte.
7213 * qp.el (quoted-printable-encode-region): Use mm-string-to-multibyte.
7214
7215 2005-04-12 Katsumi Yamaoka <yamaoka@jpl.org>
7216
7217 * nnrss.el (nnrss-node-text): Replace CRLFs (which might be
7218 contained in text because xml.el decodes entities) with LFs.
7219
7220 2005-04-11 Lute Kamstra <lute@gnu.org>
7221
7222 * nnimap.el (nnimap-date-days-ago): Handle byte-compiler warnings
7223 differently.
7224
7225 2005-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
7226
7227 * mm-util.el (mm-detect-coding-region): Typo.
7228
7229 2005-04-11 Katsumi Yamaoka <yamaoka@jpl.org>
7230
7231 * gnus-art.el (gnus-article-read-summary-keys): Fix misplaced parens.
7232
7233 2005-04-06 D Goel <deego@gnufans.org>
7234
7235 * spam-stat.el (spam-stat-score-buffer): Add a call to a
7236 user-function allow user modifications of the scores.
7237 (spam-stat-score-buffer-user): New function, to allow
7238 user-computed modifications to the score.
7239 (spam-stat-score-buffer-user-functions): List of additional
7240 scoring functions.
7241 (spam-stat-error-holder): Global temporary error holder.
7242 (spam-stat-split-fancy): Use the new `spam-stat-error-holder'
7243 variable.
7244
7245 2005-04-06 Teodor Zlatanov <tzz@lifelogs.com>
7246
7247 * gnus-registry.el (gnus-registry-clean-empty-function)
7248 (gnus-registry-trim, gnus-registry-fetch-groups)
7249 (gnus-registry-delete-group): Groups that match
7250 `gnus-registry-ignored-groups' are removed from the registry
7251 entries, not just ignored for splitting. This helps clean up the
7252 registry. Also, `gnus-registry-fetch-groups' is a convenient way
7253 to get all the groups a message ID is in.
7254
7255 * spam-stat.el (spam-stat-split-fancy-spam-threshold)
7256 (spam-stat-split-fancy): Change "threshhold" to "threshold"
7257 (spam-stat-score-buffer-user-functions): Add :number custom type.
7258
7259 2005-04-06 Katsumi Yamaoka <yamaoka@jpl.org>
7260
7261 * mm-util.el (mm-coding-system-p): Don't return binary for the nil
7262 argument in XEmacs.
7263
7264 * nnrss.el (nnrss-compatible-encoding-alist): New variable.
7265 (nnrss-request-group): Decode group name first.
7266 (nnrss-request-article): Make a text/plain article if mml-to-mime
7267 failed.
7268 (nnrss-get-encoding): Return a compatible encoding according to
7269 nnrss-compatible-encoding-alist.
7270 (nnrss-find-el): Use consp instead of listp.
7271 (nnrss-opml-export, nnrss-order-hrefs, nnrss-find-el): Use dolist.
7272
7273 2005-04-06 Katsumi Yamaoka <yamaoka@jpl.org>
7274
7275 * time-date.el (time-to-seconds): Don't use the #xhhhh syntax
7276 which Emacs 20 doesn't support.
7277 (seconds-to-time, days-to-time, time-subtract, time-add): Ditto.
7278
7279 2005-04-04 Reiner Steib <Reiner.Steib@gmx.de>
7280
7281 * nnimap.el (nnimap-date-days-ago): Add defvars in order to
7282 silence the byte compiler inside the defun.
7283
7284 * gnus-demon.el (parse-time-string): Add autoload.
7285
7286 * gnus-delay.el (parse-time-string): Add autoload.
7287
7288 * gnus-art.el (parse-time-string): Add autoload.
7289
7290 * nnultimate.el (parse-time): Require for `parse-time-string'.
7291
7292 2005-03-31 Reiner Steib <Reiner.Steib@gmx.de>
7293
7294 * gnus-art.el (gnus-copy-article-ignored-headers): Update :version.
7295
7296 * gnus-score.el (gnus-adaptive-pretty-print): Ditto.
7297
7298 * smime.el (smime-ldap-host-list): Add :version.
7299
7300 2005-03-21 Reiner Steib <Reiner.Steib@gmx.de>
7301
7302 * gnus-srvr.el (gnus-browse-select-group): Add NUMBER argument and
7303 pass it to `gnus-browse-read-group'.
7304 (gnus-browse-read-group): Add NUMBER argument and pass it to
7305 `gnus-group-read-ephemeral-group'.
7306
7307 * gnus-group.el (gnus-group-read-ephemeral-group): Add NUMBER
7308 argument and pass it to `gnus-group-read-group'.
7309
7310 2005-03-19 Aidan Kehoe <kehoea@parhasard.net>
7311
7312 * mm-util.el (mm-xemacs-find-mime-charset): Only call
7313 mm-xemacs-find-mime-charset-1 if we have the mule feature
7314 available at runtime.
7315
7316 2005-03-25 Werner Lemberg <wl@gnu.org>
7317
7318 * nnmaildir.el: Replace `illegal' with `invalid'.
7319
7320 2005-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
7321
7322 * gnus-start.el (gnus-display-time-event-handler):
7323 Check display-time-timer at runtime rather than only at load time
7324 in case display-time-mode is turned off in the mean time.
7325
7326 2005-03-16 Reiner Steib <Reiner.Steib@gmx.de>
7327
7328 * nnimap.el (nnimap-open-connection): Print which authinfo file is
7329 used.
7330
7331 * nneething.el (nneething-map-file-directory): Derive from
7332 `gnus-directory'.
7333
7334 * gnus-art.el (gnus-header-button-alist): Use `gnus-msg-mail' for
7335 the To/Cc button.
7336
7337 2005-03-15 Reiner Steib <Reiner.Steib@gmx.de>
7338
7339 * nnmaildir.el (nnmaildir-request-accept-article):
7340 Use `nnheader-cancel-timer' for compatibility with current XEmacs.
7341
7342 2005-03-13 Andrey Slusar <anrays@gmail.com> (tiny change)
7343
7344 * gnus-async.el: Require timer-funcs at compile time when in
7345 XEmacs for `run-with-idle-timer'.
7346
7347 2005-03-13 Andrey Slusar <anrays@gmail.com> (tiny change)
7348
7349 * gnus.el: Don't try and mark `gnus-agent-save-groups' as an
7350 autoloaded function.
7351
7352 2005-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
7353
7354 * nnimap.el (nnimap-retrieve-headers-from-server): Fix last change.
7355
7356 2005-03-10 Arne Jørgensen <arne@arnested.dk> (tiny change)
7357
7358 * nnimap.el (nnimap-retrieve-headers-from-server): Fix off-by-one flaw.
7359
7360 2005-03-09 Lars Magne Ingebrigtsen <larsi@gnus.org>
7361
7362 * gnus-msg.el (gnus-confirm-mail-reply-to-news): Add
7363 gnus-expert-user to default.
7364
7365 2005-03-08 Juergen Kreileder <jk@blackdown.de> (tiny change)
7366
7367 * nnimap.el (nnimap-open-server): Ditto.
7368
7369 * imap.el (imap-authenticate): Fix typo.
7370
7371 2005-03-08 Bjorn Solberg <bjorn_ding@hekneby.org> (tiny change)
7372
7373 * nnimap.el (nnimap-retrieve-headers-from-server): Sort NOV
7374 buffer (since IMAP server might return FETCH response out of
7375 order, and the nntp buffer must be sorted).
7376
7377 2005-03-06 Kevin Greiner <kevin.greiner@compsol.cc>
7378
7379 * gnus-start.el (gnus-convert-old-newsrc): Fixed numeric
7380 comparison on string.
7381
7382 * gnus-agent.el (gnus-agent-long-article,
7383 gnus-agent-short-article, gnus-agent-score): Renamed category
7384 keywords to match gnus-cus.
7385 (gnus-agent-summary-fetch-series): Modified to protect against
7386 gnus-agent-summary-fetch-group clearing processable flags.
7387 (gnus-agent-synchronize-group-flags): Update live group buffer as
7388 synchronization may occur due to the user toggle the plugged
7389 status.
7390 (gnus-agent-fetch-group-1): Clear downloadable flag when article
7391 successfully downloaded.
7392 (gnus-agent-expire-group-1): Avoid using markers when the overview
7393 is in ascending order; greatly improves performance.
7394 (gnus-agent-regenerate-group): Use
7395 gnus-agent-synchronize-group-flags to reset read status in both
7396 gnus and server.
7397 (gnus-agent-update-files-total-fetched-for): Fixed initial size.
7398
7399 2005-03-04 Reiner Steib <Reiner.Steib@gmx.de>
7400
7401 * message.el: Don't autoload former message-utils variables.
7402 (message-strip-subject-trailing-was): Change doc string.
7403
7404 * nnweb.el: Fixes for `gnus-group-make-web-group'.
7405 (nnweb-type-definition): Don't add "hl=en" in `address'. Add `base'.
7406 (nnweb-google-search): Add "hl=en" here.
7407 (nnweb-google-parse-1, nnweb-google-create-mapping):
7408 Don't hardcode URL.
7409
7410 2005-03-03 Reiner Steib <Reiner.Steib@gmx.de>
7411
7412 * message.el (message-get-reply-headers, message-followup):
7413 Mention related variables `message-use-followup-to' and
7414 `message-use-mail-followup-to', in the information buffer.
7415
7416 * nnweb.el (nnweb-type-definition): Use groups.google.de instead
7417 of broken groups(-beta).google.com.
7418
7419 2005-03-03 Teodor Zlatanov <tzz@lifelogs.com>
7420
7421 * gnus-sum.el (gnus-summary-move-article): Pass move-is-internal
7422 parameter to invoked gnus-request-move-article; remove the
7423 redundant gnus-sum-hint-move-is-internal variable; apply the marks
7424 all at once instead of once per article.
7425 (gnus-summary-remove-process-mark): Accept a list of articles as
7426 well as a single article for processing.
7427
7428 * gnus-int.el (gnus-request-move-article): Add move-is-internal
7429 parameter.
7430
7431 * nnml.el (nnml-request-move-article): Add move-is-internal parameter.
7432
7433 * nnmh.el (nnmh-request-move-article): Add move-is-internal parameter.
7434
7435 * nnmbox.el (nnmbox-request-move-article): Add move-is-internal
7436 parameter.
7437
7438 * nnmaildir.el (nnmaildir-request-move-article): Add move-is-internal
7439 parameter.
7440
7441 * nnimap.el (nnimap-request-move-article): Add move-is-internal
7442 parameter and remove the gnus-sum-hint-move-is-internal variable.
7443
7444 * nnfolder.el (nnfolder-request-move-article): Add move-is-internal
7445 parameter.
7446
7447 * nndraft.el (nndraft-request-move-article): Add move-is-internal
7448 parameter.
7449
7450 * nndiary.el (nndiary-request-move-article): Add move-is-internal
7451 parameter.
7452
7453 * nndb.el (nndb-request-move-article): Add move-is-internal parameter.
7454
7455 * nnbabyl.el (nnbabyl-request-move-article): Add move-is-internal
7456 parameter.
7457
7458 * nnagent.el (nnagent-request-move-article): Add move-is-internal
7459 parameter.
7460
7461 2005-03-01 Stefan Monnier <monnier@iro.umontreal.ca>
7462
7463 * gnus-sum.el (gnus-summary-exit): Undo last change and fix it in
7464 a more conservative way.
7465
7466 2005-02-26 Stefan Monnier <monnier@iro.umontreal.ca>
7467
7468 * gnus-sum.el (gnus-summary-exit): Move point after displaying the
7469 buffer, so it moves the window's cursor.
7470
7471 2005-02-26 Arne Jørgensen <arne@arnested.dk>
7472
7473 * mm-decode.el (mm-dissect-buffer): Pass the from field on to
7474 `mm-dissect-multipart' and receive the from field as an (optional)
7475 argument from `mm-dissect-multipart'.
7476 (mm-dissect-multipart): Receive the from field as an argument and
7477 pass it on when we call `mm-dissect-buffer' on MIME parts.
7478 Fixes verification/decryption of signed/encrypted MIME parts.
7479
7480 2005-02-25 Teodor Zlatanov <tzz@lifelogs.com>
7481
7482 * gnus-sum.el (gnus-summary-move-article): Set
7483 gnus-sum-hint-move-is-internal for gnus-request-move-article and
7484 whatever it calls (right now, only nnimap-request-move article
7485 respects it).
7486
7487 * nnimap.el (nnimap-request-move-article): When
7488 gnus-sum-hint-move-is-internal is set, don't do the extra
7489 nnimap-request-article.
7490
7491 2005-02-24 Reiner Steib <Reiner.Steib@gmx.de>
7492
7493 * nnheader.el (nnheader-find-file-noselect): Add doc string.
7494
7495 * nnfolder.el (nnfolder-read-folder): Use RAWFILE for
7496 `nnheader-find-file-noselect' to avoid `large-file-warning-threshold'.
7497
7498 * gnus-sum.el (gnus-summary-caesar-message):
7499 Apply `gnus-treat-article' after rotation.
7500
7501 * gnus-group.el (gnus-group-clear-data): Mention process/prefix in
7502 doc string.
7503
7504 2005-02-22 Simon Josefsson <jas@extundo.com>
7505
7506 * encrypt.el (encrypt-password-cache-expiry): Remove (use
7507 `password-cache-expiry' instead). Reported by Arne Jørgensen
7508 <arne@arnested.dk>.
7509 (encrypt): Add password-cache and password-cache-expiry as group
7510 members.
7511
7512 2005-02-22 Arne Jørgensen <arne@arnested.dk>
7513
7514 * smime.el (smime-ldap-host-list): Doc fix.
7515 (smime-ask-passphrase): Use `password-read-and-add' to read (and
7516 cache) password.
7517 (smime-sign-region): Use it.
7518 (smime-decrypt-region): Use it.
7519 (smime-sign-buffer): Signal an error if `smime-sign-region' fails.
7520 (smime-encrypt-buffer): Signal an error if `smime-encrypt-region'
7521 fails.
7522 (smime-cert-by-ldap-1): Use `base64-encode-string' to convert
7523 certificate from DER to PEM format rather than calling openssl.
7524
7525 * mml-smime.el (mml-smime-encrypt-query): Remove obsolete comment.
7526
7527 * mml-sec.el (mml-secure-message): Insert keyfile/certfile tags
7528 for signing/encryption.
7529
7530 * mml.el (mml-parse-1): Use them.
7531
7532 2005-02-21 Arne Jørgensen <arne@arnested.dk>
7533
7534 * nnrss.el (nnrss-verbose): Removed.
7535 (nnrss-request-group): Use `nnheader-message' instead.
7536
7537 2005-02-19 Mark Plaksin <happy@usg.edu> (tiny change)
7538
7539 * nnrss.el (nnrss-verbose): New variable.
7540 (nnrss-request-group): Make it say nnrss is requesting a group.
7541
7542 2005-02-21 Reiner Steib <Reiner.Steib@gmx.de>
7543
7544 * gnus-art.el (gnus-parse-news-url, gnus-button-handle-news):
7545 Handle news URL with given port correctly.
7546
7547 2005-02-19 Katsumi Yamaoka <yamaoka@jpl.org>
7548
7549 * gnus-msg.el (gnus-copy-article-buffer): Quote decoded words
7550 containing special characters.
7551
7552 * gnus-sum.el (gnus-summary-edit-article): Ditto.
7553
7554 * mml.el (mime-to-mml): Ditto.
7555
7556 * rfc2047.el (rfc2047-encode-parameter): Use ietf-drums-tspecials.
7557 (rfc2047-quote-decoded-words-containing-tspecials): New variable.
7558 (rfc2047-decode-region): Quote decoded words containing special
7559 characters when rfc2047-quote-decoded-words-containing-tspecials
7560 is non-nil.
7561
7562 2005-02-16 Teodor Zlatanov <tzz@lifelogs.com>
7563
7564 * gnus-registry.el (gnus-registry-delete-group): Add minor bug fix.
7565
7566 * gnus.el (gnus-install-group-spam-parameters): Add minor doc fix.
7567
7568 2005-02-15 Simon Josefsson <jas@extundo.com>
7569
7570 * nnimap.el (nnimap-debug): Doc fix.
7571
7572 * imap.el (imap-debug): Doc fix.
7573
7574 2005-02-15 Katsumi Yamaoka <yamaoka@jpl.org>
7575
7576 * gnus-art.el: Avoid "Recursive load suspected" error in Emacs 21.1.
7577
7578 2005-02-14 Teodor Zlatanov <tzz@lifelogs.com>
7579
7580 * gnus.el (spam-contents): Improve docs for spam-contents
7581 parameter in its variable incarnation.
7582
7583 2005-02-14 Simon Josefsson <jas@extundo.com>
7584
7585 * smime-ldap.el: Use require instead of load-library for ldap.
7586 (smime-ldap-search): Indent.
7587 (smime-ldap-search-internal): Shorten line.
7588
7589 * smime.el (smime-cert-by-dns): Add doc-string.
7590 (smime-cert-by-ldap-1): Indent.
7591
7592 * mml-smime.el (mml-smime-get-ldap-cert): Renamed from
7593 mml-smime-get-dns-ldap.
7594 (mml-smime-encrypt-query): Use new function. Default to ldap.
7595
7596 2005-02-14 Arne Jørgensen <arne@arnested.dk>
7597
7598 * smime.el: Require smime-ldap.
7599 (smime-ldap-host-list): New variable.
7600 (smime-cert-by-ldap, smime-cert-by-ldap-1): New functions.
7601
7602 * mml-smime.el (mml-smime-encrypt-query): New function.
7603 (mml-smime-encrypt-query): Use it.
7604
7605 * smime-ldap.el: New file.
7606
7607 2005-02-13 Katsumi Yamaoka <yamaoka@jpl.org>
7608
7609 * gnus-agent.el: Remove garbage made while merging the Emacs trunk.
7610
7611 2005-02-14 Reiner Steib <Reiner.Steib@gmx.de>
7612
7613 * gnus-group.el (gnus-group-make-doc-group): Mention prefix
7614 argument in doc string. Make query for type more clear.
7615
7616 2005-02-13 Reiner Steib <Reiner.Steib@gmx.de>
7617
7618 * gnus.el (gnus-group-startup-message): Search for gnus images in
7619 etc/images/gnus.
7620 * mm-util.el (mm-image-load-path): Likewise.
7621 * smiley.el (smiley-data-directory): Search for smilies in
7622 etc/images/smilies.
7623
7624 2005-02-09 Kim F. Storm <storm@cua.dk>
7625
7626 Change Emacs release version from 21.4 to 22.1 throughout.
7627 Change Emacs development version from 21.3.50 to 22.0.50.
7628
7629 2005-02-12 Katsumi Yamaoka <yamaoka@jpl.org>
7630
7631 * gnus-art.el (gnus-mime-copy-part): Don't decode compressed parts.
7632
7633 * mm-util.el (mm-coding-system-to-mime-charset): Make it work with
7634 non-Mule XEmacs as well.
7635 (mm-decompress-buffer): Signal an error intentionally if it does
7636 not decompress compressed data because auto-compression-mode is
7637 disabled.
7638
7639 2005-02-11 Teodor Zlatanov <tzz@lifelogs.com>
7640
7641 * gnus-registry.el (gnus-registry-delete-group): Fix bug: leaves
7642 an ID in the registry even if it has no groups.
7643
7644 2005-02-10 Katsumi Yamaoka <yamaoka@jpl.org>
7645
7646 * gnus-art.el (gnus-mime-jka-compr-maybe-uncompress): Remove;
7647 merge it into mm-decompress-buffer.
7648 (gnus-mime-copy-part): Use the MIME part charset, the value which
7649 a user specified or gnus-newsgroup-charset for decoding, like
7650 gnus-mime-inline-part does; set buffer-file-coding-system to tell
7651 save-buffer what was used. Suggested by Kevin Ryde
7652 <user42@zip.com.au>.
7653 (gnus-mime-inline-part): Allow the name parameter as well as the
7654 filename parameter; force decompressing of compressed data; always
7655 display contents being not decoded as unibyte.
7656
7657 * mm-view.el (mm-display-inline-fontify): Allow the name parameter
7658 as well as the filename parameter.
7659
7660 * mm-util.el (mm-decompress-buffer): Merge
7661 gnus-mime-jka-compr-maybe-uncompress.
7662 (mm-find-buffer-file-coding-system): Doc fix; force decompressing
7663 of compressed data.
7664
7665 2005-02-08 Simon Josefsson <jas@extundo.com>
7666
7667 * imap.el (imap-log): Doc fix.
7668
7669 2005-02-07 Katsumi Yamaoka <yamaoka@jpl.org>
7670
7671 * gnus-art.el (gnus-mime-inline-part): Decode parts according to
7672 the coding cookies; decompress compressed parts.
7673
7674 * mml.el (mml-generate-mime-1): Add the charaset parameter according
7675 to the value which a user specified manually or the coding cookie.
7676
7677 * mm-util.el (mm-string-to-multibyte): New function.
7678 (mm-detect-mime-charset-region): Work with Emacs 22 as well.
7679 (mm-coding-system-to-mime-charset): New function.
7680 (mm-decompress-buffer): New function.
7681 (mm-find-buffer-file-coding-system): New function.
7682
7683 * mm-view.el (mm-insert-inline): Make sure a part ends with a newline.
7684 (mm-display-inline-fontify): Rewrite for decoding and decompressing
7685 parts.
7686
7687 2005-02-07 TSUCHIYA Masatoshi <tsuchiya@namazu.org>
7688
7689 * mm-view.el (mm-display-inline-fontify): Decode a part according
7690 to the charset parameter.
7691
7692 2005-02-03 Katsumi Yamaoka <yamaoka@jpl.org>
7693
7694 * gnus-art.el (gnus-mime-inline-part): Show the raw contents if a
7695 prefix arg is neither nil nor a number, as info specifies.
7696
7697 2005-02-02 Katsumi Yamaoka <yamaoka@jpl.org>
7698
7699 * nntp.el (nntp-marks-changed-p): Use time-less-p to compare the
7700 timestamps.
7701
7702 2005-02-02 Jari Aalto <jari.aalto@cante.net>
7703
7704 * gnus-sum.el (gnus-list-of-unread-articles): Improve active
7705 groups error checking and notify user.
7706
7707 2005-02-02 Jari Aalto <jari.aalto@poboxes.com>
7708
7709 * message.el (message-send-mail-function): Check existence of
7710 sendmail-program first before using default value
7711 `message-send-mail-with-sendmail'. Otherwise use more generic
7712 `smtpmail-send-it'.
7713
7714 2005-02-01 Katsumi Yamaoka <yamaoka@jpl.org>
7715
7716 * nntp.el (nntp-request-update-info): Always return nil.
7717
7718 2005-01-30 Stefan Monnier <monnier@iro.umontreal.ca>
7719
7720 * gnus-art.el (gnus-article-mode): Turn off the "\ " non-break space.
7721
7722 2005-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
7723
7724 * message.el (message-beginning-of-line): Change the behavior when
7725 invoked between BOL and : so that it first moves backward.
7726
7727 2005-01-28 Katsumi Yamaoka <yamaoka@jpl.org>
7728
7729 * gnus-art.el (gnus-article-setup-buffer): Kill and re-create the
7730 article buffer when editing of the article is discarded.
7731 (gnus-article-prepare): Revert.
7732
7733 2005-01-28 Katsumi Yamaoka <yamaoka@jpl.org>
7734
7735 * gnus-art.el (gnus-article-prepare):
7736 Remove message-strip-forbidden-properties from the local hook.
7737
7738 2005-01-27 Simon Josefsson <jas@extundo.com>
7739
7740 * password.el (password-cache-add): Only start one timer per key.
7741 Reported by Derek Atkins <warlord@MIT.EDU>.
7742
7743 2005-01-26 Steve Youngs <steve@sxemacs.org>
7744
7745 * run-at-time.el: Removed. It is no longer needed as
7746 timer-funcs.el in the xemacs-base package has a working version of
7747 `run-at-time'.
7748
7749 * password.el: Require timer-funcs instead of run-at-time in
7750 XEmacs.
7751 Remove `password-run-at-time' macro.
7752 (password-cache-add): Use `run-at-time' instead of
7753 `password-run-at-time'.
7754
7755 * mail-source.el: Require timer-funcs instead of itimer in XEmacs
7756 for `run-with-idle-timer'.
7757
7758 * gnus-demon.el: Require timer-funcs instead of itimer in XEmacs
7759 for `run-at-time'.
7760
7761 * mm-url.el: Require timer-funcs at compile time when in XEmacs
7762 for `with-timeout'.
7763
7764 2005-01-24 Katsumi Yamaoka <yamaoka@jpl.org>
7765
7766 * mml.el (mml-generate-mime-1): Convert string into unibyte when
7767 inserting " *mml*" buffer's contents into a unibyte temp buffer.
7768
7769 2005-01-24 Harald Meland <harald.meland@usit.uio.no> (tiny change)
7770
7771 * mail-source.el (mail-source-fetch-imap): Search for ^From case
7772 sensitively.
7773
7774 2005-01-21 Derek Atkins <warlord@MIT.EDU> (tiny change)
7775
7776 * pgg-pgp.el (pgg-pgp-decrypt-region): Use passphrase cache.
7777
7778 2005-01-20 Katsumi Yamaoka <yamaoka@jpl.org>
7779
7780 * mm-decode.el (mm-insert-part): Switch the multibyteness of data
7781 which will be inserted according to the multibyteness of a buffer
7782 rather than the type of contents. Suggested by ARISAWA Akihiro
7783 <ari@mbf.ocn.ne.jp>.
7784
7785 * nnrss.el (nnrss-find-el): Check carefully whether there's a list
7786 of string which old xml.el may return rather than a string.
7787
7788 2005-01-17 Katsumi Yamaoka <yamaoka@jpl.org>
7789
7790 * gnus-sum.el (gnus-summary-idna-message): Silence byte compiler.
7791
7792 2005-01-16 Simon Josefsson <jas@extundo.com>
7793
7794 * gnus-sum.el (gnus-summary-idna-message): Fail gracefully if
7795 idn/idna.el isn't available.
7796 (gnus-summary-idna-message): Doc fix. Suggested by Michael Cook
7797 <michael@waxrat.com>.
7798
7799 * hashcash.el: Remove non-FSF copyright header.
7800
7801 * hashcash.el (hashcash-extra-generate-parameters): New variable.
7802 (hashcash-generate-payment): Use it.
7803 (hashcash-generate-payment-async): Use it.
7804
7805 2005-01-15 Simon Josefsson <jas@extundo.com>
7806
7807 * message.el (message-idna-to-ascii-rhs): Decode Reply-To too.
7808 Suggested by Raymond Scholz <ray-2005@zonix.de>.
7809
7810 * gnus-sum.el (gnus-summary-wash-map): Bind "W i" to
7811 gnus-summary-idna-message.
7812 (gnus-summary-make-menu-bar): Add De-IDNA menu entry.
7813 (gnus-summary-idna-message): New function.
7814
7815 2005-01-13 Reiner Steib <Reiner.Steib@gmx.de>
7816
7817 * gnus-msg.el (gnus-confirm-mail-reply-to-news): Change default to
7818 gnus-novice-user.
7819
7820 2005-01-12 Katsumi Yamaoka <yamaoka@jpl.org>
7821
7822 * nnrss.el (nnrss-request-delete-group): Delete entries in
7823 nnrss-group-alist as well.
7824 (nnrss-save-server-data): Insert newline.
7825
7826 2005-01-10 Reiner Steib <Reiner.Steib@gmx.de>
7827
7828 * gnus.el (gnus-user-agent): Use list of symbols instead of
7829 symbols. Display full version number for (S)XEmacs. Optionally
7830 display (S)XEmacs codename.
7831
7832 * gnus-util.el (gnus-emacs-version): Update for new
7833 `gnus-user-agent'.
7834
7835 * gnus-msg.el (gnus-extended-version): Make it possible to omit
7836 Gnus version.
7837
7838 2005-01-05 Reiner Steib <Reiner.Steib@gmx.de>
7839
7840 * spam.el (spam-face): New face. Don't use `gnus-splash-face'
7841 which is unreadable in some setups.
7842
7843 2005-01-06 Katsumi Yamaoka <yamaoka@jpl.org>
7844
7845 * gnus-spec.el (gnus-update-format-specifications): Flush the
7846 group format spec cache if it doesn't support decoded group names.
7847
7848 2005-01-03 Reiner Steib <Reiner.Steib@gmx.de>
7849
7850 * gnus-score.el (gnus-decay-scores, gnus-score-load-file):
7851 Allow to apply decay on score files matching a regexp.
7852
7853 2004-12-30 Katsumi Yamaoka <yamaoka@jpl.org>
7854
7855 * gnus-group.el (gnus-group-line-format-alist): Keep the forward
7856 compatibility in %g and %c.
7857
7858 2004-12-29 Katsumi Yamaoka <yamaoka@jpl.org>
7859
7860 * gnus-group.el (gnus-group-line-format-alist): Use decoded group
7861 name for only %g and %c.
7862 (gnus-group-insert-group-line): Bind gnus-tmp-decoded-group instead
7863 of gnus-tmp-group to decoded group name.
7864 (gnus-group-make-rss-group): Exclude `/'s from group names.
7865
7866 2004-12-28 Katsumi Yamaoka <yamaoka@jpl.org>
7867
7868 * nnrss.el (nnrss-get-encoding): Fix regexp.
7869
7870 2004-12-27 Simon Josefsson <jas@extundo.com>
7871
7872 * mm-bodies.el (mm-body-encoding): Don't permit 7-bit to be used when
7873 mm-use-ultra-safe-encoding is enabled (e.g., for PGP/MIME) and we have
7874 trailing white space. Reported by Werner Koch <wk@gnupg.org>.
7875
7876 2004-12-17 Kim F. Storm <storm@cua.dk>
7877
7878 * gnus-group.el (gnus-group-mode-map): Map follow-link to mouse-face.
7879
7880 * gnus-sum.el (gnus-summary-mode-map): Likewise.
7881
7882 2004-12-26 Tsuyoshi AKIHO <akiho@kawachi.zaq.ne.jp>
7883
7884 * gnus-sum.el (gnus-summary-walk-group-buffer): Decode group name.
7885
7886 2004-12-26 Katsumi Yamaoka <yamaoka@jpl.org>
7887
7888 * nnrss.el: Require rfc2047 and mml.
7889 (nnrss-file-coding-system): New variable.
7890 (nnrss-format-string): Redefine it as an inline function.
7891 (nnrss-decode-group-name): New function.
7892 (nnrss-string-as-multibyte): Remove.
7893 (nnrss-retrieve-headers): Decode group name; don't use
7894 nnrss-format-string.
7895 (nnrss-request-group): Decode group name.
7896 (nnrss-request-article): Decode group name; allow a Message-ID as
7897 well as an article number; don't use nnrss-format-string; encode a
7898 Message-ID string which may contain non-ASCII characters; use
7899 mml-to-mime to compose a MIME article.
7900 (nnrss-request-expire-articles): Decode group name.
7901 (nnrss-request-delete-group): Decode group name.
7902 (nnrss-fetch): Clarify error message.
7903 (nnrss-read-server-data): Use insert-file-contents instead of load;
7904 bind file-name-coding-system; use multibyte buffer.
7905 (nnrss-save-server-data): Bind coding-system-for-write to the
7906 value of nnrss-file-coding-system; bind file-name-coding-system;
7907 add coding cookie.
7908 (nnrss-read-group-data): Use insert-file-contents instead of load;
7909 bind file-name-coding-system; use multibyte buffer.
7910 (nnrss-save-group-data): Bind coding-system-for-write to the
7911 value of nnrss-file-coding-system; bind file-name-coding-system.
7912 (nnrss-decode-entities-string): Rename from n-d-e-unibyte-string;
7913 make it work with non-ASCII text.
7914 (nnrss-find-el): Make it work with old xml.el as well.
7915
7916 2004-12-26 Tsuyoshi AKIHO <akiho@kawachi.zaq.ne.jp>
7917
7918 * nnrss.el (nnrss-get-encoding): New function.
7919 (nnrss-fetch): Use unibyte buffer initially; bind
7920 coding-system-for-read while performing mm-url-insert; remove ^Ms;
7921 decode contents according to the encoding attribute.
7922 (nnrss-save-group-data): Add coding cookie.
7923 (nnrss-mime-encode-string): New function.
7924 (nnrss-check-group): Use it to encode subject and author.
7925
7926 2004-12-23 Teodor Zlatanov <tzz@lifelogs.com>
7927
7928 * spam.el (spam-check-BBDB): Don't get the symbol-value of an
7929 imaginary variable.
7930
7931 2004-12-22 Katsumi Yamaoka <yamaoka@jpl.org>
7932
7933 * gnus-spec.el (gnus-spec-tab): Make a Lisp form which works
7934 correctly even if there are wide characters.
7935
7936 2004-12-21 Teodor Zlatanov <tzz@lifelogs.com>
7937
7938 * spam.el (spam-check-BBDB): Fix the BBDB caching code to use
7939 downcased symbol names; make a new cache instead of reusing
7940 bbdb-hashtable.
7941
7942 2004-12-21 Katsumi Yamaoka <yamaoka@jpl.org>
7943
7944 * rfc2231.el (rfc2231-parse-string): Decode encoded value after
7945 concatenating segments rather than before concatenating them.
7946 Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
7947
7948 * message.el (message-get-reply-headers): Bind `extra'.
7949
7950 2004-12-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
7951
7952 * message.el (message-extra-wide-headers): New variable.
7953 (message-get-reply-headers): Use it.
7954
7955 2004-12-20 Katsumi Yamaoka <yamaoka@jpl.org>
7956
7957 * gnus-agent.el (gnus-agent-group-path): Decode group name.
7958 (gnus-agent-group-pathname): Ditto.
7959
7960 * gnus-cache.el (gnus-cache-file-name): Decode group name.
7961
7962 * gnus-group.el (gnus-group-make-group): Decode group name.
7963 (gnus-group-make-rss-group): Register the group data after opening
7964 the nnrss group.
7965
7966 2004-12-17 Paul Jarc <prj@po.cwru.edu>
7967
7968 * nnmaildir.el (nnmaildir-request-expire-articles): Articles moved
7969 by expiry now get marked as read.
7970
7971 2004-12-17 Katsumi Yamaoka <yamaoka@jpl.org>
7972
7973 * mm-util.el (mm-xemacs-find-mime-charset): New macro.
7974
7975 2004-12-17 Aidan Kehoe <kehoea@parhasard.net>
7976
7977 * mm-util.el (mm-xemacs-find-mime-charset-1): New function used to
7978 unify Latin characters in XEmacs.
7979 (mm-find-mime-charset-region): Use it.
7980
7981 2004-12-17 Katsumi Yamaoka <yamaoka@jpl.org>
7982
7983 * gnus-util.el (gnus-delete-directory): New function.
7984
7985 * gnus-agent.el (gnus-agent-delete-group): Use it.
7986
7987 * gnus-cache.el (gnus-cache-delete-group): Use it.
7988
7989 2004-12-16 Katsumi Yamaoka <yamaoka@jpl.org>
7990
7991 * gnus-group.el (gnus-group-make-rss-group): Unify non-ASCII group
7992 names.
7993
7994 2004-12-16 Simon Josefsson <jas@extundo.com>
7995
7996 * hashcash.el (hashcash-payment-alist): Fix custom :type.
7997
7998 2004-12-15 Katsumi Yamaoka <yamaoka@jpl.org>
7999
8000 * mm-url.el (mm-url-predefined-programs): Add --silent arg to curl.
8001
8002 * gnus-group.el (gnus-group-expire-articles-1): Decode group name.
8003 (gnus-group-set-current-level): Decode group name.
8004
8005 2004-12-15 Maciek Pasternacki <maciekp@japhy.fnord.org> (tiny change)
8006
8007 * nnrss.el (nnrss-fetch): Signal an error if w3-parse-buffer also
8008 failed.
8009
8010 2004-12-14 Katsumi Yamaoka <yamaoka@jpl.org>
8011
8012 * gnus-group.el (gnus-group-delete-group): Decode group name.
8013 (gnus-group-make-rss-group): Encode group name.
8014 (gnus-group-catchup-current): Decode group name.
8015 (gnus-group-kill-group): Decode group name.
8016
8017 2004-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
8018
8019 * gnus-art.el (gnus-narrow-to-page): Don't hardcode point-min.
8020
8021 2004-12-13 Katsumi Yamaoka <yamaoka@jpl.org>
8022
8023 * gnus-group.el (gnus-group-make-rss-group):
8024 Use gnus-group-make-group instead of gnus-group-unsubscribe-group.
8025
8026 * gnus-start.el (gnus-setup-news): Honor user's setting to
8027 gnus-message-archive-method. Suggested by Lute Kamstra
8028 <lute@gnu.org>.
8029
8030 2004-12-10 Arnaud Giersch <arnaud.giersch@free.fr> (tiny change)
8031
8032 * gnus-sum.el (gnus-summary-exit-no-update): Don't clear the
8033 global counterparts of the buffer-local variables.
8034
8035 2004-11-16 Romain Francoise <romain@orebokech.com>
8036
8037 * gnus-sum.el (gnus-summary-exit): Don't clear the global
8038 counterparts of the buffer-local variables.
8039
8040 2004-11-25 Reiner Steib <Reiner.Steib@gmx.de>
8041
8042 * message.el (message-forbidden-properties): Fixed typo in doc
8043 string.
8044
8045 2004-11-25 Reiner Steib <Reiner.Steib@gmx.de>
8046
8047 * gnus-util.el (gnus-replace-in-string): Added doc string.
8048
8049 * nnmail.el (nnmail-split-header-length-limit): Increase to 2048
8050 to avoid problems when splitting mails with many recipients.
8051
8052 2004-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
8053
8054 * gnus-sum.el (gnus-summary-exit): Remove redundant and harmful
8055 pop-to-buffer, covered by the subsequent gnus-configure-windows.
8056
8057 2004-12-05 Nelson Ferreira <nelson.ferreira@ieee.org>
8058
8059 * spam-stat.el (spam-stat-save): Load the hashtable from disk only
8060 if there is no hashtable in memory or file modification time is
8061 newer than cached timestamp.
8062
8063 2004-12-03 Reiner Steib <Reiner.Steib@gmx.de>
8064
8065 * gnus-sum.el (gnus-summary-limit-to-recipient): Implement
8066 not-matching option.
8067
8068 2004-12-02 Reiner Steib <Reiner.Steib@gmx.de>
8069
8070 * gnus-sum.el (gnus-summary-limit-to-recipient): New function.
8071 Suggested David Mazieres in analogy to rmail-summary-by-recipients.
8072 (gnus-summary-limit-map, gnus-summary-make-menu-bar): Add it.
8073 (gnus-article-sort-by-recipient, gnus-summary-sort-by-recipient):
8074 New functions. Suggested by Uwe Brauer <oub@mat.ucm.es>.
8075 (gnus-summary-mode-map, gnus-summary-make-menu-bar): Add it.
8076
8077 2004-12-02 Katsumi Yamaoka <yamaoka@jpl.org>
8078
8079 * message.el (message-forward-make-body-mml): Remove headers
8080 according to message-forward-ignored-headers if a message is decoded.
8081
8082 2004-12-02 Romain Francoise <romain@orebokech.com>
8083
8084 * message.el (message-forward-make-body-plain): Always remove
8085 headers according to message-forward-ignored-headers.
8086
8087 2004-12-01 Teodor Zlatanov <tzz@lifelogs.com>
8088
8089 * spam.el (spam-summary-prepare-exit): Remove the
8090 gnus-summary-limit pop for now, it has problems with ham marks for
8091 me.
8092
8093 2004-11-29 Teodor Zlatanov <tzz@lifelogs.com>
8094
8095 * spam.el (spam-summary-prepare-exit): Use gnus-summary-limit
8096 correctly.
8097
8098 2004-11-28 Carl Henrik Lunde <chlunde+bugs+@ping.uio.no> (tiny change)
8099
8100 * format-spec.el (format-spec): Message the char.
8101
8102 2004-11-26 Teodor Zlatanov <tzz@lifelogs.com>
8103
8104 * gnus-art.el (gnus-split-methods): Reformat comments.
8105
8106 * spam.el (spam-summary-prepare-exit): Remove article limits
8107 before exiting the summary buffer.
8108
8109 2004-11-26 Katsumi Yamaoka <yamaoka@jpl.org>
8110
8111 * nnrss.el (nnrss-string-as-multibyte): Redefine it as a macro in
8112 order to silence the byte compiler.
8113
8114 * spam.el: Fix the way to silence the byte compiler, which
8115 complained about bbdb-buffer, bbdb-create-internal, bbdb-records,
8116 bbdb-search-simple, spam-BBDB-register-routine,
8117 spam-enter-ham-BBDB, spam-stat-buffer-change-to-non-spam,
8118 spam-stat-buffer-change-to-spam, spam-stat-buffer-is-non-spam,
8119 spam-stat-buffer-is-spam, spam-stat-load,
8120 spam-stat-register-ham-routine, spam-stat-register-spam-routine,
8121 spam-stat-save and spam-stat-split-fancy.
8122
8123 2004-11-26 Katsumi Yamaoka <yamaoka@jpl.org>
8124
8125 * canlock.el (canlock-password): Remove `:size 0' or `:size 1'
8126 which may confuse users.
8127 (canlock-password-for-verify): Ditto.
8128
8129 * deuglify.el (gnus-outlook-deuglify-unwrap-stop-chars): Ditto.
8130
8131 * gnus-art.el (gnus-emphasis-alist): Ditto.
8132
8133 * gnus-registry.el (gnus-registry-max-entries): Ditto.
8134
8135 * gnus-score.el (gnus-adaptive-word-length-limit): Ditto.
8136
8137 * gnus-start.el (gnus-save-killed-list): Ditto.
8138
8139 * gnus-sum.el (gnus-thread-hide-subtree): Ditto.
8140 (gnus-sum-thread-tree-root): Ditto.
8141 (gnus-sum-thread-tree-false-root): Ditto.
8142 (gnus-sum-thread-tree-single-indent): Ditto.
8143
8144 * message.el (message-courtesy-message): Ditto.
8145 (message-archive-note): Ditto.
8146 (message-subscribed-address-file): Ditto.
8147 (message-user-fqdn): Ditto.
8148
8149 * spam-report.el (spam-report-gmane-regex): Ditto.
8150
8151 * spam.el (spam-blackhole-good-server-regex): Ditto.
8152
8153 2004-11-25 Katsumi Yamaoka <yamaoka@jpl.org>
8154
8155 * mml.el (mml-preview): Widen the message buffer before copying
8156 the contents to the preview buffer; sort headers before previewing.
8157
8158 * message.el (message-hidden-headers): Fix the way to avoid a bug
8159 in the `repeat' widget in Emacs 21.3 or earlier.
8160
8161 2004-11-25 Katsumi Yamaoka <yamaoka@jpl.org>
8162
8163 * message.el (message-hidden-headers): Default to "^References:".
8164 Improve customization type. Suggested by Reiner Steib
8165 <Reiner.Steib@gmx.de>.
8166
8167 2004-11-25 Romain Francoise <romain@orebokech.com>
8168
8169 * message.el (message-strip-forbidden-properties): Remove check for
8170 obsolete `message-hidden' text property, hidden headers are not
8171 accessible in the buffer anymore.
8172
8173 2004-11-22 Romain Francoise <romain@orebokech.com>
8174
8175 * message.el (message-header-format-alist): Add `From' in list
8176 so that it can be sorted.
8177 (message-fix-before-sending): Widen and sort headers before
8178 sending.
8179 (message-hide-headers): Use narrowing to hide headers by moving
8180 them to the top of the buffer and narrowing to the region
8181 underneath.
8182
8183 2004-11-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
8184
8185 * message.el (message-strip-forbidden-properties): Bind
8186 buffer-read-only (etc) to nil.
8187
8188 2004-11-23 Katsumi Yamaoka <yamaoka@jpl.org>
8189
8190 * rfc2047.el (rfc2047-header-encoding-alist): Add In-Reply-To to
8191 address-mime. Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
8192
8193 2004-11-22 Marek Martin <marek.martin@mum.pri.ee> (tiny change)
8194
8195 * nnfolder.el (nnfolder-request-create-group): Save current buffer.
8196
8197 2004-11-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
8198
8199 * dns.el (query-dns): Use sit-for to time instead of
8200 accept-process-output, since that doesn't seem to work on udp
8201 sockets.
8202
8203 2004-11-17 Katsumi Yamaoka <yamaoka@jpl.org>
8204
8205 * rfc2047.el (rfc2047-encode-region): Encode bogus delimiters.
8206
8207 2004-11-15 Jesper Harder <harder@ifa.au.dk>
8208
8209 * pop3.el (pop3-leave-mail-on-server): Don't quote nil in
8210 doc string. Improve doc string.
8211
8212 2004-11-15 Katsumi Yamaoka <yamaoka@jpl.org>
8213
8214 * nntp.el (nntp-request-update-info): Return nil if
8215 nntp-marks-is-evil is true so that gnus-get-unread-articles-in-group
8216 may not call gnus-activate-group which uselessly issues the GROUP
8217 commands for all nntp groups and wastes time. Reported by Romain
8218 Francoise <romain@orebokech.com>.
8219
8220 * gnus-start.el (gnus-get-unread-articles): Remove redundant test.
8221
8222 2004-11-15 Simon Josefsson <jas@extundo.com>
8223
8224 * gnus-art.el (gnus-header-button-alist): Handle URLs in OpenPGP:
8225 headers separately.
8226 (gnus-button-openpgp): New function, inspired by Jochen Küpper
8227 <jochen-+It19tn3Rl9sbm7dSapR3bNAH6kLmebB@public.gmane.org>.
8228
8229 2004-11-14 Reiner Steib <Reiner.Steib@gmx.de>
8230
8231 * gnus-start.el (gnus-convert-old-newsrc):
8232 Assign legacy-gnus-agent to 5.10.7.
8233
8234 2004-11-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
8235
8236 * gnus-art.el (article-unsplit-urls): Don't anchor urls to the
8237 start of the lines.
8238
8239 2004-11-14 Magnus Henoch <mange@freemail.hu>
8240
8241 * hashcash.el (hashcash-default-payment): Change default to 20
8242 (hashcash-default-accept-payment): Change default to 20
8243 (hashcash-process-alist): New variable
8244 (hashcash-generate-payment-async): Add
8245 (hashcash-already-paid-p): Add
8246 (hashcash-insert-payment): Don't generate payments twice
8247 (hashcash-insert-payment-async): Add
8248 (hashcash-insert-payment-async-2): Add
8249 (hashcash-cancel-async): Add
8250 (hashcash-wait-async): Add
8251 (hashcash-processes-running-p): Add
8252 (hashcash-wait-or-cancel): Add
8253 (mail-add-payment): New optional argument. Conditionally start
8254 asynchronous calculation.
8255 (mail-add-payment-async): Add
8256
8257 * message.el (message-send-mail): Wait for asynchronous hashcash
8258 results. Don't clobber existing X-Hashcash headers.
8259 (message-setup-1): Call mail-add-payment-async when
8260 message-generate-hashcash is non-nil.
8261
8262 2004-11-11 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
8263
8264 * message.el (message-use-alternative-email-as-from): Examine the
8265 From header as well; use message-make-from in order to include a
8266 user's full name.
8267
8268 2004-11-10 Katsumi Yamaoka <yamaoka@jpl.org>
8269
8270 * gnus-art.el (gnus-emphasis-alist): Don't hide asterisks by
8271 default; improve customization type.
8272 (gnus-emphasis-custom-with-format): New macro.
8273 (gnus-emphasis-custom-value-to-external): New function.
8274 (gnus-emphasis-custom-value-to-internal): New function.
8275
8276 2004-11-09 Lars Magne Ingebrigtsen <larsi@gnus.org>
8277
8278 * dns.el (query-dns): Resolve reverse addresses.
8279
8280 2004-10-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
8281
8282 * gnus-group.el (gnus-group-get-new-news): Use it.
8283
8284 * gnus-start.el (gnus-check-reasonable-setup): New function.
8285
8286 2004-11-07 Katsumi Yamaoka <yamaoka@jpl.org>
8287
8288 * gnus-msg.el (gnus-configure-posting-styles): Don't cause the
8289 "Args out of range" error. Reported by Arnaud Giersch
8290 <arnaud.giersch@free.fr>.
8291
8292 2004-11-07 Stefan Wiens <s.wi@gmx.net> (tiny change)
8293
8294 * gnus-sum.el (gnus-summary-clear-local-variables): Use symbolp.
8295
8296 2004-11-04 Richard M. Stallman <rms@gnu.org>
8297
8298 * spam.el (spam group): Add :version.
8299
8300 * pgg-def.el (pgg group): Add :version.
8301
8302 2004-11-04 Katsumi Yamaoka <yamaoka@jpl.org>
8303
8304 * gnus-art.el (gnus-article-edit-article): Don't associate the
8305 article buffer with a draft file. This is a temporary measure
8306 against the 2004-08-22 change to gnus-article-edit-mode.
8307
8308 2004-11-02 Katsumi Yamaoka <yamaoka@jpl.org>
8309
8310 * html2text.el (html2text-get-attr): Remove unused argument `tag'.
8311 (html2text-format-tags): Remove unused variable `attr'.
8312
8313 2004-11-01 Reiner Steib <Reiner.Steib@gmx.de>
8314
8315 * gnus-msg.el (gnus-summary-resend-default-address): Add :version.
8316
8317 * spam-stat.el (spam-stat): Add :version.
8318
8319 * sieve.el (sieve): Add :version.
8320
8321 * sha1.el (sha1): Add :version.
8322 (sha1-use-external): Remove redundant version.
8323
8324 * nnmail.el (nnmail-split-fancy-with-parent-ignore-groups)
8325 (nnmail-cache-ignore-groups, nnmail-spool-hook)
8326 (nnmail-split-fancy-match-partial-words)
8327 (nnmail-split-lowercase-expanded): Add :version.
8328
8329 * nndiary.el (nndiary): Add :version.
8330
8331 * mml2015.el (mml2015-unabbrev-trust-alist): Add :version.
8332
8333 * mml-sec.el (mml-default-sign-method)
8334 (mml-default-encrypt-method, mml-signencrypt-style-alist):
8335 Add :version.
8336
8337 * mm-uu.el (mm-uu-diff-groups-regexp): Add :version.
8338
8339 * mm-url.el (mm-url-use-external, mm-url-program)
8340 (mm-url-arguments): Add :version.
8341
8342 * mm-decode.el (mm-inline-text-html-with-w3m-keymap)
8343 (mm-attachment-file-modes, mm-decrypt-option)
8344 (mm-w3m-safe-url-regexp): Add :version.
8345
8346 * message.el (message-cite-prefix-regexp)
8347 (message-sendmail-envelope-from, message-minibuffer-local-map)
8348 (message-user-fqdn, message-completion-alist): Add :version.
8349
8350 * gnus-win.el (gnus-configure-windows-hook)
8351 (gnus-use-frames-on-any-display): Add :version.
8352
8353 * gnus-art.el (gnus-article-address-banner-alist)
8354 (gnus-treat-unsplit-urls, gnus-treat-unfold-headers)
8355 (gnus-treat-from-picon, gnus-treat-mail-picon)
8356 (gnus-treat-x-pgp-sig): Add :version.
8357
8358 * gnus-sum.el (gnus-spam-mark, gnus-recent-mark)
8359 (gnus-undownloaded-mark, gnus-summary-article-move-hook)
8360 (gnus-summary-article-delete-hook)
8361 (gnus-summary-display-while-building): Add :version.
8362
8363 * gnus-start.el (gnus-subscribe-newsgroup-hooks)
8364 (gnus-get-top-new-news-hook):Add :version.
8365
8366 * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
8367 (gnus-server-closed-face, gnus-server-denied-face): Add :version.
8368
8369 * gnus-registry.el (gnus-registry): Add :version.
8370
8371 * gnus-spec.el (gnus-use-correct-string-widths)
8372 (gnus-make-format-preserve-properties): Add :version.
8373
8374 * gnus.el (gnus-group-charter-alist)
8375 (gnus-group-fetch-control-use-browse-url)
8376 (gnus-install-group-spam-parameters): Add :version.
8377
8378 * gnus-diary.el (gnus-diary): Add :version.
8379
8380 * gnus-delay.el (gnus-delay): Add :version.
8381
8382 * gnus-cite.el (gnus-cite-unsightly-citation-regexp)
8383 (gnus-cite-ignore-quoted-from, gnus-cite-attribution-face)
8384 (gnus-cite-blank-line-after-header, gnus-article-boring-faces):
8385 Add :version.
8386
8387 * gnus-agent.el (gnus-agent-max-fetch-size)
8388 (gnus-agent-enable-expiration, gnus-agent-queue-mail)
8389 (gnus-agent-prompt-send-queue): Add :version.
8390
8391 * deuglify.el (gnus-outlook-deuglify): Add :version.
8392
8393 * html2text.el: Beautify code. Improve doc strings. Some
8394 checkdoc cleanup.
8395 (html2text-get-attr, html2text-fix-paragraph): Simplify code.
8396
8397 2004-11-01 Alfred M. Szmidt <ams@kemisten.nu> (tiny change)
8398
8399 * html2text.el (html2text-format-tag-list): Add "strong" and "em".
8400
8401 2004-10-29 Teodor Zlatanov <tzz@lifelogs.com>
8402
8403 * gnus-registry.el (gnus-registry-hashtb): Create the registry
8404 when package is loaded.
8405
8406 * spam.el (spam-summary-score-preferred-header): Add global preference
8407 for people who want to override the default SpamAssassin over
8408 Bogofilter preference (when both are set).
8409 (spam-necessary-extra-headers): Add spam-use-bogofilter as an option.
8410 (spam-user-format-function-S): Check
8411 spam-summary-score-preferred-header.
8412 (spam-extra-header-to-number): Add X-Bogosity header parsing.
8413 (spam-user-format-function-S): Format the score correctly.
8414
8415 2004-10-29 Katsumi Yamaoka <yamaoka@jpl.org>
8416
8417 * gnus-msg.el (gnus-configure-posting-styles): Work with empty
8418 signature file. Suggested by Manoj Srivastava
8419 <srivasta@golden-gryphon.com>.
8420
8421 * mm-util.el (mm-coding-system-priorities): Prefer iso-8859-1 than
8422 iso-2022-jp even in the Japanese language environment.
8423 Suggested by Jason Rumney <jasonr@gnu.org>.
8424
8425 2004-10-28 Katsumi Yamaoka <yamaoka@jpl.org>
8426
8427 * gnus-sum.el (gnus-update-summary-mark-positions): Allow users to
8428 use the same characters as the dummy marks; make it free from
8429 getting affected by the language environment.
8430 (gnus-summary-read-group-1): Update mark positions only when the
8431 format spec is updated.
8432
8433 * gnus-spec.el (gnus-update-format-specifications): Return a list
8434 of updated types.
8435
8436 2004-10-27 Katsumi Yamaoka <yamaoka@jpl.org>
8437
8438 * gnus-start.el (gnus-check-reasonable-setup): Use fboundp instead
8439 of boundp to check if display-warning is available.
8440
8441 2004-10-26 Teodor Zlatanov <tzz@lifelogs.com>
8442
8443 * nnimap.el (nnimap-open-connection): Fix prog1/prog2 bug.
8444
8445 2004-10-26 Katsumi Yamaoka <yamaoka@jpl.org>
8446
8447 * nnspool.el (nnspool-spool-directory): Use news-path if the
8448 news-directory variable is not bound.
8449
8450 * gnus-start.el (gnus-check-reasonable-setup): Use an alternative
8451 function instead of display-warning if it is not available.
8452
8453 2004-10-26 Reiner Steib <Reiner.Steib@gmx.de>
8454
8455 * gnus-agent.el (gnus-agent-expire-group-1): Fix last merge from
8456 v5-10: Use `point-at-bol'.
8457
8458 2004-10-26 Simon Josefsson <jas@extundo.com>
8459
8460 * hashcash.el: Fix URL in comment, reported by Cheng Gao
8461 <chenggao@gmail.com>.
8462
8463 2004-10-25 Reiner Steib <Reiner.Steib@gmx.de>
8464
8465 * html2text.el (html2text-buffer-head): Remove. Use `goto-char'
8466 instead.
8467
8468 2004-10-25 Teodor Zlatanov <tzz@lifelogs.com>
8469
8470 * nnimap.el (nnimap-remove-server-from-buffer-alist): Add function
8471 to remove a server from the nnimap-server-buffer-alist.
8472 (nnimap-open-connection, nnimap-close-server): Use it.
8473
8474 * gnus-encrypt.el: Remove file in favor of encrypt.el.
8475
8476 2004-10-21 Katsumi Yamaoka <yamaoka@jpl.org>
8477
8478 * mm-view.el (mm-display-inline-fontify): Inhibit font-lock when
8479 running the major-mode function.
8480
8481 2004-10-19 Katsumi Yamaoka <yamaoka@jpl.org>
8482
8483 * gnus-sum.el (gnus-update-summary-mark-positions): Search for
8484 dummy marks in the right way.
8485
8486 2004-10-18 David Edmondson <dme@dme.org>
8487
8488 * mm-view.el (mm-w3m-cid-retrieve-1): Don't use recursive call
8489 excessively.
8490
8491 2004-10-18 Teodor Zlatanov <tzz@lifelogs.com>
8492
8493 * gnus-util.el (gnus-split-references): Accept a nil references
8494 string and go on blissfully.
8495
8496 * gnus-registry.el (gnus-registry-split-fancy-with-parent): Catch
8497 cases where the references string is non-nil but has no references.
8498
8499 * encrypt.el: Add autoload tags.
8500
8501 * spam.el (spam-resolve-registrations-routine): Remove article
8502 from unregistration list too. Reported by David Hanak
8503 <dhanak@isis.vanderbilt.edu>
8504
8505 2004-10-18 Reiner Steib <Reiner.Steib@gmx.de>
8506
8507 * gnus-art.el (gnus-copy-article-ignored-headers): Default to
8508 nil. Changed custom type.
8509
8510 2004-10-17 Reiner Steib <Reiner.Steib@gmx.de>
8511
8512 * gnus-art.el (gnus-copy-article-ignored-headers): New variable.
8513
8514 * gnus-sum.el (gnus-summary-move-article): Use it.
8515
8516 2004-10-15 Teodor Zlatanov <tzz@lifelogs.com>
8517
8518 * encrypt.el: Add autoload cookies.
8519
8520 * spam.el (spam-backend-article-list-property)
8521 (spam-backend-get-article-todo-list)
8522 (spam-backend-put-article-todo-list, )
8523 (spam-summary-prepare-exit, spam-resolve-registrations-routine):
8524 Resolve registrations separately.
8525 (spam-register-routine): Format comments.
8526 (spam-unregister-routine, spam-register-routine): Always call with
8527 specific-articles, no default list.
8528 (spam-summary-prepare-exit): Use the spam-classifications function.
8529
8530 * netrc.el (autoload, netrc-parse): Use encrypt.el instead of
8531 gnus-encrypt.el.
8532
8533 * encrypt.el: Copied from gnus-encrypt.el.
8534
8535 * gnus-encrypt.el: Commented that it's obsolete.
8536
8537 2004-10-15 Reiner Steib <Reiner.Steib@gmx.de>
8538
8539 * gnus-score.el (gnus-adaptive-pretty-print): New variable.
8540 (gnus-score-save): Use it.
8541
8542 * message.el (message-bury): Use `window-dedicated-p'.
8543
8544 2004-10-15 Simon Josefsson <jas@extundo.com>
8545
8546 * pop3.el (top-level): Don't require nnheader.
8547 (pop3-read-timeout): Add.
8548 (pop3-accept-process-output): Add.
8549 (pop3-read-response, pop3-retr): Use it.
8550
8551 2004-10-14 Teodor Zlatanov <tzz@lifelogs.com>
8552
8553 * spam.el (spam-register-routine): Move comment.
8554 (spam-verify-bogofilter): Use 'unknown for the initial
8555 spam-bogofilter-valid state, not 'never.
8556
8557 * netrc.el (netrc-machine-user-or-password): Add convenience wrapper
8558 for netrc-machine.
8559
8560 * nnimap.el (nnimap-open-connection): Use
8561 netrc-machine-user-or-password.
8562
8563 2004-10-17 Richard M. Stallman <rms@gnu.org>
8564
8565 * gnus-registry.el (gnus-registry-unload-hook):
8566 Set as a variable with add-hook.
8567
8568 * nnspool.el (nnspool-spool-directory): Use news-directory instead
8569 of news-path.
8570
8571 * spam-stat.el (spam-stat-unload-hook): Set as a variable w/ add-hook.
8572
8573 * spam.el: Delete duplicate `provide'.
8574 (spam-unload-hook): Set as a variable with add-hook.
8575
8576 2004-10-15 Reiner Steib <Reiner.Steib@gmx.de>
8577
8578 * pop3.el (pop3-leave-mail-on-server): Describe possible problems
8579 in the doc string.
8580
8581 * message.el (message-ignored-news-headers)
8582 (message-ignored-supersedes-headers)
8583 (message-ignored-resent-headers)
8584 (message-forward-ignored-headers): Improve custom type.
8585
8586 2004-10-13 Katsumi Yamaoka <yamaoka@jpl.org>
8587
8588 * message.el (message-tokenize-header): Fix 2004-09-06 change
8589 which used point-min in the wrong place.
8590
8591 2004-10-12 Simon Josefsson <jas@extundo.com>
8592
8593 * tls.el (tls-certtool-program): New variable.
8594 (tls-certificate-information): New function, based on
8595 ssl-certificate-information.
8596
8597 2004-10-12 Katsumi Yamaoka <yamaoka@jpl.org>
8598
8599 * compface.el: Move the version of ELisp-based uncompface program
8600 to the contrib directory because of the copyright problem.
8601
8602 2004-10-12 Reiner Steib <Reiner.Steib@gmx.de>
8603
8604 * message.el (message-kill-buffer): Raise the current frame.
8605
8606 2004-10-10 Reiner Steib <Reiner.Steib@gmx.de>
8607
8608 * gnus-sum.el: Mention that multibyte characters don't work as marks.
8609
8610 * gnus.el (message-y-or-n-p): Autoload.
8611
8612 * pop3.el (pop3-maildrop, pop3-mailhost, pop3-port)
8613 (pop3-password-required, pop3-authentication-scheme)
8614 (pop3-leave-mail-on-server): Made customizable.
8615 (pop3): New custom group.
8616 (pop3-retr): Remove `sleep-for' statements.
8617 Suggested by Dave Love <fx@gnu.org>.
8618
8619 * nnheader.el (nnheader-read-timeout): Explain 1.0 timeout for
8620 Windows/DOS.
8621
8622 * imap.el (imap-parse-flag-list, imap-parse-body-extension)
8623 (imap-parse-body): Fix incorrect use of `assert'. Suggested by
8624 Dave Love <fx@gnu.org>.
8625
8626 * mml.el (mml-minibuffer-read-disposition): Require match.
8627 Suggested by Dave Love <fx@gnu.org>.
8628
8629 2004-10-11 Reiner Steib <Reiner.Steib@gmx.de>
8630
8631 * gnus-group.el (gnus-group-delete-group): Change "\t." to " " in
8632 doc string.
8633
8634 2004-10-08 Katsumi Yamaoka <yamaoka@jpl.org>
8635
8636 * mm-uu.el (mm-uu-dissect-text-parts): Support all text/* types.
8637
8638 2004-10-07 TSUCHIYA Masatoshi <tsuchiya@namazu.org>
8639
8640 * gnus-art.el (gnus-mime-display-single): Call `mm-display-inline'
8641 instead of calling `mm-insert-inline', to decode text/* parts
8642 before displaying them.
8643
8644 2004-10-07 Katsumi Yamaoka <yamaoka@jpl.org>
8645
8646 * mm-uu.el (mm-uu-text-plain-type): New variable.
8647 (mm-uu-pgp-signed-extract-1): Use it.
8648 (mm-uu-pgp-encrypted-extract-1): Use it.
8649 (mm-uu-dissect): Allow MIME type and parameters as an optional arg;
8650 bind mm-uu-text-plain-type with that value.
8651 (mm-uu-dissect-text-parts): Pass MIME type and parameters to
8652 mm-uu-dissect.
8653
8654 2004-10-06 Katsumi Yamaoka <yamaoka@jpl.org>
8655
8656 * gnus-group.el (gnus-update-group-mark-positions):
8657 * gnus-sum.el (gnus-update-summary-mark-positions):
8658 * message.el (message-check-news-body-syntax):
8659 * gnus-msg.el (gnus-debug): Use mm-string-as-multibyte instead
8660 of string-as-multibyte.
8661
8662 2004-10-05 Juri Linkov <juri@jurta.org>
8663
8664 * gnus-group.el (gnus-update-group-mark-positions):
8665 * gnus-sum.el (gnus-update-summary-mark-positions):
8666 * message.el (message-check-news-body-syntax):
8667 * gnus-msg.el (gnus-debug): Use `string-as-multibyte' to convert
8668 8-bit unibyte values to a multibyte string for search functions.
8669
8670 2004-10-06 Katsumi Yamaoka <yamaoka@jpl.org>
8671
8672 * mm-uu.el (mm-uu-dissect): Allow optional arg.
8673 (mm-uu-dissect-text-parts): New function.
8674
8675 * gnus-art.el (gnus-display-mime): Use mm-uu-dissect-text-parts to
8676 dissect text parts.
8677
8678 * gnus-sum.el (gnus-summary-insert-subject): Remove redundant setq.
8679 (gnus-summary-force-verify-and-decrypt): Revert 2004-08-18 change.
8680
8681 * mm-decode.el (mm-dissect-singlepart): Revert 2004-08-18 change.
8682
8683 * gnus-topic.el (gnus-topic-hierarchical-parameters): Use
8684 gnus-current-topics instead of gnus-current-topic.
8685
8686 2004-10-06 Jesper Harder <harder@ifa.au.dk>
8687
8688 * gnus-sum.el (gnus-summary-show-article): Use with-current-buffer.
8689
8690 2004-10-05 Jesper Harder <harder@ifa.au.dk>
8691
8692 * nnsoup.el (nnsoup-read-active-file): Use dolist, mapc or last
8693 where approriate.
8694
8695 * nnml.el (nnml-generate-active-info): do.
8696
8697 * nndiary.el (nndiary-generate-active-info): do.
8698
8699 * gnus-topic.el (gnus-topic-hierarchical-parameters): do.
8700 (gnus-topic-move): do.
8701
8702 * gnus-sum.el (gnus-data-enter-list, gnus-summary-process-mark-set)
8703 (gnus-summary-set-local-parameters, gnus-summary-read-document): do.
8704
8705 * gnus-srvr.el (gnus-server-prepare)
8706 (gnus-server-open-all-servers): do.
8707
8708 * gnus-msg.el (gnus-summary-cancel-article)
8709 (gnus-summary-resend-message)
8710 (gnus-summary-mail-crosspost-complaint): do.
8711
8712 * gnus-move.el (gnus-change-server): do.
8713
8714 * gnus-group.el (gnus-group-unmark-all-groups)
8715 (gnus-group-set-current-level): do.
8716
8717 2004-10-04 Simon Josefsson <jas@extundo.com>
8718
8719 * message.el (message-generate-hashcash): Doc fix.
8720
8721 2004-10-02 Kevin Greiner <kgreiner@compsol.cc>
8722
8723 * nnagent.el (nnagent-request-type): Bind gnus-agent to nil to
8724 avoid infinite recursion via gnus-get-function.
8725
8726 2004-10-02 Jesper Harder <harder@ifa.au.dk>
8727
8728 * mm-partial.el (mm-partial-find-parts): Use with-current-buffer.
8729
8730 * nnfolder.el (nnfolder-generate-active-file): Use dolist.
8731
8732 * nnmail.el (nnmail-split-history): do.
8733
8734 * nnml.el (nnml-generate-nov-databases-1, nnml-request-rename-group)
8735 (nnml-request-delete-group): do.
8736
8737 * nnslashdot.el (nnslashdot-read-groups): do.
8738
8739 * nnsoup.el (nnsoup-delete-unreferenced-message-files): do.
8740 (nnsoup-unpack-packets, nnsoup-make-active): Simplify.
8741
8742 * nnspool.el (nnspool-find-id): Use with-temp-buffer.
8743 (nnspool-sift-nov-with-sed): Use last
8744 (nnspool-retrieve-headers-with-nov): Use mapc.
8745 (nnspool-request-newgroups): Use dolist.
8746 (nnspool-request-group): Use last.
8747
8748 * nntp.el (nntp-read-server-type): Use dolist.
8749
8750 * nnvirtual.el (nnvirtual-create-mapping)
8751 (nnvirtual-update-read-and-marked): Use dolist.
8752 (nnvirtual-convert-headers): Simplify.
8753
8754 2004-10-01 Kevin Greiner <kgreiner@compsol.cc>
8755
8756 * gnus-agent.el (gnus-agent-synchronize-group-flags): Added
8757 support for sync'ing tick marks.
8758
8759 2004-10-01 Katsumi Yamaoka <yamaoka@jpl.org>
8760
8761 * gnus-sum.el (gnus-summary-toggle-header): Make it work even if
8762 there's no visible header.
8763
8764 2004-10-01 Kevin Greiner <kgreiner@compsol.cc>
8765
8766 * gnus-agent.el (gnus-agent-synchronize-group-flags): When
8767 necessary, pass full group name to gnus-request-set-marks.
8768
8769 2004-10-01 Simon Josefsson <jas@extundo.com>
8770
8771 * mailcap.el (mailcap-mime-data): Add pdf. Remove non-free
8772 acroread.
8773
8774 2004-10-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
8775
8776 * spam-report.el (spam-report-gmane): Fix interactive.
8777
8778 * gnus-art.el (gnus-treat-body-boundary): Only do stuff under X.
8779
8780 * gnus-agent.el (gnus-agent-synchronize-flags-server): Be silent
8781 when writing file.
8782 (gnus-agent-synchronize-flags): Don't default to being
8783 interactive.
8784
8785 2004-09-30 Simon Josefsson <jas@extundo.com>
8786
8787 * message.el (message-generate-hashcash): Add.
8788 (message-send-mail): Use it, call mail-add-payment.
8789
8790 2004-09-29 Teodor Zlatanov <tzz@lifelogs.com>
8791
8792 * spam.el (spam-verify-bogofilter): Use -V, not -sV option.
8793
8794 2004-09-28 Kevin Greiner <kgreiner@compsol.cc>
8795
8796 * gnus-agent.el (gnus-agent-synchronize-group-flags): Replaced
8797 gnus-requst-update-info with explicit code to sync the in-memory
8798 info read flags with the marks being sync'd to the backend.
8799
8800 *gnus-util.el (gnus-pp): Added optional stream to match pp API.
8801
8802 2004-09-28 Teodor Zlatanov <tzz@lifelogs.com>
8803
8804 * spam.el (spam-verify-bogofilter): Add new function.
8805 (spam-check-bogofilter)
8806 (spam-bogofilter-register-with-bogofilter): Use it.
8807 (spam-verify-bogofilter): Add small fixes.
8808
8809 2004-09-28 Simon Josefsson <jas@extundo.com>
8810
8811 * hashcash.el (hashcash-generate-payment): Revert.
8812
8813 2004-09-28 Teodor Zlatanov <tzz@lifelogs.com>
8814
8815 * gnus-registry.el (gnus-registry-split-fancy-with-parent): Use
8816 gnus-extract-references instead of gnus-split-references.
8817
8818 * gnus-util.el (gnus-extract-references): Add new function, analogous
8819 to gnus-split-references but extracts only the message-ID without
8820 anything extra.
8821
8822 * hashcash.el (hashcash-generate-payment)
8823 (hashcash-check-payment): Do the right thing if hashcash-path is
8824 nil (because the hashcash program could not be found).
8825
8826 * spam.el (spam-use-hashcash): Remove comment.
8827
8828 2004-09-27 Jesper Harder <harder@ifa.au.dk>
8829
8830 * gnus-cache.el (gnus-cache-possibly-remove-articles-1)
8831 (gnus-cache-enter-article, gnus-cache-remove-article)
8832 (gnus-cache-braid-heads, gnus-cache-generate-active): Use dolist.
8833
8834 * gnus-async.el (gnus-async-prefetch-remove-group): do.
8835
8836 * gnus-art.el (article-hide-boring-headers)
8837 (article-translate-strings, article-display-face)
8838 (gnus-article-mime-match-handle-first)
8839 (gnus-article-highlight-headers)
8840 (gnus-article-add-buttons-to-head): do.
8841
8842 2004-09-27 Simon Josefsson <jas@extundo.com>
8843
8844 * hashcash.el: New version, from
8845 http://users.actrix.co.nz/mycroft/hashcash.el. Previously in
8846 ../contrib/.
8847
8848 2004-09-27 Katsumi Yamaoka <yamaoka@jpl.org>
8849
8850 * mm-decode.el (mm-copy-to-buffer): Don't use set-buffer-multibyte.
8851
8852 2004-09-26 Jesper Harder <harder@ifa.au.dk>
8853
8854 * gnus-dup.el (gnus-dup-open): Use mapc.
8855 (gnus-dup-enter-articles, gnus-dup-suppress-articles): Use dolist.
8856
8857 (gnus-dup-enter-articles): Remove excess ID's from gnus-dup-hashtb.
8858 Reported by Stefan Wiens <s.wi@gmx.net>.
8859
8860 * gnus.el (gnus-shutdown): Use dolist.
8861
8862 * gnus-undo.el (gnus-undo): Use mapc.
8863
8864 * nnrss.el (nnrss-generate-active): do.
8865
8866 * message.el (message-cite-original-without-signature)
8867 (message-cite-original): Use mapc.
8868 (message-do-actions, message-make-forward-subject): Use dolist.
8869
8870 2004-09-25 Kevin Greiner <kgreiner@compsol.cc>
8871
8872 * gnus-agent.el (gnus-agent-check-overview-buffer): Fixed range of
8873 deletion to remove entire duplicate line. Fixes merged article
8874 number bug.
8875
8876 2004-09-25 Kevin Greiner <kgreiner@compsol.cc>
8877
8878 * gnus-agent.el (gnus-agent-possibly-synchronize-flags): Ignore
8879 servers that are offline. Avoids having gnus-agent-toggle-plugged
8880 first ask if you want to open a server and then, even when you
8881 responded with no, asking if you want to synchronize the server's
8882 flags.
8883 (gnus-agent-synchronize-flags-server): Rewrote read loop to handle
8884 multi-line expressions.
8885 (gnus-agent-synchronize-group-flags): New internal function.
8886 Updates marks in memory (in the info structure) AND in the
8887 backend.
8888
8889 * gnus-util.el (gnus-remassoc): Fixed typo in documentation.
8890
8891 * nnagent.el (nnagent-request-set-mark): Use
8892 gnus-agent-synchronize-group-flags, not backend's request-set-mark
8893 method, to ensure that synchronization updates marks in the
8894 backend and in the info (in memory) structure.
8895
8896 2004-09-24 Katsumi Yamaoka <yamaoka@jpl.org>
8897
8898 * gnus-uu.el (gnus-uu-digest-mail-forward): Obey the process/prefix
8899 convention fully; don't miss the root article of a thread; make
8900 the X-Draft-From header with correct article numbers.
8901
8902 2004-09-23 Kevin Greiner <kgreiner@compsol.cc>
8903
8904 * gnus-agent.el (gnus-agent-synchronize-flags-server): Do nothing
8905 unless plugged. Disable the agent so that an open failure causes
8906 an error.
8907
8908 * gnus-int.el (gnus-request-set-mark, gnus-request-update-mark):
8909 Reverted 2004-09-21 change. The backend must be opened while
8910 synchronizing flags even when the backend stores the flags
8911 locally.
8912
8913 2004-09-23 Reiner Steib <Reiner.Steib@gmx.de>
8914
8915 * gnus-msg.el (gnus-configure-posting-styles): Narrow to headers
8916 in `header' match. Reported by Svend Tollak Munkejord.
8917
8918 * message.el (message-cite-original): Fix use of
8919 `message-cite-articles-with-x-no-archive'.
8920
8921 2004-09-22 Katsumi Yamaoka <yamaoka@jpl.org>
8922
8923 * gnus-win.el (gnus-buffer-configuration): Add mml-preview.
8924 (gnus-window-to-buffer): Ditto.
8925
8926 * mml.el (mml-preview-buffer): New variable.
8927 (mml-preview): Manage window layout with gnus-buffer-configuration.
8928
8929 * gnus-msg.el (gnus-setup-message): Put article numbers into the
8930 X-Draft-From header even if those articles aren't quoted.
8931
8932 2004-09-21 Kevin Greiner <kgreiner@compsol.cc>
8933
8934 * gnus-int.el (gnus-servers-that-use-local-marks): New variable.
8935 (gnus-request-set-mark, gnus-request-update-mark): Use new
8936 g-s-t-u-l-m to decide to use backend even when unplugged.
8937
8938 2004-09-21 Katsumi Yamaoka <yamaoka@jpl.org>
8939
8940 * gnus-msg.el (gnus-inews-make-draft-meta-information): Don't add
8941 a trailing whitespace. Suggested by Cheng Gao <chenggao@gmail.com>.
8942
8943 2004-09-20 Simon Josefsson <jas@extundo.com>
8944
8945 * mm-util.el (mm-charset-synonym-alist): Map "unicode" to
8946 "utf-16-le".
8947
8948 2004-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
8949
8950 * mm-decode.el (mm-copy-to-buffer): Preserve the data's unibyteness.
8951
8952 2004-09-19 Reiner Steib <Reiner.Steib@gmx.de>
8953
8954 * uudecode.el (uudecode-use-external): Add :version.
8955
8956 * smime.el (smime-CA-file, smime-encrypt-cipher)
8957 (smime-dns-server): Add :version.
8958
8959 * smiley.el (gnus-smiley-file-types): Add :version.
8960
8961 * sha1.el (sha1-use-external): Add :version.
8962
8963 * pgg-def.el (pgg-query-keyserver): Add :version.
8964
8965 * nnmail.el (nnmail-fancy-expiry-targets)
8966 (nnmail-mail-splitting-charset, nnmail-mail-splitting-decodes):
8967 Add :version.
8968
8969 * nnimap.el (nnimap-split-download-body, nnimap-dont-close)
8970 (nnimap-retrieve-groups-asynchronous): Add :version.
8971 (nnimap-close-asynchronous): Add :version. Fixed typo in doc string.
8972
8973 * mml.el (mml-content-disposition-parameters)
8974 (mml-insert-mime-headers-always): Add :version.
8975
8976 * mm-util.el (mm-coding-system-priorities): Add :version.
8977
8978 * mm-decode.el (mm-inline-text-html-with-images)
8979 (mm-keep-viewer-alive-types, mm-external-terminal-program)
8980 (mm-verify-option): Add :version.
8981 (mm-text-html-renderer): Change :version.
8982
8983 * message.el (message-fcc-externalize-attachments)
8984 (message-required-headers, message-draft-headers)
8985 (message-subject-trailing-was-query)
8986 (message-subject-trailing-was-ask-regexp)
8987 (message-subject-trailing-was-regexp, message-mark-insert-begin)
8988 (message-mark-insert-end, message-archive-header)
8989 (message-archive-note, message-cross-post-default)
8990 (message-cross-post-note, message-followup-to-note)
8991 (message-cross-post-note-function, message-use-mail-followup-to)
8992 (message-subscribed-address-functions)
8993 (message-subscribed-address-file, message-subscribed-addresses)
8994 (message-subscribed-regexps, message-allow-no-recipients)
8995 (message-yank-cited-prefix, message-signature-insert-empty-line)
8996 (message-hidden-headers, message-hierarchical-addresses)
8997 (message-mail-user-agent, message-use-idna)
8998 (message-valid-fqdn-regexp)
8999 (message-strip-special-text-properties, message-header-synonyms)
9000 (message-beginning-of-line, message-tab-body-function): Add :version.
9001 (message-insert-canlock, message-wide-reply-confirm-recipients):
9002 Change :version.
9003
9004 * mail-source.el (mail-source-ignore-errors): Add :group, :type
9005 and :version.
9006 (mail-source-delete-old-incoming-confirm)
9007 (mail-source-movemail-program): Add :version.
9008
9009 * gnus.el (gnus-parameters, gnus-user-agent): Add :version.
9010 (gnus-agent-cache, gnus-agent): Change :version.
9011
9012 * gnus-util.el (gnus-use-byte-compile): Change :version.
9013
9014 * gnus-sum.el (gnus-summary-make-false-root-always)
9015 (gnus-summary-default-high-score)
9016 (gnus-summary-default-low-score, gnus-auto-goto-ignores)
9017 (gnus-forwarded-mark, gnus-unseen-mark, gnus-no-mark)
9018 (gnus-read-all-available-headers, gnus-article-emulate-mime)
9019 (gnus-sum-thread-tree-root, gnus-sum-thread-tree-false-root)
9020 (gnus-sum-thread-tree-single-indent)
9021 (gnus-sum-thread-tree-vertical, gnus-sum-thread-tree-indent)
9022 (gnus-sum-thread-tree-leaf-with-other)
9023 (gnus-sum-thread-tree-single-leaf): Add :version.
9024 (gnus-summary-display-arrow, gnus-summary-muttprint-program)
9025 (gnus-article-loose-mime): Change :version.
9026
9027 * gnus-start.el (gnus-backup-startup-file)
9028 (gnus-save-startup-file-via-temp-buffer): Add :version.
9029
9030 * gnus-srvr.el (gnus-server-browse-in-group-buffer)
9031 (gnus-server-offline-face): Add :version.
9032
9033 * gnus-score.el (gnus-adaptive-word-length-limit): Add :version.
9034
9035 * gnus-msg.el (gnus-gcc-externalize-attachments)
9036 (gnus-debug-files, gnus-debug-exclude-variables)
9037 (gnus-discouraged-post-methods): Change :version.
9038 (gnus-confirm-mail-reply-to-news)
9039 (gnus-confirm-treat-mail-like-news): Add :version.
9040
9041 * gnus-int.el (gnus-server-unopen-status): Add :version.
9042
9043 * gnus-group.el (gnus-group-jump-to-group-prompt)
9044 (gnus-large-ephemeral-newsgroup)
9045 (gnus-fetch-old-ephemeral-headers): Add :version.
9046
9047 * gnus-fun.el (gnus-x-face-directory)
9048 (gnus-convert-pbm-to-x-face-command)
9049 (gnus-convert-image-to-x-face-command)
9050 (gnus-convert-image-to-face-command): Add :version.
9051
9052 * gnus-delay.el (gnus-delay-default-hour): Add :version.
9053
9054 * gnus-cite.el (gnus-cite-blank-line-after-header)
9055 (gnus-article-boring-faces): Add :version.
9056
9057 * gnus-art.el (gnus-buttonized-mime-types)
9058 (gnus-inhibit-mime-unbuttonizing)
9059 (gnus-treat-display-face)
9060 (gnus-treat-body-boundary): Change :version.
9061 (gnus-body-boundary-delimiter, gnus-picon-databases)
9062 (gnus-treat-strip-cr, gnus-treat-leading-whitespace)
9063 (gnus-treat-date-english, gnus-treat-fold-headers)
9064 (gnus-article-skip-boring, gnus-treat-fold-newsgroups)
9065 (gnus-treat-mail-picon, gnus-treat-wash-html)
9066 (gnus-article-encrypt-protocol)
9067 (gnus-use-idna, gnus-article-over-scroll)
9068 (gnus-mime-display-multipart-alternative-as-mixed)
9069 (gnus-mime-display-multipart-related-as-mixed)
9070 (gnus-button-valid-fqdn-regexp, gnus-button-man-handler)
9071 (gnus-ctan-url, gnus-button-ctan-handler)
9072 (gnus-button-handle-ctan-bogus-regexp)
9073 (gnus-button-ctan-directory-regexp)
9074 (gnus-button-mid-or-mail-regexp, gnus-button-prefer-mid-or-mail)
9075 (gnus-button-mid-or-mail-heuristic-alist, gnus-button-tex-level)
9076 (gnus-button-man-level, gnus-button-emacs-level)
9077 (gnus-button-message-level, gnus-button-browse-level): Add :version.
9078
9079 * gnus-agent.el (gnus-agent-fetched-hook): Add :version.
9080 (gnus-agent-go-online): Change :version.
9081 (gnus-agent-expire-unagentized-dirs)
9082 (gnus-agent-auto-agentize-methods): Add :version.
9083
9084 * flow-fill.el (fill-flowed-display-column)
9085 (fill-flowed-encode-column): Add :version.
9086
9087 * deuglify.el (gnus-outlook-deuglify-unwrap-min)
9088 (gnus-outlook-deuglify-unwrap-max)
9089 (gnus-outlook-deuglify-cite-marks)
9090 (gnus-outlook-deuglify-unwrap-stop-chars)
9091 (gnus-outlook-deuglify-no-wrap-chars)
9092 (gnus-outlook-deuglify-attrib-cut-regexp)
9093 (gnus-outlook-deuglify-attrib-verb-regexp)
9094 (gnus-outlook-deuglify-attrib-end-regexp)
9095 (gnus-outlook-display-hook): Add :version.
9096
9097 * binhex.el (binhex-use-external): Add :version.
9098
9099 2004-09-16 Reiner Steib <Reiner.Steib@gmx.de>
9100
9101 * gnus-sum.el (gnus-fetch-old-headers): Add custom choices `t'
9102 and `invisible'.
9103
9104 2004-09-10 Teodor Zlatanov <tzz@lifelogs.com>
9105
9106 * gnus-registry.el (gnus-registry-trim): Watch out for negatives
9107 in gnus-registry-trim.
9108
9109 2004-09-13 Simon Josefsson <jas@extundo.com>
9110
9111 * dns-mode.el: Add XEmacs auto-mode-alist autoload cookie.
9112
9113 * nnimap.el (nnimap-demule): Revert 2004-08-30 change.
9114
9115 * dns-mode.el (dns-mode): Fix menu for XEmacs, reported by Steve
9116 Youngs <steve@youngs.au.com> and suggested by Katsumi Yamaoka
9117 <yamaoka@jpl.org>.
9118 (dns-mode-font-lock-keywords): Fix faces, reported by Steve Youngs
9119 <steve@youngs.au.com> and suggested by Katsumi Yamaoka
9120 <yamaoka@jpl.org>.
9121
9122 * sieve.el (sieve-manage-mode): Ditto.
9123
9124 2004-09-13 Reiner Steib <Reiner.Steib@gmx.de>
9125
9126 * gnus-sum.el (gnus-summary-copy-article): Fix doc string.
9127
9128 2004-09-11 Simon Josefsson <jas@extundo.com>
9129
9130 * dns-mode.el: Add.
9131
9132 * mm-view.el (mm-display-dns-inline): Add.
9133
9134 * mm-decode.el (mm-inline-media-tests): Add text/dns.
9135 (mm-automatic-display): Ditto.
9136
9137 * mailcap.el (mailcap-mime-data): Add text/dns.
9138 (mailcap-mime-extensions): Map .soa to text/dns.
9139
9140 2004-09-10 Miles Bader <miles@gnu.ai.mit.edu>
9141
9142 * gnus-art.el (article-decode-mime-words, article-babel)
9143 (gnus-article-highlight-signature, gnus-article-add-buttons)
9144 (gnus-signature-toggle): Remove unnecessary bindings of
9145 `inhibit-read-only' inherited from v5.10 merge.
9146
9147 2004-09-08 Reiner Steib <Reiner.Steib@gmx.de>
9148
9149 * nntp.el (nntp): New customization group.
9150 (nntp-authinfo-file): Add customization group.
9151
9152 * mml2015.el (mml2015-unabbrev-trust-alist): Add customization group.
9153
9154 * mml-sec.el (mml-signencrypt-style-alist): Ditto.
9155
9156 * gnus.el (to-address, to-list, subscribed)
9157 (large-newsgroup-initial): Ditto.
9158
9159 * flow-fill.el (fill-flowed-display-column)
9160 (fill-flowed-encode-column): Ditto.
9161
9162 2004-09-06 Stefan <monnier@iro.umontreal.ca>
9163
9164 * message.el (message-tokenize-header, message-send-mail-with-qmail):
9165 Use point-min rather than 1.
9166 (message-send-mail): Use buffer-size rather than point-max.
9167
9168 * gnus-sum.el (gnus-summary-search-article-forward):
9169 Signal a specific `search-failed' rather than a generic `error'.
9170
9171 * gnus-salt.el (gnus-pick-mouse-pick-region): Switch 1 => point-min.
9172 (gnus-generate-vertical-tree): Usue `bobp' rather than compare to 1.
9173 (gnus-highlight-selected-tree): Use point-min rather than 1 and 2.
9174
9175 2004-09-10 Simon Josefsson <jas@extundo.com>
9176
9177 * nndb.el (require): Remove tcp and duplicate cl.
9178
9179 2004-09-10 Katsumi Yamaoka <yamaoka@jpl.org>
9180
9181 * gnus-agent.el (directory-files-and-attributes): Move forward.
9182
9183 2004-09-09 Kevin Greiner <kgreiner@compsol.cc>
9184
9185 * gnus-agent.el (directory-files-and-attributes): Optionally
9186 defined to support XEmacs.
9187
9188 2004-09-09 Kevin Greiner <kgreiner@compsol.cc>
9189
9190 * gnus-agent.el (gnus-agent-cat-groups): Rewrote avoiding defsetf
9191 to avoid run-time CL dependencies.
9192 (gnus-agent-unfetch-articles): New function.
9193 (gnus-agent-fetch-headers): Use gnus-agent-braid-nov to validate
9194 article numbers even when local .overview file is missing.
9195 (gnus-agent-read-article-number): New function. Only accepts
9196 27-bit article numbers.
9197 (gnus-agent-copy-nov-line, gnus-agent-uncached-articles): Use
9198 gnus-agent-read-article-number.
9199 (gnus-agent-braid-nov): Rewrote to validate article numbers coming
9200 from backend while recognizing that article numbers in .overview
9201 must be valid.
9202 (gnus-agent-update-files-total-fetched-for): Use
9203 directory-files-and-attributes to improve performance.
9204 * gnus-int.el (gnus-request-move-article): Use
9205 gnus-agent-unfetch-articles in place of gnus-agent-expire to
9206 improve performance.
9207
9208 * gnus-start.el (gnus-convert-old-newsrc): Changed message text as
9209 some users confused by references to .newsrc when they only have a
9210 .newsrc.eld file.
9211 (gnus-convert-mark-converter-prompt,
9212 gnus-convert-converter-needs-prompt): Fixed use of property list.
9213 * legacy-gnus-agent.el (gnus-agent-convert-to-compressed-agentview-prompt):
9214 New function. Used internally to only display 'gnus converting
9215 files' message when actually necessary.
9216
9217 * gnus-sum.el (): Removed (require 'gnus-agent) as required
9218 methods now autoloaded.
9219
9220 2004-09-03 Katsumi Yamaoka <yamaoka@jpl.org>
9221
9222 * gnus-sum.el (gnus-summary-insert-subject): Remove list
9223 identifiers.
9224
9225 2004-09-02 Reiner Steib <Reiner.Steib@gmx.de>
9226
9227 * gnus-picon.el: Fix indentation and closing parenthesis.
9228
9229 2004-09-01 Simon Josefsson <jas@extundo.com>
9230
9231 * message.el (message-canlock-generate): Require sha1, not
9232 sha1-el. (Can we get rid of this require alltogheter? It is ugly
9233 to require within a function. Sadly, if sha1.el isn't loaded, the
9234 let binding in m-c-g will hide the defcustom definition, which is
9235 bad.)
9236
9237 * canlock.el: Require sha1, not sha1-el.
9238
9239 * message.el: Don't autoload sha1 (there is a autoload cookie in
9240 sha1.el).
9241
9242 * sha1-el.el: Renamed to sha1.el.
9243
9244 2004-08-30 Juanma Barranquero <lektu@terra.es>
9245
9246 * ietf-drums.el (ietf-drums-remove-whitespace): Fix character constant.
9247
9248 2004-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
9249
9250 * nnimap.el (nnimap-demule): Avoid string-as-multibyte.
9251
9252 2004-08-30 Kim F. Storm <storm@cua.dk>
9253
9254 * nntp.el (nntp-authinfo-file): Add :group 'nntp.
9255
9256 * nnimap.el (nnimap-authinfo-file, nnimap-prune-cache):
9257 Add :group 'nnimap.
9258
9259 2004-08-30 Andreas Schwab <schwab@suse.de>
9260
9261 * rfc2231.el (rfc2231-parse-string): Restore whitespace syntax for
9262 ?* and ?\;.
9263
9264 * ietf-drums.el (ietf-drums-syntax-table): Set syntax of ?* ?\;
9265 and ?\' to symbol instead of whitespace.
9266
9267 2004-08-30 Katsumi Yamaoka <yamaoka@jpl.org>
9268
9269 * gnus-agent.el (gnus-agent-restore-gcc): Use ^ and regexp-quote.
9270
9271 * gnus-sum.el (gnus-summary-morse-message): Use search-forward
9272 instead of re-search-forward.
9273
9274 * gnus-uu.el (gnus-uu-save-article): Ditto.
9275 (gnus-uu-post-encode-uuencode): Ditto.
9276
9277 * html2text.el (html2text-clean-list-items): Ditto.
9278 (html2text-clean-dtdd): Ditto.
9279 (html2text-format-tags): Ditto.
9280
9281 * message.el (message-send-mail-with-sendmail): Fix regexp.
9282 (message-fill-field-general): Use search-forward instead of
9283 re-search-forward.
9284 (unbold-region): Ditto.
9285
9286 * nnrss.el (nnrss-request-article): Ditto.
9287
9288 * nnslashdot.el (nnslashdot-request-article): Ditto.
9289
9290 * nnweb.el (nnweb-gmane-wash-article): Ditto.
9291
9292 * gnus-sum.el (gnus-summary-make-menu-bar): Avoid the
9293 "Unrecognized menu descriptor" error in XEmacs.
9294
9295 2004-08-26 Stefan Wiens <s.wi@gmx.net> (tiny change)
9296
9297 * gnus-sum.el (gnus-read-header): Don't remove a header for the
9298 parent article of a sparse article in the thread hashtb.
9299
9300 2004-08-26 David Hedbor <dhedbor@real.com> (tiny change)
9301
9302 * nnmail.el (nnmail-split-lowercase-expanded): New user option.
9303 (nnmail-expand-newtext): Lowercase expanded entries if
9304 nnmail-split-lowercase-expanded is non-nil.
9305
9306 2004-08-26 Katsumi Yamaoka <yamaoka@jpl.org>
9307
9308 * nndoc.el (nndoc-type-alist): Fix regexp in the rfc822-forward entry.
9309
9310 * gnus-group.el (gnus-group-line-format-alist): Convert the value
9311 of gnus-tmp-news-method into string under XEmacs. It will be
9312 passed to gnus-correct-length which takes only a string argument.
9313
9314 2004-08-24 Katsumi Yamaoka <yamaoka@jpl.org>
9315
9316 * gnus-util.el (gnus-bind-print-variables): New macro.
9317 (gnus-prin1): Use it.
9318 (gnus-prin1-to-string): Use it.
9319 (gnus-pp): New function.
9320 (gnus-pp-to-string): New function.
9321
9322 * gnus-cus.el (gnus-agent-cat-prepare-category-field):
9323 Replace pp-to-string with gnus-pp-to-string.
9324 * gnus-eform.el (gnus-edit-form): Replace pp with gnus-pp.
9325 * gnus-group.el (gnus-group-make-kiboze-group): Ditto.
9326 * gnus-msg.el (gnus-debug): Ditto.
9327 * gnus-score.el (gnus-score-save): Ditto.
9328 * gnus-spec.el (gnus-update-format): Replace pp-to-string with
9329 gnus-pp-to-string.
9330 * legacy-gnus-agent.el (gnus-agent-unlist-expire-days): Replace pp
9331 with gnus-pp.
9332 * score-mode.el (gnus-score-pretty-print): Ditto.
9333 * webmail.el (webmail-debug): Ditto.
9334
9335 2004-08-23 Katsumi Yamaoka <yamaoka@jpl.org>
9336
9337 * gnus-art.el (article-display-face, article-display-x-face):
9338 Use buffer-read-only.
9339
9340 2004-08-22 Katsumi Yamaoka <yamaoka@jpl.org>
9341
9342 * gnus-art.el (article-hide-list-identifiers):
9343 Bind inhibit-read-only as t.
9344
9345 2004-08-22 Reiner Steib <Reiner.Steib@gmx.de>
9346
9347 * gnus-mlspl.el (gnus-group-split-update): Fix docstring.
9348
9349 2004-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
9350
9351 * gnus-art.el: Use inhibit-read-only instead of buffer-read-only.
9352 (gnus-narrow-to-page): Don't assume point-min == 1.
9353 (gnus-article-edit-mode): Derive from message-mode.
9354
9355 * gnus-score.el (gnus-score-find-bnews): Simplify and don't assume
9356 point-min == 1.
9357
9358 * imap.el (imap-parse-address-list, imap-parse-body-ext):
9359 Disable incorrect use of `assert'.
9360
9361 * message.el (message-mode): Set comment-start-skip.
9362
9363
9364 2004-08-22 Sam Steingold <sds@gnu.org>
9365
9366 * pop3.el (pop3-leave-mail-on-server): New user variable.
9367 (pop3-movemail): Delete mail only when it is nil.
9368
9369 2004-08-21 Reiner Steib <Reiner.Steib@gmx.de>
9370
9371 * nntp.el (nntp-marks-is-evil): Fix typo in docstring.
9372
9373 * mml.el (mml-preview): Use `pop-to-buffer'.
9374
9375 * message.el (message-goto-mail-followup-to): Insert after "To".
9376 (message-carefully-insert-headers): Add comment.
9377
9378 * gnus.el: Remove unused variable `gnus-article-check-size'.
9379
9380 * gnus-sum.el (gnus-summary-make-menu-bar): Add help texts.
9381
9382 * gnus-art.el (gnus-button-alist): Improve
9383 `gnus-button-handle-library' entry.
9384
9385 2004-08-19 Sebastian Freundt <hroptatyr@gna.org> (tiny change)
9386
9387 * nnmaildir.el (nnmaildir--emlink-p, nnmaildir--enoent-p): Use
9388 downcase, since XEmacs capitalizes error messages differently.
9389
9390 2004-08-18 Jesper Harder <harder@ifa.au.dk>
9391
9392 * nntp.el: Add (require 'gnus) due to reference to
9393 `gnus-directory'. Reported by Matt Swift <swift@alum.mit.edu>.
9394
9395 2004-08-18 Florian Weimer <fw@deneb.enyo.de>
9396
9397 * gnus-sum.el (gnus-summary-force-verify-and-decrypt): Bind
9398 `mm-fill-flowed'.
9399
9400 * mm-decode.el (mm-dissect-singlepart): Check it.
9401
9402 2004-08-17 Teodor Zlatanov <tzz@lifelogs.com>
9403
9404 * nnimap.el (nnimap-open-connection): Add 'imaps' synonym to
9405 'imap' for netrc parsing.
9406
9407 2004-08-16 Reiner Steib <Reiner.Steib@gmx.de>
9408
9409 * mailcap.el (mailcap-mime-data): Mark as risky.
9410
9411 2004-08-15 Katsumi Yamaoka <yamaoka@jpl.org>
9412
9413 * rfc2047.el (rfc2047-encode-region): Assume the close parenthesis
9414 may be included in the encoded word.
9415 (rfc2047-encode): Don't append a space if the encoded word
9416 includes close parenthesis.
9417
9418 2004-08-12 Katsumi Yamaoka <yamaoka@jpl.org>
9419
9420 * rfc2047.el (rfc2047-encode-1, rfc2047-encode): Improve encoding
9421 of text within parentheses.
9422
9423 2004-08-06 Teodor Zlatanov <tzz@lifelogs.com>
9424
9425 * gnus-encrypt.el (gnus-encrypt-insert-file-contents)
9426 (gnus-encrypt-write-file-contents): Make the password key the file
9427 name PLUS the cipher, not just the cipher. Also remove failed
9428 passwords from the cache.
9429
9430 2004-08-06 Simon Josefsson <jas@extundo.com>
9431
9432 * gnus-sum.el (gnus-article-loose-mime): Change default to t. Doc
9433 fix.
9434
9435 2004-08-05 Katsumi Yamaoka <yamaoka@jpl.org>
9436
9437 * rfc2047.el (rfc2047-fold-region): Use trailing whitespace as
9438 LWSP.
9439
9440 2004-08-04 Teodor Zlatanov <tzz@lifelogs.com>
9441
9442 * gnus-registry.el (gnus-registry-split-fancy-with-parent): Try
9443 to append in-reply-to: data to the references: header.
9444
9445 * netrc.el: Remove old encryption support, autoload gnus-encrypt.el
9446 (netrc-parse): Use gnus-encrypt.el functions.
9447
9448 * gnus-encrypt.el: Add new file for encryption support; currently
9449 does only a few GPG ciphers and an internal XOR cipher.
9450
9451 * password.el: Add comments on using password-read-and-add.
9452 (password-read-and-add): Add function to read and add the
9453 password to the cache at once.
9454
9455 2004-07-28 Simon Josefsson <jas@extundo.com>
9456
9457 * pgg-pgp5.el (pgg-pgp5-encrypt-region): Accept sign
9458 parameter (but don't use it, for now).
9459
9460 * imap.el (imap-ssl-open): Use imap-process-connection-type,
9461 instead of hard coding to nil.
9462
9463 2004-07-28 Katsumi Yamaoka <yamaoka@jpl.org>
9464
9465 * mm-view.el (mm-inline-image-emacs): Open lines under an image
9466 as mm-inline-image-xemacs does.
9467
9468 2004-07-26 Simon Josefsson <jas@extundo.com>
9469
9470 * gnus-group.el (gnus-group-group-map, gnus-group-make-menu-bar):
9471 Revert part of 2004-07-17 change below.
9472
9473 2004-07-25 Katsumi Yamaoka <yamaoka@jpl.org>
9474
9475 * rfc2047.el (rfc2047-encode-region): Don't infloop. Suggested by
9476 Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
9477
9478 2004-07-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
9479
9480 * flow-fill.el (fill-flowed): Remove space stuffing, and only do
9481 quotes that actually start with ">" at the beginning of the
9482 lines.
9483
9484 2004-07-23 Katsumi Yamaoka <yamaoka@jpl.org>
9485
9486 * rfc2047.el (rfc2047-encode-region): Fix last change.
9487 (rfc2047-encode-parameter): Remove useless concat.
9488
9489 2004-07-22 Katsumi Yamaoka <yamaoka@jpl.org>
9490
9491 * rfc2047.el (rfc2047-encode-region): Check carefully whether to
9492 encode special characters; fix some kind of misconfigured headers;
9493 signal a real error if debug-on-quit or debug-on-error is non-nil.
9494 (rfc2047-encode-max-chars): New variable.
9495 (rfc2047-encode-1): Use it.
9496 (rfc2047-encode-parameter): New function.
9497
9498 * mml.el (mml-insert-parameter): Remove an excessive space.
9499
9500 2004-07-17 Simon Josefsson <jas@extundo.com>
9501
9502 * gnus-group.el (gnus-group-make-group-simple): Add, suggested by
9503 Kai Grossjohann <kai@emptydomain.de>.
9504 (gnus-group-group-map): Use it, instead of gnus-group-make-group.
9505 (gnus-group-make-menu-bar): Ditto.
9506
9507 * gnus-util.el (gnus-group-server): Add.
9508
9509 2004-07-16 Jesper Harder <harder@ifa.au.dk>
9510
9511 * message.el (message-clone-locals): Clone sendmail and smtp
9512 variables.
9513
9514 2004-07-12 Katsumi Yamaoka <yamaoka@jpl.org>
9515
9516 * rfc2047.el (rfc2047-encode-region): Fix last change.
9517
9518 2004-07-12 Katsumi Yamaoka <yamaoka@jpl.org>
9519
9520 * rfc2047.el (rfc2047-encode-region): Treat backslash-quoted
9521 characters as non-special.
9522
9523 2004-07-09 Simon Josefsson <jas@extundo.com>
9524
9525 * gnus-agent.el (gnus-agent-synchronize-flags): Revert to ask.
9526 Users will lose all flag changes made while unplugged with
9527 e.g. nntp unless flag synchronization happens, thus `nil' is not a
9528 good default. See numerous reports on ding mailing list.
9529
9530 2004-07-09 Katsumi Yamaoka <yamaoka@jpl.org>
9531
9532 * nndoc.el (nndoc-type-alist): Improve regexp for article-begin,
9533 add generate-head-function and generate-article-function to the
9534 rfc822-forward entry.
9535 (nndoc-rfc822-forward-generate-article): New function.
9536 (nndoc-rfc822-forward-generate-head): New function.
9537
9538 * mm-decode.el (mm-dissect-buffer): Simplify cleaning of CTE.
9539
9540 2004-07-06 Dan Christensen <jdc@uwo.ca>
9541
9542 * gnus-sum.el (gnus-summary-read-group-1): When summary is unthreaded,
9543 respect display group parameter and gnus-summary-expunge-below.
9544 (gnus-articles-to-read): Remove unused reference to display group
9545 parameter.
9546
9547 2004-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
9548
9549 * nnheader.el (nnheader-uniquify-message-id): New experimental
9550 variable.
9551 (nnheader-nov-read-message-id): Use it.
9552
9553 * spam-report.el (spam-report-gmane): Add interactive.
9554
9555 2004-07-02 Katsumi Yamaoka <yamaoka@jpl.org>
9556
9557 * mm-encode.el (mm-content-transfer-encoding-defaults): Use
9558 qp-or-base64 for the application/* types.
9559
9560 2004-07-02 Joakim Verona <joakim@verona.se> (tiny change)
9561
9562 * nnrss.el (nnrss-read-group-data): Fix off-by-one error.
9563
9564 2004-06-30 Teodor Zlatanov <tzz@lifelogs.com>
9565
9566 * gnus-registry.el (gnus-registry-trim): Don't allow a negative
9567 trim value.
9568
9569 2004-01-25 Paul Jarc <prj@po.cwru.edu>
9570
9571 * nnmaildir.el (nnmaildir--condcase, nnmaildir--enoent-p):
9572 New macro and function.
9573 (nnmaildir--new-number, nnmaildir-request-set-mark): Use them.
9574
9575 2004-06-29 Katsumi Yamaoka <yamaoka@jpl.org>
9576
9577 * mm-util.el (mm-enrich-utf-8-by-mule-ucs): Fix cleaning of
9578 after-load-alist.
9579
9580 2004-06-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
9581
9582 * gnus-group.el (gnus-group-get-new-news-this-group): Don't
9583 update info that isn't there.
9584
9585 2004-06-29 Ilya N. Golubev <gin@mo.msk.ru>.
9586
9587 * mm-util.el (mm-mime-mule-charset-alist): Add the windows-1251
9588 entry.
9589
9590 2004-06-29 Katsumi Yamaoka <yamaoka@jpl.org>
9591
9592 * mm-view.el (mm-inline-render-with-function): Use multibyte
9593 buffer; decode html source by charset.
9594
9595 * mm-encode.el (mm-content-transfer-encoding-defaults): Doc fix.
9596
9597 * mm-util.el (mm-enrich-utf-8-by-mule-ucs): New function run when
9598 Mule-UCS is loaded under XEmacs.
9599 (mm-mime-mule-charset-alist): Avoid duplicated entries.
9600
9601 2004-06-28 Jesper Harder <harder@ifa.au.dk>
9602
9603 * nnheader.el (nnheader-max-head-length): Increase to 8192.
9604
9605 2004-06-28 Katsumi Yamaoka <yamaoka@jpl.org>
9606
9607 * mm-util.el (mm-coding-system-p): Return a coding-system.
9608 (mm-mime-mule-charset-alist): Use shift_jis instead of
9609 iso-2022-jp-2 for the katakana-jisx0201 mule charset; add new
9610 entries for the mime charsets iso-2022-jp-3 and shift_jis.
9611 (mm-coding-system-priorities): Use shift_jis and iso-8859-1
9612 instead of japanese-shift-jis and iso-latin-1 respectively in
9613 order to share the default value with both Emacs and XEmacs-mule.
9614 (mm-mule-charset-to-mime-charset): Make
9615 mm-coding-system-priorities effective.
9616 (mm-sort-coding-systems-predicate): Canonicalize coding-systems
9617 while predicating of candidates upon the priorities.
9618
9619 2004-06-27 Jesper Harder <harder@ifa.au.dk>
9620
9621 * gnus-sum.el (gnus-summary-make-menu-bar): Add
9622 gnus-uu-invert-processable.
9623
9624 * gnus.el: Autoload gnus-uu-invert-processable.
9625
9626 2004-06-24 Katsumi Yamaoka <yamaoka@jpl.org>
9627
9628 * mm-util.el (mm-with-multibyte-buffer): New macro.
9629
9630 * rfc2047.el (rfc2047-encode-string): Use it.
9631 (rfc2047-encode-region): Move point to the end of the region after
9632 encoding. Suggested by IRIE Tetsuya <irie@t.email.ne.jp>.
9633
9634 2004-06-23 Katsumi Yamaoka <yamaoka@jpl.org>
9635
9636 * gnus-cite.el (gnus-cite-parse): Don't ignore case when finding
9637 ">From ". Thanks to Reiner Steib <Reiner.Steib@gmx.de>.
9638
9639 2004-06-23 Katsumi Yamaoka <yamaoka@jpl.org>
9640
9641 * gnus-cite.el (gnus-cite-ignore-quoted-from): New user option.
9642 (gnus-cite-parse): Ignore quoted envelope From_. Suggested by
9643 Karl Chen <quarl@nospam.quarl.org>.
9644
9645 2004-06-23 Jesper Harder <harder@ifa.au.dk>
9646
9647 * message.el (message-idna-to-ascii-rhs-1): Don't choke on
9648 invalid addresses.
9649
9650 2004-06-21 Teodor Zlatanov <tzz@lifelogs.com>
9651
9652 * spam.el: Change section markers, revise TODO list.
9653 (spam-backends): Make new master list of all installed backends.
9654 (spam-summary-exit-behavior): Add new variable to determine how
9655 messages moves are done at summary exit.
9656 (spam-move-spam-nonspam-groups-only)
9657 (spam-process-ham-in-nonham-groups)
9658 (spam-process-ham-in-spam-groups): Remove variables, the
9659 spam-summary-exit-behavior variable should be used to manage this
9660 behavior.
9661 (spam-old-ham-articles, spam-old-spam-articles): Remove.
9662 (spam-old-articles): Add variable, replacing spam-old-ham-articles
9663 and spam-old-spam-articles.
9664 (spam-use-copy, spam-use-move, spam-use-gmane, spam-use-resend):
9665 Add empty variables, placeholders for the backends they represent.
9666 (spam-set-difference): Move, unchanged.
9667 (spam-list-of-processors): Declare OBSOLETE, not used anymore
9668 unless the user has a processor variable.
9669 (spam-classifications, spam-classification-valid-p)
9670 (spam-backend-properties, spam-backend-property-valid-p)
9671 (spam-backend-function-type-valid-p)
9672 (spam-process-type-valid-p, spam-list-articles): Add helper functions.
9673 (spam-report-articles-gmane, spam-report-articles-resend):
9674 Remove functions, they are not needed.
9675 (spam-install-backend-super, spam-backend-list)
9676 (spam-backend-check, spam-backend-valid-p, spam-backend-info)
9677 (spam-backend-function, spam-backend-ham-registration-function)
9678 (spam-backend-spam-registration-function)
9679 (spam-backend-ham-unregistration-function)
9680 (spam-backend-spam-unregistration-function)
9681 (spam-backend-statistical-p, spam-backend-mover-p)
9682 (spam-install-backend-alias, spam-install-checkonly-backend)
9683 (spam-install-mover-backend, spam-install-nocheck-backend)
9684 (spam-install-backend, spam-install-statistical-backend)
9685 (spam-install-statistical-checkonly-backend): Add backend installation
9686 support.
9687 (spam-summary-prepare-exit): Rewrite to use the new backend code.
9688 (spam-group-processor-p): Use the new backend code and respect the
9689 summary exit behavior.
9690 (spam-mark-spam-as-expired-and-move-routine): Remove.
9691 (spam-summary-prepare): Change to use the new spam-old-articles
9692 variable.
9693 (spam-copy-or-move-routine, spam-copy-spam-routine)
9694 (spam-move-spam-routine, spam-copy-ham-routine)
9695 (spam-move-ham-routine): Add code to copy/move ham or spam.
9696 (spam-fetch-field-fast): Improve doc and code, plus allow the
9697 'number request.
9698 (spam-list-of-checks, spam-list-of-statistical-checks): Remove
9699 variables.
9700 (spam-split, spam-find-spam): Use the new backend code.
9701 (spam-registration-functions): Remove variable.
9702 (spam-unregister-routine): Add convenience wrapper.
9703 (spam-log-undo-registration, spam-register-routine)
9704 (spam-log-processing-to-registry)
9705 (spam-log-unregistration-needed-p): Rename "check" to "backend"
9706 where possible.
9707 (spam-check-gmane-xref, spam-check-regex-headers)
9708 (spam-check-blackholes, spam-check-stat, spam-check-ifile)
9709 (spam-check-BBDB, spam-check-whitelist, spam-check-blacklist)
9710 (spam-check-bogofilter-headers, spam-check-spamoracle)
9711 (spam-check-spamassassin-headers, spam-check-bsfilter-headers)
9712 (spam-check-crm114-headers): Use the spam-split-group that
9713 spam-split prepares, no need to determine it every time.
9714
9715 * nnimap.el (nnimap-retrieve-headers-progress): Add the message number
9716 to the nnheader-parse-naked-head call.
9717
9718 * nnheader.el (nnheader-generate-fake-message-id): Fix indentation.
9719
9720 * gnus-sum.el (gnus-nov-parse-line): Add the message number to
9721 the nnheader-nov-read-message-id call.
9722
9723 2004-06-21 Katsumi Yamaoka <yamaoka@jpl.org>
9724
9725 * gnus-group.el (gnus-group-get-new-news-this-group): Don't call
9726 gnus-activate-group twice. Suggested by Markus Peter
9727 <warp@spin.de>.
9728
9729 2004-06-18 Katsumi Yamaoka <yamaoka@jpl.org>
9730
9731 * gnus-art.el (gnus-article-time-format): Exchange the order of
9732 day and month in the default value; fix customization type.
9733 (article-date-ut): Use add-text-properties.
9734 (article-make-date-line): Use message-make-date instead of
9735 current-time-string.
9736
9737 * message.el (message-fetch-field): Don't use set-text-properties.
9738 (message-make-date): Simplify.
9739
9740 2004-06-17 Katsumi Yamaoka <yamaoka@jpl.org>
9741
9742 * rfc2047.el (rfc2047-syntax-table): Treat `(' and `)' as is.
9743 (rfc2047-encode-region): Treat text within parentheses as special;
9744 show the original text when error has occurred.
9745
9746 * gnus-group.el (gnus-group-get-new-news-this-group): Pass the
9747 already-computed method to gnus-activate-group.
9748
9749 * gnus-start.el (gnus-make-hashtable-from-newsrc-alist): Make the
9750 same select-methods identical Lisp objects.
9751
9752 * gnus-srvr.el (gnus-server-set-info): Don't make a new Lisp
9753 object when modifying the info.
9754
9755 2004-06-16 Katsumi Yamaoka <yamaoka@jpl.org>
9756
9757 * gnus-srvr.el (gnus-server-set-info): Remove the server from
9758 gnus-opened-servers since it has never been opened with the new
9759 configuration yet.
9760
9761 2004-06-15 Katsumi Yamaoka <yamaoka@jpl.org>
9762
9763 * nnheader.el (nnheader-nov-read-message-id): Pass the optional
9764 arg to nnheader-generate-fake-message-id.
9765
9766 2004-06-14 Teodor Zlatanov <tzz@lifelogs.com>
9767
9768 * nnheader.el (nnheader-generate-fake-message-id): Accept a
9769 number and build a fake message ID localized to a group and
9770 article number (so it's repeatable from that point on).
9771 (nnheader-fake-message-id-p): Change regex to accomodate new fake
9772 ID format.
9773
9774 * gnus-sum.el (gnus-get-newsgroup-headers): Call
9775 nnheader-generate-fake-message-id with the article number.
9776
9777 2004-06-12 YAGI Tatsuya <ynyaaa@ybb.ne.jp> (tiny change)
9778
9779 * gnus-art.el (gnus-article-next-page): Fix the way to find a real
9780 end-of-buffer.
9781
9782 2004-06-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
9783
9784 * message.el (message-ignored-supersedes-headers): Add Approved.
9785
9786 2004-06-11 Katsumi Yamaoka <yamaoka@jpl.org>
9787
9788 * rfc2047.el (rfc2047-encode-message-header): Remove useless
9789 goto-char.
9790 (rfc2047-encode): Fold the line before encoding.
9791
9792 2004-06-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
9793
9794 * rfc2047.el (rfc2047-encode-message-header): Disabled header
9795 folding -- not all headers can be folded, and this should be done
9796 by the message composition mode. Probably. I think.
9797
9798 2004-06-10 Katsumi Yamaoka <yamaoka@jpl.org>
9799
9800 * gnus-util.el (gnus-remove-text-with-property): Make it slightly
9801 fast.
9802
9803 * gnus-ems.el (gnus-remove-image): Don't use
9804 message-text-with-property; remove only the image found first.
9805
9806 2004-06-09 Jesper Harder <harder@ifa.au.dk>
9807
9808 * message.el (message-send-mail-with-sendmail): Use with-current-buffer.
9809
9810 2004-06-09 Katsumi Yamaoka <yamaoka@jpl.org>
9811
9812 * message.el (message-text-with-property): Make it fast and accept
9813 optional arguments.
9814 (message-strip-forbidden-properties): Use it.
9815 (message-fix-before-sending): Follow the m-t-w-p change.
9816
9817 * gnus-ems.el (gnus-remove-image): Follow the m-t-w-p change.
9818
9819 2004-06-08 Katsumi Yamaoka <yamaoka@jpl.org>
9820
9821 * gnus-art.el (article-hide-headers): Don't change the buffer
9822 mistakenly when performing mml-preview even if
9823 gnus-single-article-buffer is nil.
9824
9825 2004-06-08 Kai Grossjohann <kgrossjo@eu.uu.net>
9826
9827 * message.el (message-expand-name-databases): New user option.
9828 (message-expand-name): Use it.
9829
9830 2004-06-07 Teodor Zlatanov <tzz@lifelogs.com>
9831
9832 * spam.el (spam-report-articles-resend)
9833 (spam-report-resend-register-routine): Allow ham reporting.
9834 (spam-report-resend-register-ham-routine): Add wrapper.
9835 (spam-registration-functions): Add ham resending functions.
9836 (spam-list-of-processors): Add ham resend processor.
9837
9838 * gnus.el (ham-resend-to): Add new group parameter.
9839 (spam-process): Add ham resend option.
9840
9841 * spam-report.el (spam-report-resend): Allow reporting ham.
9842 (spam-report-resend-ham): Add wrapper.
9843
9844 2004-06-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
9845
9846 * message.el (message-cite-articles-with-x-no-archive): New
9847 variable.
9848 (message-cite-original): Use it.
9849
9850 2004-06-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
9851
9852 * message.el (message-cite-original): Respect X-No-Archive.
9853
9854 2004-06-04 Katsumi Yamaoka <yamaoka@jpl.org>
9855
9856 * gnus-art.el (article-hide-headers): Refer to the values for
9857 gnus-ignored-headers and gnus-visible-headers in the summary
9858 buffer since a user may have set them as group parameters.
9859
9860 2004-06-03 Teodor Zlatanov <tzz@lifelogs.com>
9861
9862 * assistant.el (assistant-node-name): Add convenience function.
9863 (assistant-render-text, assistant-render-node): Add error handling,
9864 plus handle multiple next nodes.
9865 (assistant-find-next-node): Comment out for now.
9866 (assistant-find-next-nodes): Add function, returns list of next
9867 nodes.
9868
9869 2004-06-02 Reiner Steib <Reiner.Steib@gmx.de>
9870
9871 * mail-source.el (mail-source-directory): Fix doc-string.
9872
9873 2004-05-29 Teodor Zlatanov <tzz@lifelogs.com>
9874
9875 * assistant.el (assistant-render-text, assistant-eval): Add :set
9876 widget type, which is different because it takes and returns a
9877 list. Much hilarity ensues.
9878
9879 2004-05-28 Reiner Steib <Reiner.Steib@gmx.de>
9880
9881 * gnus-art.el (gnus-button-alist): Fixed regexp for manual links.
9882
9883 * gnus-group.el (gnus-group-get-new-news-this-group): Added
9884 doc-string.
9885
9886 * gnus-start.el (gnus-activate-group): Added doc-string.
9887
9888 2004-05-28 Katsumi Yamaoka <yamaoka@jpl.org>
9889
9890 * mm-encode.el (mm-safer-encoding): Consider 7bit is safe.
9891
9892 2004-05-27 Teodor Zlatanov <tzz@lifelogs.com>
9893
9894 * assistant.el (assistant-render-text): Try to add a :set
9895 widget, more to come.
9896
9897 * spam.el (spam-group-spam-contents-p): Handle empty groupname
9898 strings.
9899 (spam-report-articles-resend)
9900 (spam-register-routine): Do registration iff any articles warrant
9901 it.
9902 (spam-summary-prepare-exit): Change log message for nil group
9903 destinations.
9904
9905 2004-05-27 Daniel Pittman <daniel@rimspace.net>
9906
9907 * spam.el (spam-report-resend-register-routine): Allow
9908 spam-report-resend-to to be a group parameter or a global value.
9909
9910 2004-05-26 Simon Josefsson <jas@extundo.com>
9911
9912 * starttls.el: Merge with my GNUTLS based starttls.el.
9913 (starttls-gnutls-program, starttls-use-gnutls)
9914 (starttls-extra-arguments, starttls-process-connection-type)
9915 (starttls-connect, starttls-failure, starttls-success): New
9916 variables.
9917 (starttls-program, starttls-extra-args): Doc fix.
9918 (starttls-negotiate-gnutls, starttls-open-stream-gnutls): New
9919 functions.
9920 (starttls-negotiate, starttls-open-stream): Check
9921 `starttls-use-gnutls' and pass on to corresponding *-gnutls
9922 function if it is set.
9923
9924 2004-05-27 Katsumi Yamaoka <yamaoka@jpl.org>
9925
9926 * rfc2047.el (rfc2047-encode-region): Encode encoded words in
9927 structured fields.
9928
9929 2004-05-26 Katsumi Yamaoka <yamaoka@jpl.org>
9930
9931 * message.el (message-resend): Bind rfc2047-encode-encoded-words.
9932
9933 2004-05-26 Teodor Zlatanov <tzz@lifelogs.com>
9934
9935 * spam.el (spam-mark-new-messages-in-spam-group-as-spam): Add
9936 variable.
9937 (spam-mark-junk-as-spam-routine): Use it. Allow to disable
9938 assigning the spam-mark to new messages.
9939
9940 2004-05-26 Adam Sjøgren <asjo@koldfront.dk> (tiny change)
9941
9942 (spam-ham-copy-or-move-routine): Don't declare `todo' twice.
9943
9944 2004-05-26 Katsumi Yamaoka <yamaoka@jpl.org>
9945
9946 * rfc2047.el (rfc2047-encodable-p): Don't move point.
9947 (rfc2047-decode): Treat the ascii coding-system as raw-text by
9948 default.
9949
9950 2004-05-25 Anand Mitra <mitramc@yahoo.com> (tiny change)
9951
9952 * gnus-sum.el (gnus-summary-delete-article): Invoke hook with
9953 correct data.
9954
9955 2004-05-24 Teodor Zlatanov <tzz@lifelogs.com>
9956
9957 * spam.el (spam-list-of-processors): Use nil for nonexistent processors.
9958 (spam-group-processor-p): Fix function.
9959 (spam-group-processor-multiple-p)
9960 (spam-group-spam-processor-report-gmane-p)
9961 (spam-group-spam-processor-report-resend-p)
9962 (spam-group-spam-processor-bogofilter-p)
9963 (spam-group-spam-processor-blacklist-p)
9964 (spam-group-spam-processor-ifile-p)
9965 (spam-group-ham-processor-ifile-p)
9966 (spam-group-spam-processor-spamoracle-p)
9967 (spam-group-spam-processor-crm114-p)
9968 (spam-group-ham-processor-bogofilter-p)
9969 (spam-group-spam-processor-stat-p)
9970 (spam-group-ham-processor-stat-p)
9971 (spam-group-ham-processor-whitelist-p)
9972 (spam-group-ham-processor-BBDB-p)
9973 (spam-group-ham-processor-spamoracle-p)
9974 (spam-group-ham-processor-copy-p): Remove functions with some
9975 prejudice against unneeded code.
9976 (spam-report-articles-resend)
9977 (spam-report-resend-register-routine): Allow the group/topic
9978 spam-resend-to value to override spam-report-resend-to.
9979 (spam-summary-prepare-exit): Invoke spam-group-processor-p
9980 properly now.
9981
9982 * gnus.el (spam-resend-to): Add group/topic parameter.
9983 (spam-process): Move the OBSOLETE processors to the end of the
9984 choices.
9985
9986 2004-05-24 Daniel Pittman <daniel@rimspace.net>
9987
9988 * spam-report.el (spam-report-resend-to, spam-report-resend): Start
9989 with resend-to set to nil, and then ask the user if necessary.
9990 (spam-report-resend): spam-report-resend takes a list of articles, not
9991 separate article numbers.
9992
9993 2004-05-23 Katsumi Yamaoka <yamaoka@jpl.org>
9994
9995 * mm-decode.el (mm-text-html-renderer): Make sure w3m exists in
9996 addition to emacs-w3m.
9997
9998 2004-05-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
9999
10000 * assistant.el (assistant-authinfo-data): New function.
10001 (assistant-eval): Eval for entire assistant.
10002
10003 * netrc.el (netrc-services-file): New variable.
10004 (netrc-parse-services): New function.
10005 (netrc-find-service-name): New function.
10006 (netrc-find-service-number): New function.
10007 (netrc-port-equal): New function.
10008 (netrc-machine): Use it.
10009
10010 * nnimap.el (nnimap-open-connection): Use netrc.
10011
10012 * gnus-util.el (gnus-netrc-get): Remove aliases.
10013
10014 * gnus-sum.el (gnus-auto-center-summary): Change default to 2.
10015
10016 * assistant.el (wid-edit): Fix compilation.
10017
10018 * gnus-util.el (gnus-set-file-modes): Just ignore errors.
10019
10020 2004-05-23 Paul Stodghill <stodghil@cs.cornell.edu>
10021
10022 * gnus-util.el (gnus-set-file-modes): New function. (small
10023 patch).
10024
10025 2004-05-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
10026
10027 * gnus-topic.el (gnus-topic-jump-to-topic): Goto missing topic.
10028
10029 * assistant.el (assistant-render-node): Fix up rendering and
10030 read-only text.
10031 (assistant-render-node): Reset.
10032 (assistant-make-read-only): Not sticky.
10033
10034 2004-05-20 Danny Siu <dsiu@adobe.com>
10035
10036 * gnus-sum.el (gnus-summary-recenter): Summery buffer was not auto
10037 centered even when gnus-auto-center-summary is t
10038
10039 2004-05-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
10040
10041 * dns.el (dns-get-txt-answer): New function.
10042 (dns-read-txt): Ditto.
10043 (query-dns): Use it.
10044
10045 2004-05-21 Katsumi Yamaoka <yamaoka@jpl.org>
10046
10047 * gnus-start.el (gnus-get-unread-articles): Don't invalidate
10048 active for foreign groups even if the group level is higher than
10049 the specified value.
10050
10051 2004-05-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
10052
10053 * gnus-group.el (gnus-group-jump-to-group): Don't prompt for
10054 non-active groups.
10055
10056 * gnus-art.el (gnus-picon-databases): Add /usr/share/picons.
10057
10058 2004-05-20 Magnus Henoch <mange@freemail.hu>
10059
10060 * dns.el (dns-read-type): Add support for SVR. (small patch)
10061
10062 2004-05-20 Teodor Zlatanov <tzz@lifelogs.com>
10063
10064 * spam.el (spam-use-crm114, spam-crm114, spam-crm114-program)
10065 (spam-crm114-header, spam-crm114-spam-switch)
10066 (spam-crm114-spam-strong-switch, spam-crm114-ham-strong-switch)
10067 (spam-crm114-positive-spam-header)
10068 (spam-crm114-database-directory, spam-list-of-processors)
10069 (spam-group-spam-processor-crm114-p)
10070 (spam-group-ham-processor-crm114-p, spam-extra-header-to-number)
10071 (spam-generic-score, spam-list-of-checks)
10072 (spam-list-of-statistical-checks, spam-registration-functions)
10073 (spam-check-crm114-headers, spam-crm114-score)
10074 (spam-check-crm114, spam-crm114-register-with-crm114)
10075 (spam-crm114-register-spam-routine)
10076 (spam-crm114-unregister-spam-routine)
10077 (spam-crm114-register-ham-routine)
10078 (spam-crm114-unregister-ham-routine): Add CRM114 support. From
10079 asjo@koldfront.dk (Adam Sjøgren).
10080
10081 * gnus.el: Add spam-use-crm114.
10082
10083 * spam.el (spam-list-of-processors, spam-registration-functions):
10084 Add spam-use-resend.
10085 (spam-group-spam-processor-report-resend-p): Add utility wrapper.
10086 (spam-report-articles-gmane): Add doc fix.
10087 (spam-report-articles-resend,
10088 spam-report-resend-register-routine): Add wrappers around
10089 spam-report-resend-to.
10090
10091 * spam-report.el (spam-report-resend-to, spam-report-resend):
10092 Add support for resending spam.
10093 (spam-report-gmane): Fix line length >80.
10094
10095 * gnus.el (spam-process): Add spam-use-resend.
10096
10097 2004-05-20 TSUCHIYA Masatoshi <tsuchiya@namazu.org>
10098
10099 * spam.el (spam-mark-spam-as-expired-and-move-routine): Return the
10100 number of processed spam messages.
10101 (spam-ham-copy-or-move-routine): Return the number of processed
10102 ham messages.
10103 (spam-summary-prepare-exit): Use the above values to decide
10104 whether status messages shouled be displayed.
10105
10106 2004-05-20 Katsumi Yamaoka <yamaoka@jpl.org>
10107
10108 * rfc2047.el (rfc2047-encode-function-alist): Renamed from
10109 `rfc2047-encoding-function-alist' in order to avoid conflicting
10110 with the old version.
10111 (rfc2047-encode-region): Concatenate words containing non-ASCII
10112 characters in structured fields; don't encode space-delimited
10113 ASCII words even in unstructured fields; don't break words at
10114 char-category boundaries.
10115 (rfc2047-encode-1): New function.
10116 (rfc2047-encode): Use it; encode text so that it occupies the
10117 maximum width within 76-column; work correctly on Q encoding for
10118 iso-2022-* charsets.
10119 (rfc2047-fold-region): Use existing whitespace for LWSP; make it
10120 sure not to break a line just after the header name.
10121 (rfc2047-b-encode-region): Removed.
10122 (rfc2047-b-encode-string): New function.
10123 (rfc2047-q-encode-region): Removed.
10124 (rfc2047-q-encode-string): New function.
10125
10126 * mm-util.el (mm-replace-in-string): New function.
10127
10128 2004-05-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
10129
10130 * gnus-msg.el (gnus-inews-make-draft-meta-information): Really
10131 get it right.
10132 (gnus-inews-make-draft): Really.
10133
10134 2004-05-19 Ben Menasha <bmenasha@benmenasha.net>
10135
10136 * nnmh.el (nnmh-request-list-1): Don't check the link count
10137 before descending. (small patch)
10138
10139 2004-05-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
10140
10141 * gnus-msg.el (gnus-inews-make-draft-meta-information): Fix quote
10142 stuff.
10143
10144 * gnus-start.el (gnus-subscribe-hierarchical-interactive): Match
10145 on real group name.
10146
10147 * gnus-art.el (gnus-signature-limit): Doc fix.
10148
10149 * gnus-msg.el (gnus-inews-make-draft): Quote list.
10150
10151 2004-05-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
10152
10153 * gnus-draft.el (gnus-draft-send): Bind
10154 rfc2047-encode-encoded-words.
10155
10156 * rfc2047.el (rfc2047-encode-region): Encode =? strings.
10157 (rfc2047-encodable-p): Say that =? needs encoding.
10158 (rfc2047-encode-encoded-words): New variable.
10159
10160 * gnus-group.el (gnus-group-select-group): Doc fix.
10161
10162 * gnus-draft.el (gnus-draft-setup): Mark all replied as replied.
10163
10164 * gnus-group.el (gnus-group-mode): Set show-trailing-whitespace
10165 to nil.
10166
10167 * gnus-cache.el (gnus-cache-possibly-enter-article): Use it.
10168
10169 * nnheader.el (nnheader-get-lines-and-char): New function.
10170
10171 2004-05-19 Reiner Steib <Reiner.Steib@gmx.de>
10172
10173 * gnus-msg.el (gnus-summary-followup-with-original): Document
10174 yanking of region when active.
10175
10176 2004-05-19 Katsumi Yamaoka <yamaoka@jpl.org>
10177
10178 * gnus-start.el (gnus-get-unread-articles): Do nothing for foreign
10179 groups if the group level is higher than the specified value.
10180
10181 2004-05-18 Reiner Steib <Reiner.Steib@gmx.de>
10182
10183 * gnus-group.el (gnus-group-jump-to-group-prompt): Allow an alist.
10184 (gnus-group-jump-to-group): Added prefix argument using
10185 `gnus-group-jump-to-group-prompt'. Query before jumping to
10186 non-active group.
10187
10188 * compface.el (uncompface): Be verbose when changing
10189 `uncompface-use-external'.
10190
10191 * gnus-art.el (gnus-button-handle-man, gnus-button-alist): Try to
10192 handle manual section.
10193
10194 2004-05-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
10195
10196 * gnus-art.el (gnus-button-alist): Revert previous change.
10197
10198 2004-05-18 Reiner Steib <Reiner.Steib@gmx.de>
10199
10200 * message.el (message-idna-to-ascii-rhs-1): Fix typo.
10201
10202 2004-05-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
10203
10204 * gnus-msg.el (gnus-inews-do-gcc): Don't use read-only-p to see
10205 whether backend can accept message.
10206
10207 * message.el (message-idna-to-ascii-rhs-1): Don't use equalp.
10208
10209 2004-05-18 Kai Grossjohann <kgrossjo@eu.uu.net>
10210
10211 * nntp.el (nntp-request-set-mark, nntp-request-update-info):
10212 Avoid creating directory when nntp-marks-is-evil is true.
10213 Reported by Reiner Steib.
10214
10215 2004-05-18 Reiner Steib <Reiner.Steib@gmx.de>
10216
10217 * gnus-picon.el (gnus-picon-style): New variable.
10218 (gnus-picon-insert-glyph): Added optional `nostring' argument.
10219 (gnus-picon-transform-address): Support `gnus-picon-style'. From
10220 Jesper Harder <harder@ifa.au.dk>.
10221
10222 2004-05-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
10223
10224 * message.el (message-fill-field): Return point.
10225 (message-generate-headers): Go to end of field.
10226
10227 * gnus-start.el (gnus-get-unread-articles-in-group): Don't do
10228 stuff for non-living groups.
10229
10230 2004-05-18 Jesper Harder <harder@ifa.au.dk>
10231
10232 * gnus-art.el (gnus-article-followup-with-original)
10233 (gnus-article-reply-with-original): gnus-mark-active-p ->
10234 gnus-region-active-p.
10235
10236 2004-05-17 Teodor Zlatanov <tzz@lifelogs.com>
10237
10238 * spam.el (spam-summary-prepare-exit): Fix messages, so they show
10239 only when there is spam or ham to be processed.
10240
10241 2004-05-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
10242
10243 * mail-source.el (mail-source-delete-crash-box): Refactor.
10244 (mail-source-fetch): Use it.
10245 (mail-source-fetch-file): Ditto.
10246 (mail-source-fetch-directory): Run postscript in loop.
10247 (mail-source-fetch-pop): Delete.
10248 (mail-source-fetch-maildir): Ditto.
10249 (mail-source-fetch-imap): Ditto.
10250
10251 * imap.el (imap-authenticators): Comment out sasl.
10252
10253 * message.el (message-skip-to-next-address): New function.
10254 (message-fill-header-address): Refactor.
10255 (message-fill-address): Use it.
10256 (message-delete-address): Use it.
10257 (message-fill-header-general): Refactor.
10258 (message-fill-field-address): Rename.
10259 (message-narrow-to-field): Find the start of the header.
10260 (message-header-format-alist): Don't pre-fill.
10261 (message-fill-header): Removed.
10262 (message-insert-header): New function.
10263 (message-shorten-references): Use it.
10264
10265 * rfc2047.el (rfc2047-field-value): Strip props.
10266
10267 * mail-parse.el (mail-header-make-address): New alias.
10268
10269 * ietf-drums.el (ietf-drums-make-address): New function.
10270
10271 * imap.el: Add compiler directives.
10272
10273 * gnus-score.el (gnus-score-edit-done): run-hook->run-hooks.
10274
10275 * gnus-art.el (article-decode-idna-rhs): Don't use
10276 message-idna-inside-rhs-p.
10277
10278 2004-05-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
10279
10280 * message.el (message-idna-inside-rhs-p): Removed.
10281 (message-idna-to-ascii-rhs-1): Use proper address parsing.
10282
10283 * gnus-art.el (gnus-emphasis-alist): Removed strikethru; too many
10284 false positives.
10285
10286 2004-05-16 Kim Minh Kaplan <kmkaplan-AwwS6Bc0PDVoiYX5Tdu9fQ@public.gmane.org>
10287
10288 * imap.el (imap-sasl-make-mechanisms): Use sasl.
10289
10290 2004-05-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
10291
10292 * nneething.el (nneething-file-name): Don't create spurions
10293 files.
10294
10295 * gnus-msg.el (gnus-inews-do-gcc): Ignore read-only groups.
10296 (gnus-inews-do-gcc): Remove sleep.
10297
10298 * gnus-art.el (gnus-mime-delete-part): Error message when no MIME
10299 part under point.
10300
10301 * gnus-agent.el (gnus-agent-synchronize-flags): Default to nil.
10302 (gnus-agent-regenerate-group): Using nil messages aren't valid.
10303
10304 2004-05-15 Teodor Zlatanov <tzz@lifelogs.com>
10305
10306 * spam.el (spam-summary-prepare-exit): Fixed (length).
10307
10308 2004-05-14 Teodor Zlatanov <tzz@lifelogs.com>
10309
10310 * spam.el (spam-summary-prepare-exit): Fix to produce "marking spam
10311 as expired without moving it" message when there are spam
10312 messages left.
10313
10314 2004-05-14 Nelson Ferreira <nelson.ferreira@verizon.net> (tiny change)
10315
10316 * gnus-dup.el (gnus-dup-unsuppress-article): Don't assume the mail
10317 header is not nil.
10318
10319 2004-05-14 Kai Grossjohann <kgrossjo@eu.uu.net>
10320
10321 * nntp.el (nntp-request-set-mark, nntp-request-update-info): Call
10322 nntp-possibly-create-directory, not nntp-possibly-change-group.
10323 (nntp-marks-changed-p): New arg SERVER.
10324 (nntp-request-update-info): Adjust caller.
10325
10326 2004-05-14 Kai Grossjohann <kai@emptydomain.de>
10327
10328 * nntp.el (nntp-save-marks): Pass missing arg.
10329
10330 2004-05-13 Kai Grossjohann <kai.grossjohann@gmx.net>
10331
10332 * nntp.el: Support marks.
10333 (nntp-marks-is-evil, nntp-marks-file-name, nntp-marks)
10334 (nntp-marks-modtime, nntp-marks-directory): New variables.
10335 (nntp-request-set-mark, nntp-request-update-info)
10336 (nntp-possibly-create-directory, nntp-marks-changed-p)
10337 (nntp-save-marks, nntp-open-marks, nntp-marks-directory): New
10338 functions.
10339
10340 2004-05-12 Jesper Harder <harder@ifa.au.dk>
10341
10342 * gnus-score.el (gnus-score-insert-help): Use
10343 gnus-select-lowest-window.
10344
10345 * gnus-ems.el (gnus-select-lowest-window): Copy definition of
10346 appt-select-lowest-window and rename to gnus-select-lowest-window.
10347
10348 * gnus.el: do.
10349
10350 2004-05-12 TSUCHIYA Masatoshi <tsuchiya@namazu.org>
10351
10352 * rfc2047.el (rfc2047-encode): Use uppercase letters to specify
10353 encodings of MIME-encoded words, in order to improve
10354 interoperability with several broken MUAs.
10355
10356 2004-05-07 TSUCHIYA Masatoshi <tsuchiya@namazu.org>
10357
10358 * mm-view.el (mm-inline-text-html-render-with-w3): Check META
10359 tags, only when charsets are not specified in headers.
10360 (mm-inline-text-html-render-with-w3m): Ditto.
10361
10362 2004-05-06 TSUCHIYA Masatoshi <tsuchiya@namazu.org>
10363
10364 * gnus-art.el (article-strip-banner): Use MIME-encoded from fields
10365 instead of MIME-decoded from fields when checking
10366 `gnus-article-address-banner-alist'.
10367
10368 2004-05-03 Jesper Harder <harder@ifa.au.dk>
10369
10370 * nnrss.el (nnrss-check-group, nnrss-read-group-data): Hash on
10371 description rather than subject.
10372
10373 2004-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
10374
10375 * gnus.el (gnus-version-number): Bump.
10376
10377 2004-05-01 Lars Magne Ingebrigtsen <lars@ingebrigtsen.no>
10378
10379 * gnus.el: No Gnus v0.2 is released.
10380
10381 2004-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
10382
10383 * gnus-agent.el (gnus-agent-read-agentview): Inline
10384 gnus-uncompress-range.
10385
10386 2004-05-01 TSUCHIYA Masatoshi <tsuchiya@namazu.org>
10387
10388 * spam.el (spam-bsfilter-path): Use `executable-find' instead of
10389 `exec-installed-p'.
10390
10391 2004-04-30 TSUCHIYA Masatoshi <tsuchiya@namazu.org>
10392
10393 * gnus.el (spam-process, spam-autodetect-methods): Add
10394 bsfilter and bsfilter-headers.
10395
10396 * spam.el (spam-bsfilter): New customize group.
10397 (spam-use-bsfilter, spam-use-bsfilter-headers, spam-bsfilter-path)
10398 (spam-bsfilter-header, spam-bsfilter-probability-header)
10399 (spam-bsfilter-spam-switch, spam-bsfilter-ham-switch)
10400 (spam-bsfilter-spam-strong-switch, spam-bsfilter-ham-strong-switch)
10401 (spam-bsfilter-database-directory): New options.
10402 (spam-install-hooks, spam-list-of-processors, spam-list-of-checks)
10403 (spam-list-of-statistical-checks, spam-registration-functions):
10404 Add `spam-use-bsfilter' and `spam-use-bsfilter-headers'.
10405 (spam-bsfilter-score): New command.
10406 (spam-check-bsfilter-headers, spam-check-bsfilter)
10407 (spam-bsfilter-register-with-bsfilter)
10408 (spam-bsfilter-register-spam-routine)
10409 (spam-bsfilter-unregister-spam-routine)
10410 (spam-bsfilter-register-ham-routine)
10411 (spam-bsfilter-unregister-ham-routine): New functions.
10412 (spam-generic-score): Support bsfilter; Accept an optional argument
10413 to recalcurate spam score even if scoring header has already been
10414 added.
10415 (spam-bogofilter-score, spam-spamassassin-score): Accept an
10416 optional argument to recalcurate spam score even if scoring header
10417 has already been added.
10418
10419 2004-04-29 Jesper Harder <harder@ifa.au.dk>
10420
10421 * nnrss.el (nnrss-get-namespace-prefix): Use string= to compare
10422 strings! Reported by David D. Smith <davidsmith@acm.org>.
10423 (nnrss-check-group, nnrss-read-group-data): Hash on Subject if
10424 link is missing.
10425
10426 2004-04-28 Jesper Harder <harder@ifa.au.dk>
10427
10428 * html2text.el (html2text-replace-list): Add &amp; and &apos;.
10429 (html2text-get-attr): Rewrite.
10430
10431 * message.el (message-setup-1): Remove redundant put-text-property
10432 on mail-header-separator.
10433
10434 2004-04-27 Teodor Zlatanov <tzz@lifelogs.com>
10435
10436 * gnus-registry.el (gnus-registry-cache-whitespace)
10437 (gnus-registry-action, gnus-registry-spool-action)
10438 (gnus-registry-split-fancy-with-parent): Change message levels
10439 from 5 to 3 or 7, as needed.
10440
10441 * spam.el (spam-summary-prepare-exit)
10442 (spam-mark-junk-as-spam-routine, spam-fetch-field-fast)
10443 (spam-split, spam-find-spam, spam-log-undo-registration)
10444 (spam-check-blackholes, spam-enter-ham-BBDB): Changed message
10445 level from 5 to 6.
10446
10447 2004-04-26 Katsumi Yamaoka <yamaoka@jpl.org>
10448
10449 * gnus-ems.el: Autoload appt-select-lowest-window (revert
10450 2004-03-04 change).
10451
10452 2004-04-25 Jesper Harder <harder@ifa.au.dk>
10453
10454 * sieve-manage.el (sieve-manage-open):
10455 * nnweb.el (nnweb-insert-html):
10456 * nnvirtual.el (nnvirtual-catchup-group, nnvirtual-partition-sequence)
10457 (nnvirtual-partition-sequence, nnvirtual-create-mapping):
10458 * nnspool.el (nnspool-request-group):
10459 * nnrss.el (nnrss-opml-export, nnrss-find-el, nnrss-order-hrefs):
10460 * nnml.el (nnml-request-update-info):
10461 * nnmh.el (nnmh-request-group, nnmh-request-list-1, nnmh-active-number)
10462 (nnmh-request-create-group, nnmh-update-gnus-unreads):
10463 * nnimap.el (nnimap-request-close, nnimap-acl-edit)
10464 (nnimap-request-set-mark):
10465 * nnfolder.el (nnfolder-request-update-info):
10466 * mm-view.el (mm-pkcs7-signed-magic, mm-pkcs7-enveloped-magic):
10467 * mml.el (mml-destroy-buffers, mml-compute-boundary-1):
10468 * gnus-uu.el (gnus-uu-find-articles-matching):
10469 * gnus-topic.el (gnus-topic-check-topology, gnus-topic-remove-group):
10470 * gnus-sum.el (gnus-summary-fetch-faq, gnus-read-move-group-name):
10471 * gnus-score.el (gnus-score-load-file, gnus-sort-score-files):
10472 * gnus-nocem.el (gnus-nocem-scan-groups):
10473 * gnus-int.el (gnus-start-news-server):
10474 * gnus-group.el (gnus-group-make-kiboze-group)
10475 (gnus-group-browse-foreign-server):
10476 * spam-stat.el (spam-stat-score-buffer): Simplify mapcar usage.
10477 Use mapc when appropriate.
10478
10479 2004-04-22 Teodor Zlatanov <tzz@lifelogs.com>
10480
10481 FIXME: Make separate entries for each person.
10482
10483 From Dan Christensen <jdc@uwo.ca>, asjo@koldfront.dk (Adam
10484 Sjøgren), Wes Hardaker <wes@hardakers.net>, and Michael Shields
10485 <shields@msrl.com>:
10486
10487 * spam.el (spam-necessary-extra-headers): Get the extra headers we
10488 may need for spam sorting and scoring.
10489 (spam-user-format-function-S): Add user format function suitable for
10490 general use.
10491 (spam-article-sort-by-spam-status): Add sorting function for summary
10492 sorting.
10493 (spam-extra-header-to-number): Add function to get a score from a
10494 header.
10495 (spam-summary-score): Add function to get a numeric score from the
10496 headers.
10497 (spam-generic-score): Fix function doc, was in wrong place.
10498 (spam-initialize): Take symbols when it's run, and install the
10499 extra headers that spam-necessary-extra-headers thinks we need.
10500
10501 2004-04-21 Teodor Zlatanov <tzz@lifelogs.com>
10502
10503 * spam.el (spam-summary-prepare-exit): Add logic and message fix.
10504 Reported by bojohan+news@dd.chalmers.se (Johan Bockgård).
10505
10506 2004-04-17 Jesper Harder <harder@ifa.au.dk>
10507
10508 * gnus-sum.el (gnus-set-global-variables)
10509 (gnus-build-all-threads, gnus-get-newsgroup-headers)
10510 (gnus-article-get-xrefs, gnus-summary-best-group)
10511 (gnus-summary-next-article, gnus-summary-enter-digest-group)
10512 (gnus-summary-set-bookmark, gnus-offer-save-summaries)
10513 (gnus-summary-update-info, gnus-kill-or-deaden-summary):
10514 Use with-current-buffer.
10515
10516 2004-04-16 Teodor Zlatanov <tzz@lifelogs.com>
10517
10518 * spam.el (spam-summary-prepare-exit): Simplify logic.
10519 (spam-fetch-article-header): Read the article header if it's not
10520 available.
10521 (spam-list-articles): Simplify logic.
10522 (spam-filelist-register-routine): Fix bug with unregister-list.
10523
10524 * gnus-registry.el: Fix comments at beginning.
10525
10526 2004-04-16 Jesper Harder <harder@ifa.au.dk>
10527
10528 * message.el (message-cater-to-broken-inn): Remove.
10529 (message-shorten-references): Make sure the total folded length of
10530 References is shorter than 998 characters to cater to a bug in INN
10531 2.3. Also, don't pretend that references aren't folded -- this
10532 hasn't worked for a while.
10533
10534 2004-04-15 Kevin Greiner <kgreiner@xpediantsolutions.com>
10535
10536 * gnus-agent.el (gnus-agentize):
10537 gnus-agent-send-mail-real-function no longer set to current value
10538 of message-send-mail-function but rather a lambda that calls
10539 message-send-mail-function. The change makes the agent real-time
10540 responsive to user changes to message-send-mail-function.
10541
10542 2004-04-15 Kevin Greiner <kgreiner@xpediantsolutions.com>
10543
10544 * legacy-gnus-agent.el
10545 (gnus-agent-convert-to-compressed-agentview): Fixed typos with
10546 help from Florian Weimer <fw@deneb.enyo.de>
10547
10548 2004-04-15 Katsumi Yamaoka <yamaoka@jpl.org>
10549
10550 * nnmail.el (nnmail-cache-insert): Revert last change.
10551
10552 2004-04-14 Katsumi Yamaoka <yamaoka@jpl.org>
10553
10554 * nnmail.el (nnmail-cache-insert): Always check whether
10555 nnmail-cache-ignore-groups matches a group name.
10556
10557 2004-04-13 Teodor Zlatanov <tzz@lifelogs.com>
10558
10559 * spam.el (spam-fetch-field-fast, spam-generate-fake-headers)
10560 (spam-find-spam, spam-log-processing-to-registry)
10561 (spam-log-registered-p, spam-log-unregistration-needed-p)
10562 (spam-log-undo-registration): Use gnus-message instead of
10563 gnus-error, none of these errors are fatal.
10564
10565 * gnus-registry.el (gnus-registry-clean-empty-function)
10566 (gnus-registry-clean-empty): Remove only empty entries without
10567 extra data.
10568
10569 2004-04-12 Teodor Zlatanov <tzz@lifelogs.com>
10570
10571 * spam-stat.el (spam-stat-buffer-change-to-spam)
10572 (spam-stat-buffer-change-to-non-spam): Change (error) to
10573 (gnus-message 8) invocation.
10574
10575 2004-04-12 Katsumi Yamaoka <yamaoka@jpl.org>
10576
10577 * nntp.el (nntp-via-netcat-command): New variable.
10578 (nntp-via-netcat-switches): New variable.
10579 (nntp-open-via-rlogin-and-netcat): New function.
10580 (nntp-open-connection-function): Doc fix.
10581 (nntp-telnet-command): Doc fix.
10582 (nntp-end-of-line): Doc fix.
10583 (nntp-via-rlogin-command): Doc fix.
10584 (nntp-via-user-name): Doc fix.
10585 (nntp-via-address): Doc fix.
10586
10587 2004-04-09 Katsumi Yamaoka <yamaoka@jpl.org>
10588
10589 * mml2015.el (mml2015-use): Avoid the "Recursive load suspected"
10590 error in Emacs 21.1.
10591
10592 2004-04-08 Reiner Steib <Reiner.Steib@gmx.de>
10593
10594 * gnus-start.el (gnus-get-unread-articles): Fix last commit.
10595
10596 2004-04-07 Kevin Greiner <kgreiner@xpediantsolutions.com>
10597 * gnus-agent.el (gnus-agent-total-fetched-hashtb): New variable.
10598 (gnus-agent-with-refreshed-group): New macro.
10599 (gnus-agent-rename-group): New function.
10600 (gnus-agent-delete-group): New function.
10601 (gnus-agent-save-group-info): Use gnus-command-method when
10602 `method' parameter is nil. Don't write nil entries into the
10603 active file.
10604 (gnus-agent-get-group-info): New function.
10605 (gnus-agent-fetch-articles): Use
10606 gnus-agent-update-files-total-fetched-for to increment disk space
10607 used.
10608 (gnus-agent-fetch-headers, gnus-agent-save-alist): Use
10609 gnus-agent-update-view-total-fetched-for to increment disk space
10610 used.
10611 (gnus-agent-get-local): Added optional parameters to avoid calling
10612 gnus-group-real-name and gnus-find-method-for-group.
10613 (gnus-agent-set-local): Delete stored entry if either min, or max,
10614 are nil.
10615 (gnus-agent-fetch-session): Reworded error/quit messages. On
10616 quit, use gnus-agent-regenerate-group to record existance of any
10617 articles fetched to disk before the quit occurred.
10618 (gnus-agent-expire-group-1): Use gnus-agent-with-refreshed-group,
10619 gnus-agent-update-view-total-fetched-for, and
10620 gnus-agent-update-files-total-fetched-for to decrement disk space
10621 used.
10622 (gnus-agent-retrieve-headers): Use
10623 gnus-agent-update-view-total-fetched-for to increment disk space
10624 used.
10625 (gnus-agent-regenerate-group): Replace gnus-group-update-group
10626 with gnus-agent-update-files-total-fetched-for to decrement disk
10627 space and fresh group buffer.
10628 (gnus-agent-inhibit-update-total-fetched-for): New variable.
10629 (gnus-agent-need-update-total-fetched-for): New variable.
10630 (gnus-agent-update-files-total-fetched-for): New function.
10631 (gnus-agent-update-view-total-fetched-for): New function.
10632 (gnus-agent-total-fetched-for): New function.
10633
10634 * gnus-cache.el (gnus-cache-save-buffers): Use
10635 gnus-cache-update-overview-total-fetched-for to change disk space
10636 used by this group.
10637 (gnus-cache-possibly-enter-article): Use
10638 gnus-cache-update-file-total-fetched-for to increment disk space
10639 used by this group.
10640 (gnus-cache-possibly-remove-article): Use
10641 gnus-cache-update-file-total-fetched-for to decrement disk space
10642 used by this group.
10643 (gnus-cache-generate-nov-databases): Purge total fetched cache.
10644 (gnus-cache-rename-group): New function.
10645 (gnus-cache-delete-group): New function.
10646 (gnus-cache-inhibit-update-total-fetched-for): New variable.
10647 (gnus-cache-need-update-total-fetched-for): New variable.
10648 (gnus-cache-with-refreshed-group): New macro.
10649 (gnus-cache-update-file-total-fetched-for): New function.
10650 (gnus-cache-update-overview-total-fetched-for): New function.
10651 (gnus-cache-rename-group-total-fetched-for): New function.
10652 (gnus-cache-delete-group-total-fetched-for): New function.
10653 (gnus-cache-total-fetched-for): New function.
10654
10655 * gnus-group.el: Require gnus-sum and autoload functions to
10656 resolve warnings when gnus-group.el compiled alone.
10657 (gnus-group-line-format): Documented new %F
10658 (size of Fetched data) group line format; identifies disk space
10659 used by agent and cache.
10660 (gnus-group-line-format-alist): Defined new F format.
10661 (gnus-total-fetched-for): New function.
10662 (gnus-group-delete-group): No longer update
10663 gnus-cache-active-altered as gnus-request-delete-group now keeps
10664 the cache in sync.
10665 (gnus-group-list-active): Let the agent store a server's active
10666 list if currently plugged.
10667
10668 * gnus-int.el (gnus-request-delete-group):
10669 Use gnus-cache-delete-group and gnus-agent-delete-group to keep the
10670 local disk in sync with the server.
10671 (gnus-request-rename-group):
10672 Use gnus-cache-rename-group and gnus-agent-rename-group to keep the
10673 local disk in sync with the server.
10674
10675 * gnus-start.el (gnus-get-unread-articles):
10676 Cosmetic simplification to logic.
10677
10678 * gnus-util.el (gnus-rename-file): New function.
10679
10680 2004-04-07 Christian Neukirchen <chneukirchen@yahoo.de> (tiny change)
10681
10682 * mm-util.el (mm-image-load-path): Handle nil in load-path.
10683
10684 2004-04-07 Jesper Harder <harder@ifa.au.dk>
10685
10686 * rfc2047.el (rfc2047-encoded-word-regexp): Remove unnecessary
10687 '+'. Reported by Stefan Wiens <s.wi@gmx.net>.
10688
10689 2004-04-06 Jesper Harder <harder@ifa.au.dk>
10690
10691 * gnus-cache.el (gnus-cache-save-buffers): Check if buffer is
10692 alive. Reported by Laurent Martelli <laurent@aopsys.com>.
10693
10694 2004-04-03 Jesper Harder <harder@ifa.au.dk>
10695
10696 * gnus.el (gnus-getenv-nntpserver): Strip whitespace.
10697
10698 2004-04-02 Teodor Zlatanov <tzz@lifelogs.com>
10699
10700 * spam.el (spam-set-difference): Add function to replace
10701 gnus-set-difference in spam.el.
10702 (spam-summary-prepare-exit): Use spam-set-difference.
10703
10704 2004-03-29 Teodor Zlatanov <tzz@lifelogs.com>
10705
10706 * gnus-registry.el (gnus-registry-cache-file): Update to use
10707 gnus-dribble-directory OR gnus-home-directory OR ~.
10708 (gnus-registry-split-fancy-with-parent): Fix doc.
10709
10710 2004-03-27 Katsumi Yamaoka <yamaoka@jpl.org>
10711
10712 * message.el (message-exchange-point-and-mark): Use
10713 message-mark-active-p. Suggested by Jesper Harder
10714 <harder@ifa.au.dk>.
10715
10716 2004-03-26 Katsumi Yamaoka <yamaoka@jpl.org>
10717
10718 * message.el (message-exchange-point-and-mark): Don't activate
10719 region if it was inactive. Suggested by Hiroshi Fujishima
10720 <pooh@nature.tsukuba.ac.jp>.
10721
10722 2004-03-25 Katsumi Yamaoka <yamaoka@jpl.org>
10723
10724 * gnus-art.el (article-display-face): Display Faces in the same
10725 order as X-Faces.
10726
10727 2004-03-24 Katsumi Yamaoka <yamaoka@jpl.org>
10728
10729 * nndoc.el (nndoc-forward-type-p): Recognize envelope From_.
10730
10731 2004-03-23 Katsumi Yamaoka <yamaoka@jpl.org>
10732
10733 * gnus-art.el (gnus-mime-recompute-hierarchical-structure): Remove.
10734 (gnus-mime-multipart-functions): Revert 2004-03-19 change.
10735 (gnus-article-mime-hierarchy): Remove.
10736 (gnus-article-mime-hierarchy-next): Remove.
10737 (gnus-article-mode): Revert 2004-03-19 change.
10738 (gnus-article-setup-buffer): Revert 2004-03-19 change.
10739 (gnus-insert-mime-button): Revert 2004-03-19 change.
10740 (gnus-mime-accumulate-hierarchy): Remove.
10741 (gnus-mime-enter-multipart): Remove.
10742 (gnus-mime-leave-multipart): Remove,
10743 (gnus-mime-display-part): Revert 2004-03-19 change.
10744 (gnus-mime-display-alternative): Revert 2004-03-19 change.
10745
10746 * mml.el (mml-preview): Revert 2004-03-19 change.
10747
10748 2004-03-18 Helmut Waitzmann <Helmut.Waitzmann@web.de> (tiny change)
10749
10750 * gnus-sum.el (gnus-newsgroup-variables): Doc fix.
10751
10752 2004-03-22 Katsumi Yamaoka <yamaoka@jpl.org>
10753
10754 * mm-decode.el (mm-save-part): Bind enable-multibyte-characters to
10755 t while entering a file name using the mm-with-multibyte macro.
10756 Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
10757
10758 * mm-util.el (mm-with-multibyte): New macro.
10759
10760 2004-03-19 Katsumi Yamaoka <yamaoka@jpl.org>
10761
10762 * gnus-art.el (gnus-mime-recompute-hierarchical-structure): New
10763 user option.
10764 (gnus-mime-multipart-functions): Doc and customization fix.
10765 (gnus-article-mime-hierarchy): New variable.
10766 (gnus-article-mime-hierarchy-next): New variable.
10767 (gnus-article-mode): Make gnus-article-mime-hierarchy buffer-local.
10768 (gnus-article-setup-buffer): Set gnus-article-mime-hierarchy and
10769 gnus-article-mime-hierarchy-next to nil.
10770 (gnus-insert-mime-button): Show hierarchy numbers.
10771 (gnus-mime-accumulate-hierarchy): New function.
10772 (gnus-mime-enter-multipart): New function.
10773 (gnus-mime-leave-multipart): New function.
10774 (gnus-mime-display-part): Recompute hierarchical MIME structure.
10775 (gnus-mime-display-alternative): Show hierarchy numbers.
10776
10777 * mml.el (mml-preview): Set gnus-article-mime-hierarchy and
10778 gnus-article-mime-hierarchy-next to nil.
10779
10780 2004-03-19 Steve Youngs <sryoungs@bigpond.net.au>
10781
10782 * dns.el: Don't require gnus-xmas.
10783
10784 2004-03-17 Jesper Harder <harder@ifa.au.dk>
10785
10786 * mml.el (mml-generate-mime-1): Don't use format=flowed with
10787 inline PGP.
10788 (mml-menu): Disable mml-quote-region if mark is inactive.
10789
10790 2004-03-17 Katsumi Yamaoka <yamaoka@jpl.org>
10791
10792 * gnus-agent.el (gnus-agent-regenerate-group): Activate the group
10793 when the group's active is not available.
10794
10795 2004-03-15 Katsumi Yamaoka <yamaoka@jpl.org>
10796
10797 * gnus-agent.el (gnus-agent-read-agentview): Add a missing arg to
10798 error.
10799
10800 2004-03-12 Reiner Steib <Reiner.Steib@gmx.de>
10801
10802 * imap.el (imap-store-password): New variable.
10803 (imap-interactive-login): Use it.
10804 Suggested by Mark Plaksin <happy@mcplaksin.org>.
10805
10806 2004-03-12 Katsumi Yamaoka <yamaoka@jpl.org>
10807
10808 * gnus-art.el (gnus-article-read-summary-keys): Restore new
10809 window-start and hscroll to summary window.
10810
10811 2004-03-12 Kevin Greiner <kgreiner@xpediantsolutions.com>
10812
10813 * gnus-start.el (gnus-convert-old-newsrc): Only write the
10814 conversion message to newsrc-dribble when an actual conversion is
10815 performed.
10816
10817 2004-03-10 Malcolm Purvis <malcolmpurvis@optushome.com.au> (tiny change)
10818
10819 * spam-stat.el (spam-stat-coding-system): Use mm-coding-system-p.
10820
10821 2004-03-10 Katsumi Yamaoka <yamaoka@jpl.org>
10822
10823 * mm-decode.el (mm-complicated-handles): New function reviving
10824 former definition of mm-multiple-handles.
10825
10826 * gnus-art.el (gnus-mime-save-part-and-strip): Use it.
10827 (gnus-mime-delete-part): Use it.
10828
10829 2004-03-09 Kevin Greiner <kgreiner@xpediantsolutions.com>
10830
10831 * gnus-agent.el (gnus-agent-read-local): Bind
10832 nnheader-file-coding-system to gnus-agent-file-coding-system to
10833 avoid the implicit assumption that they will always be equal.
10834 (gnus-agent-save-local): Bind buffer-file-coding-system, not
10835 coding-system-for-write, as the with-temp-file macro first prints
10836 to a buffer then saves the buffer.
10837
10838 2004-03-09 Katsumi Yamaoka <yamaoka@jpl.org>
10839
10840 * gnus-art.el (gnus-article-edit-part): New function.
10841 (gnus-mime-save-part-and-strip): Use it; do query instead of
10842 signaling an error; don't use mm-multiple-handles.
10843 (gnus-mime-delete-part): Ditto.
10844
10845 2004-03-08 Kevin Greiner <kgreiner@xpediantsolutions.com>
10846
10847 * gnus-agent.el (gnus-agent-read-agentview): Removed support for
10848 old file versions.
10849 (gnus-group-prepare-hook): Removed function that converted list
10850 form of gnus-agent-expire-days to group properties.
10851
10852 * gnus-int.el: Autoload gnus-agent-regenerate-group.
10853 (gnus-request-accept-article): Re-indented.
10854
10855 * gnus-start.el (gnus-convert-old-newsrc): Registered new
10856 converters to handle old agent file formats. Added logic for a
10857 "backup before upgrading warning".
10858 (gnus-convert-mark-converter-prompt): Developers can mark
10859 functions as needing (default), or not needing,
10860 gnus-convert-old-newsrc's "backup before upgrading warning".
10861 (gnus-convert-converter-needs-prompt): Tests whether the user
10862 should be protected from potentially irreversable changes by the
10863 function.
10864
10865 * legacy-gnus-agent.el: New. Provides converters that are only
10866 loaded when gnus-convert-old-newsrc needs to call them.
10867
10868 2004-03-08 Katsumi Yamaoka <yamaoka@jpl.org>
10869
10870 * mail-source.el (mail-source-touch-pop): Doc fix.
10871
10872 * message.el (message-smtpmail-send-it): Doc fix.
10873
10874 2004-03-05 Jesper Harder <harder@ifa.au.dk>
10875
10876 * sha1-el.el (sha1-maximum-internal-length): Doc fix.
10877
10878 * nnmail.el (nnmail-split-fancy): do.
10879
10880 * gnus-kill.el (gnus-kill, gnus-execute): do.
10881
10882 2004-03-05 Per Abrahamsen <abraham@dina.kvl.dk>
10883
10884 * gnus-sum.el (gnus-widget-reversible-match)
10885 (gnus-widget-reversible-to-internal)
10886 (gnus-widget-reversible-to-external): New functions.
10887 (gnus-widget-reversible): New widget.
10888 (gnus-article-sort-functions, gnus-thread-sort-functions): Use it.
10889
10890 2004-03-05 Kai Grossjohann <kgrossjo@eu.uu.net>
10891
10892 * gnus-sum.el (gnus-thread-sort-functions)
10893 (gnus-article-sort-functions): Document `(not F)' items.
10894
10895 2004-03-04 Teodor Zlatanov <tzz@lifelogs.com>
10896
10897 * spam.el (spam-use-gmane-xref): Add new backend.
10898 (spam-gmane-xref-spam-group): Add variable to control the name of the
10899 Gmane spam group.
10900 (spam-blackhole-servers, spam-blackhole-good-server-regex)
10901 (spam-regex-headers-spam, spam-regex-headers-ham)
10902 (spam-regex-body-spam, spam-regex-body-ham): Clarify docs.
10903 (spam-list-of-checks): Add spam-use-gmane-xref to list of
10904 backends and checks.
10905 (spam-check-gmane-xref): Add function for spam-use-gmane-xref.
10906
10907 * gnus.el (spam-autodetect-methods): Add spam-use-gmane-xref as
10908 an autodetect method.
10909
10910 2004-03-04 Kevin Greiner <kgreiner@xpediantsolutions.com>
10911
10912 * gnus-int.el (gnus-request-accept-article): Inform the agent that
10913 articles are being added to a group.
10914 (gnus-request-replace-article): Inform the agent that articles
10915 need to be uncached as the cached contents are no longer valid.
10916
10917 2004-03-04 Katsumi Yamaoka <yamaoka@jpl.org>
10918
10919 * binhex.el: Don't autoload executable-find.
10920
10921 * canlock.el: Don't autoload mail-fetch-field.
10922
10923 * gnus-ems.el: Don't autoload appt-select-lowest-window.
10924
10925 * gnus-msg.el: Don't autoload news-reply-mode, news-setup,
10926 rmail-dont-reply-to and rmail-output.
10927
10928 * gnus-score.el: Don't autoload ffap-string-at-point.
10929
10930 * gnus-setup.el: Don't autoload sc-cite-original.
10931
10932 * imap.el: Don't autoload base64-decode-string,
10933 base64-encode-string and md5.
10934
10935 * message.el: Autoload rmail-dont-reply-to, rmail-msg-is-pruned
10936 and rmail-msg-restore-non-pruned-header.
10937
10938 * mm-decode.el: Don't autoload executable-find.
10939
10940 * mm-url.el: Don't autoload executable-find.
10941
10942 * mm-view.el: Don't autoload diff-mode.
10943
10944 * nndb.el: Don't autoload news-reply-mode, news-setup,
10945 cancel-timer and telnet.
10946
10947 * password.el: Don't autoload run-at-time for Emacs.
10948
10949 * sha1-el.el: Don't autoload executable-find.
10950
10951 * sieve-mode.el: Don't autoload c-mode.
10952
10953 * uudecode.el: Don't autoload executable-find.
10954
10955 2004-03-04 Kevin Greiner <kgreiner@xpediantsolutions.com>
10956
10957 * gnus-agent.el (gnus-agent-file-header-cache): Removed.
10958 (gnus-agent-possibly-alter-active): Avoid null in numeric
10959 comparison.
10960 (gnus-agent-set-local): Refuse to save null in local object table.
10961 (gnus-agent-regenerate-group): The REREAD parameter can now be a
10962 list of articles that will be marked as unread.
10963
10964 2004-03-04 Katsumi Yamaoka <yamaoka@jpl.org>
10965
10966 * rfc2047.el (rfc2047-encoded-word-regexp): Mismatched paren.
10967
10968 2004-03-04 Jesper Harder <harder@ifa.au.dk>
10969
10970 * rfc2047.el (rfc2047-encoded-word-regexp): Support RFC 2231
10971 language tags.
10972
10973 2004-03-03 Per Abrahamsen <abraham@dina.kvl.dk>
10974
10975 * gnus-agent.el (gnus-agent-read-local, gnus-agent-save-local):
10976 Don't bind "obarray".
10977
10978 * gnus-sum.el (gnus-thread-sort-functions): Added
10979 `gnus-thread-sort-by-most-recent-number' and
10980 `gnus-thread-sort-by-most-recent-date'.
10981 Reported by Kai Grossjohann <kai@emptydomain.de>.
10982
10983 2004-03-03 Katsumi Yamaoka <yamaoka@jpl.org>
10984
10985 * gnus-cus.el (gnus-agent-customize-category): Mismatched paren.
10986
10987 2004-03-02 Kevin Greiner <kgreiner@xpediantsolutions.com>
10988
10989 * gnus-cus.el (gnus-agent-customize-category): Removed
10990 ignore-errors macro reference that required cl to be loaded at
10991 run-time.
10992
10993 * gnus-range.el (gnus-sorted-range-intersection): Now accepts
10994 single-interval range of the form (min . max). Previously the
10995 range had to look like ((min . max)). Likewise, return
10996 (min . max) rather than ((min . max)).
10997 (gnus-range-map): Use gnus-range-normalize to accept
10998 single-interval range.
10999
11000 * gnus-sum.el (gnus-summary-highlight-line): Articles stored in
11001 the cache, but not the agent, now appear with their usual face.
11002
11003 2004-03-01 Katsumi Yamaoka <yamaoka@jpl.org>
11004
11005 * gnus-art.el (gnus-article-wash-html-with-w3m): Don't make the
11006 w3m-safe-url-regexp variable buffer-local.
11007
11008 * mm-view.el (mm-inline-text-html-render-with-w3m): Ditto.
11009
11010 2004-02-27 Simon Josefsson <jas@extundo.com>
11011
11012 * gnus-sum.el (gnus-move-group-prefix-function): Add, default to
11013 gnus-group-real-prefix.
11014 (gnus-summary-move-article): Use it, instead of
11015 gnus-group-real-prefix.
11016
11017 2004-02-27 Katsumi Yamaoka <yamaoka@jpl.org>
11018
11019 * gnus-art.el (gnus-article-wash-html-with-w3m): Make the
11020 w3m-safe-url-regexp variable buffer-local and set it as the value
11021 of mm-w3m-safe-url-regexp.
11022
11023 * mm-view.el (mm-inline-text-html-render-with-w3m): Ditto.
11024
11025 * gnus-msg.el (gnus-setup-message): Ignore an article copy while
11026 parsing gnus-posting-styles when the message is not for replying.
11027
11028 * nnrss.el (nnrss-opml-export): Use
11029 mm-set-buffer-file-coding-system instead of
11030 set-buffer-file-coding-system.
11031
11032 2004-02-27 Jesper Harder <harder@ifa.au.dk>
11033
11034 * spam-stat.el: Pedantic docstring and whitespace fixes (courtesy
11035 of checkdoc.el).
11036 * nnrss.el: do.
11037 * gnus-mlspl.el: do.
11038 * gnus-ml.el: do.
11039 * gnus-srvr.el: do.
11040
11041 * nnrss.el (nnrss-opml-export): Turn on sgml-mode.
11042
11043 2004-02-27 Kevin Ryde <user42@zip.com.au> (tiny change)
11044
11045 * gnus.el (gnus-group, gnus-summary, gnus-summary-sort):
11046 Corrections to custom-manual links.
11047
11048 * gnus-art.el (gnus-article): Ditto.
11049
11050 * mm-decode.el (mime-display, mime-security): Ditto.
11051
11052 2004-02-26 Jesper Harder <harder@ifa.au.dk>
11053
11054 * flow-fill.el: Typo.
11055
11056 2004-02-26 Andrew Cohen <cohen@andy.bu.edu>
11057
11058 * spam-wash.el: New file.
11059
11060 2004-02-26 Mark A. Hershberger <mah@everybody.org>
11061
11062 * nnrss.el (nnrss-opml-import, nnrss-opml-export): New functions.
11063
11064 2004-02-26 Teodor Zlatanov <tzz@lifelogs.com>
11065
11066 * spam.el (spam-summary-prepare-exit): Fix gnus-set-difference: needs
11067 to be run with new-articles as LIST1, not LIST2.
11068 (spam-registration-functions): Add spam-use-ham-copy as a nil
11069 registration backend.
11070
11071 2004-02-26 Jesper Harder <harder@ifa.au.dk>
11072
11073 * spam-stat.el (spam-stat-washing-hook): New option.
11074 (spam-stat-buffer-words): Use it.
11075 (spam-stat-process-directory, spam-stat-test-directory): Use
11076 insert-file-contents-literally.
11077 (spam-stat-coding-system): New variable.
11078 (spam-stat-load, spam-stat-save): Use it.
11079
11080 2004-02-25 Katsumi Yamaoka <yamaoka@jpl.org>
11081
11082 * spam-report.el (spam-report-plug-agent): Quote
11083 spam-report-url-to-file and spam-report-url-ping-plain.
11084
11085 2004-02-25 Reiner Steib <Reiner.Steib@gmx.de>
11086
11087 * gnus-art.el (gnus-button-alist, gnus-header-button-alist): Allow
11088 / in mailto URLs.
11089
11090 2004-02-24 Reiner Steib <Reiner.Steib@gmx.de>
11091
11092 * spam-report.el (spam-report-process-queue): Fix interactive use.
11093 (spam-report-url-ping-temp-agent-function, spam-report-plug-agent)
11094 (spam-report-unplug-agent): Doc fixes.
11095 (spam-report-url-ping-mm-url, spam-report-url-to-file)
11096 (spam-report-agentize, spam-report-deagentize): Autoload
11097
11098 2004-02-24 Katsumi Yamaoka <yamaoka@jpl.org>
11099
11100 * message.el (message-setup-fill-variables): Add mml tags to
11101 paragraph-start and paragraph-separate. Suggested by Andrew Korty
11102 <ajk@iu.edu>.
11103 (message-mode): Don't modify paragraph-separate there.
11104
11105 2004-02-17 Katsumi Yamaoka <yamaoka@jpl.org>
11106
11107 * compface.el (uncompface-use-external): Default to undecided.
11108 (uncompface-use-external-threshold): New variable.
11109 (uncompface-float-time): New macro.
11110 (uncompface): Determine whether to use the external decoder if
11111 uncompface-use-external is undecided.
11112
11113 2004-02-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
11114
11115 * mm-view.el (mm-inline-image-emacs): Don't insert blank lines
11116 after images.
11117
11118 * gnus-art.el (gnus-mime-display-single): Remove dead code.
11119
11120 2004-02-14 Jesper Harder <harder@ifa.au.dk>
11121
11122 * nnrss.el (nnrss-request-article, nnrss-find-el): Cleanup.
11123
11124 * html2text.el (html2text-get-attr, html2text-fix-paragraph): do.
11125
11126 * gnus-sum.el (gnus-summary-limit-to-age)
11127 (gnus-summary-limit-children): do.
11128
11129 * gnus-int.el (gnus-request-scan): do.
11130
11131 * gnus-group.el (gnus-group-suspend): do.
11132
11133 * gnus-cus.el (gnus-agent-cat-prepare-category-field): do.
11134
11135 * gnus-cite.el (gnus-cite-parse-attributions): do.
11136
11137 * gnus-agent.el (gnus-summary-set-agent-mark)
11138 (gnus-agent-regenerate-group): do.
11139
11140 * deuglify.el (gnus-article-outlook-unwrap-lines): do.
11141
11142 * binhex.el (binhex-decode-region-internal): do.
11143
11144 2004-02-12 Katsumi Yamaoka <yamaoka@jpl.org>
11145
11146 * gnus-fun.el (gnus-face-properties-alist): New user option.
11147 (gnus-display-x-face-in-from): Use it.
11148
11149 * gnus-art.el (article-display-face): Ditto.
11150
11151 * compface.el (uncompface-use-external): Default to nil.
11152
11153 2004-02-12 Jesper Harder <harder@ifa.au.dk>
11154
11155 * nntp.el (nntp-erase-buffer): New function.
11156 (nntp-retrieve-data, nntp-send-command)
11157 (nntp-send-buffer, nntp-retrieve-groups, nntp-handle-authinfo)
11158 (nntp-possibly-change-group): Use it.
11159
11160 * nnnil.el (nnnil-retrieve-headers, nnnil-request-list): Use
11161 with-current-buffer.
11162
11163 2004-02-12 TAKAI Kousuke <tak@kmc.gr.jp>
11164
11165 * compface.el: Merge the ELisp-based uncompface program.
11166 (compface): New customization group.
11167 (uncompface-use-external): New user option.
11168 (uncompface): Call uncompface-internal if uncompface-use-external
11169 is nil.
11170 (uncompface-internal): New function. Note that there are also
11171 some other functions and variables added for this function.
11172
11173 2004-02-10 Jesper Harder <harder@ifa.au.dk>
11174
11175 * nnrss.el (nnrss-read-group-data): Initialize nnrss-group-hashtb
11176 if necessary.
11177
11178 2004-02-09 Teodor Zlatanov <tzz@lifelogs.com>
11179
11180 * spam-report.el (spam-report-unplug-agent)
11181 (spam-report-plug-agent, spam-report-deagentize)
11182 (spam-report-agentize, spam-report-url-ping-temp-agent-function):
11183 Add support for the Agent in spam-report: when unplugged, report to a
11184 file; when plugged, submit all the requests.
11185
11186 * spam.el (spam-register-routine): Fix message about
11187 registration.
11188
11189 2004-02-09 Jesper Harder <harder@ifa.au.dk>
11190
11191 * rfc2047.el (rfc2047-qp-or-base64): New function to reduce
11192 dependencies.
11193 (rfc2047-encode): Use it.
11194
11195 * gnus-art.el (gnus-button-marker-list): Move before first
11196 reference.
11197
11198 * imap.el (imap-parse-flag-list, imap-parse-body-extension)
11199 (imap-parse-body): Fix format string mismatch.
11200
11201 * gnus-score.el (gnus-summary-increase-score): do.
11202
11203 * nnrss.el (nnrss-close): New function.
11204
11205 2004-02-08 Jesper Harder <harder@ifa.au.dk>
11206
11207 * nnrss.el (nnrss-make-filename): New function.
11208 (nnrss-request-delete-group, nnrss-read-server-data)
11209 (nnrss-save-server-data, nnrss-read-group-data)
11210 (nnrss-save-group-data): Use it.
11211 (nnrss-save-server-data, nnrss-save-group-data): Use gnus-prin1.
11212 (nnrss-read-server-data, nnrss-read-group-data): Use load.
11213 (nnrss-group-hashtb): Make it a hash table rather than an obarray.
11214
11215 2004-02-07 Jesper Harder <harder@ifa.au.dk>
11216
11217 * mml.el (mml-compute-boundary-1): Don't uncompress files.
11218
11219 2004-02-06 Jesper Harder <harder@ifa.au.dk>
11220
11221 * mml.el (mml-mode, mml-x-dnd-attach-file): Attach drop and drag
11222 files.
11223
11224 * message.el (message-generate-headers-first): Don't quote nil
11225 and t in docstrings.
11226
11227 * imap.el (imap-id): do.
11228
11229 * gnus-agent.el (gnus-agent-consider-all-articles)
11230 (gnus-agent-queue-mail): do.
11231
11232 2004-02-05 Reiner Steib <Reiner.Steib@gmx.de>
11233
11234 * spam-report.el (spam-report-process-queue): New function.
11235 Process requests from `spam-report-requests-file'.
11236 (spam-report-process-queue): Doc fix.
11237
11238 2004-02-05 Teodor Zlatanov <tzz@lifelogs.com>
11239
11240 * spam.el (spam-register-routine)
11241 (spam-log-processing-to-registry, spam-log-registered-p)
11242 (spam-log-unregistration-needed-p, spam-log-undo-registration):
11243 Change "check" to "spam-check" for semi-clarity.
11244
11245 2004-02-05 Jesper Harder <harder@ifa.au.dk>
11246
11247 * pop3.el: Require nnheader.
11248
11249 * mml-smime.el: Require cl. Autoload message-fetch-field.
11250
11251 * mml-sec.el (mml-signencrypt-style): Don't depend on Gnus.
11252
11253 * gnus-picon.el: Require cl.
11254
11255 * gnus-fun.el: Require gnus-ems and gnus-util.
11256
11257 * gnus.el (gnus-method-to-server): Move defsubst before first use.
11258
11259 * gnus-diary.el (gnus-diary-header-schedule): caddr -> car (cddr
11260
11261 * gnus-art.el (gnus-article-edit-mode): Define before first
11262 reference.
11263
11264 2004-02-04 Jesper Harder <harder@ifa.au.dk>
11265
11266 * gnus-uu.el (gnus-uu-check-correct-stripped-uucode): Simplify.
11267 (gnus-uu-post-encoded): Use point-at-bol.
11268
11269 * gnus-topic.el (gnus-group-active-topic-p): do.
11270
11271 * gnus-start.el (gnus-newsrc-to-gnus-format): do.
11272
11273 * gnus-group.el (gnus-group-kill-region): do.
11274
11275 * gnus-art.el (article-date-ut): do.
11276
11277 * message.el (message-fetch-field): Remove redundant
11278 case-fold-search binding.
11279 (message-narrow-to-field): Simplify.
11280
11281 2004-02-03 Reiner Steib <Reiner.Steib@gmx.de>
11282
11283 * spam.el (spam-directory): Derive from `gnus-directory'.
11284
11285 * spam-report.el (spam-report-url-to-file)
11286 (spam-report-requests-file): New function and variable for offline
11287 reporting.
11288 (spam-report-url-ping-function): Add `spam-report-url-to-file'
11289 and user defined function.
11290 (spam-report-url-ping-mm-url): Remove doubled slash.
11291
11292 2004-02-03 Teodor Zlatanov <tzz@lifelogs.com>
11293
11294 * spam.el (spam-list-of-processors): Fix spamassassin variable names.
11295
11296 2004-02-03 Jesper Harder <harder@ifa.au.dk>
11297
11298 * spam.el (spam-check-spamoracle, spam-spamoracle-learn): Fix
11299 format string mismatch.
11300
11301 * sieve.el (sieve-deactivate-all): do.
11302
11303 * nnfolder.el (nnfolder-request-set-mark, nnfolder-save-marks): do.
11304
11305 * nnlistserv.el (nnlistserv-kk-wash-article): do.
11306
11307 * nnml.el (nnml-request-set-mark, nnml-save-marks): do.
11308
11309 * mm-bodies.el (mm-7bit-chars): Don't include \r.
11310
11311 2004-02-02 Teodor Zlatanov <tzz@lifelogs.com>
11312
11313 * spam.el (spam-list-of-checks): Add spam-use-BBDB-eclusive to
11314 the list of checks.
11315
11316 2004-01-31 Jesper Harder <harder@ifa.au.dk>
11317
11318 * rfc2047.el (rfc2047-pad-base64): Deal with more cases of invalid
11319 padding.
11320
11321 2004-01-27 Ralf Angeli <angeli@iwi.uni-sb.de>
11322
11323 * mm-view.el (mm-fill-flowed): New variable.
11324 (mm-inline-text): Use it.
11325
11326 2004-01-27 Teodor Zlatanov <tzz@lifelogs.com>
11327
11328 * spam.el (spam-spamassassin-register-ham-routine)
11329 (spam-spamassassin-register-spam-routine): Fix function names.
11330
11331 2004-01-27 Katsumi Yamaoka <yamaoka@jpl.org>
11332
11333 * gnus.el (gnus-tmp-grouplens): Remove.
11334 (gnus-summary-line-format): Remove grouplens.
11335
11336 * gnus-group.el (gnus-group-line-format): Ditto.
11337
11338 * gnus-spec.el (gnus-format-specs): Ditto.
11339 (gnus-update-format-specifications): Flush the group format spec
11340 cache if there's the grouplens stuff.
11341 (gnus-parse-simple-format): Replace %l with the empty string.
11342
11343 2004-01-27 Jerry James <james@xemacs.org> (tiny change)
11344
11345 * gnus-spec.el (gnus-parse-simple-format): Fix setq value
11346 omission.
11347
11348 2004-01-26 Katsumi Yamaoka <yamaoka@jpl.org>
11349
11350 * gnus-msg.el (gnus-summary-resend-message-edit): Call mime-to-mml.
11351 Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
11352
11353 2004-01-25 Paul Jarc <prj@po.cwru.edu>
11354
11355 * nnmaildir.el (nnmaildir--num-file, nnmaildir--mkfile,
11356 nnmaildir--emlink-p, nnmaildir--eexist-p, nnmaildir--new-number):
11357 New macros and functions.
11358 * nnmaildir.el (nnmaildir--group-maxnum, nnmaildir--update-nov):
11359 Handle > NLINK_MAX messages.
11360 * nnmaildir.el (nnmaildir-request-set-mark): Use
11361 nnmaildir--emlink-p and nnmaildir--eexist-p.
11362
11363 2004-01-25 Alex Schroeder <alex@gnu.org>
11364
11365 * spam-stat.el (spam-stat-process-directory-age): New option.
11366 (spam-stat-process-directory): Use it.
11367
11368 2004-01-24 Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp> (tiny change)
11369
11370 * spam-stat.el (spam-stat-reduce-size): Set spam-stat-dirty.
11371 (spam-stat-save): Accept prefix argument.
11372
11373 2004-01-23 Paul Jarc <prj@po.cwru.edu>
11374
11375 * nnmaildir.el (nnmaildir-request-set-mark): Handle the "too many
11376 links" error.
11377
11378 2004-01-23 Jesper Harder <harder@ifa.au.dk>
11379
11380 * gnus.el (gnus-tmp-grouplens): Define for the sake of backward
11381 compatibility with old .newsrc.eld files.
11382
11383 * gnus-sum.el (gnus-summary-line-format-alist): Remove grouplens.
11384
11385 * gnus-start.el (gnus-1): do.
11386
11387 * gnus-group.el (gnus-group-line-format-alist): do.
11388
11389 * gnus.el (gnus-use-grouplens, gnus-visual): do.
11390
11391 * gnus-gl.el: Remove.
11392
11393 2004-01-23 Kevin Greiner <kgreiner@xpediantsolutions.com>
11394
11395 * gnus-sum.el (gnus-adjust-marks): Now correctly handles a list of
11396 marks consisting of a single range {for example, (3 . 5)} rather
11397 than a list of a single range { ((3 . 5)) }.
11398
11399 2004-01-23 Jesper Harder <harder@ifa.au.dk>
11400
11401 * spam-stat.el (spam-stat-store-gnus-article-buffer): Use
11402 with-current-buffer.
11403 (spam-stat-store-current-buffer): Use insert-buffer-substring to
11404 avoid consing a string.
11405
11406 * mm-util.el (mm-charset-synonym-alist): Add ks_c_5601-1987.
11407 Remove obsolete entries for big5 and gb2312.
11408
11409 2004-01-22 Kevin Greiner <kgreiner@xpediantsolutions.com>
11410
11411 * gnus-sum.el (gnus-adjust-marks): Avoid splicing null INTO the
11412 uncompressed list.
11413
11414 2004-01-22 Jesper Harder <harder@ifa.au.dk>
11415
11416 * spam-stat.el (spam-stat-strip-xref): New function.
11417 (spam-stat-process-directory): Use it.
11418
11419 * gnus-util.el (gnus-fetch-field): Don't bind case-fold-search
11420 here -- it's done in message-fetch-field.
11421
11422 2004-01-21 Kevin Greiner <kgreiner@xpediantsolutions.com>
11423
11424 * gnus-agent.el (gnus-agent-queue-mail,
11425 gnus-agent-prompt-send-queue): New variables.
11426 (gnus-agent-send-mail): Use gnus-agent-queue-mail.
11427 * gnus-draft.el (gnus-group-send-queue): Pass the group name
11428 "nndraft:queue" along to gnus-draft-send. Use
11429 gnus-agent-prompt-send-queue.
11430 (gnus-draft-send): Rebind gnus-agent-queue-mail to nil when group
11431 is "nndraft:queue". Suggested by Gaute Strokkenes
11432 <gs234@srcf.ucam.org>
11433
11434 * gnus-agent.el (agent-disable-undownloaded-faces): Removed
11435 (agent-enable-undownloaded-faces): Added
11436 (gnus-agent-cat-groups): Use eval-and-compile, not
11437 eval-when-compile, to define gnus-agent-set-cat-groups as the setf
11438 method of gnus-agent-cat-groups even when the buffer has been
11439 evaled.
11440 (gnus-agent-save-active, gnus-agent-save-active-1): Merged to
11441 delete gnus-agent-save-active-1.
11442 (gnus-agent-save-groups): Deleted. Identical to
11443 gnus-agent-save-active.
11444 (gnus-agent-write-active): No longer adjust agent's copy of active
11445 file as agent's adjustments are now stored in their own
11446 file. Removed optional parameter.
11447 (gnus-agent-possibly-alter-active): Ignore groups of unagentized
11448 servers. Add use of min/max range limits from server's local
11449 file.
11450 (gnus-agent-save-alist): Removed unused optional argument.
11451 (gnus-agent-load-local, gnus-agent-read-and-cache-local),
11452 (gnus-agent-read-local, gnus-agent-save-local, gnus-agent-get-local),
11453 (gnus-agent-set-local): A per-server file that keeps min/max range
11454 limits for articles known to the agent. Provides a fast mechanism
11455 for altering many active ranges.
11456 (gnus-agent-expire-group, gnus-agent-expire): No longer save the
11457 active file (local makes it unnecessary).
11458 (gnus-agent-regenerate-group): Fixed XEmacs compatibility.
11459
11460 * gnus-cus.el (agent-disable-undownloaded-faces): Removed
11461 (agent-enable-undownloaded-faces): Added
11462
11463 * gnus-draft.el (gnus-draft-send): Bind gnus-agent-queue-mail to
11464 disable it when sending to "nndraft:queue".
11465 (gnus-group-send-queue): Add safety check to avoid sending queue
11466 when unplugged.
11467
11468 * gnus-group.el (gnus-group-catchup): Use new
11469 gnus-sequence-of-unread-articles, not
11470 gnus-list-of-unread-articles, to avoid exhausting memory with huge
11471 numbers of articles. Use gnus-range-map to avoid having to
11472 uncompress the unread list.
11473 (gnus-group-archive-directory,
11474 gnus-group-recent-archive-directory): Fixed invalid ange-ftp
11475 reference.
11476
11477 * gnus-range.el (gnus-range-map): Iterate over list or sequence.
11478 (gnus-sorted-range-intersection): Intersection of two ranges
11479 without requiring that they first be uncompressed.
11480
11481 * gnus-start.el (gnus-activate-group): Unless blocked by the
11482 caller, possibly expand the active range to include both cached
11483 and agentized articles.
11484 (gnus-convert-old-newsrc): Rewrote in anticipation of having
11485 multiple version-dependent converters.
11486 (gnus-groups-to-gnus-format): Replaced gnus-agent-save-groups with
11487 gnus-agent-save-active.
11488 (gnus-save-newsrc-file): Save dirty agent range limits.
11489
11490 * gnus-sum.el (gnus-select-newgroup): Replaced inline code with
11491 gnus-agent-possibly-alter-active.
11492 (gnus-adjust-marked-articles): Faster handling of simple lists
11493
11494 2004-01-21 Jesper Harder <harder@ifa.au.dk>
11495
11496 * spam-stat.el (spam-stat-test-directory): New optional argument
11497 displays a list of files detected. Suggested by Andrew Cohen
11498 <cohen@andy.bu.edu>.
11499 (spam-stat-buffer-words-with-scores): Don't narrow and change
11500 syntax table here. Reported by Andrew Cohen <cohen@andy.bu.edu>.
11501
11502 2004-01-20 Hubert Chan <hubert@uhoreg.ca>:
11503
11504 * spam.el (spam-use-spamassassin, spam-use-spamassassin-headers)
11505 (spam-install-hooks, spam-spamassassin, spam-spamassassin-path)
11506 (spam-spamassassin-arguments)
11507 (spam-spamassassin-spam-flag-header)
11508 (spam-spamassassin-positive-spam-flag-header)
11509 (spam-spamassassin-spam-status-header, spam-sa-learn-path)
11510 (spam-sa-learn-rebuild, spam-sa-learn-spam-switch)
11511 (spam-sa-learn-ham-switch, spam-sa-learn-unregister-switch)
11512 (spam-list-of-processors, spam-list-of-checks)
11513 (spam-list-of-statistical-checks, spam-registration-functions)
11514 (spam-check-spamassassin-headers, spam-check-spamassassin)
11515 (spam-spamassassin-score)
11516 (spam-spamassassin-register-with-sa-learn)
11517 (spam-spamassassin-register-spam-routine)
11518 (spam-spamassassin-register-ham-routine)
11519 (spam-assassin-register-spam-routine)
11520 (spam-assassin-register-ham-routine): Add SpamAssassin support.
11521 (spam-bogofilter-score): Fix to show article before scoring.
11522
11523 2004-01-20 Teodor Zlatanov <tzz@lifelogs.com>
11524
11525 * spam.el (gnus-summary-mode-map): Make spam-generic-score the
11526 default scoring function.
11527 (spam-generic-score): Call spam-spamassassin-score if
11528 spam-use-spamassassin or spam-use-spamassassin-headers is on;
11529 spam-bogofilter-score otherwise.
11530
11531 * gnus.el (spam-process, spam-autodetect-methods): Add
11532 spamassassin and spamassassin-headers.
11533
11534 2004-01-20 Nevin Kapur <nkapur@cs.caltech.edu>
11535
11536 * gnus-registry.el (gnus-registry-split-fancy-with-parent):
11537 Suppress unnecessary messages.
11538
11539 2004-01-20 Jesper Harder <harder@ifa.au.dk>
11540
11541 * spam-stat.el (spam-stat-to-hash-table): Use :size keyword in
11542 make-hash-table.
11543
11544 2004-01-19 Katsumi Yamaoka <yamaoka@jpl.org>
11545
11546 * canlock.el (base64-encode-string): Don't autoload it.
11547
11548 2004-01-16 Katsumi Yamaoka <yamaoka@jpl.org>
11549
11550 * run-at-time.el: Remove useless (require 'itimer),
11551 eval-and-compile and (featurep 'xemacs).
11552
11553 2004-01-16 Jesper Harder <harder@ifa.au.dk>
11554
11555 * gnus-msg.el (gnus-post-news): Use blank Newsgroups line if
11556 GROUP is a virtual group.
11557
11558 2004-01-16 Steve Youngs <sryoungs@bigpond.net.au>
11559
11560 * gnus.el: Autoload `message-y-or-n-p'.
11561
11562 2004-01-15 Jesper Harder <harder@ifa.au.dk>
11563
11564 * pgg-parse.el: Remove unnecessary (require 'custom).
11565
11566 * pgg-def.el: do.
11567
11568 * nnmail.el: do.
11569
11570 * gnus-undo.el: do.
11571
11572 * gnus-picon.el: do.
11573
11574 * gnus-util.el: do.
11575
11576 2004-01-15 Reiner Steib <Reiner.Steib@gmx.de>
11577
11578 * gnus-sum.el (gnus-pick-line-number): Add autoload.
11579
11580 2004-01-15 Katsumi Yamaoka <yamaoka@jpl.org>
11581
11582 * mm-decode.el (mm-multiple-handles): Recognize a string as a mime
11583 handle, as well as a list.
11584
11585 * mm-view.el (mm-w3m-cid-retrieve-1): Call itself recursively.
11586 Suggested by ARISAWA Akihiro <ari@mbf.sphere.ne.jp>.
11587 (mm-w3m-cid-retrieve): Simplify.
11588
11589 2004-01-14 Vasily Korytov <deskpot@myrealbox.com>
11590
11591 * message.el (message-kill-to-signature): Allow prefix arg to
11592 specify number of lines to keep before signature.
11593
11594 2004-01-14 Kai Grossjohann <kai@emptydomain.de>
11595
11596 (message-kill-to-signature): Change docstring.
11597
11598 2004-01-14 Katsumi Yamaoka <yamaoka@jpl.org>
11599
11600 * canlock.el: Always require sha1-el.
11601 (canlock-sha1): Bind sha1-maximum-internal-length to nil.
11602
11603 * message.el: Autoload sha1 only when compiling.
11604
11605 2004-01-13 Katsumi Yamaoka <yamaoka@jpl.org>
11606
11607 * message.el (message-canlock-generate): Require sha1-el.
11608
11609 2004-01-13 Jesper Harder <harder@ifa.au.dk>
11610
11611 * message.el (message-expand-name): Silence the byte compiler.
11612
11613 2004-01-13 Simon Josefsson <jas@extundo.com>
11614
11615 * gnus-score.el (gnus-score-edit-all-score): Fix prototype.
11616 Invoke gnus-score-mode. Reported by
11617 bojohan+news@dd.chalmers.se (Johan Bockgård).
11618
11619 * gnus-range.el (gnus-compress-sequence): Doc fix. Suggested by
11620 Jim Blandy <jimb@redhat.com> (tiny change).
11621
11622 2004-01-12 Jesper Harder <harder@ifa.au.dk>
11623
11624 * gnus-srvr.el (gnus-browse-foreign-server): Reduce consing.
11625
11626 2004-01-12 Teodor Zlatanov <tzz@lifelogs.com>
11627
11628 * spam.el (spam-get-article-as-string): Update to use
11629 gnus-request-article-this-buffer, much simpler.
11630 (spam-get-article-as-buffer): Remove.
11631
11632 2004-01-12 Kai Grossjohann <kai.grossjohann@mci.com>
11633
11634 * message.el (message-expand-name): Use EUDC if the user uses
11635 that.
11636
11637 2004-01-12 Jesper Harder <harder@ifa.au.dk>
11638
11639 * rfc2047.el (rfc2047-parse-and-decode, rfc2047-decode): Use a
11640 character for the encoding to avoid consing a string.
11641
11642 * rfc2047.el (rfc2047-decode-string): Don't cons a string
11643 unnecessarily.
11644
11645 * mm-util.el (mm-replace-chars-in-string): Remove.
11646
11647 * rfc2047.el (rfc2047-decode): Use mm-subst-char-in-string instead
11648 of mm-replace-chars-in-string.
11649
11650 2004-01-11 Jesper Harder <harder@ifa.au.dk>
11651
11652 * gnus.sum.el (gnus-remove-odd-characters): Don't cons two new strings.
11653
11654 * mm-util.el (mm-subst-char-in-string): Support inplace.
11655
11656 * gnus-sum.el (gnus-summary-remove-list-identifiers): Don't cons
11657 a new string in every iteration. Use shy groups.
11658
11659 2004-01-10 Jesper Harder <harder@ifa.au.dk>
11660
11661 * gnus-srvr.el (gnus-browse-unsubscribe-group):
11662 * gnus-soup.el (gnus-soup-group-brew):
11663 * gnus-msg.el (gnus-put-message):
11664 * gnus-move.el (gnus-group-move-group-to-server):
11665 * gnus-kill.el (gnus-batch-score):
11666 * gnus-group.el (gnus-group-prepare-flat, gnus-group-delete-group)
11667 (gnus-group-update-group-line, gnus-group-insert-group-line-info)
11668 (gnus-group-update-group, gnus-group-read-group)
11669 (gnus-group-make-group, gnus-group-make-help-group)
11670 (gnus-group-make-archive-group, gnus-group-make-directory-group)
11671 (gnus-group-make-empty-virtual, gnus-group-sort-selected-flat)
11672 (gnus-group-sort-by-unread, gnus-group-catchup)
11673 (gnus-group-unsubscribe-group, gnus-group-kill-group)
11674 (gnus-group-yank-group, gnus-group-set-info)
11675 (gnus-group-list-groups):
11676 * gnus.el (gnus-generate-new-group-name):
11677 * gnus-delay.el (gnus-delay-send-queue):
11678 * nnvirtual.el (nnvirtual-catchup-group):
11679 * nnkiboze.el (nnkiboze-generate-group, nnkiboze-generate-group):
11680 * gnus-topic.el (gnus-topic-find-groups, gnus-topic-clean-alist)
11681 (gnus-group-prepare-topics, gnus-topic-check-topology):
11682 * gnus-sum.el (gnus-update-read-articles, gnus-select-newsgroup)
11683 (gnus-mark-xrefs-as-read, gnus-compute-read-articles)
11684 (gnus-summary-walk-group-buffer, gnus-summary-move-article)
11685 (gnus-group-make-articles-read):
11686 * gnus-start.el (gnus-subscribe-newsgroup, gnus-start-draft-setup)
11687 (gnus-group-change-level, gnus-kill-newsgroup)
11688 (gnus-check-bogus-newsgroups, gnus-get-unread-articles-in-group)
11689 (gnus-get-unread-articles, gnus-make-articles-unread)
11690 (gnus-make-ascending-articles-unread): Use accessor
11691 macros (gnus-group-entry, gnus-group-unread, gnus-info-marks etc.)
11692 to get group information for improved readability.
11693
11694
11695 2004-01-09 Jesper Harder <harder@ifa.au.dk>
11696
11697 * gnus-art.el (article-decode-mime-words, article-babel)
11698 (gnus-article-highlight-signature, gnus-article-add-buttons)
11699 (gnus-signature-toggle): Use gnus-with-article-buffer.
11700
11701 * gnus-art.el (gnus-article-highlight-headers)
11702 (gnus-article-add-buttons-to-head): Use gnus-with-article-headers.
11703
11704 * gnus-art.el (gnus-mm-display-part, gnus-article-wash-status)
11705 (gnus-article-set-globals, gnus-request-article-this-buffer)
11706 (gnus-button-message-id, gnus-article-maybe-hide-headers)
11707 (gnus-mime-view-part-externally, gnus-mime-view-part-internally)
11708 (gnus-mime-display-alternative): Use with-current-buffer.
11709
11710 2004-01-09 Teodor Zlatanov <tzz@lifelogs.com>
11711
11712 * spam.el (spam-generate-fake-headers): Rewrite to be simpler,
11713 also under 80 char limit, and call gnus-error if needed.
11714 (spam-fetch-article-header): Fix - it was a
11715 buffer-local variable (gnus-newsgroup-data).
11716 (spam-find-spam): Use spam-generate-fake-headers, forget about
11717 spam-insert-fake-headers.
11718 (spam-insert-fake-headers): Remove.
11719
11720 2004-01-09 Jesper Harder <harder@ifa.au.dk>
11721
11722 * deuglify.el (gnus-article-outlook-unwrap-lines)
11723 (gnus-outlook-rearrange-article)
11724 (gnus-outlook-repair-attribution-outlook)
11725 (gnus-outlook-repair-attribution-block)
11726 (gnus-outlook-repair-attribution-other): Remove redundant
11727 save-excursion.
11728
11729 2004-01-09 Teodor Zlatanov <tzz@lifelogs.com>
11730
11731 * spam.el (spam-fetch-field-fast, spam-fetch-field-from-fast)
11732 (spam-fetch-field-subject-fast)
11733 (spam-fetch-field-message-id-fast, spam-generate-fake-headers)
11734 (spam-fetch-article-header): Add functions to deal with Gnus
11735 internals for fast retrieval of article header data.
11736 (spam-initialize): Put spam-find-spam in the gnus-summary-prepared-hook.
11737
11738 2004-01-09 Jesper Harder <harder@ifa.au.dk>
11739
11740 * pop3.el (pop3-md5): Remove.
11741 (pop3-apop): Replace pop3-md5 with md5.
11742
11743 * mm-bodies.el: base64 is always built-in.
11744
11745 * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Use
11746 with-current-buffer.
11747
11748 2004-01-08 Katsumi Yamaoka <yamaoka@jpl.org>
11749
11750 * canlock.el (canlock-insert-header): Remove excessive grouping in
11751 regexp.
11752
11753 * gnus-sum.el (gnus-summary-read-document): Ditto.
11754
11755 * gnus-uu.el (gnus-uu-part-number): Ditto.
11756
11757 * html2text.el (html2text-remove-tags): Ditto.
11758 (html2text-format-tags): Ditto.
11759 (html2text-format-single-elements): Ditto.
11760
11761 * mml.el (mml-parse-1): Ditto.
11762
11763 2004-01-08 Jesper Harder <harder@ifa.au.dk>
11764
11765 * gnus-sum.el (gnus-summary-update-mark): Revert previous change.
11766
11767 * gnus-group.el (gnus-group-mark-group): Fix for multibyte marks.
11768
11769 * gnus-sum.el (gnus-summary-update-mark): Fix for multibyte marks.
11770
11771 * gnus-util.el (gnus-replace-in-string): Remove Emacs 20 code.
11772
11773 2003-11-15 Simon Josefsson <jas@extundo.com>
11774
11775 * pgg-gpg.el (pgg-gpg-lookup-all-secret-keys)
11776 (pgg-gpg-lookup-key): Use regexp match instead of
11777 split-string (split-string is different between emacs 21.2 and
11778 22.1). Reported by ultrasoul@ultrasoul.com (David D. Smith).
11779
11780 2004-01-08 Jesper Harder <harder@ifa.au.dk>
11781
11782 * gnus-art.el (gnus-mime-view-all-parts)
11783 (gnus-article-part-wrapper, gnus-article-view-part): Use
11784 with-current-buffer.
11785
11786 2004-01-07 Teodor Zlatanov <tzz@lifelogs.com>
11787
11788 * spam.el (spam-disable-spam-split-during-ham-respool)
11789 (spam-spamoracle-database, spam-cache-lookups)
11790 (spam-split-last-successful-check, spam-clear-cache, spam-xor)
11791 (spam-group-ham-mark-p, spam-group-spam-mark-p)
11792 (spam-group-ham-marks, spam-group-spam-marks)
11793 (spam-group-spam-contents-p, spam-group-ham-contents-p)
11794 (spam-list-of-processors, spam-list-of-statistical-checks): Fix doc,
11795 also add spam-use-blackholes to the statistical checks.
11796 (spam-fetch-field-fast): Add interface to fetching fields, may
11797 become a macro.
11798 (spam-fetch-field-from-fast, spam-fetch-field-subject-fast)
11799 (spam-fetch-field-message-id-fast): Use spam-fetch-field-fast.
11800 (spam-insert-fake-headers): Fake an article when needed.
11801 (spam-find-spam): Fake article when possible.
11802 (spam-check-blackholes, spam-check-BBDB, spam-from-listed-p)
11803 (spam-check-bogofilter-headers): Use message-fetch-field instead
11804 of nnmail-fetch-field.
11805
11806 2004-01-07 Reiner Steib <Reiner.Steib@gmx.de>
11807
11808 * gnus-score.el (gnus-score-find-trace): Add `k' (kill-buffer).
11809
11810 2004-01-07 Teodor Zlatanov <tzz@lifelogs.com>
11811
11812 * spam.el (spam-split): Do not require spam-use-CHECK to be
11813 enabled if that check is passed to spam-split explicitly; also
11814 fix so 'spam doesn't get converted to spam-split-group when
11815 spam-split-symbolic-return is t.
11816 (spam-find-spam): Find registrations of the article and use those
11817 instead of re-running spam-split to find the spam/ham
11818 classification of the article.
11819 (spam-log-processing-to-registry, spam-log-registered-p)
11820 (spam-log-unregistration-needed-p, spam-log-undo-registration):
11821 Use gnus-error instead of gnus-message.
11822 (spam-log-registration-type): Add function to determine the
11823 classification of a message based on registry entries; will
11824 return nil if both 'spam and 'ham are found.
11825 (spam-check-BBDB): Expand all the BBDB macros here so we can have
11826 a reasonably fast local cache without the loading errors.
11827 (spam-cache-lookups): Set to t by default.
11828 (spam-find-spam): Don't try to guess spam-cache-lookups.
11829 (spam-enter-whitelist, spam-enter-blacklist): Clear the
11830 spam-caches entry.
11831 (spam-filelist-build-cache, spam-filelist-check-cache): Fix
11832 caching of whitelist/blacklist entries.
11833 (spam-check-whitelist, spam-check-blacklist): Invoke
11834 spam-from-listed-p with a type, not a cache variable.
11835 (spam-from-listed-p): Wrap around spam-filelist-check-cache.
11836
11837 2004-01-07 Jesper Harder <harder@ifa.au.dk>
11838
11839 * message.el (message-cite-prefix-regexp): Use with-syntax-table.
11840
11841 * nnmail.el (nnmail-split-fancy): do.
11842
11843 * mml.el (mml-parse): do.
11844
11845 * gnus-score.el (gnus-enter-score-words-into-hashtb)
11846 (gnus-score-adaptive): do.
11847
11848 2004-01-07 Katsumi Yamaoka <yamaoka@jpl.org>
11849
11850 * gnus-art.el (gnus-treat-emphasize): Ignore Emacs version number.
11851 (gnus-mime-button-map): Don't set keymap parent.
11852 (gnus-button-ctan-directory-regexp): Use shy grouping.
11853 (gnus-prev-page-map): Don't set keymap parent.
11854 (gnus-prev-page-map): Remove duplicated one.
11855 (gnus-next-page-map): Don't set keymap parent.
11856 (gnus-mime-security-button-map): Ditto.
11857
11858 * nnheader.el (nnheader-directory-files-is-safe): Ignore Emacs
11859 version number.
11860
11861 * sha1-el.el (sha1-string-external): Use with-temp-buffer.
11862
11863 2004-01-07 Katsumi Yamaoka <yamaoka@jpl.org>
11864
11865 * canlock.el (canlock-sha1-function): Remove.
11866 (canlock-sha1-function-for-verify): Remove.
11867 (canlock-openssl-program): Remove.
11868 (canlock-openssl-args): Remove.
11869 (canlock-ignore-errors): Remove.
11870 (canlock-sha1-with-openssl): Remove.
11871 (canlock-sha1): Use sha1 instead of to call canlock-sha1-function.
11872 (canlock-verify): Don't use canlock-ignore-errors.
11873
11874 * sha1-el.el (sha1-string-external): Make it can return a string
11875 in binary form.
11876 (sha1-region-external): Ditto.
11877 (sha1-string-internal): Ditto.
11878 (sha1-region-internal): Ditto.
11879 (sha1-region): Ditto.
11880 (sha1-string): Ditto.
11881 (sha1): Ditto.
11882
11883 2004-01-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
11884
11885 * spam.el (spam-report-articles-gmane): New command.
11886
11887 2004-01-07 Katsumi Yamaoka <yamaoka@jpl.org>
11888
11889 * gnus.el: Don't make unnecessary *Group* buffer when loading.
11890
11891 * run-at-time.el (run-at-time-saved): Remove.
11892 (run-at-time): Doc fix.
11893
11894 2004-01-07 Jesper Harder <harder@ifa.au.dk>
11895
11896 * gnus-sum.el (gnus-summary-limit-to-replied): New command.
11897 (gnus-summary-limit-map): Add it.
11898 (gnus-summary-make-menu-bar): do.
11899
11900 2004-01-06 Teodor Zlatanov <tzz@lifelogs.com>
11901
11902 * spam.el (spam-cache-lookups, spam-caches, spam-clear-cache):
11903 Make attempt at some caching support (done for BBDB only now).
11904 (spam-find-spam): Set spam-cache-lookups if there are more than 2
11905 addresses to be checked.
11906 (spam-clear-cache-BBDB): Add function, to be invoked by
11907 bbdb-change-hook, and triggering spam-clear-cache of 'spam-use-BBDB.
11908 (spam-check-BBDB): Check and use the caches, if
11909 spam-cache-lookups is on, remove superfluous (provide).
11910
11911 2004-01-06 Reiner Steib <Reiner.Steib@gmx.de>
11912
11913 * gnus-art.el (gnus-treat-ansi-sequences): Changed default.
11914
11915 2004-01-07 Steve Youngs <sryoungs@bigpond.net.au>
11916
11917 * run-at-time.el (run-at-time-saved): Move to after the definition
11918 of `run-at-time'.
11919
11920 2004-01-06 Katsumi Yamaoka <yamaoka@jpl.org>
11921
11922 * gnus-art.el (gnus-article-wash-html-with-w3m): Don't use
11923 mm-w3m-local-map-property.
11924
11925 * mm-view.el (mm-w3m-mode-map): Remove.
11926 (mm-w3m-local-map-property): Remove.
11927 (mm-inline-text-html-render-with-w3m): Don't use
11928 mm-w3m-local-map-property.
11929
11930 2004-01-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
11931
11932 * run-at-time.el: New file.
11933
11934 * gnus.el ((fboundp 'gnus-set-text-properties)): Remove definition
11935 of gnus-set-text-properties.
11936
11937 * gnus-uu.el (gnus-uu-save-article): Ditto.
11938
11939 * gnus-salt.el (gnus-carpal-setup-buffer): Ditto.
11940
11941 * gnus-cite.el (gnus-cite-parse): Ditto.
11942
11943 * gnus-art.el (gnus-button-push): Use set-text-properties instead
11944 of gnus-.
11945
11946 * gnus.el: Changed calls to nnheader-run-at-time and
11947 password-run-at-time throughout to use run-at-time directly.
11948
11949 * password.el: Removed definition of run-at-time.
11950
11951 2004-01-05 Karl Pflästerer <sigurd@12move.de> (tiny change)
11952
11953 * mml.el (mml-minibuffer-read-disposition): Show attachment type
11954 in prompt.
11955
11956 2004-01-06 Steve Youngs <sryoungs@bigpond.net.au>
11957
11958 * gnus-ems.el (gnus-mode-line-modified): Don't conditionalise on
11959 XEmacs version.
11960
11961 * dns.el (dns-make-network-process): Use `open-network-stream'
11962 instead of `gnus-xmas-open-network-stream'.
11963
11964 * .cvsignore: Add auto-autoloads.el, custom-load.el.
11965
11966 2004-01-06 Jesper Harder <harder@ifa.au.dk>
11967
11968 * gnus-art.el (gnus-mime-display-alternative)
11969 (gnus-insert-mime-button, gnus-insert-mime-security-button)
11970 (gnus-insert-prev-page-button, gnus-insert-next-page-button):
11971 Don't use gnus-local-map-property.
11972
11973 * gnus-util.el (gnus-local-map-property): Remove.
11974
11975 * mm-view.el (mm-view-pkcs7-decrypt): Replace
11976 gnus-completing-read-maybe-default with completing-read.
11977
11978 * gnus-util.el (gnus-completing-read): do.
11979 (gnus-completing-read-maybe-default): Remove.
11980
11981 2004-01-06 Steve Youngs <sryoungs@bigpond.net.au>
11982
11983 * password.el: Only autoload `run-at-time' if not XEmacs.
11984 Only autoload the itimer functions if XEmacs.
11985
11986 2004-01-06 Jesper Harder <harder@ifa.au.dk>
11987
11988 * gnus-art.el (gnus-read-string): Remove.
11989 (gnus-summary-pipe-to-muttprint): Replace gnus-read-string with
11990 read-string.
11991
11992 2004-01-05 Teodor Zlatanov <tzz@lifelogs.com>
11993
11994 * netrc.el: Autoload password-read.
11995 (netrc): Add configuration group.
11996 (netrc-encoding-method, netrc-openssl-path): Add
11997 variables for encoding and decoding of files with symmetric
11998 ciphers.
11999 (netrc-encode): Add assistant function to encode a file with
12000 netrc-encoding-method.
12001 (netrc-parse): Add interactive parameter, added optional
12002 decoding if netrc-encoding-method is non-nil but otherwise
12003 behavior is standard.
12004 (netrc-encrypting-method, netrc-encrypt, netrc-parse):
12005 Do s/encode/encrypt/ everywhere.
12006
12007 * spam.el: Remove executable-find autoload.
12008
12009 2004-01-05 Jesper Harder <harder@ifa.au.dk>
12010
12011 * gnus-registry.el: Remove Emacs 20 hash table compatibility code.
12012
12013 * gnus-uu.el (gnus-uu-post-encoded): bury-buffer is always fbound.
12014
12015 2004-01-05 Reiner Steib <Reiner.Steib@gmx.de>
12016
12017 * gnus-art.el (gnus-treat-ansi-sequences,
12018 article-treat-ansi-sequences): New variable and function.
12019 Suggested by Dan Jacobson <jidanni@jidanni.org>.
12020
12021 * gnus-sum.el (gnus-summary-wash-map, gnus-summary-make-menu-bar):
12022 Use it.
12023
12024 2004-01-05 Jesper Harder <harder@ifa.au.dk>
12025
12026 * mm-util.el (mm-quote-arg): Remove.
12027
12028 * mm-decode.el (mm-mailcap-command): Replace mm-quote-arg with
12029 shell-quote-argument.
12030
12031 * gnus-uu.el (gnus-uu-command): do.
12032
12033 * gnus-sum.el (gnus-summary-insert-pseudos): do.
12034
12035 * ietf-drums.el (ietf-drums-token-to-list): Replace mm-make-char
12036 with make-char.
12037
12038 * mm-util.el (mm-make-char): Remove.
12039
12040 * mml.el (mml-mode): Replace gnus-add-minor-mode with
12041 add-minor-mode.
12042
12043 * gnus-undo.el (gnus-undo-mode): do.
12044
12045 * gnus-topic.el (gnus-topic-mode): do.
12046
12047 * gnus-sum.el (gnus-dead-summary-mode): do.
12048
12049 * gnus-start.el (gnus-slave-mode): do.
12050
12051 * gnus-salt.el (gnus-binary-mode, gnus-pick-mode): do.
12052
12053 * gnus-ml.el (gnus-mailing-list-mode): do.
12054
12055 * gnus-gl.el (gnus-grouplens-mode): do.
12056
12057 * gnus-draft.el (gnus-draft-mode): do.
12058
12059 * gnus-dired.el (gnus-dired-mode): do.
12060
12061 * gnus-ems.el (gnus-add-minor-mode): Remove.
12062
12063 * gnus-spec.el (gnus-correct-length, gnus-correct-substring):
12064 Replace gnus-char-width with char-width.
12065
12066 * gnus-ems.el (gnus-char-width): Remove.
12067
12068 * gnus-spec.el (gnus-correct-length, gnus-correct-substring):
12069 Replace gnus-char-width with char-width.
12070
12071 * gnus-ems.el (gnus-char-width): Remove.
12072
12073 * spam-stat.el (with-syntax-table): Remove with-syntax-table
12074 definition.
12075 Remove Emacs 20 hash table compatibility code.
12076
12077 * rfc2047.el (with-syntax-table): Remove with-syntax-table Emacs
12078 20 compatibility code.
12079
12080 * spam.el (spam-point-at-eol): Replace with point-at-eol.
12081
12082 * smime.el (smime-point-at-eol): Replace with point-at-eol.
12083
12084 * rfc2047.el (rfc2047-point-at-bol, rfc2047-point-at-eol): Replace
12085 with point-at-{eol,bol}.
12086
12087 * netrc.el (netrc-point-at-eol): Replace with point-at-eol.
12088
12089 * imap.el (imap-point-at-eol): Replace with point-at-eol.
12090
12091 * flow-fill.el (fill-flowed-point-at-bol,
12092 fill-flowed-point-at-eol): Replace with point-at-{eol,bol}.
12093
12094 * gnus-util.el (gnus-point-at-bol, gnus-point-at-eol): Remove.
12095 Replace with point-at-{eol,bol} throughout all files.
12096
12097 2004-01-05 Katsumi Yamaoka <yamaoka@jpl.org>
12098
12099 * ntlm.el (ntlm-string-as-unibyte): New macro.
12100 (ntlm-build-auth-response): Use it.
12101
12102 Remove Emacs 20 stuff:
12103 * gnus-msg.el (gnus-summary-news-other-window): Use remove instead
12104 of delq and copy-sequence.
12105 * gnus-art.el (popup-menu): Remove the compiler macro.
12106 * nnmail.el (nnmail-split-fancy): Don't support customizing with
12107 Emacs 20.
12108
12109 2004-01-05 Simon Josefsson <jas@extundo.com>
12110
12111 * ntlm.el: Fix namespace. Change smb-passwd-hash into
12112 ntlm-smb-passwd-hash, smb-owf-encrypt into ntlm-smb-owf-encrypt,
12113 smb-passwd-hash into ntlm-smb-passwd-hash, smbdes-e-p16 into
12114 ntlm-smb-des-e-p16, smbdes-e-p24 into ntlm-smb-des-e-p24, smbhash
12115 into ntlm-smb-hash, smb-sp8 into ntlm-smb-sp8, smb-str-to-key into
12116 ntlm-smb-str-to-key, smb-dohash into ntlm-smb-dohash, smb-perm1
12117 into ntlm-smb-perm1, smb-perm2 into ntlm-smb-perm2, smb-perm3 into
12118 ntlm-smb-perm3, smb-perm4 into ntlm-smb-perm4, smb-perm5 into
12119 ntlm-smb-perm5, smb-perm6 into ntlm-smb-perm6, smb-sc into
12120 ntlm-smb-sc, smb-sbox into ntlm-smb-sbox, string-permute into
12121 ntlm-string-permute, string-lshift into ntlm-string-lshift,
12122 string-xor into ntlm-string-xor. Suggested by
12123 Jesper Harder <harder@myrealbox.com>.
12124
12125 * ntlm.el: Don't include poem.
12126
12127 * md4.el (print-int32, print-string-hexa): Remove. Suggested by
12128 Jesper Harder <harder@myrealbox.com>.
12129
12130 * sasl-ntlm.el, ntlm.el, md4.el: New files.
12131
12132 * hmac-md5.el (md5-binary): Fix byte compile warning. (This
12133 probably breaks emacs with DL patch, but do we care? Is anyone
12134 still using the DL stuff?)
12135
12136 * sieve-manage.el: Use the password package.
12137 (sieve-manage-read-passwd): Remove.
12138 (sieve-manage-interactive-login): Use password. Re-add
12139 condition-case around loop.
12140
12141 * pgg.el (pgg-passphrase-cache, pgg-run-at-time): Remove.
12142 (pgg-add-passphrase-cache, pgg-remove-passphrase-cache): Use
12143 the password package.
12144
12145 2003-02-19 Simon Josefsson <jas@extundo.com>
12146
12147 * sieve-manage.el (sieve-sasl-auth): Quote optional initial SASL
12148 token.
12149
12150 2002-08-07 Simon Josefsson <jas@extundo.com>
12151
12152 * sieve-manage.el (require): Use SASL, not RFC2104/MD5.
12153 (sieve-manage-authenticators):
12154 (sieve-manage-authenticator-alist): Add some SASL mechs.
12155 (sieve-sasl-auth): New function.
12156 (sieve-manage-cram-md5-auth):
12157 (sieve-manage-plain-auth): Rewrite using SASL library.
12158 (sieve-manage-digest-md5-p, sieve-manage-digest-md5-auth)
12159 (sieve-manage-scram-md5-p, sieve-manage-scram-md5-auth)
12160 (sieve-manage-ntlm-p, sieve-manage-ntlm-auth)
12161 (sieve-manage-login-p, sieve-manage-login-auth): Add wrappers.
12162
12163 2004-01-05 Simon Josefsson <jas@extundo.com>
12164
12165 * sasl.el, sasl-cram.el, sasl-digest.el, hmac-md5.el, hmac-def.el:
12166 New files.
12167
12168 2004-01-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
12169
12170 * gnus-group.el (gnus-no-groups-message): Update.
12171
12172 * gnus-sum.el (gnus-summary-insert-new-articles): Remove .
12173
12174 2003-11-09 Simon Josefsson <jas@extundo.com>
12175
12176 * imap.el: Support for ID IMAP extension (RFC 2971).
12177 (imap-local-variables): Add imap-id.
12178 (imap-id): New variable.
12179 (imap-id): New function.
12180 (imap-parse-response): Parse untagged ID response.
12181 * nnimap.el (nnimap-id): New variable.
12182 (nnimap-open-connection): Use it.
12183
12184 2003-12-28 Simon Josefsson <jas@extundo.com>
12185
12186 * gnus-score.el (gnus-score-edit-all-score): New.
12187 * gnus-group.el (gnus-group-score-map): Bind it to W e.
12188
12189 2004-01-04 Simon Josefsson <jas@extundo.com>
12190
12191 * password.el: Add.
12192
12193 2004-01-04 Mario Lang <lang@zid.tugraz.at>
12194
12195 * dns.el: Add support for AAAA records (see RFC 3596)
12196
12197 * Fix typo PRT -> PTR
12198
12199 * Parse MX, PTR and SOA replies (see RFC 1035)
12200
12201 2004-01-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
12202
12203 * gnus.el (gnus-logo-color-style): Changed colors to `no'.
12204
12205 * Moved to Changelog.2.
12206
12207 2004-01-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
12208
12209 * gnus.el (gnus-version-number): Bump version.
12210
12211 2004-01-04 Lars Magne Ingebrigtsen <lars@ingebrigtsen.no>
12212
12213 * gnus.el: No Gnus v0.1 is released.
12214
12215 2004-01-04 Lars Magne Ingebrigtsen <lars@ingebrigtsen.no>
12216
12217 * gnus.el: No Gnus v0.0 is released.
12218
12219 2004-01-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
12220
12221 * gnus.el (gnus-version-number): Bump.
12222 (gnus-version): No.
12223
12224 See ChangeLog.2 for earlier changes.
12225
12226 Copyright (C) 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
12227
12228 This file is part of GNU Emacs.
12229
12230 GNU Emacs is free software; you can redistribute it and/or modify
12231 it under the terms of the GNU General Public License as published by
12232 the Free Software Foundation; either version 3, or (at your option)
12233 any later version.
12234
12235 GNU Emacs is distributed in the hope that it will be useful,
12236 but WITHOUT ANY WARRANTY; without even the implied warranty of
12237 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12238 GNU General Public License for more details.
12239
12240 You should have received a copy of the GNU General Public License
12241 along with GNU Emacs; see the file COPYING. If not, write to the
12242 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
12243 Boston, MA 02110-1301, USA.
12244
12245 ;; Local Variables:
12246 ;; coding: utf-8
12247 ;; fill-column: 79
12248 ;; add-log-time-zone-rule: t
12249 ;; End:
12250
12251 ;;; arch-tag: 3f33a3e7-090d-492b-bedd-02a1417d32b4