Spelling fix.
[bpt/emacs.git] / lisp / gnus / ChangeLog
1 2008-05-20 Teodor Zlatanov <tzz@lifelogs.com>
2
3 * auth-source.el: Add more docs.
4
5 2008-05-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
6
7 * nnheader.el (nnheader-read-timeout): Change the default timeout from
8 0.1 seconds to 0.01 seconds. This will make nntp and pop3 article
9 retrieval faster in some cases, but might make CPU usage larger. If
10 this has any bad side effects, we might revert this change.
11
12 * pop3.el (pop3-movemail): Change the sit-for from 0.1 to 0.01, which
13 seems to make mail retrieval much, much faster.
14 (pop3-movemail): Use nnheader-accept-process-output instead of sleeping
15 unconditionally.
16
17 * gnus-draft.el (gnus-group-send-queue): Bind
18 message-send-mail-partially-limit to nil to avoid being prompted.
19
20 2008-05-16 Reiner Steib <Reiner.Steib@gmx.de>
21
22 * mml.el (mml-attach-buffer): Prompt for `disposition'.
23
24 * message.el (message-bogus-address-regexp): Fix and improve custom
25 type.
26 (message-setup-hook): Add message-check-recipients as custom option.
27
28 2008-05-15 Reiner Steib <Reiner.Steib@gmx.de>
29
30 * message.el (message-cite-function): Remove bogus autoload which crept
31 in during merge from v5-10.
32
33 2008-05-14 Teodor Zlatanov <tzz@lifelogs.com>
34
35 * nnimap.el (nnimap-open-connection): Fix login/password bug.
36
37 * nnrss.el (nnrss-normalize-date): Accept Unix-style epoch timestamps.
38
39 * auth-source.el: Preliminary Tramp docs.
40 (auth-sources): Change the default auth-sources to use
41 EPA .gpg files.
42
43 2008-05-09 Teodor Zlatanov <tzz@lifelogs.com>
44
45 * nntp.el: Autoload `auth-source-user-or-password'.
46 (nntp-send-authinfo): Use it.
47
48 * nnimap.el: Autoload `auth-source-user-or-password'.
49 (nnimap-open-connection): Use it.
50
51 * auth-source.el: Added docs on using with url-auth. Import gnus-util
52 for the gnus-message function.
53 (auth-source-user-or-password): Use it.
54
55 2008-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
56
57 * rfc2104.el (rfc2104-hexstring-to-bitstring): Rename it back from
58 rfc2104-hexstring-to-byte-list. Return a unibyte string.
59 (rfc2104-hash): Use it.
60
61 2008-05-08 Juanma Barranquero <lekktu@gmail.com>
62
63 * gnus-art.el (gnus-article-toggle-truncate-lines):
64 Don't use `iff' in docstring.
65
66 2008-05-07 Teodor Zlatanov <tzz@lifelogs.com>
67
68 * gnus-registry.el: Adjusted copyright dates and added a keyword.
69
70 * gnus-util.el (gnus-extract-address-component-name)
71 (gnus-extract-address-component-email): Convenience functions around
72 `gnus-extract-address-components'.
73
74 * gnus-registry.el (gnus-registry-split-fancy-with-parent):
75 Use `gnus-extract-address-component-email' to fix bug of comparing full
76 sender name to `user-mail-address'.
77
78 2008-05-05 Teodor Zlatanov <tzz@lifelogs.com>
79
80 * gnus-registry.el (gnus-registry-grep-in-list): Fix logic, use
81 catch/throw to optimize.
82 (gnus-registry-find-keywords): Just use member to find a keyword.
83
84 2008-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
85
86 * gnus-srvr.el (gnus-enter-server-buffer): Make sure the server-buffer
87 is current before calling gnus-server-prepare.
88 (gnus-server-setup-buffer, gnus-server-update-server)
89 (gnus-server-read-server, gnus-browse-exit): Use with-current-buffer.
90
91 2008-05-04 Juri Linkov <juri@jurta.org>
92
93 * mailcap.el (mailcap-replace-in-string): New compatibility alias.
94 (mailcap-file-default-commands): Use mailcap-replace-in-string
95 instead of replace-regexp-in-string, and mailcap-delete-duplicates
96 instead of delete-dups. Use [ \t\n]* for whitespace in regexp.
97
98 2008-05-03 Reiner Steib <reiner.steib@gmx.de>
99
100 * gnus-sum.el (gnus-propagate-marks): Fix custom version.
101
102 2008-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
103
104 * gnus-sum.el (gnus-summary-save-parts): Inhibit even more treatment
105 hooks.
106 (gnus-update-read-articles): Speed up non-marks-using users.
107 (gnus-use-marks): Define gnus-use-marks.
108 (gnus-propagate-marks): Rename variable to something more sensible.
109
110 2008-05-02 Juanma Barranquero <lekktu@gmail.com>
111
112 * gmm-utils.el (gmm, gmm-verbose, gmm-lazy, gmm-customize-mode)
113 (gmm-image-load-path-for-library): Fix typos in docstrings.
114 (gmm-message): Reflow docstring.
115
116 2008-04-28 Teodor Zlatanov <tzz@lifelogs.com>
117
118 * mail-source.el (mail-source-set-1, mail-source-bind):
119 Move auth-source code out of the macro to clean it up and fix bugs.
120
121 2008-04-26 Teodor Zlatanov <tzz@lifelogs.com>
122
123 * gnus-registry.el (gnus-registry-split-fancy-with-parent): Don't split
124 by sender if it's equal to user-mail-address, it's likely to be
125 useless.
126
127 * mail-source.el (mail-source-bind): Don't use user or password if they
128 are not bound. Unintern them if they are nil. Don't use server unless
129 it's bound, and default it to empty string otherwise.
130
131 2008-04-25 Teodor Zlatanov <tzz@lifelogs.com>
132
133 * mail-source.el: Load auth-source.el.
134 (mail-source-bind): Add comments. Call auth-source-user-or-password to
135 get user name or password, if auth-sources is set up.
136
137 * gnus-registry.el (gnus-registry-split-strategy): New variable for
138 strategy of splitting with parent.
139 (gnus-registry-split-fancy-with-parent)
140 (gnus-registry-post-process-groups): Use it and fix prior
141 bug (returning a list as the split result).
142
143 * auth-source.el (auth-sources): Remove server parameter.
144 (auth-source-pick, auth-source-user-or-password)
145 (auth-source-user-or-password-imap)
146 (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
147 (auth-source-user-or-password-sftp)
148 (auth-source-user-or-password-smtp): Remove server parameter.
149
150 2008-04-25 Juanma Barranquero <lekktu@gmail.com>
151
152 * smime.el (smime-sign-region, smime-encrypt-region)
153 (smime-decrypt-region):
154 Remove redundant calls to `generate-new-buffer-name'.
155
156 2008-04-24 Luca Capello <luca@pca.it> (tiny change)
157
158 * mm-encode.el (mm-safer-encoding): Add optional argument `type'.
159 Don't use QP for message/rfc822.
160 (mm-content-transfer-encoding): Pass `type' to mm-safer-encoding.
161
162 2008-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
163
164 * sieve-manage.el (sieve-string-bytes): Remove.
165 (sieve-manage-putscript): Use length instead: `string-bytes' gives the
166 correct byte-length only if the process's coding-system is the same as
167 the one used internally by Emacs to represent strings.
168
169 2008-04-22 Juri Linkov <juri@jurta.org>
170
171 * mailcap.el (mailcap-file-default-commands): New function.
172
173 2008-04-13 Reiner Steib <Reiner.Steib@gmx.de>
174
175 * message.el (message-signature-separator, message-cite-function):
176 Change custom version.
177
178 2008-04-13 Reiner Steib <Reiner.Steib@gmx.de>
179
180 * mm-decode.el (mm-display-external): Make temp file read-only.
181
182 2008-04-12 Reiner Steib <Reiner.Steib@gmx.de>
183
184 * gnus-diary.el (gnus-article-edit-mode-map, message-mode-map): Remove
185 binding for `gnus-diary-version'. Bind `gnus-diary-check-message' to
186 `C-c C-f d'.
187
188 2008-04-12 Adrian Aichner <adrian@xemacs.org>
189
190 * gnus-sum.el (gnus-summary-goto-subject): Typo fix.
191
192 2008-04-09 Teodor Zlatanov <tzz@lifelogs.com>
193
194 * auth-source.el: Added docs.
195 (auth-sources): Modify format to support server.
196 (auth-source-pick, auth-source-user-or-password)
197 (auth-source-user-or-password-imap)
198 (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
199 (auth-source-user-or-password-sftp)
200 (auth-source-user-or-password-smtp): Add server parameter.
201
202 2008-04-08 Teodor Zlatanov <tzz@lifelogs.com>
203
204 * gnus-registry.el: Initialize the registry when gnus-registry-install
205 is t.
206
207 2008-04-08 Katsumi Yamaoka <yamaoka@jpl.org>
208
209 * compface.el (uncompface): Make buffer unibyte.
210
211 2008-04-07 Stefan Monnier <monnier@iro.umontreal.ca>
212
213 * mail-source.el (mail-source-value):
214 Prefer fboundp to functionp so it works with macros as well.
215
216 2008-04-05 Glenn Morris <rgm@gnu.org>
217
218 * gnus-ems.el (mm-disable-multibyte): Autoload it.
219
220 2008-04-05 Stefan Monnier <monnier@iro.umontreal.ca>
221
222 * mm-util.el (mm-with-unibyte-buffer, mm-with-multibyte-buffer):
223 Prefer mm-(en|dis)able-multibyte to default-enable-multibyte-characters.
224
225 * nnheader.el (nnheader-init-server-buffer): Change buffer's
226 multibyteness after rather than before erasing it.
227
228 * gnus-art.el (gnus-mime-replace-part): Remove unnecessary use of
229 mm-with-multibyte.
230 (gnus-request-article-this-buffer): Make sure the proper decoding is
231 used if gnus-original-article-buffer happens to be unibyte.
232
233 * gnus-ems.el (gnus-x-splash): Prefer mm-disable-multibyte to
234 default-enable-multibyte-characters.
235
236 * gnus-fun.el (gnus-display-x-face-in-from): Remove unnecessary use of
237 default-enable-multibyte-characters.
238
239 * mm-decode.el (mm-inline-media-tests): Add entry for x-diff.
240
241 * nnweb.el (nnweb-init): Avoid nn-with-unibyte.
242
243 2008-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
244
245 * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
246 Fix last change in case the element is not even a symbol.
247
248 2008-04-02 Simon Josefsson <simon@josefsson.org>
249
250 * nnimap.el (nnimap-enable-minmax-bug-workaround): Remove, replaced by
251 imap-enable-exchange-bug-workaround.
252 (nnimap-find-minmax-uid): Use imap-enable-exchange-bug-workaround.
253
254 2008-04-01 Simon Josefsson <simon@josefsson.org>
255
256 * nnimap.el (nnimap-find-minmax-uid): Revert last fix, the "fix" turns
257 a 100 byte status-checks into a 2-3MB transfer for each group.
258 (nnimap-enable-minmax-bug-workaround): New variable to toggle whether
259 to enable bug workaround or not.
260 (nnimap-find-minmax-uid): Only enable workaround conditionally.
261
262 2008-03-31 Glenn Morris <rgm@gnu.org>
263
264 * message.el (mml2015-use): Declare for compiler.
265 (message-info): Require mml2015 when appropriate.
266
267 2008-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
268
269 * nntp.el (nntp-netcat-command): Rename from nntp-via-netcat-command.
270 (nntp-netcat-switches): Rename from nntp-via-netcat-switches.
271 (nntp-open-telnet, nntp-open-rlogin): Use with-current-buffer.
272 (nntp-service-to-port): New function.
273 (nntp-open-via-rlogin-and-netcat, nntp-open-via-telnet-and-telnet)
274 (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet): Use it.
275 (nntp-open-netcat-stream): New function.
276 (nntp-open-via-rlogin-and-netcat): Don't use a pty.
277
278 2008-03-29 Sven Joachim <svenjoac@gmx.de>
279
280 * gnus-sum.el (gnus-summary-make-menu-bar): Add missing dots.
281
282 2008-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
283
284 * message.el (message-make-in-reply-to): Use mm-with-multibyte-buffer.
285
286 2008-03-28 Michael Harnois <mdharnois@gmail.com> (tiny change)
287
288 * nnimap.el (nnimap-find-minmax-uid): Fix Exchange 2007 IMAP problem.
289
290 2008-03-24 Reiner Steib <Reiner.Steib@gmx.de>
291
292 * message.el (message-signature-separator): Change default.
293 Improve custom type.
294 (message-cite-function): Change default to
295 message-cite-original-without-signature.
296
297 * gnus-sum.el (gnus-summary-make-menu-bar): Add message-cite-function
298 toggle.
299
300 * message.el (message-check-news-body-syntax): Fix signature check.
301 (message-setup-1): Mark buffer as unmodified _after_ running
302 message-setup-hook and handling message-alternative-emails.
303 (message-shorten-references): Be more strict when building list of
304 valid references to comply with GNKSA.
305
306 * gnus-group.el (gnus-read-ephemeral-bug-group)
307 (gnus-read-ephemeral-debian-bug-group)
308 (gnus-read-ephemeral-emacs-bug-group): Use the correct variable.
309
310 * message.el (message-info): Don't use booleanp which isn't supported
311 in Emacs 21 and XEmacs.
312
313 2008-03-22 Reiner Steib <Reiner.Steib@gmx.de>
314
315 * gnus-group.el (gnus-gmane-group-download-format): Rename from
316 gnus-group-gmane-group-download-format.
317 (gnus-group-read-ephemeral-gmane-group): Rename from
318 gnus-group-read-ephemeral-gmane-group.
319 (gnus-read-ephemeral-gmane-group-url): Rename from
320 gnus-group-read-ephemeral-gmane-group-url.
321 (gnus-bug-group-download-format-alist): New variable.
322 (gnus-read-ephemeral-bug-group, gnus-read-ephemeral-debian-bug-group)
323 (gnus-read-ephemeral-emacs-bug-group): New commands.
324
325 2008-03-21 Reiner Steib <Reiner.Steib@gmx.de>
326
327 * gnus-art.el (gnus-article-browse-html-article): Fix documentation.
328 (gnus-visible-headers): Improve custom type.
329
330 2008-03-20 Reiner Steib <Reiner.Steib@gmx.de>
331
332 * mml.el (mml-menu): Add workarounds for XEmacs.
333
334 * gnus-art.el (gnus-article-browse-html-article): Inhibit display of
335 X-Boundary header.
336
337 * message.el (message-simplify-recipients): Fix previous commit.
338
339 2008-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
340
341 * mm-util.el (mm-set-buffer-multibyte): New function.
342 * mm-decode.el (mm-copy-to-buffer): Use it.
343
344 * gnus-win.el (gnus-configure-frame, gnus-all-windows-visible-p):
345 Prefer fboundp to functionp so it works with macros as well.
346
347 2008-03-19 Reiner Steib <Reiner.Steib@gmx.de>
348
349 * message.el (message-alter-recipients-discard-bogus-full-name):
350 New function.
351 (message-alter-recipients-function): New variable.
352 (message-get-reply-headers): Use it.
353 (message-replace-header): New helper function.
354 (message-recipients-without-full-name): New variable.
355 (message-simplify-recipients): New command.
356
357 * mml.el (mml-menu): Add toggle for gnus-gcc-externalize-attachments.
358
359 * message.el (message-info): Handle EasyPG manual.
360
361 * mml.el (mml-menu): Add entry for EasyPG.
362
363 2008-03-18 Nils Ackermann <nils@ackermath.info> (tiny change)
364
365 * nnmh.el (nnmh-request-expire-articles): Prefer expiry-target group
366 parameter.
367
368 * message.el (message-disassociate-draft): Specify drafts group name
369 fully.
370
371 2008-03-17 Teodor Zlatanov <tzz@lifelogs.com>
372
373 * gnus-registry.el (gnus-registry-split-fancy-with-parent): Eliminate
374 unnecessary duplicates from the match list.
375
376 2008-03-17 Katsumi Yamaoka <yamaoka@jpl.org>
377
378 * gnus-art.el (gnus-button-handle-info-keystrokes): Don't use optional
379 args of `how-many' of which the XEmacs version doesn't take; declare
380 Info-index-next as function.
381
382 2008-03-16 Reiner Steib <Reiner.Steib@gmx.de>
383
384 * gnus-score.el (gnus-score-headers): Fix handling of
385 gnus-inhibit-slow-scoring.
386
387 * gnus-art.el (gnus-article-browse-html-article): Fix type in doc
388 string.
389 (gnus-button-url-regexp): Improve handling of parenthesis.
390 (gnus-button-alist): Extend gnus-button-handle-info-keystrokes entry.
391 (gnus-button-handle-info-keystrokes): Handle index entries.
392
393 2008-03-14 Katsumi Yamaoka <yamaoka@jpl.org>
394
395 * mail-source.el (mail-source-delete-old-incoming) Fix regexp to find
396 Incoming* files.
397
398 2008-03-13 Teodor Zlatanov <tzz@lifelogs.com>
399
400 * auth-source.el (auth-sources): Renamed from auth-source-choices.
401 (auth-source-pick): Use it.
402
403 2008-03-12 Teodor Zlatanov <tzz@lifelogs.com>
404
405 * auth-source.el (auth-source-protocols)
406 (auth-source-protocols-customize, auth-source-choices): Added and
407 modified variable customizations and defaults.
408 (auth-source-pick, auth-source-user-or-password)
409 (auth-source-protocol-defaults, auth-source-user-or-password-imap)
410 (auth-source-user-or-password-pop3, auth-source-user-or-password-ssh)
411 (auth-source-user-or-password-sftp)
412 (auth-source-user-or-password-smtp): Use new variables and provide an
413 interface to netrc.el.
414
415 2008-03-12 Katsumi Yamaoka <yamaoka@jpl.org>
416
417 * nntp.el (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet)
418 (nntp-open-via-rlogin-and-netcat, nntp-open-via-telnet-and-telnet):
419 Make sure the nntp port to specify is a string.
420
421 2008-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
422
423 * nntp.el: Use with-current-buffer.
424 (nntp-send-buffer): Just set the buffer to unibyte rather than use the
425 dubious mm-with-unibyte-current-buffer.
426 (nntp-with-open-group-function): New function extracted from
427 nntp-with-open-group macro.
428 (nntp-with-open-group): Use the function, so it's easier to debug.
429 Add indentation and debugging info.
430 (nntp-open-telnet-stream, nntp-open-via-rlogin-and-telnet): Recommend
431 the use of the netcat alternatives.
432
433 * rfc2047.el (rfc2047-decode-string): Don't use `m'.
434 Avoid mm-string-as-multibyte as well.
435
436 * nnweb.el (nnweb-insert-html):
437 Remove use of nnheader-string-as-multibyte.
438
439 * nnheader.el (nnheader-init-server-buffer): Use with-current-buffer.
440 (nnheader-string-as-multibyte): Remove.
441
442 * mm-view.el: Use inhibit-read-only.
443 (mm-inline-text-html-render-with-w3, mm-inline-message): Use dolist.
444 (mm-pkcs7-signed-magic, mm-pkcs7-enveloped-magic): Use just string
445 or unibyte-string.
446
447 * mm-uu.el (mm-uu-copy-to-buffer): Preserve (uni/multi)byteness.
448 (mm-uu-yenc-extract): Use with-current-buffer.
449
450 * gnus-soup.el (gnus-soup-send-packet): Don't use
451 mm-with-unibyte-current-buffer since the buffer is unibyte anyway.
452
453 * nnmh.el: Use with-current-buffer.
454 (nnmh-request-list-1): Use mm-string-to-multibyte rather than
455 mm-string-as-multibyte on the output of mm-encode-coding-string.
456
457 * nnimap.el (nnimap-retrieve-headers-progress): Use a unibyte buffer.
458 (nnimap-request-move-article): Use with-current-buffer.
459
460 * mm-decode.el (mm-with-part): Set the buffer to unibyte before
461 inserting the handle-buffer's text, so the implicit multibyte->unibyte
462 conversion uses string-make-unibyte rather than string-as-unibyte.
463
464 * gnus-msg.el: Use with-current-buffer.
465
466 * message.el (message-ignored-resent-headers): Add "Delivered-To".
467
468 2008-03-10 Daiki Ueno <ueno@unixuser.org>
469
470 * mml2015.el (mml2015-epg-passphrase-callback): Type cast KEY-ID to a
471 string for caching if it is 'PIN.
472
473 2008-03-08 Reiner Steib <Reiner.Steib@gmx.de>
474
475 * mail-source.el (mail-source-delete-old-incoming-confirm):
476 Change default to nil.
477 (mail-source-delete-old-incoming): Make confirmation prompt more clear.
478
479 2008-03-07 Katsumi Yamaoka <yamaoka@jpl.org>
480
481 * gnus-art.el (gnus-narrow-to-page): Position point properly.
482 (gnus-article-goto-prev-page): Work for articles having ^L's.
483
484 * gnus-sum.el (gnus-summary-end-of-article): Remove needless narrowing.
485
486 * mm-view.el (mm-w3m-standalone-supports-m17n-p): Fix typo.
487
488 2008-03-07 Karl Fogel <kfogel@red-bean.com>
489
490 * gnus-bookmark.el: Adjust for renames in bookmark.el.
491 (gnus-bookmark-make-record): Was `gnus-bookmark-make-cell'.
492 (gnus-bookmark-jump): Adjust some variable names.
493
494 2008-03-06 Teodor Zlatanov <tzz@lifelogs.com>
495
496 * auth-source.el: New package.
497 (auth-source-choices): Add customization entry point variable.
498
499 * gnus-registry.el (gnus-registry-user-format-function-M): Fix concat
500 bug.
501
502 2008-03-05 Teodor Zlatanov <tzz@lifelogs.com>
503
504 * gnus-registry.el (gnus-registry-install): Allow 'ask as an option.
505 (gnus-registry-initialize, gnus-registry-install-p): Use it.
506 (gnus-registry-install-shortcuts): Rename from
507 gnus-registry-install-shortcuts-and-menus. Installs the shortcuts in
508 the `gnus-registry-mark-map' keymap dynamically from
509 `gnus-registry-marks'. The generated functions update the summary line
510 when a registry mark is added or deleted, and will call
511 `gnus-registry-install-p' (see the comments in the code).
512 (gnus-registry-user-format-function-M): Use concat intelligently.
513
514 * gnus-sum.el (gnus-summary-make-menu-bar): Add menu entries for all
515 the registry mark functions.
516
517 2008-03-05 Glenn Morris <rgm@gnu.org>
518
519 * gnus-art.el (gnus-article-mode-line-format-alist): Move to gnus-sum.
520 * gnus-sum.el (gnus-article-mode-line-format-alist): Move here from
521 gnus-art.
522 (top-level): No need to load own source when compiling.
523
524 2008-03-04 Reiner Steib <Reiner.Steib@gmx.de>
525
526 * gnus-sum.el (gnus-print-buffer): Honor ps-print-color-p.
527 Suggested by <chris.anderton@zetnet.co.uk>.
528
529 2008-03-04 Glenn Morris <rgm@gnu.org>
530
531 * gnus-sum.el (top-level): No need to require gnus when compiling,
532 since unconditionally required near start of file.
533 (gnus-summary-display-while-building): Move definition before use.
534
535 2008-03-04 Teodor Zlatanov <tzz@lifelogs.com>
536
537 * gnus-registry.el (gnus-registry-user-format-function-M): Add
538 formatting function.
539
540 2008-03-03 Teodor Zlatanov <tzz@lifelogs.com>
541
542 * gnus-registry.el (gnus-registry-marks): Changed format to be nicer
543 with plists.
544 (gnus-registry-do-marks, gnus-registry-install-shortcuts-and-menus):
545 Use new format.
546
547 2008-03-03 Katsumi Yamaoka <yamaoka@jpl.org>
548
549 * gnus-art.el (gnus-article-describe-bindings): Work for the version of
550 `where-is-internal' that returns a range of key sequences.
551
552 2008-03-03 Stefan Monnier <monnier@iro.umontreal.ca>
553
554 * mm-bodies.el (mm-decode-content-transfer-encoding): Simplify.
555
556 * gnus-sum.el: Use inhibit-read-only and with-current-buffer.
557 (gnus-summary-jump-to-group): Consider windows on other displayed
558 frames as well. Similar changes might be needed elsewhere, but that's
559 the one I've bumped into during my use.
560
561 * nndoc.el (nndoc-oe-dbx-type-p):
562 * gnus-msg.el (gnus-debug):
563 * gnus-group.el (gnus-update-group-mark-positions):
564 Use mm-string-to-multibyte.
565
566 2008-03-02 Reiner Steib <Reiner.Steib@gmx.de>
567
568 * mml2015.el (mml2015-extract-cleartext-signature): Explain that it
569 doesn't handle NotDashEscaped.
570
571 * mml.el (mml-menu): Improve help entries. Move Sign/Encrypt Part.
572 (mml-dnd-attach-options): Fix typo in custom choice.
573
574 * gnus-group.el (gnus-group-read-ephemeral-gmane-group): Change
575 nndoc-article-type to mbox.
576 (gnus-group-read-ephemeral-gmane-group-url): Support permalink.
577
578 * mm-decode.el (mm-text-html-renderer): Prefer w3m over w3. Fall back
579 to nil, instead of html2text.
580
581 * imap.el (imap-debug): Add `imap-ping-server'.
582
583 * gnus-bookmark.el: Add FIXMEs.
584
585 * message.el (message-form-letter-separator)
586 (message-send-form-letter-delay): New variables.
587 (message-send-form-letter): Use them. New command to send form
588 letters. Requested by Uwe Siart.
589 (message-send-mail-function): Doc fix. Add "Other" custom option.
590
591 2008-02-29 Andreas Seltenreich <andreas@gate450.dyndns.org>
592
593 * nnweb.el (nnweb-google-parse-1): Fix date parsing on articles with
594 empty author.
595
596 2008-02-29 Teodor Zlatanov <tzz@lifelogs.com>
597
598 * gnus-registry.el (gnus-registry-marks): Add variable for
599 customization of marks and their appearance.
600 (gnus-registry-read-mark): Use it.
601 (gnus-registry-do-marks): Add utility function to loop through
602 `gnus-registry-marks'.
603 (gnus-registry-install-shortcuts-and-menus): Add function to install
604 shortcuts and menus.
605 (gnus-registry-initialize): Use it.
606 (gnus-registry-default-mark): Clarify documentation.
607
608 2008-02-29 Glenn Morris <rgm@gnu.org>
609
610 * gnus-art.el, gnus-bookmark.el, gnus-dired.el, gnus-draft.el:
611 * gnus-group.el, gnus-msg.el, gnus-score.el, gnus-sum.el, gnus-util.el:
612 * gnus.el, mail-source.el, message.el, mm-decode.el, mm-uu.el, mml.el:
613 * nnmail.el, pop3.el, smiley.el, smime.el, spam-report.el:
614 Change defcustom :version from 23.0 to 23.1.
615
616 2008-02-28 Teodor Zlatanov <tzz@lifelogs.com>
617
618 * gnus-registry.el (gnus-registry-follow-group-p)
619 (gnus-registry-post-process-groups): Add functions to aid registry
620 splitting and improve logging. Clarify behavior in function
621 documentation.
622 (gnus-registry-split-fancy-with-parent): Use them.
623
624 2008-02-28 Stefan Monnier <monnier@iro.umontreal.ca>
625
626 * gnus-art.el: Use with-current-buffer.
627
628 2008-02-27 David Engster <dengste@eml.cc>
629
630 * nnmairix.el (nnmairix-request-group-with-article-number-correction):
631 Express real group name in the response.
632
633 2008-02-27 Katsumi Yamaoka <yamaoka@jpl.org>
634
635 * nnmairix.el (nnmairix-group-regexp, nnmairix-valid-backends)
636 (nnmairix-last-server, nnmairix-current-server): Defvar them.
637 (nnmairix-goto-original-article): Defvar gnus-registry-install and
638 autoload gnus-registry-fetch-group when compiling.
639 (nnmairix-request-group-with-article-number-correction): Remove
640 unreferenced argument passed to nnmairix-call-backend.
641
642 2008-02-27 Reiner Steib <Reiner.Steib@gmx.de>
643
644 * mm-uu.el (mm-uu-type-alist): Fix message-marks non-hide arguments.
645 (mm-uu-extract): Improve face for low color ttys. Reported by Sascha
646 Wilde.
647
648 2008-02-27 Glenn Morris <rgm@gnu.org>
649
650 * nnmairix.el: Change defcustom :version from 23.0 to 23.1.
651 (nnmairix-group-regexp, nnmairix-valid-backends): Convert from free
652 variables to defconsts. Convert comments to doc-strings.
653 (nnmairix-last-server, nnmairix-current-server): Convert from free
654 variables to defvars. Convert comments to doc-strings.
655 (gnus-registry-fetch-group): Autoload.
656 (nnmairix-replace-group-and-numbers): Use mapc rather than mapcar.
657 (nnmairix-widget-get-values, nnmairix-widget-make-query-from-widgets)
658 (nnmairix-widget-build-editable-fields): Use car cddr rather than
659 caddr.
660 (nnmairix-request-group): Bind nnmairix-fast and nnmairix-group around
661 nnmairix-request-group-with-article-number-correction call.
662 (nnmairix-fast, nnmairix-group): New, less general names, for free
663 variables passed from nnmairix-request-group to
664 nnmairix-request-group-with-article-number-correction. Declare.
665 (nnmairix-request-group-with-article-number-correction):
666 Use nnmairix-fast, nnmairix-group rather than fast, group.
667
668 2008-02-26 David Engster <dengste@eml.cc>
669
670 * nnmairix.el: New file. Mairix back end for Gnus. Initial import of
671 version 0.5.
672
673 2008-02-26 Teodor Zlatanov <tzz@lifelogs.com>
674
675 * gnus-registry.el (gnus-registry-register-message-ids): Use `id'
676 instead of making an extra function call. Don't add the current group
677 to articles only when they have the group. Use
678 `gnus-registry-fetch-groups' instead of `gnus-registry-fetch-group'.
679 Reported by David <de_bb@arcor.de>.
680
681 2008-02-24 Miles Bader <miles@gnu.org>
682
683 * mm-util.el (mm-hack-charsets, mm-iso-8859-15-compatible)
684 (mm-iso-8859-x-to-15-table, mm-iso-8859-x-to-15-region)
685 (mm-find-mime-charset-region):
686 * mm-bodies.el (mm-encode-body):
687 * mml.el (mml-parse-1): Revert removal of `mm-hack-charsets'.
688
689 2008-02-16 Reiner Steib <Reiner.Steib@gmx.de>
690
691 * mail-source.el (mail-source-delete-incoming): Change default.
692 Supplement doc string.
693
694 * gnus-util.el (gnus-y-or-n-p, gnus-y-or-n-p): Update comments.
695
696 2008-02-14 Reiner Steib <Reiner.Steib@gmx.de>
697
698 * nnmail.el (nnmail-message-id-cache-file): Derive from
699 `gnus-home-directory'.
700
701 2008-02-11 Reiner Steib <Reiner.Steib@gmx.de>
702
703 * gnus-topic.el (gnus-topic-select-group, gnus-topic-read-group):
704 Document negative prefix.
705
706 * gnus-group.el (gnus-group-read-group): Document negative prefix.
707
708 2008-02-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
709
710 * message.el (message-unsent-separator): Add the Exim bounce
711 separator.
712
713 2008-02-10 Daiki Ueno <ueno@unixuser.org>
714
715 * mml2015.el (mml2015-epg-sign): Remove skipped signers from the signer
716 list.
717 (mml2015-epg-encrypt): Remove skipped recipients/signers from the
718 recipient/signer list.
719
720 2008-02-10 Reiner Steib <Reiner.Steib@gmx.de>
721
722 * mm-util.el (mm-codepage-setup): If cp-supported-codepages isn't
723 fbound (Emacs 23 unicode), signal an error.
724
725 2008-02-08 Glenn Morris <rgm@gnu.org>
726
727 * gnus-art.el (pgg-display-output-buffer): Declare as function.
728
729 2008-02-07 Tassilo Horn <tassilo@member.fsf.org>
730
731 * nnimap.el (nnimap-open-connection): Add "143" and "993" as default
732 ports to the calls to `netrc-machine-user-or-password' in addition to
733 "imap" and "imaps".
734
735 2008-02-03 Reiner Steib <Reiner.Steib@gmx.de>
736
737 * gnus.el (gnus-group-startup-message): Add `find-image' call before
738 image-load-path is let-bound. Reported by Harald Hanche-Olsen
739 <hanche@math.ntnu.no>.
740
741 2008-02-01 Katsumi Yamaoka <yamaoka@jpl.org>
742
743 * gnus-art.el (gnus-article-describe-bindings): Work for draft group.
744
745 2008-02-01 Zhang Wei <id.brep@gmail.com>
746
747 * rfc2047.el (rfc2047-charset-encoding-alist): Add gbk and GB18030.
748
749 * mm-util.el (mm-mime-mule-charset-alist): Add gbk and GB18030.
750
751 2008-02-01 Miles Bader <miles@gnu.org>
752
753 * mml.el (mml-parse-1): Remove apparently vestigial use of
754 `mm-hack-charsets'.
755 * mm-bodies.el (mm-encode-body): Likewise.
756
757 2008-02-01 Kenichi Handa <handa@m17n.org>
758
759 * rfc2104.el (rfc2104-hexstring-to-byte-list): Rename from
760 rfc2104-hexstring-to-bitstring and changed to return a byte list.
761 (rfc2104-hash): Convert the result of concat to unibyte string.
762
763 2008-02-01 Dave Love <fx@gnu.org>
764
765 * gnus-start.el (gnus-read-newsrc-el-file): Don't bind
766 coding-system-for-read.
767 (gnus-gnus-to-quick-newsrc-format): Insert coding cookie.
768
769 * mm-util.el (mm-hack-charsets, mm-iso-8859-15-compatible)
770 (mm-iso-8859-x-to-15-table, mm-iso-8859-x-to-15-region): Delete.
771 (mm-find-mime-charset-region): Remove hack-charsets stuff.
772
773 2008-01-24 Michael Sperber <sperber@deinprogramm.de>
774
775 * mail-source.el (mail-sources): Add `group' choice.
776
777 * nnmail.el (nnmail-get-new-mail-1): Abstract this out to add another
778 parameter `in-group' to control into which group the articles go.
779 Add treatment of `group' mail-source.
780
781 2008-01-24 Dan Nicolaescu <dann@ics.uci.edu>
782
783 * sieve.el (sieve-make-overlay, sieve-overlay-put, sieve-overlays-at):
784 * message.el (message-beginning-of-line): Use featurep instead of bound
785 tests in order to resolve conditionals at compile time.
786
787 2008-01-23 Katsumi Yamaoka <yamaoka@jpl.org>
788
789 * gnus-art.el (gnus-insert-mime-button): Don't decode description.
790
791 * mm-decode.el (mm-dissect-buffer): Decode description.
792
793 * mml.el (mml-to-mime): Encode message header first.
794
795 2008-01-18 Katsumi Yamaoka <yamaoka@jpl.org>
796
797 * gnus-art.el (gnus-article-describe-bindings): Make it possible to use
798 xrefs, i.e. [back] and [forward] buttons, in *Help* buffer.
799
800 2008-01-18 Teodor Zlatanov <tzz@lifelogs.com>
801
802 * gnus-registry.el (gnus-registry-trim): Use append, not concat.
803
804 2008-01-17 Katsumi Yamaoka <yamaoka@jpl.org>
805
806 * gnus-art.el (gnus-article-read-summary-keys): Work for some `A'
807 prefix keys.
808 (gnus-article-read-summary-send-keys): Use gnus-character-to-event.
809 (gnus-article-describe-bindings): Simplify; move XEmacs stuff to
810 gnus-xmas.el.
811
812 2008-01-16 Teodor Zlatanov <tzz@lifelogs.com>
813
814 * gnus-registry.el (gnus-registry-marks, gnus-registry-default-mark):
815 Add new variables for article mark management.
816 (gnus-registry-extra-entries-precious, gnus-registry-trim): Define a
817 list of extra data entries which, when present, will indicate that the
818 article ID should not be trimmed from the registry.
819 (gnus-registry-mark-article, gnus-registry-article-marks): Remove these
820 functions.
821 (gnus-registry-read-mark): New function to read a mark name from the
822 user.
823 (gnus-registry-set-article-mark, gnus-registry-remove-article-mark)
824 (gnus-registry-set-article-mark-internal): New functions to add and
825 remove marks.
826 (gnus-registry-get-article-marks): New function to show the marks for
827 an article, or retrieve them for further use.
828
829 2008-01-16 Katsumi Yamaoka <yamaoka@jpl.org>
830
831 * gnus-art.el (gnus-article-describe-bindings): Show all `S' prefix
832 keys when no argument is given.
833
834 2008-01-12 Reiner Steib <Reiner.Steib@gmx.de>
835
836 * gnus-sum.el (gnus-article-sort-by-random)
837 (gnus-thread-sort-by-random): Fix doc strings. Reported by
838 jidanni@jidanni.org.
839
840 2008-01-11 Katsumi Yamaoka <yamaoka@jpl.org>
841
842 * gnus-art.el (gnus-article-describe-bindings): New function.
843 (gnus-article-read-summary-keys): Use it.
844 (gnus-article-mode-map): Bind `C-h b' to it.
845
846 2008-01-10 Katsumi Yamaoka <yamaoka@jpl.org>
847
848 * gnus-art.el (gnus-article-read-summary-keys): Work for `C-h' on
849 XEmacs.
850 (gnus-article-describe-key, gnus-article-describe-key-briefly): Protect
851 against non-character events.
852
853 2008-01-09 Reiner Steib <Reiner.Steib@gmx.de>
854
855 * gnus-group.el (gnus-group-read-ephemeral-gmane-group-url): New
856 command.
857 (gnus-group-read-ephemeral-gmane-group): Use optional argument RANGE
858 instead of END. Change name of the temp file.
859 (gnus-group-gmane-group-download-format): Add doc string. Make it
860 customizable.
861
862 2008-01-09 Katsumi Yamaoka <yamaoka@jpl.org>
863
864 * gnus-art.el (gnus-article-send-map): New keymap for `S' prefix keys;
865 bind `S W' to gnus-article-wide-reply-with-original; set default
866 binding to gnus-article-read-summary-send-keys.
867 (gnus-article-read-summary-keys): Fix the order of keys; display
868 continuation keys correctly in the echo area; describe bindings
869 correctly when keys end with `C-h'.
870 (gnus-article-read-summary-send-keys): New function.
871 (gnus-article-describe-key, gnus-article-describe-key-briefly): Work
872 for gnus-article-read-summary-send-keys; display continuation keys
873 correctly in the echo area.
874 (gnus-article-reply-with-original): Ignore prefix argument.
875 (gnus-article-wide-reply-with-original): New function.
876
877 2008-01-08 Katsumi Yamaoka <yamaoka@jpl.org>
878
879 * gnus-bookmark.el (gnus-bookmark-mouse-available-p): Don't test for
880 display-color-p. Reported by Reiner Steib <Reiner.Steib@gmx.de>.
881
882 2008-01-06 Reiner Steib <Reiner.Steib@gmx.de>
883
884 * gnus-group.el (gnus-group-gmane-group-download-format): New variable.
885 (gnus-group-read-ephemeral-gmane-group): New command.
886
887 2008-01-06 Dan Nicolaescu <dann@ics.uci.edu>
888
889 * gnus.el (gnus-use-long-file-name): Remove reference to xenix.
890
891 2007-12-28 Reiner Steib <Reiner.Steib@gmx.de>
892
893 * message.el (message-send-mail-function): Increase custom version.
894
895 * mml-sec.el, sieve-manage.el, smime.el: Simplify loading of
896 password-cache or password. Suggested by Glenn Morris <rgm@gnu.org>.
897
898 2007-12-19 Katsumi Yamaoka <yamaoka@jpl.org>
899
900 * gnus-art.el (gnus-article-browse-html-parts): Work for two or more
901 html parts correctly; support forwarded messages.
902 (gnus-article-browse-html-article): Remove work buffers.
903
904 * netrc.el: Bind encrypt-file-alist for Emacs 21 and XEmacs when
905 compiling.
906 (netrc-bound-and-true-p): New macro.
907 (netrc-parse): Use it instead of bound-and-true-p that is not available
908 in XEmacs 21.4.
909
910 2007-12-19 Teodor Zlatanov <tzz@lifelogs.com>
911
912 * gnus-registry.el (gnus-registry-mark-article)
913 (gnus-registry-article-marks): Add functionality to mark articles
914 through the Gnus registry.
915
916 * netrc.el: Autoload encrypt when encrypt-file-alist is set.
917 (netrc-parse): Use encrypt-file-alist to determine if
918 encrypt-find-model or encrypt-insert-file-contents should be used.
919
920 2007-12-19 Glenn Morris <rgm@gnu.org>
921
922 * mml.el (message-options-set, message-narrow-to-head)
923 (message-in-body-p, message-mail-p, message-encode-message-body):
924 Autoload.
925 (message-remove-header, message-narrow-to-headers-or-head)
926 (message-subscribed-p, message-make-mail-followup-to)
927 (message-position-on-field, message-news-p)
928 (message-options-set-recipient, message-generate-headers)
929 (message-sort-headers): Declare as functions.
930
931 2007-12-18 Reiner Steib <Reiner.Steib@gmx.de>
932
933 * gnus-draft.el (gnus-draft-send-message): Mention process/prefix
934 convention in doc string.
935
936 2007-12-17 Katsumi Yamaoka <yamaoka@jpl.org>
937
938 * gnus-art.el (gnus-article-browse-html-parts): Add message header and
939 title to html parts.
940 (gnus-article-browse-html-article): Pass message header to it.
941
942 * mm-decode.el (mm-display-external): Use mm-add-meta-html-tag.
943
944 2007-12-16 Reiner Steib <Reiner.Steib@gmx.de>
945
946 * mml-sec.el, sieve-manage.el, smime.el: Make loading of password-cache
947 or password compatible with XEmacs.
948
949 2007-12-15 Reiner Steib <Reiner.Steib@gmx.de>
950
951 * gnus-art.el (article-verify-x-pgp-sig): Add reference to X-PGP-Sig
952 format document.
953 (gnus-mime-delete-part): Don't write description line if empty.
954 (gnus-article-encrypt-body): Add confirmation for gnus-novice-user.
955
956 2007-12-14 Johan Bockgård <bojohan@gnu.org>
957
958 * gnus-sum.el (gnus-summary-mark-unread-as-read)
959 (gnus-summary-mark-read-and-unread-as-read)
960 (gnus-summary-mark-current-read-and-unread-as-read)
961 (gnus-summary-mark-unread-as-ticked): Doc fix.
962 `gnus-mark-article-hook', not `gnus-summary-mark-article-hook'.
963
964 2007-12-14 Reiner Steib <Reiner.Steib@gmx.de>
965
966 * gnus-sum.el (gnus-summary-prev-article): Fix doc string. Reported by
967 Christoph Conrad <christoph.conrad@gmx.de>.
968
969 2007-12-14 Reiner Steib <Reiner.Steib@gmx.de>
970
971 * gnus-util.el (gnus-y-or-n-p, gnus-yes-or-no-p): Alias to y-or-n-p and
972 yes-or-no-p.
973
974 2007-12-11 Katsumi Yamaoka <yamaoka@jpl.org>
975
976 * mm-decode.el (mm-add-meta-html-tag): New function.
977 (mm-save-part-to-file, mm-pipe-part): Use it.
978
979 * gnus-art.el (gnus-article-browse-delete-temp-files): Use
980 gnus-y-or-n-p instead of y-or-n-p.
981 (gnus-article-browse-html-parts): Work with message/external-body; use
982 mm-add-meta-html-tag.
983
984 2007-12-11 Glenn Morris <rgm@gnu.org>
985
986 * gnus-cache.el: Require gnus-sum not just when compiling.
987
988 * gnus-fun.el (gnus-display-x-face-in-from): Require gnus-art.
989
990 * gnus-int.el (gnus-server-opened, gnus-status-message): Move
991 definitions before use.
992
993 * mm-decode.el: Require gnus-util.
994 (mm-remove-part): Only call delete-annotation on XEmacs.
995
996 * mm-uu.el (gnus-original-article-buffer): Define for compiler.
997
998 * nnmail.el: Require gnus-int.
999
1000 * spam.el: Move `require's before `eval-when-compile's.
1001
1002 * gnus-ems.el (gnus-alive-p):
1003 * gnus-fun.el (message-goto-eoh):
1004 * gnus-util.el (gnus-group-name-decode):
1005 * mail-source.el (gnus-compress-sequence):
1006 * message.el (Info-goto-node, format-spec):
1007 * mm-bodies.el (message-options-get):
1008 * mm-decode.el (mm-view-pkcs7):
1009 * mm-util.el (gmm-write-region):
1010 * mml-smime.el (mml-compute-boundary)
1011 (gnus-completing-read-with-default):
1012 * mml.el (widget-button-press, gnus-make-hashtable):
1013 * mml1991.el (mm-decode-content-transfer-encoding)
1014 (mm-encode-content-transfer-encoding)
1015 (message-options-get, message-options-set):
1016 * mml2015.el (gnus-buffer-live-p, gnus-get-buffer-create):
1017 * nnfolder.el (gnus-request-group):
1018 * nnheader.el (ietf-drums-unfold-fws):
1019 * rfc1843.el (mail-header-parse-content-type, message-narrow-to-head):
1020 * smime.el (gnus-run-mode-hooks):
1021 * spam-stat.el (gnus-message): Autoload.
1022
1023 * gnus-cache.el, gnus-fun.el, gnus-group.el, gnus.el, mail-source.el:
1024 * mm-bodies.el, mm-decode.el, mm-extern.el, mm-util.el:
1025 * mml-smime.el, mml.el, mml1991.el, mml2015.el, nndb.el, nnfolder.el:
1026 * nnmail.el, nnmaildir.el, nnrss.el, rfc1843.el, spam.el:
1027 Add declare-function compatibility definition.
1028
1029 * gnus-cache.el (nnvirtual-find-group-art):
1030 * gnus-fun.el (article-narrow-to-head, gnus-article-goto-header)
1031 (gnus-add-image, gnus-add-wash-type):
1032 * gnus-group.el (nnkiboze-score-file):
1033 * gnus-sum.el (turn-on-gnus-mailing-list-mode)
1034 (gnus-cache-write-active, mm-uu-dissect, idna-to-unicode):
1035 * gnus-util.el (gnus-find-method-for-group, gnus-group-name-charset)
1036 (message-tokenize-header, gnus-get-buffer-create)
1037 (mm-enable-multibyte, gnus-put-text-property, gnus-overlay-put)
1038 (gnus-make-overlay, mm-disable-multibyte, gnus-add-text-properties):
1039 * gnus.el (gnus-group-decoded-name):
1040 * mail-source.el (imap-capability):
1041 * mm-bodies.el (message-options-set):
1042 * mm-decode.el (gnus-configure-windows):
1043 * mm-extern.el (message-goto-body):
1044 * mm-util.el (mm-delete-duplicates, mm-detect-coding-region):
1045 * mml-smime.el (epg-key-sub-key-list, epg-sub-key-capability)
1046 (epg-sub-key-validity, message-options-set):
1047 * mml.el (widget-event-point, gnus-configure-windows):
1048 * mml1991.el (mc-encrypt-generic, gpg-sign-encrypt, gpg-encrypt):
1049 * mml2015.el (epg-check-configuration, epg-configuration)
1050 (message-options-set):
1051 * nndb.el (nndb-request-article):
1052 * nnfolder.el (gnus-request-create-group):
1053 * nnmail.el (gnus-activate-group, gnus-group-mark-article-read):
1054 * nnmaildir.el (gnus-group-mark-article-read):
1055 * nnrss.el (w3-parse-buffer, gnus-group-make-rss-group):
1056 * rfc1843.el (message-fetch-field):
1057 * spam.el (gnus-extract-address-components):
1058 Declare as functions.
1059
1060 2007-12-10 Katsumi Yamaoka <yamaoka@jpl.org>
1061
1062 * gnus-art.el (gnus-article-browse-html-parts): Decode CTE.
1063
1064 2007-12-09 Glenn Morris <rgm@gnu.org>
1065
1066 * gnus-uu.el (gnus-uu-yenc-article): Use insert-buffer-substring.
1067
1068 * gnus-art.el, gnus-spec.el, gnus-sum.el, gnus-util.el:
1069 * message.el, mm-view.el, sieve-manage, smime.el:
1070 Add declare-function compatibility definition.
1071
1072 * gnus-art.el (w3-region, w3m-region, Info-menu):
1073 * gnus-spec.el (gnus-summary-from-or-to-or-newsgroups):
1074 * gnus-sum.el (gnus-get-predicate):
1075 * gnus-util.el (mm-append-to-file, w32-focus-frame):
1076 * message.el (mail-abbrev-in-expansion-header-p):
1077 * mm-view.el (w3-do-setup, w3-region, w3-prepare-buffer)
1078 (w3m-detect-meta-charset, w3m-region):
1079 * sieve-manage.el (password-read, password-cache-add)
1080 (password-cache-remove):
1081 * smime.el (password-read-and-add): Declare as functions.
1082
1083 2007-12-08 David Kastrup <dak@gnu.org>
1084
1085 * gnus-sum.el (gnus-summary-simplify-subject-query):
1086 * ecomplete.el (ecomplete-display-matches): Fix buggy call to
1087 `message'.
1088
1089 2007-12-07 Glenn Morris <rgm@gnu.org>
1090
1091 * gnus-art.el (article-make-date-line): Revert previous change.
1092
1093 2007-12-06 Reiner Steib <Reiner.Steib@gmx.de>
1094
1095 * gnus-start.el (gnus-load): Rename local variable to avoid confusion.
1096
1097 2007-12-06 Christian Plate <cplate@web.de> (tiny change)
1098
1099 * nnmaildir.el (nnmaildir-request-update-info): Improved performance.
1100 Call gnus-add-to-range ranges only once with a prepared article-list.
1101
1102 2007-12-06 Paul Jarc <prj@po.cwru.edu>
1103
1104 * nnmaildir.el (nnmaildir-request-list, nnmaildir-retrieve-groups)
1105 (nnmaildir-request-group, nnmaildir-retrieve-headers): Escape spaces in
1106 group names with backslashes. Reported by Tassilo Horn
1107 <tassilo@member.fsf.org>.
1108
1109 2007-12-06 D. Goel <deego3@gmail.com>
1110
1111 * gnus-art.el (article-make-date-line):
1112 * gnus-start.el (gnus-load):
1113 * pop3.el (pop3-read-response): Fix buggy call to `error'.
1114
1115 2007-12-05 Katsumi Yamaoka <yamaoka@jpl.org>
1116
1117 * gnus-art.el (gnus-use-idna)
1118 * gnus-start.el (gnus-site-init-file)
1119 * message.el (message-use-idna)
1120 * mm-uu.el (mm-uu-hide-markers)
1121 * smiley.el (smiley-style): Revert changes that suppress warnings.
1122
1123 2007-12-05 Katsumi Yamaoka <yamaoka@jpl.org>
1124
1125 * gnus-art.el (gnus-article-browse-html-parts): Add meta html tag to
1126 specify charset to html source. Reported by Christoph Conrad
1127 <christoph.conrad@gmx.de>.
1128
1129 2007-12-05 Katsumi Yamaoka <yamaoka@jpl.org>
1130
1131 * gnus-art.el (gnus-use-idna): Don't directly refer to the value of
1132 idna-program in order to suppress byte compile warning issued by XEmacs
1133 that came to byte compile the default value section of defcustom forms
1134 recently.
1135
1136 * gnus-start.el (gnus-site-init-file): Don't directly refer to the
1137 value of installation-directory.
1138
1139 * message.el (message-use-idna): Don't directly refer to the value of
1140 idna-program.
1141
1142 * mm-uu.el (mm-uu-hide-markers): Don't directly call defined-colors.
1143
1144 * smiley.el (smiley-style): Don't directly call face-attribute.
1145
1146 2007-12-04 Reiner Steib <Reiner.Steib@gmx.de>
1147
1148 * gnus-group.el (gnus-group-highlight-line): Add FIXME.
1149
1150 * gnus-dired.el: Reduce Gnus dependencies.
1151 (gnus-ems, gnus-msg, gnus-util, message, mm-decode, mml): Don't
1152 require. Use autoloads instead.
1153 (mml-attach-file, mm-default-file-encoding, mailcap-extension-to-mime)
1154 (mailcap-mime-info, mm-mailcap-command, ps-print-preprint)
1155 (message-buffers, gnus-setup-message, gnus-print-buffer): Autoload.
1156 (gnus-dired-mode): Adjust doc string.
1157 (gnus-dired-mail-mode): New variable.
1158 (gnus-dired-mode-map): Avoid using `gnus-define-keys'.
1159 (gnus-dired-mode): Avoid using `gnus-run-hooks'.
1160 (gnus-dired-mail-buffers): New function. Return mail or message
1161 composition buffers.
1162 (gnus-dired-attach): Use it.
1163 (gnus-dired-find-file-mailcap): Call `mailcap-mime-info' with
1164 NO-DECODE.
1165 (gnus-dired-print): Use `gnus-print-buffer' depending on
1166 `gnus-dired-mail-mode'.
1167
1168 2007-12-04 Katsumi Yamaoka <yamaoka@jpl.org>
1169
1170 * rfc2047.el (rfc2047-encoded-word-regexp)
1171 (rfc2047-encoded-word-regexp-loose): Move forward; add comments
1172 explaining what regexp patterns are for.
1173
1174 2007-12-04 Glenn Morris <rgm@gnu.org>
1175
1176 * password.el: Move to ../password-cache.el.
1177
1178 * mml1991.el (password-read, password-cache-add, password-cache-remove):
1179 * mml2015.el (password-read, password-cache-add, password-cache-remove):
1180 * mml-smime.el (password-read, password-cache-add)
1181 (password-cache-remove):
1182 No need to autoload, since mml-sec requires password.
1183
1184 * gnus.el (gnus-spam-resend-to, gnus-ham-resend-to):
1185 * message.el (gnus-extract-address-components):
1186 * mml-smime.el (gnus-extract-address-components): Define for compiler.
1187
1188 * mml-sec.el, sieve-manage.el, smime.el: Require password-cache or
1189 password.
1190
1191 2007-12-03 Reiner Steib <Reiner.Steib@gmx.de>
1192
1193 * mailcap.el: Reduce dependencies.
1194 (mail-header-parse-content-type): Autoload.
1195 (mailcap-delete-duplicates): New alias.
1196 (mailcap-mime-info): Add optional argument NO-DECODE.
1197 (mailcap-mime-types): Use mailcap-delete-duplicates.
1198
1199 * message.el (message-ignored-supersedes-headers): Add "X-ID".
1200
1201 2007-12-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
1202
1203 * gnus-sum.el (gnus-uu-extract-map): Add a command for the yenc
1204 function.
1205
1206 * gnus-uu.el (gnus-uu-decode-yenc): New command.
1207 (gnus-uu-yenc-article): New function.
1208
1209 * yenc.el (yenc-first-part-p, yenc-last-part-p): New functions.
1210
1211 * mm-uu.el (mm-uu-yenc-extract): Get the data from the original
1212 buffer.
1213
1214 2007-12-02 Glenn Morris <rgm@gnu.org>
1215
1216 * sasl-cram.el, sasl-digest.el, sasl-ntlm.el, sasl.el:
1217 Move to ../net.
1218
1219 * binhex.el, uudecode.el: Move to ../mail.
1220
1221 * encrypt.el: Remove file.
1222
1223 2007-12-01 Reiner Steib <Reiner.Steib@gmx.de>
1224
1225 * message.el (message-cite-prefix-regexp): Remove `-' and `+' to avoid
1226 matches on patches.
1227
1228 * gnus-art.el (gnus-article-browse-html-article): Mention
1229 `mm-text-html-renderer' in the doc string.
1230
1231 * rfc2047.el (rfc2047-encode-max-chars): Refer to RFC 2047 in doc
1232 string. Add comments.
1233
1234 * message.el (message-idna-to-ascii-rhs-1): Don't call `idna-to-ascii'
1235 if rhs is ASCII.
1236
1237 2007-12-01 Glenn Morris <rgm@gnu.org>
1238
1239 * dig.el, dns.el: Move to ../net.
1240 * format-spec.el, hex-util.el, sha1.el: Move to ../.
1241
1242 * mail-source.el (top-level): Require format-spec before
1243 eval-when-compile.
1244
1245 2007-11-30 Glenn Morris <rgm@gnu.org>
1246
1247 * encrypt.el: Require password, rather than autoloading password-read.
1248
1249 2007-11-28 Elias Oltmanns <eo@nebensachen.de>
1250
1251 * gnus.el (gnus-method-to-server): Add an optional parameter so the
1252 caller can indicate whether the cache should be disregarded for this
1253 call. This way the result of the call is reproducible at all times and
1254 can be considered a canonical server name for the supplied method.
1255 (gnus-agent-method-p): Canonicalize server names by pushing their
1256 method through `gnus-method-to-server' using the no-cache argument.
1257
1258 * gnus-srvr.el (gnus-server-insert-server-line): Call
1259 `gnus-method-to-server' with `no-cache' argument.
1260
1261 * gnus-agent.el (gnus-agent-toggle-plugged): Don't call
1262 gnus-agent-possibly-synchronize-flags as this should be called when the
1263 server is actually being opened.
1264 (gnus-agent-possibly-synchronize-flags)
1265 (gnus-agent-possibly-synchronize-flags-server): Move check for the
1266 flags file of an agentized server to the latter function.
1267
1268 * gnus-int.el (gnus-agent-possibly-synchronize-flags-server): Autoload.
1269 (gnus-open-server): Call gnus-agent-possibly-synchronize-flags-server
1270 after a connection has been established successfully.
1271
1272 2007-11-28 Katsumi Yamaoka <yamaoka@jpl.org>
1273
1274 * gnus-art.el (article-display-face): Force to display face if called
1275 interactively; check if gnus-article-x-face-too-ugly matches author.
1276 (article-display-x-face): Display face even if From header is missing
1277 as article-display-face does.
1278
1279 2007-11-28 Richard Stallman <rms@gnu.org>
1280
1281 * md4.el: Move to ../.
1282 * hmac-def.el, hmac-md5.el, ntlm.el: Move to ../net.
1283
1284 2007-11-27 Reiner Steib <Reiner.Steib@gmx.de>
1285
1286 * mail-source.el (mail-sources): Default to fetch from file for
1287 compatibility with default of nnmail-spool-file.
1288
1289 2007-11-27 Katsumi Yamaoka <yamaoka@jpl.org>
1290
1291 * rfc2047.el (rfc2047-allow-irregular-q-encoded-words): New variable.
1292 (rfc2047-encodable-p): Use rfc2047-encoded-word-regexp instead of "=?"
1293 to look for encoded word that should be encoded again.
1294 (rfc2047-encoded-word-regexp): Make B encoding pattern strict.
1295 (rfc2047-encoded-word-regexp-loose): New constant that has loose Q
1296 encoding pattern.
1297 (rfc2047-decode-region): Switch strict regexp and loose one according
1298 to rfc2047-allow-irregular-q-encoded-words.
1299
1300 2007-11-26 Simon Josefsson <simon@josefsson.org>
1301
1302 * imap.el: Move to ../net directory.
1303
1304 2007-11-25 Romain Francoise <romain@orebokech.com>
1305
1306 * gnus-msg.el (gnus-summary-reply): Delete extra paren.
1307
1308 2007-11-24 Reiner Steib <Reiner.Steib@gmx.de>
1309
1310 * nnmail.el (nnmail-spool-file): Remove obsolete variable.
1311 (nnmail-get-new-mail): Remove code using `nnmail-spool-file'.
1312
1313 * gnus-start.el (defvar, gnus-get-unread-articles): Remove code using
1314 `nnmail-spool-file'.
1315
1316 * nnkiboze.el (nnkiboze-generate-groups): Don't bind obsolete
1317 `nnmail-spool-file'.
1318
1319 * gnus-move.el (gnus-change-server): Ditto.
1320
1321 * gnus-kill.el (gnus-batch-score): Ditto.
1322
1323 * gnus-cache.el (gnus-jog-cache): Ditto.
1324
1325 * gnus-msg.el (gnus-summary-reply):
1326 Ignore gnus-confirm-mail-reply-to-news for wide and very wide replies.
1327
1328 2007-11-24 Reiner Steib <Reiner.Steib@gmx.de>
1329
1330 * gnus-cache.el (gnus-cache-generate-nov-databases):
1331 Use nnml-generate-nov-databases-directory instead of
1332 nnml-generate-nov-databases-1.
1333
1334 2007-11-24 Glenn Morris <rgm@gnu.org>
1335
1336 * message.el (message-tool-bar-retro): Update for rename
1337 mail_send.xpm->mail-send.xpm.
1338
1339 2007-11-22 Reiner Steib <Reiner.Steib@gmx.de>
1340
1341 * smime.el (smime-cert-by-ldap-1): Use `ldap-search' instead of
1342 `smime-ldap-search' for Emacs 22 and up.
1343
1344 2007-11-22 Reiner Steib <Reiner.Steib@gmx.de>
1345
1346 * hashcash.el: Move to ../mail directory.
1347
1348 * smime-ldap.el: Remove. Not used in Emacs 22 and up.
1349
1350 * smime.el (smime-cert-by-ldap-1): Use `ldap-search' instead of
1351 `smime-ldap-search' for Emacs 22 and up.
1352
1353 2007-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
1354
1355 * gnus-art.el (gnus-article-truncate-lines): Use `truncate-lines'.
1356
1357 * message.el (message-send-mail-function): Fix error convention.
1358 (message-mailer-swallows-blank-line, message-send-mail-with-sendmail)
1359 (message-widen-reply, message-send-mail, message-talkative-question)
1360 (message-with-reply-buffer, message-generate-new-buffer-clone-locals)
1361 (message-clone-locals, message-send-news): Use with-current-buffer.
1362 (message-insert-or-toggle-importance): Remove unused var `valid'.
1363 (message-make-references): Remove unused var `new-references'.
1364 (message-make-mail-followup-to): Remove unused var `subscribed-lists'.
1365
1366 2007-11-22 Juanma Barranquero <lekktu@gmail.com>
1367
1368 * spam.el (spam-find-spam, spam-enter-list): Doc fixes.
1369 (spam-split-symbolic-return-positive): Reflow docstring.
1370 (spam-backends, spam-summary-exit-behavior)
1371 (spam-mark-ham-unread-before-move-from-spam-group)
1372 (spam-summary-score-preferred-header, spam-sa-learn-spam-switch)
1373 (spam-sa-learn-ham-switch, spam-sa-learn-unregister-switch)
1374 (spam-clear-cache, spam-backend-check, spam-install-backend)
1375 (spam-install-statistical-backend, spam-list-of-processors)
1376 (spam-group-processor-p, spam-split, spam-bogofilter-score)
1377 (spam-bsfilter-score, spam-check-bsfilter, spam-crm114-score)
1378 (spam-check-crm114, spam-initialize, spam-unload-hook):
1379 Fix typos in docstrings.
1380
1381 2007-11-21 Katsumi Yamaoka <yamaoka@jpl.org>
1382
1383 * gnus-start.el (gnus-get-unread-articles): Mark groups as having never
1384 been checked if they have never been read and those group levels are
1385 higher than the one that a user specified.
1386
1387 2007-11-21 Katsumi Yamaoka <yamaoka@jpl.org>
1388
1389 * gnus-start.el (gnus-get-unread-articles): Don't prevent from checking
1390 foreign groups unless a group level is specified by a user.
1391 Reported by Dan Nicolaescu <dann@ics.uci.edu>.
1392
1393 2007-11-21 Reiner Steib <Reiner.Steib@gmx.de>
1394
1395 * message.el (message-send-mail-function): Require sendmail.
1396
1397 2007-11-20 Reiner Steib <Reiner.Steib@gmx.de>
1398
1399 * message.el (message-send-mail-function): Check for smtpmail too.
1400
1401 * utf7.el (utf7-encode, utf7-decode): Use coding system
1402 `utf-7'/`utf-7-imap' from utf-7.el' if available.
1403
1404 * message.el (message-send-mail-function): New function.
1405 (message-send-mail-function): Set default using
1406 message-send-mail-function. Adjust doc string.
1407 (message-send-mail-with-mailclient): New function.
1408
1409 2007-11-17 Richard Stallman <rms@gnu.org>
1410
1411 * assistant.el: Remove file.
1412
1413 2007-11-16 Dan Nicolaescu <dann@ics.uci.edu>
1414
1415 * smime.el (from):
1416 * rfc2047.el (message-posting-charset):
1417 * qp.el (mm-use-ultra-safe-encoding):
1418 * pop3.el (parse-time-months):
1419 * nnrss.el (mm-text-html-renderer, mm-text-html-washer-alist):
1420 * nnml.el (files):
1421 * nnheader.el (gnus-newsgroup-name, nnheader-file-coding-system)
1422 (jka-compr-compression-info-list, ange-ftp-path-format)
1423 (efs-path-regexp):
1424 * nndiary.el (files):
1425 * mml2015.el (mc-default-scheme, mc-schemes, pgg-default-user-id)
1426 (pgg-errors-buffer, pgg-output-buffer, epg-user-id-alist)
1427 (epg-digest-algorithm-alist, inhibit-redisplay)
1428 (password-cache-expiry):
1429 * mml1991.el (pgg-default-user-id, pgg-errors-buffer)
1430 (pgg-output-buffer, password-cache-expiry):
1431 * mml.el (mml-dnd-protocol-alist, ange-ftp-name-format)
1432 (efs-path-regexp):
1433 * mml-smime.el (epg-user-id-alist, epg-digest-algorithm-alist)
1434 (inhibit-redisplay):
1435 * mm-uu.el (file-name, start-point, end-point, entry)
1436 (gnus-newsgroup-name, gnus-newsgroup-charset):
1437 * mm-util.el (mm-mime-mule-charset-alist, latin-unity-coding-systems)
1438 (latin-unity-ucs-list):
1439 * mm-bodies.el (mm-uu-yenc-decode-function, mm-uu-decode-function)
1440 (mm-uu-binhex-decode-function):
1441 * message.el (gnus-message-group-art, gnus-list-identifiers, )
1442 (rmail-enable-mime-composing, gnus-local-organization)
1443 (gnus-post-method, gnus-select-method, gnus-active-hashtb)
1444 (gnus-read-active-file, facemenu-add-face-function)
1445 (facemenu-remove-face-function, gnus-article-decoded-p)
1446 (tool-bar-mode):
1447 * mail-source.el (display-time-mail-function):
1448 * gnus-util.el (nnmail-pathname-coding-system)
1449 (nnmail-active-file-coding-system, gnus-emphasize-whitespace-regexp)
1450 (gnus-original-article-buffer, gnus-user-agent)
1451 (rmail-default-rmail-file, mm-text-coding-system, tool-bar-mode)
1452 (xemacs-codename, sxemacs-codename, emacs-program-version):
1453 * gnus-sum.el (tool-bar-mode, gnus-tmp-header, number):
1454 * gnus-start.el (gnus-agent-covered-methods)
1455 (gnus-agent-file-loading-local, gnus-agent-file-loading-cache)
1456 (gnus-current-headers, gnus-thread-indent-array, gnus-newsgroup-name)
1457 (gnus-newsgroup-headers, gnus-group-list-mode)
1458 (gnus-group-mark-positions, gnus-newsgroup-data)
1459 (gnus-newsgroup-unreads, nnoo-state-alist)
1460 (gnus-current-select-method, mail-sources)
1461 (nnmail-scan-directory-mail-source-once, nnmail-split-history)
1462 (nnmail-spool-file, gnus-cache-active-hashtb):
1463 * gnus-mh.el (mh-lib-progs):
1464 * gnus-ems.el (gnus-tmp-unread, gnus-tmp-replied)
1465 (gnus-tmp-score-char, gnus-tmp-indentation, gnus-tmp-opening-bracket)
1466 (gnus-tmp-lines, gnus-tmp-name, gnus-tmp-closing-bracket)
1467 (gnus-tmp-subject-or-nil, gnus-check-before-posting, gnus-mouse-face)
1468 (gnus-group-buffer):
1469 * gnus-cite.el (font-lock-defaults-computed, font-lock-keywords)
1470 (font-lock-set-defaults):
1471 * gnus-art.el (tool-bar-map, w3m-minor-mode-map)
1472 (gnus-face-properties-alist, charset, gnus-summary-article-menu)
1473 (gnus-summary-post-menu, total-parts, type, condition, length):
1474 * gnus-agent.el (gnus-agent-read-agentview):
1475 * flow-fill.el (show-trailing-whitespace):
1476 * gnus-group.el (tool-bar-mode, nnrss-group-alist): Remove unnecessary
1477 eval-and-compile wrappers for byte compiler pacifiers.
1478
1479 * mm-view.el (mm-inline-image-xemacs): Only do something for XEmacs.
1480 (mm-display-inline-fontify): Check for featurep 'xemacs not
1481 extent-list.
1482
1483 * mm-decode.el (mm-display-external): Check for featurep 'xemacs not
1484 itimer-list.
1485 (mm-create-image-xemacs): Only do something for XEmacs.
1486 (mm-image-fit-p): Check for featurep 'xemacs not glyph-width.
1487
1488 * mm-util.el (mm-find-buffer-file-coding-system): Add check for XEmacs.
1489
1490 * gnus-registry.el (gnus-adaptive-word-syntax-table):
1491 * gnus-fun.el (gnus-face-properties-alist): Pacify byte compiler.
1492
1493 2007-11-15 Juanma Barranquero <lekktu@gmail.com>
1494
1495 * nnimap.el (nnimap-split-download-body):
1496 * gnus-demon.el (gnus-demon):
1497 * gnus-uu.el (gnus-uu-default-view-rules): Fix typos in docstrings.
1498
1499 2007-11-15 Katsumi Yamaoka <yamaoka@jpl.org>
1500
1501 * nntp.el (nntp-insert-buffer-substring, nntp-copy-to-buffer): New
1502 macros.
1503 (nntp-wait-for, nntp-retrieve-articles, nntp-async-trigger)
1504 (nntp-retrieve-headers-with-xover): Use nntp-insert-buffer-substring to
1505 copy data from unibyte buffer to multibyte current buffer.
1506 (nntp-retrieve-headers, nntp-retrieve-groups); Use nntp-copy-to-buffer
1507 to copy data from unibyte current buffer to multibyte buffer.
1508 (nntp-make-process-buffer): Make process buffer unibyte.
1509
1510 * pop3.el (pop3-open-server): Fix typo in Lisp code.
1511
1512 2007-11-14 Denys Duchier <denys.duchier@univ-orleans.fr> (tiny change)
1513
1514 * pop3.el (pop3-open-server): Accept and process data more robustly at
1515 connexion start to avoid spurious "POP SSL connexion failed" errors.
1516
1517 2007-11-14 Katsumi Yamaoka <yamaoka@jpl.org>
1518
1519 * gnus-start.el (gnus-active-to-gnus-format): Use unibyte buffer to
1520 read group names.
1521
1522 2007-11-12 Reiner Steib <Reiner.Steib@gmx.de>
1523
1524 * gnus-msg.el (gnus-confirm-mail-reply-to-news): Adjust :version.
1525
1526 2007-11-12 Katsumi Yamaoka <yamaoka@jpl.org>
1527
1528 * nnmail.el (nnmail-parse-active): Make group names unibyte.
1529 (nnmail-save-active): Use a unibyte buffer when saving active file,
1530 which may contain non-ASCII group names.
1531
1532 * nnml.el (nnml-request-group): Decode group names in messages.
1533
1534 2007-11-05 Reiner Steib <Reiner.Steib@gmx.de>
1535
1536 * message.el (message-citation-line-function)
1537 (message-insert-formatted-citation-line): Fix spelling of
1538 `message-insert-formated-citation-line'.
1539
1540 2007-11-03 Reiner Steib <Reiner.Steib@gmx.de>
1541
1542 * gnus-sum.el (gnus-summary-highlight): Mark as risky local variable.
1543
1544 2007-11-02 Katsumi Yamaoka <yamaoka@jpl.org>
1545
1546 * nnml.el (nnml-request-rename-group): Bind file-name-coding-system to
1547 nnmail-pathname-coding-system.
1548
1549 * gnus-group.el (gnus-group-rename-group): Encode non-ASCII group name
1550 that a user enters; decode group names in messages.
1551
1552 * gnus-msg.el (gnus-inews-do-gcc): Encode non-ASCII group names.
1553
1554 2007-11-01 Reiner Steib <Reiner.Steib@gmx.de>
1555
1556 * mm-util.el (mm-charset-eval-alist): Mark as risky local variable.
1557
1558 * gnus.el (gnus-group-charter-alist): Mark as risky local variable.
1559
1560 * gnus-art.el (gnus-button-alist, gnus-header-button-alist): Mark as
1561 risky local variable.
1562
1563 * gnus-group.el (gnus-group-icon-list): Mark as risky local variable.
1564
1565 2007-11-01 Teodor Zlatanov <tzz@lifelogs.com>
1566
1567 * encrypt.el: Improve documentation to fix function name typo.
1568 Reported by Daiki Ueno <ueno@unixuser.org>.
1569
1570 2007-11-01 Katsumi Yamaoka <yamaoka@jpl.org>
1571
1572 * gnus-art.el (gnus-article-next-page): Honor gnus-article-over-scroll
1573 even if the point is not in the last page of an article.
1574 (gnus-article-prev-page): Honor gnus-article-over-scroll when moving
1575 back to the previous page.
1576
1577 2007-10-30 Reiner Steib <Reiner.Steib@gmx.de>
1578
1579 * qp.el (quoted-printable-decode-string): Fix typo in doc string.
1580
1581 2007-10-30 Katsumi Yamaoka <yamaoka@jpl.org>
1582
1583 * gnus-ems.el (gnus-x-splash): Work even if there's no scroll bar.
1584
1585 2007-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
1586
1587 * message.el (message-check-news-body-syntax): Avoid
1588 mm-string-as-multibyte.
1589 (message-hide-headers): Don't assume (point-min)==1.
1590
1591 2007-10-28 Reiner Steib <Reiner.Steib@gmx.de>
1592
1593 * message.el (message-remove-blank-cited-lines): Fix if remove is
1594 given.
1595 (message-bogus-address-regexp): New variable.
1596 (message-bogus-recipient-p): New function.
1597 (message-check-recipients): New command.
1598 (message-syntax-checks): Add `bogus-recipient'.
1599 (message-fix-before-sending): Add `bogus-recipient'.
1600
1601 * gnus-art.el (gnus-button-mid-or-mail-heuristic-alist): Add "alpine".
1602 (gnus-treat-body-boundary): Don't test window-system.
1603
1604 2007-10-28 Leo <sdl.web@gmail.com> (tiny change)
1605
1606 * gnus-art.el (gnus-treat-emphasize): Don't test window-system.
1607
1608 2007-10-28 Reiner Steib <Reiner.Steib@gmx.de>
1609
1610 * gnus.el: Bump version to Gnus v5.13.
1611
1612 2007-10-28 Miles Bader <miles@gnu.org>
1613
1614 * nnheader.el (nnheader-uniquify-message-id): Make sure this is defined
1615 at compile-time too.
1616
1617 2007-10-27 Reiner Steib <Reiner.Steib@gmx.de>
1618
1619 * gnus-msg.el (gnus-message-setup-hook): Add
1620 `message-remove-blank-cited-lines' to options.
1621
1622 2007-10-26 Reiner Steib <Reiner.Steib@gmx.de>
1623
1624 * message.el (message-remove-blank-cited-lines): New function.
1625 Suggested by Karl Plästerer.
1626
1627 2007-10-25 Katsumi Yamaoka <yamaoka@jpl.org>
1628
1629 * hashcash.el (mail-add-payment): Replace mapcar called for effect with
1630 mapc.
1631
1632 * imap.el (imap-open): Replace mapcar called for effect with mapc.
1633 (top-level): Use mapc to set functions to be traced for debugging.
1634
1635 * legacy-gnus-agent.el (gnus-agent-convert-agentview): Replace mapcar
1636 called for effect with while loop.
1637
1638 * message.el (message-talkative-question): Replace mapcar called for
1639 effect with mapc.
1640
1641 * mm-util.el: Use mapc instead of mapcar to make compatible functions.
1642 (mm-find-mime-charset-region, mm-find-charset-region): Replace mapcar
1643 called for effect with dolist.
1644
1645 * mml.el (mml-insert-mime): Replace mapcar called for effect with mapc.
1646
1647 * nndiary.el: Use dolist instead of mapcar to add diary headers to
1648 gnus-extra-headers and nnmail-extra-headers.
1649
1650 * nnimap.el (nnimap-request-update-info-internal): Replace mapcar
1651 called for effect with dolist.
1652 (top-level): Use mapc to set functions to be traced for debugging.
1653
1654 * nnmail.el (nnmail-read-incoming-hook): Doc fix.
1655 (nnmail-split-fancy-with-parent): Replace mapcar called for effect with
1656 dolist.
1657
1658 * nnmaildir.el (nnmaildir--delete-dir-files, nnmaildir-request-close):
1659 Replace mapcar called for effect with mapc.
1660 (nnmaildir--scan, nnmaildir-request-scan, nnmaildir-retrieve-groups)
1661 (nnmaildir-request-update-info, nnmaildir-request-delete-group)
1662 (nnmaildir-retrieve-headers, nnmaildir-request-set-mark)
1663 (nnmaildir-close-group): Replace mapcar called for effect with dolist.
1664
1665 * nnrss.el (nnrss-make-hash-index): Use gnus-remove-if instead of
1666 remove-if that's a cl function.
1667
1668 * webmail.el (webmail-debug): Replace mapcar called for effect with
1669 dolist.
1670
1671 2007-10-24 Katsumi Yamaoka <yamaoka@jpl.org>
1672
1673 * gnus-agent.el (gnus-agent-read-agentview, gnus-agent-save-alist)
1674 (gnus-agent-expire-unagentized-dirs): Replace mapcar called for effect
1675 with while loop.
1676
1677 * gnus-art.el: Use mapc instead of mapcar to make gnus-article-*
1678 functions from article-* functions.
1679 (gnus-multi-decode-header): Replace mapcar called for effect with
1680 dolist.
1681
1682 * gnus-bookmark.el (gnus-bookmark-bmenu-list)
1683 (gnus-bookmark-show-details): Replace mapcar called for effect with
1684 while loop.
1685
1686 * gnus-diary.el (gnus-diary-update-group-parameters): Replace mapcar
1687 called for effect with while loop.
1688
1689 * gnus-group.el (gnus-group-suspend): Replace mapcar called for effect
1690 with dolist.
1691
1692 * gnus-registry.el (gnus-registry-split-fancy-with-parent): Replace
1693 mapcar called for effect with dolist.
1694
1695 * gnus-spec.el (gnus-correct-length): Make it simple and fast.
1696
1697 * gnus-sum.el (gnus-multi-decode-encoded-word-string)
1698 (gnus-build-sparse-threads, gnus-summary-limit-include-expunged):
1699 Replace mapcar called for effect with dolist.
1700 (gnus-simplify-buffer-fuzzy): Replace mapcar called for effect with
1701 mapc.
1702
1703 * gnus-topic.el (gnus-topic-find-groups, gnus-topic-move-group):
1704 Replace mapcar called for effect with dolist.
1705 (gnus-topic-list): Replace mapcar called for effect with mapc.
1706
1707 * gnus.el: Use mapc instead of mapcar to add autoloads.
1708
1709 2007-10-23 Richard Stallman <rms@gnu.org>
1710
1711 * gnus-group.el (gnus-group-highlight): Mark as risky.
1712
1713 2007-10-23 Katsumi Yamaoka <yamaoka@jpl.org>
1714
1715 * gnus.el (gnus-server-to-method): Return method found first in
1716 gnus-newsrc-alist.
1717
1718 * gnus-art.el (gnus-article-highlight-signature)
1719 (gnus-insert-prev-page-button, gnus-insert-next-page-button): Make a
1720 button overlay without the front stickiness.
1721
1722 2007-10-22 Kevin Greiner <kevin.greiner@compsol.cc>
1723
1724 * gnus-agent.el (gnus-agent-expire-group-1): The check for an unsorted
1725 overview buffer needed a catch to receive its throw.
1726 (gnus-agent-flush-cache): Declared as interactive to make this function
1727 easier to use.
1728
1729 2007-10-20 Reiner Steib <Reiner.Steib@gmx.de>
1730
1731 * html2text.el (html2text-fix-paragraph): Use `forward-line' instead of
1732 `next-line'.
1733
1734 2007-10-18 Katsumi Yamaoka <yamaoka@jpl.org>
1735
1736 * nnmail.el (nnmail-fancy-expiry-target): Use rmail-dont-reply-to to
1737 exclude address matching message-dont-reply-to-names.
1738
1739 2007-10-15 Katsumi Yamaoka <yamaoka@jpl.org>
1740
1741 * gnus-util.el (gnus-string<): New function.
1742
1743 * gnus-sum.el (gnus-article-sort-by-author)
1744 (gnus-article-sort-by-recipient, gnus-article-sort-by-subject): Use it.
1745
1746 2007-10-15 Katsumi Yamaoka <yamaoka@jpl.org>
1747
1748 * gnus-win.el (gnus-configure-windows): Focus on the frame for which
1749 the frame-focus tag is set in gnus-buffer-configuration.
1750
1751 2007-10-12 Katsumi Yamaoka <yamaoka@jpl.org>
1752
1753 * gnus-art.el (gnus-article-add-button): Make a button overlay without
1754 the front stickiness.
1755
1756 2007-10-11 Katsumi Yamaoka <yamaoka@jpl.org>
1757
1758 * gnus-art.el (gnus-button-alist): Exclude newline in RFC2396-compliant
1759 url pattern; remove duplicate one.
1760 (gnus-article-extend-url-button): New function.
1761 (gnus-article-add-buttons): Use it.
1762 (gnus-button-push): Use concatenated url that it makes.
1763
1764 2007-10-04 Juanma Barranquero <lekktu@gmail.com>
1765
1766 * sieve-manage.el (sieve-manage-interactive-login): Doc fix.
1767 (sieve-manage-open): Use `mapc' instead of `mapcar'.
1768
1769 2007-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
1770
1771 * gnus-uu.el (gnus-uu-reginize-string, gnus-uu-expand-numbers):
1772 Don't hardcode point-min==1.
1773
1774 2007-09-30 David Kastrup <dak@gnu.org>
1775
1776 * gnus-art.el (gnus-article-reply-with-original)
1777 (gnus-article-followup-with-original): When `transient-mark-mode' is
1778 off, refrain from active-region behavior for followups.
1779
1780 2007-10-08 Reiner Steib <Reiner.Steib@gmx.de>
1781
1782 * mm-util.el (mm-charset-synonym-alist): Alias gbk to cp936.
1783 Fix comment about "iso8859-1".
1784
1785 2007-10-08 Daiki Ueno <ueno@unixuser.org>
1786
1787 * mm-decode.el (mm-possibly-verify-or-decrypt): Replace PARTS with the
1788 ones returned from the verify-function.
1789
1790 * mm-uu.el (mm-uu-pgp-signed-extract-1): Call
1791 mml2015-extract-cleartext-signature if extraction failed.
1792
1793 2007-10-07 Daiki Ueno <ueno@unixuser.org>
1794
1795 * mm-uu.el (mm-uu-pgp-signed-extract-1): Delete the first line
1796 beginning with "-----BEGIN PGP SIGNED MESSAGE-----" if extraction
1797 failed.
1798
1799 2007-10-04 Reiner Steib <Reiner.Steib@gmx.de>
1800
1801 * Relicense "GPLv2 or later" files to "GPLv3 or later".
1802
1803 2007-09-27 Teodor Zlatanov <tzz@lifelogs.com>
1804
1805 * gnus-sum.el (gnus-summary-kill-thread): Allow universal prefix zero
1806 to mark a thread as expirable. Add variable `hide' to handle hiding of
1807 thread for both the null and zero (kill/expire thread) universal prefix
1808 cases.
1809 (gnus-summary-expire-thread): Add new function to expire a thread,
1810 using gnus-summary-kill-thread.
1811 (gnus-summary-mode-map, gnus-summary-thread-map): Add 'M-C-e' and 'T e'
1812 shortcuts for gnus-summary-expire-thread.
1813 (gnus-summary-mode-map, gnus-summary-thread-map): Remove `M-C-e' and `T
1814 e' bindings for gnus-summary-expire-thread. Add `T E' binding.
1815
1816 2007-09-25 Teodor Zlatanov <tzz@lifelogs.com>
1817
1818 * gnus-registry.el (gnus-registry-store-extra-entry): Allow for nil
1819 extras value, so an extras entry can be deleted.
1820 (gnus-registry-delete-extra-entry): Use it.
1821 (gnus-registry-fetch-extra-flags, gnus-registry-has-extra-flag)
1822 (gnus-registry-store-extra-flags, gnus-registry-delete-extra-flags)
1823 (gnus-registry-delete-all-extra-flags): Allow for arbitrary flag symbol
1824 storage through the gnus-registry, and provide an appropriate API for
1825 it.
1826
1827 2007-09-13 Katsumi Yamaoka <yamaoka@jpl.org>
1828
1829 * gnus-sum.el (gnus-newsgroup-maximum-articles): Move from gnus.el.
1830 Suggested by Leo <sdl.web@gmail.com>.
1831
1832 * gnus.el: Do.
1833
1834 2007-09-13 Katsumi Yamaoka <yamaoka@jpl.org>
1835
1836 * gnus.el (gnus-newsgroup-maximum-articles): Rename from
1837 gnus-maximum-newsgroup. Suggested by Leo <sdl.web@gmail.com>.
1838
1839 * gnus-agent.el (gnus-agent-fetch-headers): Do.
1840
1841 * gnus-sum.el (gnus-articles-to-read, gnus-list-of-unread-articles)
1842 (gnus-list-of-read-articles, gnus-sequence-of-unread-articles): Do.
1843
1844 2007-09-13 Katsumi Yamaoka <yamaoka@jpl.org>
1845
1846 * nnmbox.el (nnmbox-request-article): Don't assume delim regexp matches
1847 newline.
1848 (nnmbox-request-accept-article): Don't change article in source buffer;
1849 narrow to header to use message-fetch-field rather than
1850 nnmail-fetch-field; use with-current-buffer instead of save-excursion.
1851 (nnmbox-request-replace-article): Quote lines that'll be misidentified
1852 as delimiters; make sure article ends with newline.
1853 (nnmbox-delete-mail): Correct last position of article to be deleted;
1854 ignore X-Gnus-Newsgroup header in article body.
1855 (nnmbox-save-mail): Quote lines looking like delimiters at the right
1856 positions; make sure article ends with newline.
1857
1858 * message.el (message-display-abbrev): Don't infloop when a user
1859 inserts SPC in the beginning of header.
1860
1861 2007-09-12 Teodor Zlatanov <tzz@lifelogs.com>
1862
1863 * gnus-registry.el (gnus-registry-unfollowed-groups): Add INBOX to the
1864 list of groups not followed by default. Fix type to be regexp.
1865 (gnus-registry-grep-in-list): Fix inverted parameters to string-match.
1866
1867 2007-09-06 Tassilo Horn <tassilo@member.fsf.org>
1868
1869 * hmac-def.el (define-hmac-function): Switch from old-style to
1870 new-style backquotes.
1871
1872 * md4.el (md4-make-step): Likewise.
1873
1874 2007-09-06 Katsumi Yamaoka <yamaoka@jpl.org>
1875
1876 * gnus-start.el (gnus-gnus-to-newsrc-format): Use a unibyte buffer and
1877 raw-text coding system when saving .newsrc file, which may contain
1878 non-ASCII group names.
1879
1880 2007-09-05 Katsumi Yamaoka <yamaoka@jpl.org>
1881
1882 * gnus-cus.el (gnus-score-extra): New widget.
1883 (gnus-score-extra-convert): New function.
1884 (gnus-score-customize): Use it for Extra.
1885
1886 2007-08-31 Daiki Ueno <ueno@unixuser.org>
1887
1888 * mml2015.el (mml2015-extract-cleartext-signature): New function.
1889 (mml2015-mailcrypt-clear-verify): Use it.
1890 (mml2015-gpg-clear-verify): Use it.
1891 (mml2015-pgg-clear-verify): Use it.
1892 (mml2015-epg-clear-verify): Replace the current part with the output
1893 from GnuPG; don't extract the plaintext by itself.
1894
1895 * mm-uu.el (mm-uu-pgp-beginning-signature): Abolish.
1896 (mm-uu-pgp-signed-extract-1): Bind coding-system-for-read when calling
1897 mml2015-clear-verify-function; don't touch the armor headers or
1898 dash-escaped text here.
1899
1900 2007-08-24 Katsumi Yamaoka <yamaoka@jpl.org>
1901
1902 * gnus-art.el (gnus-article-edit-part): Don't jump to nonexistent part.
1903 (gnus-mime-view-part-as-type-internal): Default to text/plain for text
1904 parts, or application/octet-stream as a last resort.
1905 (gnus-mime-view-part-as-type): Don't toggle display.
1906 (gnus-mime-view-part-as-charset): Don't turn off display before
1907 querying charset.
1908
1909 * mm-view.el (mm-inline-text-html-render-with-w3): Don't add XEmacs
1910 stuff to undisplayer function in Emacs.
1911 (mm-inline-text-html-render-with-w3m): Remove Emacs/W3 stuff.
1912
1913 * mml.el (mml-generate-mime-1): Prefer utf-8 when encoding
1914 text/calendar parts.
1915
1916 2007-08-23 Katsumi Yamaoka <yamaoka@jpl.org>
1917
1918 * gnus-art.el (gnus-mime-display-single): Use utf-8 by default for
1919 decoding text/calendar parts.
1920
1921 * message.el (message-forward-make-body-mime): Always mark body as
1922 having no illegible text; remove signed-or-encrypted argument.
1923 (message-forward-make-body): Don't pass signed-or-encrypted arg to it.
1924
1925 * mml.el (mml-generate-mime): Make sure it uses multibyte temp buffer.
1926 (mml-generate-mime-1): Don't encode body if it is specified to be in
1927 raw form; don't make buffer be unibyte when inserting multibyte string.
1928
1929 2007-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
1930
1931 * sha1.el: Fix up comment style.
1932 (sha1-F0, sha1-F1, sha1-F2, sha1-F3, sha1-S1, sha1-S5, sha1-S30)
1933 (sha1-OP, sha1-add-to-H): Use new-style backquotes.
1934
1935 * hex-util.el: Fix up comment style.
1936 (hex-char-to-num, num-to-hex-char): Use new-style backquotes.
1937
1938 * gnus-salt.el: Use with-current-buffer.
1939 (gnus-pick-setup-message): Fix long-standing typo.
1940
1941 2007-08-17 Katsumi Yamaoka <yamaoka@jpl.org>
1942
1943 * imap.el (imap-logout-timeout): New variable.
1944 (imap-logout, imap-logout-wait): New functions.
1945 (imap-kerberos4-open, imap-gssapi-open, imap-close): Use them.
1946
1947 * nnimap.el (nnimap-logout-timeout): New server variable.
1948 (nnimap-open-server, nnimap-close-server): Bind imap-logout-timeout to
1949 nnimap-logout-timeout.
1950
1951 * gnus-art.el (gnus-article-summary-command-nosave)
1952 (gnus-article-read-summary-keys): Don't use 3rd arg of pop-to-buffer.
1953
1954 2007-08-14 Katsumi Yamaoka <yamaoka@jpl.org>
1955
1956 * gnus.el (gnus-maximum-newsgroup): New variable.
1957
1958 * gnus-agent.el (gnus-agent-fetch-headers): Limit the range of articles
1959 according to gnus-maximum-newsgroup.
1960
1961 * gnus-sum.el (gnus-articles-to-read, gnus-list-of-unread-articles)
1962 (gnus-list-of-read-articles, gnus-sequence-of-unread-articles):
1963 Limit the range of articles according to gnus-maximum-newsgroup.
1964
1965 2007-08-14 Tassilo Horn <tassilo@member.fsf.org>
1966
1967 * gnus-art.el (gnus-sticky-article): Fixed problems described in
1968 <b4mps1qitio.fsf@jpl.org> on ding. Thanks to Katsumi.
1969 Don't perform gnus-configure-windows here; reuse existing sticky
1970 article buffer.
1971
1972 * gnus-sum.el (gnus-summary-display-article): Setup article buffer if
1973 it doesn't exist in gnus-article-mode.
1974
1975 2007-08-13 Katsumi Yamaoka <yamaoka@jpl.org>
1976
1977 * gnus-agent.el (gnus-agent-decoded-group-names): New variable.
1978 (gnus-agent-decoded-group-name): New function.
1979 (gnus-agent-group-path, gnus-agent-group-pathname): Use it.
1980 (gnus-agent-expire-group-1): Use it; decode group name in messages.
1981
1982 2007-08-12 Tassilo Horn <tassilo@member.fsf.org>
1983
1984 * gnus-sum.el (gnus-summary-article-map, gnus-summary-make-menu-bar):
1985 Add binding for gnus-sticky-article.
1986 (gnus-summary-exit): Don't kill sticky article buffers.
1987
1988 * gnus-art.el (gnus-sticky-article-mode): New mode to generate a sticky
1989 article buffer.
1990 (gnus-sticky-article, gnus-kill-sticky-article-buffer)
1991 (gnus-kill-sticky-article-buffers): New commands.
1992
1993 2007-08-10 Katsumi Yamaoka <yamaoka@jpl.org>
1994
1995 * nntp.el (nntp-xref-number-is-evil): New server variable.
1996 (nntp-find-group-and-number): If it is non-nil, don't trust article
1997 numbers in the Xref header.
1998
1999 2007-08-09 Katsumi Yamaoka <yamaoka@jpl.org>
2000
2001 * gnus-agent.el (gnus-agent-read-group): New function.
2002 (gnus-agent-flush-group, gnus-agent-expire-group)
2003 (gnus-agent-regenerate-group): Use it.
2004 (gnus-agent-expire-unagentized-dirs): Bind file-name-coding-system to
2005 nnmail-pathname-coding-system.
2006
2007 2007-08-06 Katsumi Yamaoka <yamaoka@jpl.org>
2008
2009 * gnus-ems.el (gnus-x-splash): Bind inhibit-read-only to t.
2010
2011 * gnus-sum.el (gnus-summary-insert-articles): Mark inserted articles
2012 that are unread as unread, and also as selected so that information of
2013 marks having been changed by a user may be updated when exiting group.
2014
2015 2007-08-04 Reiner Steib <Reiner.Steib@gmx.de>
2016
2017 * gnus-art.el (article-hide-headers): Bind inhibit-read-only to t.
2018
2019 2007-08-03 Katsumi Yamaoka <yamaoka@jpl.org>
2020
2021 * gnus-art.el (gnus-mime-display-single): Pass part number that is
2022 calculated ignoring signature parts to gnus-treat-article.
2023
2024 2007-08-02 Katsumi Yamaoka <yamaoka@jpl.org>
2025
2026 * gnus-art.el (gnus-mime-security-verify-or-decrypt): Don't narrow to
2027 a point here in order to keep the window start.
2028 (gnus-insert-mime-security-button): Make a button overlay without the
2029 front stickiness.
2030 (gnus-mime-display-security): Goto the end of a button.
2031
2032 * gnus-group.el (gnus-group-name-at-point): Fix regexps.
2033
2034 2007-08-01 Katsumi Yamaoka <yamaoka@jpl.org>
2035
2036 * gnus-group.el (gnus-group-name-at-point): Rewrite; rename from
2037 group-name-at-point.
2038 (gnus-group-completing-read): New function that offers decoded
2039 non-ASCII group names for completion.
2040 (gnus-fetch-group, gnus-group-read-ephemeral-group)
2041 (gnus-group-jump-to-group, gnus-group-make-group-simple)
2042 (gnus-group-unsubscribe-group, gnus-group-fetch-charter)
2043 (gnus-group-fetch-control): Use it.
2044 (gnus-fetch-group): Use group-name-at-point for the initial value
2045 rather than the default value; use gnus-alive-p.
2046
2047 * gnus-msg.el (gnus-group-mail, gnus-group-news, gnus-group-post-news)
2048 (gnus-summary-mail-other-window, gnus-summary-news-other-window)
2049 (gnus-summary-post-news): Use gnus-group-completing-read.
2050
2051 * gnus-sum.el (gnus-select-newsgroup): Decode group name in error msg.
2052 (gnus-read-move-group-name): Decode group name for completion.
2053
2054 2007-07-31 Ted Zlatanov <tzz@lifelogs.com>
2055
2056 * gnus-srvr.el (gnus-server-close-all-servers): Close servers not only
2057 in gnus-inserted-opened-servers but also in gnus-server-alist (Katsumi
2058 Yamaoka slightly modified the code).
2059
2060 2007-07-24 Katsumi Yamaoka <yamaoka@jpl.org>
2061
2062 * nnmail.el (nnmail-group-names-not-encoded-p): New variable.
2063 (nnmail-split-incoming): Bind it.
2064
2065 * nnml.el (nnml-group-name-charset): New function.
2066 (nnml-decoded-group-name): Use it; don't decode group name if
2067 nnmail-group-names-not-encoded-p is non-nil.
2068 (nnml-encoded-group-name): New function.
2069 (nnml-group-pathname): Inline nnml-decoded-group-name.
2070 (nnml-request-expire-articles): Decode group name in message.
2071 (nnml-request-delete-group): Ditto; bind file-name-coding-system to
2072 nnmail-pathname-coding-system.
2073 (nnml-save-mail, nnml-active-number): Work with decoded group names and
2074 not decoded ones according to nnmail-group-names-not-encoded-p.
2075 (nnml-generate-active-info): Use nnml-encoded-group-name.
2076
2077 2007-08-08 Glenn Morris <rgm@gnu.org>
2078
2079 * gmm-utils.el, gnus-async.el, gnus-msg.el, gnus-score.el
2080 * gnus-util.el, imap.el, mailcap.el, nnimap.el: Replace `iff' in
2081 doc-strings and comments.
2082
2083 2007-07-25 Glenn Morris <rgm@gnu.org>
2084
2085 * Relicense all FSF files to GPLv3 or later.
2086
2087 2007-07-23 Katsumi Yamaoka <yamaoka@jpl.org>
2088
2089 * gnus-sum.el (gnus-summary-move-article): Make
2090 gnus-summary-respool-article work.
2091
2092 2007-07-21 Reiner Steib <Reiner.Steib@gmx.de>
2093
2094 * mm-uu.el (mm-uu-type-alist): Refer to mm-uu-configure-list in doc
2095 string.
2096
2097 2007-07-20 Michaël Cadilhac <michael@cadilhac.name>
2098
2099 * nnrss.el (nnrss-ignore-article-fields): New variable. List of fields
2100 that should be ignored when comparing distant RSS articles with local
2101 ones.
2102 (nnrss-make-hash-index): New function. Create a hash index according
2103 to the ignored fields.
2104 (nnrss-check-group): Use it.
2105
2106 2007-07-20 Katsumi Yamaoka <yamaoka@jpl.org>
2107
2108 * gnus-agent.el (gnus-agent-group-pathname): Take notice of the method.
2109
2110 * gnus-art.el (article-decode-group-name): Decode Xref header too.
2111
2112 * gnus-group.el (gnus-group-make-group): Encode group name here unless
2113 the new optional argument ENCODED is non-nil.
2114 (gnus-group-make-doc-group): Use gnus-group-name-charset to determine
2115 coding system for encoding group name.
2116 (gnus-group-make-rss-group): Pass un-encoded group name to
2117 gnus-group-make-group.
2118 (gnus-group-set-info): Tell gnus-group-make-group that group name is
2119 encoded.
2120
2121 * gnus-sum.el (gnus-summary-move-article, gnus-read-move-group-name):
2122 Encode group name to which articles are moved or copied.
2123 (gnus-summary-edit-article): Use gnus-group-name-charset to determine
2124 coding system for encoding Newsgroup, Followup-To and Xref headers.
2125
2126 * nnagent.el (nnagent-request-set-mark): Use unibyte buffer to compose
2127 marks; use nnheader-file-coding-system to write a file.
2128 (nnagent-retrieve-headers): Bind file-name-coding-system to
2129 nnmail-pathname-coding-system.
2130
2131 * nnmail.el (nnmail-insert-xref): Don't break non-ASCII group name.
2132
2133 * nnml.el (nnml-decoded-group-name, nnml-group-pathname): New functions.
2134 (nnml-request-article, nnml-request-create-group)
2135 (nnml-request-rename-group, nnml-find-id)
2136 (nnml-possibly-change-directory, nnml-possibly-create-directory)
2137 (nnml-save-mail, nnml-active-number, nnml-marks-changed-p)
2138 (nnml-save-marks): Use nnml-group-pathname instead of
2139 nnmail-group-pathname.
2140
2141 (nnml-request-create-group, nnml-request-expire-articles)
2142 (nnml-request-move-article, nnml-request-delete-group)
2143 (nnml-deletable-article-p, nnml-possibly-create-directory)
2144 (nnml-get-nov-buffer, nnml-generate-nov-databases-directory)
2145 (nnml-open-marks): Bind file-name-coding-system to
2146 nnmail-pathname-coding-system.
2147
2148 (nnml-request-article): Pass server argument to nnml-find-group-number.
2149 (nnml-request-create-group, nnml-active-number, nnml-save-marks): Pass
2150 server argument to nnml-possibly-create-directory.
2151 (nnml-request-accept-article): Pass server argument to
2152 nnml-active-number and nnml-save-mail.
2153 (nnml-find-group-number): Pass server argument to nnml-find-id.
2154 (nnml-request-update-info): Pass server argument to
2155 nnml-marks-changed-p.
2156
2157 (nnml-find-id, nnml-find-group-number, nnml-possibly-create-directory)
2158 (nnml-save-mail, nnml-active-number): Add server argument.
2159
2160 (nnml-request-delete-group): Warn if group is missing.
2161 (nnml-get-nov-buffer): Decode group name.
2162 (nnml-generate-active-info): Encode group name.
2163 (nnml-open-marks): Decode group name in messages.
2164
2165 2007-07-19 Katsumi Yamaoka <yamaoka@jpl.org>
2166
2167 * gnus-art.el (gnus-article-part-wrapper): Work with the nearest part
2168 if it is not specified.
2169 (gnus-article-pipe-part, gnus-article-save-part)
2170 (gnus-article-interactively-view-part, gnus-article-copy-part)
2171 (gnus-article-view-part-as-charset, gnus-article-view-part-externally)
2172 (gnus-article-inline-part, gnus-article-save-part-and-strip)
2173 (gnus-article-replace-part, gnus-article-delete-part)
2174 (gnus-article-view-part-as-type): Pass raw prefix argument to
2175 gnus-article-part-wrapper.
2176
2177 2007-07-18 Katsumi Yamaoka <yamaoka@jpl.org>
2178
2179 * gnus-agent.el (gnus-agent-save-active): Bind
2180 nnheader-file-coding-system to gnus-agent-file-coding-system.
2181
2182 * gnus-cache.el (gnus-cache-save-buffers)
2183 (gnus-cache-possibly-enter-article, gnus-cache-request-article)
2184 (gnus-cache-retrieve-headers, gnus-cache-change-buffer)
2185 (gnus-cache-possibly-remove-article, gnus-cache-articles-in-group)
2186 (gnus-cache-braid-nov, gnus-cache-braid-heads)
2187 (gnus-cache-generate-active, gnus-cache-rename-group)
2188 (gnus-cache-delete-group, gnus-cache-update-file-total-fetched-for)
2189 (gnus-cache-update-overview-total-fetched-for): Bind
2190 file-name-coding-system to nnmail-pathname-coding-system.
2191 (gnus-cache-decoded-group-names, gnus-cache-unified-group-names): New
2192 variables.
2193 (gnus-cache-decoded-group-name): New function.
2194 (gnus-cache-file-name): Use it.
2195 (gnus-cache-generate-active): Use non-decoded group name for active.
2196
2197 * gnus-util.el (gnus-write-buffer): Bind file-name-coding-system at the
2198 right place.
2199 (gnus-write-active-file): Don't break non-ASCII group names.
2200
2201 * nntp.el (nntp-marks-changed-p): Bind file-name-coding-system to
2202 nnmail-pathname-coding-system.
2203
2204 * gnus-uu.el (gnus-uu-decode-save): Typo.
2205
2206 2007-07-16 Katsumi Yamaoka <yamaoka@jpl.org>
2207
2208 * gnus-srvr.el (gnus-server-font-lock-keywords): Quote faces.
2209
2210 2007-07-14 David Kastrup <dak@gnu.org>
2211
2212 * gnus-art.el (gnus-mime-delete-part): Don't go through article-edit
2213 finishing actions if we did not edit the article.
2214
2215 2007-07-13 Katsumi Yamaoka <yamaoka@jpl.org>
2216
2217 * gnus-agent.el (gnus-agent-rename-group, gnus-agent-delete-group)
2218 (gnus-agent-fetch-articles, gnus-agent-unfetch-articles)
2219 (gnus-agent-crosspost, gnus-agent-backup-overview-buffer)
2220 (gnus-agent-flush-group, gnus-agent-flush-cache)
2221 (gnus-agent-fetch-headers, gnus-agent-load-alist)
2222 (gnus-agent-read-agentview, gnus-agent-expire-group-1)
2223 (gnus-agent-retrieve-headers, gnus-agent-request-article)
2224 (gnus-agent-regenerate-group)
2225 (gnus-agent-update-files-total-fetched-for)
2226 (gnus-agent-update-view-total-fetched-for): Bind
2227 file-name-coding-system to nnmail-pathname-coding-system.
2228 (gnus-agent-group-pathname): Don't encode file names by
2229 nnmail-pathname-coding-system.
2230 (gnus-agent-save-local): Bind file-name-coding-system correctly; bind
2231 coding-system-for-write instead of buffer-file-coding-system to
2232 gnus-agent-file-coding-system.
2233
2234 * gnus-msg.el (gnus-inews-make-draft, gnus-inews-insert-archive-gcc):
2235 Decode group name.
2236
2237 * gnus-srvr.el (gnus-browse-foreign-server): Make group names unibyte.
2238
2239 * gnus-start.el (gnus-update-active-hashtb-from-killed)
2240 (gnus-read-newsrc-el-file): Make group names unibyte.
2241
2242 * nnmail.el (nnmail-group-pathname): Don't encode file names by
2243 nnmail-pathname-coding-system.
2244
2245 * nnrss.el (nnrss-file-coding-system): Doc fix; make it begin with *.
2246 (nnrss-request-delete-group): Bind file-name-coding-system to
2247 nnmail-pathname-coding-system.
2248 (nnrss-read-server-data, nnrss-read-group-data): Bind
2249 file-name-coding-system correctly.
2250 (nnrss-check-group): Pass nnrss-file-coding-system to md5.
2251
2252 * nntp.el: Require gnus-group for the function gnus-group-name-charset.
2253 (nntp-server-to-method-cache): New variable.
2254 (nntp-group-pathname): New function that decodes non-ASCII group names.
2255 (nntp-possibly-create-directory, nntp-marks-changed-p)
2256 (nntp-save-marks, nntp-open-marks): Use it.
2257 (nntp-possibly-create-directory, nntp-open-marks):
2258 Bind file-name-coding-system to nnmail-pathname-coding-system.
2259 (nntp-open-marks): Decode group names when bootstrapping marks.
2260
2261 * rfc2047.el (rfc2047-encode-message-header): Make XEmacs decode
2262 Newsgroups and Folowup-To headers.
2263
2264 2007-07-13 Katsumi Yamaoka <yamaoka@jpl.org>
2265
2266 * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
2267 (gnus-server-closed-face, gnus-server-denied-face)
2268 (gnus-server-offline-face): Remove variable.
2269 (gnus-server-font-lock-keywords): Use faces that are not aliases.
2270
2271 * gnus-util.el (gnus-message-with-timestamp-1): Use log-message instead
2272 of modifying message-stack directly for XEmacs.
2273
2274 * mm-util.el (mm-decode-coding-string, mm-encode-coding-string)
2275 (mm-decode-coding-region, mm-encode-coding-region): Don't modify string
2276 if the coding-system argument is nil for XEmacs.
2277
2278 * nnrss.el (nnrss-compatible-encoding-alist): Inherit the value of
2279 mm-charset-override-alist.
2280
2281 * rfc2047.el: Don't require base64; require rfc2045 for the function
2282 rfc2045-encode-string.
2283 (rfc2047-encode-parameter): Use rfc2045-encode-string to quote or not
2284 to quote the parameter value.
2285
2286 2007-07-06 Katsumi Yamaoka <yamaoka@jpl.org>
2287
2288 * gnus-group.el (gnus-group-name-charset): Allow a method of the short
2289 form in gnus-group-name-charset-method-alist.
2290
2291 * gnus-eform.el (gnus-edit-form): Add optional argument layout which
2292 overrides the default layout edit-form.
2293
2294 * gnus-win.el (gnus-buffer-configuration): Add edit-server.
2295
2296 * gnus-srvr.el (gnus-server-edit-server): Use edit-server layout.
2297
2298 2007-07-04 Katsumi Yamaoka <yamaoka@jpl.org>
2299
2300 * gnus-sum.el (gnus-summary-catchup): Don't recognize cached articles
2301 as unfetched articles.
2302
2303 2007-07-02 Reiner Steib <Reiner.Steib@gmx.de>
2304
2305 * gnus-start.el (gnus-level-unsubscribed): Improve doc string.
2306
2307 2007-07-02 Katsumi Yamaoka <yamaoka@jpl.org>
2308
2309 * nnagent.el (nnagent-request-set-mark): Also set the marks for the
2310 original back end that keeps marks in the local system.
2311
2312 2007-06-26 Katsumi Yamaoka <yamaoka@jpl.org>
2313
2314 * gnus-art.el (gnus-article-summary-command-nosave): Don't set the 3rd
2315 arg of pop-to-buffer for XEmacs.
2316 (gnus-article-read-summary-keys): Ditto; don't restore window
2317 configuration if summary command ends up with neither article buffer
2318 nor summary buffer; describe bindings if summary keys end with C-h.
2319
2320 2007-06-22 Katsumi Yamaoka <yamaoka@jpl.org>
2321
2322 * message.el (message-fix-before-sending): Skip raw message part to be
2323 forwarded while checking illegible text.
2324 (message-forward-make-body-mime, message-forward-make-body): Mark
2325 signed or encrypted raw message as having no illegible text.
2326
2327 2007-06-19 Katsumi Yamaoka <yamaoka@jpl.org>
2328
2329 * gnus-util.el (gnus-add-timestamp-to-message): New user option.
2330 (gnus-message-with-timestamp-1): New macro.
2331 (gnus-message-with-timestamp): New function.
2332 (gnus-message): Use them.
2333
2334 * nnheader.el (nnheader-message): Use them.
2335
2336 2007-06-16 Reiner Steib <Reiner.Steib@gmx.de>
2337
2338 * gnus-start.el (gnus-gnus-to-quick-newsrc-format): Add newlines to
2339 .newsrc.eld file.
2340
2341 2007-06-14 Katsumi Yamaoka <yamaoka@jpl.org>
2342
2343 * gnus-agent.el (gnus-agent-fetch-headers)
2344 (gnus-agent-retrieve-headers): Bind
2345 gnus-decode-encoded-address-function to identity.
2346
2347 * nntp.el (nntp-send-xover-command): Recognize an xover command is
2348 available also when the server returns simply a dot.
2349
2350 * gnus-ems.el (gnus-x-splash): Redisplay window before measuring it.
2351
2352 2007-06-08 Katsumi Yamaoka <yamaoka@jpl.org>
2353
2354 * gnus-ems.el (gnus-x-splash): Fix calculation; error in tty.
2355
2356 2007-06-07 Katsumi Yamaoka <yamaoka@jpl.org>
2357
2358 * gnus-ems.el (gnus-x-splash): Make it work.
2359
2360 * gnus-start.el (gnus-1): Relax restrictions that prevent gnus-x-splash
2361 from being used.
2362
2363 2007-06-05 Katsumi Yamaoka <yamaoka@jpl.org>
2364
2365 * gnus-art.el (gnus-insert-mime-button): Make a button overlay without
2366 the front stickiness.
2367 (gnus-article-summary-command-nosave): Correct the order of the
2368 arguments passed to pop-to-buffer.
2369 (gnus-article-read-summary-keys): Ditto; make it work properly when the
2370 summary command ends up with the article buffer.
2371
2372 * mm-decode.el (mm-insert-part): Separate the extracted parts that have
2373 the same faces.
2374
2375 2007-06-07 Juanma Barranquero <lekktu@gmail.com>
2376
2377 * gnus-art.el (gnus-split-methods): Fix typo in docstring.
2378
2379 2007-06-06 Juanma Barranquero <lekktu@gmail.com>
2380
2381 * gnus-diary.el (gnus-diary-time-format, gnus-summary-sort-by-schedule):
2382 * gnus-sum.el (gnus-summary-highlight):
2383 * mail-source.el (mail-source-delete-old-incoming-confirm):
2384 * nndiary.el (nndiary-reminders): Fix typos in docstrings.
2385
2386 2007-06-04 Katsumi Yamaoka <yamaoka@jpl.org>
2387
2388 * gnus-art.el (gnus-mime-view-part-externally)
2389 (gnus-mime-view-part-internally): Fix predicate function passed to
2390 completing-read.
2391
2392 * mm-decode.el (mm-image-fit-p): Return t if argument is not an image.
2393
2394 * gnus.el (gnus-update-message-archive-method): Add :version.
2395
2396 2007-06-01 Katsumi Yamaoka <yamaoka@jpl.org>
2397
2398 * gnus.el (gnus-update-message-archive-method): New variable.
2399
2400 * gnus-start.el (gnus-setup-news): Update saved "archive" method
2401 according to gnus-message-archive-method if
2402 gnus-update-message-archive-method is non-nil.
2403
2404 2007-05-29 Katsumi Yamaoka <yamaoka@jpl.org>
2405
2406 * gnus-sum.el (gnus-summary-limit-to-address): New function. Suggested
2407 by Loic Dachary <loic@dachary.org>.
2408 (gnus-summary-limit-map, gnus-summary-make-menu-bar): Add it.
2409
2410 2007-05-28 Katsumi Yamaoka <yamaoka@jpl.org>
2411
2412 * message.el (message-pop-to-buffer): Add switch-function argument.
2413 (message-mail): Pass switch-function argument to it.
2414
2415 2007-05-25 Reiner Steib <Reiner.Steib@gmx.de>
2416
2417 * mm-decode.el (mm-file-name-rewrite-functions): Make it customizable.
2418 Improve doc string.
2419
2420 2007-05-25 Katsumi Yamaoka <yamaoka@jpl.org>
2421
2422 * gnus-art.el (gnus-header-from, gnus-header-subject, gnus-header-name)
2423 (gnus-header-content)
2424 * gnus-cite.el (gnus-cite-10)
2425 * gnus-srvr.el (gnus-server-closed)
2426 * gnus.el (gnus-group-mail-1, gnus-group-mail-1-empty)
2427 (gnus-group-mail-2, gnus-group-mail-2-empty, gnus-group-mail-3)
2428 (gnus-group-mail-3-empty, gnus-group-mail-low)
2429 (gnus-group-mail-low-empty, gnus-splash)
2430 * message.el (message-header-to, message-header-cc)
2431 (message-header-subject, message-header-other, message-header-name)
2432 (message-header-xheader, message-separator, message-cited-text)
2433 (message-mml): Lighten colors of faces used for dark background.
2434
2435 2007-05-24 Simon Josefsson <simon@josefsson.org>
2436
2437 * nnimap.el (nnimap-need-unselect-to-notice-new-mail): Change default
2438 to t as an experiment. Suggested by Greg Troxel <gdt@work.lexort.com>.
2439
2440 2007-05-24 Katsumi Yamaoka <yamaoka@jpl.org>
2441
2442 * message.el (message-narrow-to-headers-or-head):
2443 Ignore mail-header-separator in the body.
2444
2445 2007-05-23 Katsumi Yamaoka <yamaoka@jpl.org>
2446
2447 * mm-decode.el (mm-image-fit-p): Return t if image size is just the
2448 same as window size.
2449
2450 2007-05-22 Kevin Ryde <user42@zip.com.au>
2451
2452 * message.el (message-font-lock-keywords): Use message-header-xheader
2453 face for "X-Foo", its apparent intended purpose. Move "X-" pattern
2454 ahead of the anything pattern, to get it recognised.
2455
2456 2007-05-12 Michaël Cadilhac <michael@cadilhac.name>
2457
2458 * gnus-sum.el (gnus-articles-to-read)
2459 (gnus-summary-insert-old-articles): Don't truncate group name for
2460 `read-string'.
2461
2462 * gnus-util.el (gnus-limit-string): Delete this function.
2463
2464 * gnus-sum.el (gnus-simplify-subject-fully): Use
2465 `truncate-string-to-width' instead.
2466
2467 2007-05-11 Michaël Cadilhac <michael@cadilhac.name>
2468
2469 * gnus-sum.el (gnus-summary-next-group-on-exit): New variable. Tell
2470 if, on summary exit, the next group has to be selected.
2471 (gnus-summary-exit): Use it.
2472
2473 2007-05-10 Reiner Steib <Reiner.Steib@gmx.de>
2474
2475 * gnus-art.el (gnus-article-mode): Fix comment about displaying
2476 non-break space.
2477
2478 2007-05-10 Katsumi Yamaoka <yamaoka@jpl.org>
2479
2480 * nnfolder.el (nnfolder-request-group, nnfolder-request-create-group):
2481 Check if group is not a directory.
2482 (nnfolder-request-expire-articles): Don't delete articles if the target
2483 group is not available.
2484
2485 * nnml.el (nnml-request-create-group): Properly check if group is not a
2486 file.
2487 (nnml-request-expire-articles): Don't delete articles if the target
2488 group is not available.
2489
2490 * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
2491 Don't quote characters that are within parentheses.
2492
2493 2007-05-09 Katsumi Yamaoka <yamaoka@jpl.org>
2494
2495 * gnus-sum.el (gnus-auto-select-on-ephemeral-exit): New variable.
2496 (gnus-handle-ephemeral-exit): Select article according to it.
2497
2498 2007-05-08 Reiner Steib <Reiner.Steib@gmx.de>
2499
2500 * message.el (message-insert-formated-citation-line): Remove newline.
2501 (message-citation-line-format): Add final \n here so that the user can
2502 avoid a blank line.
2503
2504 2007-05-03 Dan Christensen <jdc@uwo.ca>
2505
2506 * nndoc.el (nndoc-type-alist, nndoc-lanl-gov-announce-type-p)
2507 (nndoc-transform-lanl-gov-announce, nndoc-generate-lanl-gov-head):
2508 Update lanl/arXiv support.
2509
2510 2007-05-02 Reiner Steib <Reiner.Steib@gmx.de>
2511
2512 * gnus.el: Bump version number.
2513
2514 2007-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
2515
2516 * gnus.el (gnus-version-number): Bump version.
2517
2518 2007-05-01 Lars Magne Ingebrigtsen <lars@ingebrigtsen.no>
2519
2520 * gnus.el: No Gnus v0.6 is released.
2521
2522 2007-04-27 Didier Verna <didier@xemacs.org>
2523
2524 * gnus-util.el (gnus-orify-regexp): Moved and renamed to ...
2525 * gmm-utils.el (gmm-regexp-concat): here.
2526 * message.el: Don't require 'gnus-util.
2527 (message-dont-reply-to-names): Handle name change above.
2528 * gnus-sum.el (gnus-ignored-from-addresses): Ditto.
2529
2530 2007-04-26 Katsumi Yamaoka <yamaoka@jpl.org>
2531
2532 * mm-util.el (mm-charset-synonym-alist): Don't make it a user option
2533 since the initial value varies according to the system.
2534
2535 2007-04-25 Katsumi Yamaoka <yamaoka@jpl.org>
2536
2537 * mm-util.el (mm-charset-synonym-alist): Defcustom.
2538
2539 2007-04-25 NAKAJI Hiroyuki <nakaji@jp.freebsd.org> (tiny change)
2540
2541 * mm-util.el (mm-charset-synonym-alist): Map iso8859-1 to iso-8859-1.
2542
2543 2007-04-24 Didier Verna <didier@xemacs.org>
2544
2545 Improve the type of gnus-ignored-from-addresses.
2546 * gnus-util.el (gnus-orify-regexp): New function.
2547 * message.el (gnus-util): Require it.
2548 * message.el (message-dont-reply-to-names): Use gnus-orify-regexp.
2549 * gnus-sum.el (gnus-ignored-from-addresses): New function.
2550 * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Use it.
2551
2552 2007-04-24 Didier Verna <didier@xemacs.org>
2553
2554 * gnus-sum.el:
2555 * gnus-utils.el: Fix some trailing whitespaces.
2556
2557 2007-04-23 Katsumi Yamaoka <yamaoka@jpl.org>
2558
2559 * gnus-msg.el (gnus-summary-resend-message-edit): Add Gcc header.
2560 (gnus-summary-resend-bounced-mail): Ditto; search whole body for parent
2561 article's Message-ID; refer parent article in summary buffer.
2562
2563 * message.el (message-bounce): Call mime-to-mml.
2564
2565 2007-04-20 Katsumi Yamaoka <yamaoka@jpl.org>
2566
2567 * gnus-msg.el (gnus-summary-supersede-article): Add Gcc header.
2568
2569 2007-04-19 Katsumi Yamaoka <yamaoka@jpl.org>
2570
2571 * gnus-art.el (gnus-mime-strip-charset-parameters): New function.
2572 (gnus-mime-view-part-as-charset): Use it; redisplay subpart currently
2573 displayed of multipart/alternative part if it is invoked from summary
2574 buffer.
2575
2576 * mm-view.el (mm-inline-text-html-render-with-w3m)
2577 (mm-inline-text-html-render-with-w3m-standalone)
2578 (mm-inline-render-with-function): Use mail-parse-charset by default.
2579
2580 2007-04-18 Levin Du <zslevin@gmail.com> (tiny change)
2581
2582 * parse-time.el (parse-time-string-chars): Check if CHAR
2583 is less than the length of parse-time-syntax.
2584
2585 2007-04-17 Katsumi Yamaoka <yamaoka@jpl.org>
2586
2587 * gnus-uu.el (gnus-uu-digest-mail-forward): Pull articles processed
2588 from gnus-newsgroup-processable.
2589
2590 2007-04-16 Didier Verna <didier@xemacs.org>
2591
2592 * gnus-msg.el (gnus-configure-posting-styles): Handle
2593 message-signature-directory properly with :file syntax. Reported by
2594 "Leo".
2595
2596 2007-04-11 Didier Verna <didier@xemacs.org>
2597
2598 New user option: message-signature-directory.
2599 * gnus-msg.el (gnus-configure-posting-styles): Support it.
2600 * message.el (message-insert-signature): Ditto.
2601 * message.el (message-signature-file): Doc update.
2602 * message.el (message-signature-directory): New.
2603
2604 2007-04-10 Katsumi Yamaoka <yamaoka@jpl.org>
2605
2606 * gnus-msg.el (gnus-inews-yank-articles): Use
2607 message-exchange-point-and-mark instead of exchange-point-and-mark.
2608
2609 2007-04-09 Katsumi Yamaoka <yamaoka@jpl.org>
2610
2611 * message.el (message-yank-original): Make sure cited text ends with
2612 newline; don't exchange point and mark.
2613
2614 2007-04-07 Chong Yidong <cyd@stupidchicken.com>
2615
2616 * tls.el (open-tls-stream): Properly handle case where there
2617 is no associated buffer.
2618
2619 2007-04-03 Thien-Thi Nguyen <ttn@gnu.org>
2620
2621 * gnus-msg.el (gnus-inews-yank-articles): Fix bug: After
2622 message-yank-original, make sure (< mark TEXT point).
2623
2624 2007-03-31 Reiner Steib <Reiner.Steib@gmx.de>
2625
2626 * message.el (message-fill-column): New variable.
2627 (message-mode): Use it. Add comment on a possible new hook.
2628
2629 * nnmail.el (nnmail-spool-file): Mark as obsolete.
2630 (nnmail-get-new-mail): Reformat.
2631
2632 * gnus-registry.el (gnus-registry-cache-save): Add FIXME comment.
2633
2634 * gmm-utils.el: Fix Commentary.
2635 (gmm-tool-bar-from-list): Fix typo in doc string.
2636
2637 2007-03-27 Thien-Thi Nguyen <ttn@gnu.org>
2638
2639 * message.el (message-yank-original): Don't switch point and mark
2640 unnecessarily to put point and mark as documented.
2641
2642 2007-03-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
2643
2644 * message.el (message-put-addresses-in-ecomplete): Only fetch headers
2645 from the message heads.
2646
2647 2007-03-25 Kevin Greiner <kevin.greiner@compsol.cc>
2648
2649 * gnus-art.el (gnus-article-set-window-start): Do nothing when the
2650 article buffer does not have a window. This may not be the best
2651 solution but is certainly better than setting the start of the null,
2652 that is the current, window.
2653
2654 2007-03-24 Reiner Steib <Reiner.Steib@gmx.de>
2655
2656 * gnus-draft.el (gnus-draft-setup-hook): New hook.
2657 (gnus-draft-setup): Run it.
2658
2659 * gnus-score.el (gnus-inhibit-slow-scoring): New variable, renamed from
2660 gnus-score-fast-scoring. Allow regexp.
2661 (gnus-score-headers): Use it.
2662
2663 * gnus-util.el (gnus-emacs-version): Include "no MULE" in no-MULE
2664 XEmacs.
2665
2666 * gnus-art.el (gnus-article-browse-html-article): Fix typo in doc
2667 string.
2668 (gnus-button-alist): Also catch `<f1> k ...'.
2669 (gnus-treat-display-x-face): Fix doc string.
2670
2671 2007-03-25 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
2672
2673 * gnus-msg.el (gnus-setup-message, gnus-inews-add-send-actions): Move
2674 evaluation of gnus-extended-version to ensure correct generation of the
2675 User-Agent header when message-generate-headers-first is used.
2676
2677 2007-03-24 Simon Josefsson <simon@josefsson.org>
2678
2679 * hashcash.el (hashcash-generate-payment-async): Don't crash if
2680 hashcash-path is nil. Don't call callback with incorrect number of
2681 parameters if val is 0.
2682
2683 2007-03-20 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
2684
2685 * message.el (message-required-news-headers):
2686 * gnus-util.el (gnus-intern-safe): Fix typo in docstring.
2687
2688 2007-03-15 Katsumi Yamaoka <yamaoka@jpl.org>
2689
2690 * message.el (message-generate-new-buffers): Change the meaning of the
2691 nil value; add `standard' to the choices; treat t as `unique'; improve
2692 doc string.
2693 (gnus-select-frame-set-input-focus): Autoload.
2694 (message-buffer-name): Search for the existing message buffer if
2695 message-generate-new-buffers is nil or `standard'; treat the value t of
2696 message-generate-new-buffers as `unique'.
2697 (message-pop-to-buffer): Raise the frame already displaying the message
2698 buffer; clear the echo area after querying.
2699 (message-setup): Pass the `continue' argument to compose-mail.
2700 (message-mail): Prefer `switch-function' if it is given; search for the
2701 existing message buffer if the `continue' argument is non-nil; pass
2702 continue and switch-function arguments to compose-mail by way of
2703 message-setup.
2704 (message-mail-other-window): Adjust argument of message-setup.
2705 (message-mail-other-frame): Ditto.
2706
2707 2007-03-13 Katsumi Yamaoka <yamaoka@jpl.org>
2708
2709 * gnus-cite.el (font-lock-set-defaults): Autoload it for Emacs.
2710 (gnus-message-citation-mode): Require font-lock for XEmacs; make sure
2711 to turn font-lock on when turning gnus-message-citation-mode on.
2712
2713 2007-03-06 Daiki Ueno <ueno@unixuser.org>
2714
2715 * mml-smime.el (mml-smime-use): New variable; default to use openssl.
2716 (mml-smime-function-alist): New variable; add epg as the backend.
2717 * mml-sec.el (mml-smime-sign): Don't require mml-smime, autoload
2718 mml-smime- functions instead.
2719 * mm-view.el: Require smime.
2720
2721 2007-03-05 Didier Verna <didier@xemacs.org>
2722
2723 * gnus-topic.el (gnus-topic-hierarchical-parameters): Perform merging
2724 instead of just inheritance for posting styles.
2725 * gnus.el (gnus-group-fast-parameter): Fix typo in comment.
2726
2727 2007-02-24 John Paul Wallington <jpw@pobox.com>
2728
2729 * tls.el (tls-certtool-program): Fix custom type.
2730
2731 2007-02-28 Katsumi Yamaoka <yamaoka@jpl.org>
2732
2733 * gnus-cite.el (gnus-message-search-citation-line): Use point-at-bol
2734 and point-at-eol instead of line-(beginning|end)-position.
2735
2736 * assistant.el (assistant-parse-buffer): Ditto.
2737
2738 2007-02-28 Daiki Ueno <ueno@unixuser.org>
2739
2740 * mml2015.el (mml2015-epg-find-usable-key): New function.
2741 (mml2015-epg-sign): Use it.
2742 (mml2015-epg-encrypt): Use it.
2743
2744 2007-02-28 Katsumi Yamaoka <yamaoka@jpl.org>
2745
2746 * message.el (message-make-in-reply-to): Quote name containing
2747 non-ASCII characters. It will make the RFC2047 encoder cause an error
2748 if there are special characters. Reported by NAKAJI Hiroyuki
2749 <nakaji@jp.freebsd.org>.
2750
2751 2007-02-27 Didier Verna <didier@xemacs.org>
2752
2753 Include the group parameters as well as the topic ones in the
2754 inheritance filter process.
2755 * gnus-topic.el (gnus-topic-hierarchical-parameters): New optional
2756 argument GROUP-PARAMS-LIST.
2757 * gnus-topic.el (gnus-group-topic-parameters): Use it.
2758
2759 2007-02-27 Katsumi Yamaoka <yamaoka@jpl.org>
2760
2761 * nntp.el (nntp-never-echoes-commands)
2762 (nntp-open-connection-functions-never-echo-commands): New variables.
2763 (nntp-send-command): Use them.
2764
2765 2007-02-20 Daiki Ueno <ueno@unixuser.org>
2766
2767 * mml2015.el (mml2015-epg-verify): Simplified.
2768
2769 2007-02-19 Katsumi Yamaoka <yamaoka@jpl.org>
2770
2771 * mml.el (mml-content-disposition-alist): New user option.
2772 (mml-content-disposition): New function.
2773 (mml-insert-mime-headers, mml-minibuffer-read-disposition): Use it.
2774 (mml-attach-file, mml-dnd-attach-file): Pass file name to it.
2775
2776 2007-02-19 Daiki Ueno <ueno@unixuser.org>
2777
2778 * mml2015.el (mml2015-epg-verify): Convert LF to CRLF before signature
2779 verification.
2780
2781 2007-02-15 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
2782
2783 * nnweb.el (nnweb-google-parse-1): Fix date parsing to also match on
2784 articles posted in the last 24 hours.
2785
2786 2007-02-14 Chong Yidong <cyd@stupidchicken.com>
2787
2788 * smiley.el (smiley-regexp-alist): Add "dead" smiley.
2789
2790 2007-02-14 Michaël Cadilhac <michael@cadilhac.name>
2791
2792 * nntp.el (nntp-send-command): Don't wait for echoes when
2793 nntp-open-ssl-stream is used.
2794
2795 2007-02-13 Katsumi Yamaoka <yamaoka@jpl.org>
2796
2797 * gnus-cite.el (gnus-test-font-lock-add-keywords)
2798 (gnus-message-add-citation-keywords)
2799 (gnus-message-remove-citation-keywords): Remove.
2800 (gnus-message-citation-mode): Instead of modifying font-lock-keywords
2801 directly, make the variables in font-lock-defaults buffer-local, add
2802 gnus-message-citation-keywords to them and then update the value of
2803 font-lock-keywords.
2804
2805 2007-02-09 Katsumi Yamaoka <yamaoka@jpl.org>
2806
2807 * message.el (message-cite-original-1): Don't call
2808 gnus-article-highlight-citation.
2809
2810 * gnus-cite.el (gnus-cite-parse): Work with two or more MS-type
2811 citations; fix line count.
2812
2813 2007-02-08 Katsumi Yamaoka <yamaoka@jpl.org>
2814
2815 * gnus-cite.el (gnus-test-font-lock-add-keywords): New function.
2816 (gnus-message-add-citation-keywords)
2817 (gnus-message-remove-citation-keywords): Use it; fix the emulating
2818 versions of font-lock-add-keywords and font-lock-remove-keywords to
2819 work with XEmacs correctly.
2820
2821 2007-02-07 Katsumi Yamaoka <yamaoka@jpl.org>
2822
2823 * gnus-cite.el (gnus-cite-face-list): Set the values of
2824 gnus-message-max-citation-depth and gnus-message-citation-keywords.
2825 (gnus-message-max-citation-depth): Use defvar rather than defconst.
2826 (gnus-message-cite-prefix-regexp): New variable.
2827 (gnus-message-search-citation-line): Use it; protect against long
2828 citation prefix; fill match data with nil rather than 0 for XEmacs; set
2829 the 0th match data for Emacs.
2830 (gnus-message-citation-keywords): Set LAXMATCH flag in every HIGHLIGHT.
2831 (gnus-message-add-citation-keywords): Append keywords rather than
2832 prepending; emulate font-lock-add-keywords if it is not available.
2833 (gnus-message-remove-citation-keywords): Emulate
2834 font-lock-remove-keywords if it is not available.
2835
2836 * gnus-msg.el (gnus-message-highlight-citation): Default to t.
2837
2838 * message.el (message-cite-prefix-regexp): Set the value of
2839 gnus-message-cite-prefix-regexp.
2840
2841 2007-02-01 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
2842
2843 * nnweb.el (nnweb-google-parse-1): Update parser.
2844
2845 2007-01-29 Juanma Barranquero <lekktu@gmail.com>
2846
2847 * gnus-art.el (gnus-button-prefer-mid-or-mail): Fix typo in docstring.
2848
2849 2007-01-28 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
2850
2851 * nnslashdot.el (nnslashdot-request-article): Update end-of-article
2852 regexp.
2853
2854 2007-01-24 Katsumi Yamaoka <yamaoka@jpl.org>
2855
2856 * uudecode.el (uudecode-string-to-multibyte): New function emulating
2857 string-to-multibyte.
2858 (uudecode-decode-region-internal): Use it.
2859
2860 2007-01-23 Reiner Steib <Reiner.Steib@gmx.de>
2861
2862 * gnus-score.el (gnus-home-score-file, gnus-home-adapt-file): Fix
2863 custom choice.
2864
2865 * gnus-art.el (gnus-signature-limit): Fix custom choice.
2866
2867 2007-01-22 Daiki Ueno <ueno@unixuser.org>
2868
2869 * mm-util.el (mm-inhibit-file-name-handlers): Add epa-file-handler.
2870
2871 * mm-decode.el (mm-save-part-to-file): Use `mm-write-region' instead of
2872 `write-region' to respect `mm-inhibit-file-name-handlers'.
2873
2874 2007-01-19 Reiner Steib <Reiner.Steib@gmx.de>
2875
2876 * nnsoup.el (nnsoup-directory, nnsoup-packer, nnsoup-packet-directory):
2877 Use gnus-home-directory instead of "~/" or "$HOME".
2878
2879 2007-01-17 Teodor Zlatanov <tzz@lifelogs.com>
2880
2881 * encrypt.el (encrypt-insert-file-contents): Add better prompt
2882 to mention filename.
2883 Add comments at beginning regarding usage.
2884 (encrypt-write-file-contents): Change interactive so a string is
2885 acceptable. If the file has no associated model, show an error instead
2886 of a nonsense prompt.
2887
2888 2007-01-16 TSUCHIYA Masatoshi <tsuchiya@namazu.org>
2889
2890 * spam.el (spam-bsfilter-ham-switch): Fix typo.
2891 Thanks to Yoshihiko Yamada for kind notification of this typo.
2892
2893 2007-01-12 Kenichi Handa <handa@m17n.org>
2894
2895 * uudecode.el (uudecode-decode-region-internal): Make it work in a
2896 multibyte buffer.
2897
2898 2007-01-14 Reiner Steib <Reiner.Steib@gmx.de>
2899
2900 * gnus-score.el (gnus-score-fast-scoring): New variable.
2901 (gnus-score-headers): Use it.
2902
2903 * gnus-sum.el (gnus-auto-select-first): Improve doc string.
2904
2905 * message.el (message-cite-original-1): Call
2906 gnus-article-highlight-citation if requested.
2907 (message-make-from): Allow name and address as optional arguments.
2908
2909 * gnus-cite.el (gnus-article-highlight-citation): Add SAME-BUFFER arg.
2910
2911 * gnus-art.el (gnus-article-browse-html-article): Add warning about web
2912 bugs to doc string.
2913 (gnus-button-alist): Add mid\\|message-id.
2914 (gnus-button-fetch-group): Extend for use in
2915 `browse-url-browser-function'.
2916 (gnus-button-url-regexp): Try to catch paired parentheses like in
2917 Wikipedia URLs.
2918
2919 * gnus-sum.el (gnus-summary-reparent-children): Another doc string fix.
2920 Suggested by Simon Krahnke <overlord@gmx.li>.
2921
2922 2007-01-13 Romain Francoise <romain@orebokech.com>
2923
2924 * nnml.el (nnml-use-compressed-files): Fix typo in docstring.
2925 Update copyright.
2926
2927 2007-01-13 Patric Mueller <bhaak@bigfoot.com> (tiny change)
2928
2929 * gnus-sum.el (gnus-summary-reparent-children): Fix typo in doc string.
2930
2931 2007-01-09 Teodor Zlatanov <tzz@lifelogs.com>
2932
2933 * gnus-registry.el (gnus-registry-unfollowed-groups)
2934 (gnus-registry-split-fancy-with-parent): Fix documentation.
2935
2936 2007-01-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
2937
2938 * spam-report.el (spam-report-gmane-internal): Speed up spam reporting
2939 from nnweb groups.
2940
2941 2006-12-31 Lars Magne Ingebrigtsen <larsi@gnus.org>
2942
2943 * spam-report.el (spam-report-gmane-internal): Add necessary "/" to
2944 Xref urls. Erase buffer before requesting head.
2945
2946 * mm-decode.el (mm-display-external): Use itimer function for XEmacs.
2947
2948 2007-01-07 Reiner Steib <Reiner.Steib@gmx.de>
2949
2950 * gnus-soup.el (gnus-soup): New custom group. Make user variables
2951 customizable.
2952
2953 2007-01-05 Daiki Ueno <ueno@unixuser.org>
2954
2955 * mml2015.el (mml2015-epg-sign): Ask user whether to skip or abort if
2956 no signing key is found.
2957 (mml2015-epg-encrypt): Ask user whether to skip or abort if
2958 no encrypting and/or signing key is found.
2959
2960 2007-01-03 Reiner Steib <Reiner.Steib@gmx.de>
2961
2962 * spam-report.el (spam-report-gmane-spam): Remove redundant message.
2963
2964 2007-01-01 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
2965
2966 * nnweb.el (nnweb-gmane-create-mapping): Put back code to merge the
2967 headers read from disk with the ones newly found in the current search.
2968 This should no longer cause problems, because the article numbers in
2969 Gmane's `nov.php' output are ignored since the previous change.
2970
2971 2007-01-02 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
2972
2973 * gmm-utils.el (gmm-tool-bar-style): Fix custom type.
2974
2975 2007-01-01 Katsumi Yamaoka <yamaoka@jpl.org>
2976
2977 * mm-decode.el (mm-display-external): Use itimer function for XEmacs.
2978
2979 2007-01-01 Romain Francoise <romain@orebokech.com>
2980
2981 * gnus-sum.el (gnus-summary-make-menu-bar): Fix typo.
2982
2983 2006-12-31 Steve Youngs <steve@sxemacs.org>
2984
2985 * gnus-cite.el: Load easy-mmode at compile time for (S)XEmacs to get
2986 `define-minor-mode' macro definition expanded properly.
2987 (gnus-message-citation-mode): This is now OK for (S)XEmacs so don't
2988 exclude it there.
2989
2990 * gnus-msg.el (gnus-message-highlight-citation): Revert Reiner's patch
2991 of 2006-12-30. The default is nil on (S)XEmacs already because of the
2992 `fboundp' test.
2993 (gnus-message-citation-mode): Revert Reiner's patch of 2006-12-30.
2994 This is OK to autoload in (S)XEmacs now.
2995
2996 2006-12-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
2997
2998 * gnus-sum.el (gnus-summary-limit-to-singletons): New command and
2999 keystroke.
3000 (gnus-summary-limit-to-singletons): Fix typo.
3001
3002 * spam-report.el (spam-report-gmane-internal): Fall back on Xref if all
3003 else fails.
3004
3005 2006-12-30 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
3006
3007 * gnus-cite.el (turn-off-gnus-message-citation-mode): Fix typo in
3008 docstring.
3009
3010 * gnus-sum.el (gnus-summary-insert-ticked-articles): New command.
3011 (gnus-summary-make-menu-bar, gnus-summary-buffer-map): Bind it.
3012 (gnus-summary-insert-dormant-articles): Fix typo in message.
3013
3014 2006-12-30 Reiner Steib <Reiner.Steib@gmx.de>
3015
3016 * gnus-msg.el (gnus-message-highlight-citation): Ensure default to be
3017 nil for XEmacs.
3018 (gnus-message-citation-mode): Don't autoload in XEmacs.
3019
3020 * gnus-cite.el (gnus-message-citation-mode): Don't define in XEmacs.
3021
3022 2006-12-29 Jouni K. Seppänen <jks@iki.fi>
3023
3024 * nnimap.el (nnimap-expunge-search-string): Mention
3025 nnimap-search-uids-not-since-is-evil in docstring.
3026
3027 2006-12-28 Reiner Steib <Reiner.Steib@gmx.de>
3028
3029 * spam.el: Revert to make-obsolete-variable because
3030 define-obsolete-variable-alias is not supported in Emacs 21.
3031
3032 * spam.el (spam-ifile-path, spam-ifile-database-path)
3033 (spam-bogofilter-path): Use define-obsolete-variable-alias instead of
3034 make-obsolete-variable.
3035 (spam-bsfilter-path, spam-bsfilter-program)
3036 (spam-spamassassin-path, spam-spamassassin-program)
3037 (spam-sa-learn-path, spam-sa-learn-program): Rename variables. Don't
3038 use "path" inappropriately.
3039 (spam-check-spamassassin, spam-spamassassin-register-with-sa-learn)
3040 (spam-check-bsfilter, spam-bsfilter-register-with-bsfilter): Use new
3041 variable names.
3042
3043 2006-12-28 Daiki Ueno <ueno@unixuser.org>
3044
3045 * gnus-sum.el (gnus-summary-next-article): Make sure we are in the
3046 summary buffer.
3047
3048 * password.el (password-cache-remove): Use clear-string to burn
3049 password, if available.
3050
3051 2006-12-26 Reiner Steib <Reiner.Steib@gmx.de>
3052
3053 * gnus-msg.el (gnus-message-citation-mode): Fix autoload.
3054
3055 * gnus-cite.el (gnus-message-highlight-citation): Move to gnus-msg.el.
3056
3057 * gnus-msg.el (gnus-setup-message): Add gnus-message-citation-mode.
3058 (gnus-message-highlight-citation): Move defcustom here from
3059 gnus-cite.el.
3060 (gnus-message-citation-mode): Autoload.
3061
3062 * gnus-cite.el: Adjust Oliver's code to Gnus namespace. Add some
3063 checks to make it compile with XEmacs.
3064 (gnus-message-citation-mode): New minor mode.
3065 (gnus-message-max-citation-depth, gnus-message-citation-keywords)
3066 (gnus-message-highlight-citation): New variables.
3067 (gnus-message-search-citation-line)
3068 (gnus-message-add-citation-keywords)
3069 (gnus-message-remove-citation-keywords)
3070 (turn-on-gnus-message-citation-mode)
3071 (turn-off-gnus-message-citation-mode): New functions.
3072
3073 2006-12-26 Oliver Scholz <epameinondas@gmx.de>
3074
3075 * gnus-cite.el: Enable highlighting of different citation levels in
3076 message-mode.
3077
3078 2006-12-26 Reiner Steib <Reiner.Steib@gmx.de>
3079
3080 * message.el (message-make-fqdn): Fix comment.
3081 (message-bogus-system-names): Add ".local".
3082
3083 * spam.el (spam-ifile-path, spam-ifile-program)
3084 (spam-ifile-database-path, spam-ifile-database)
3085 (spam-bogofilter-path, spam-bogofilter-program): Rename variables.
3086 Don't use "path" inappropriately.
3087 (spam-spamoracle-database, spam-get-ifile-database-parameter): Fix doc
3088 strings.
3089 (spam-check-ifile, spam-ifile-register-with-ifile)
3090 (spam-check-bogofilter, spam-bogofilter-register-with-bogofilter): Use
3091 new variable names.
3092
3093 * gnus-art.el (gnus-treat-display-x-face, gnus-treat-display-face)
3094 (gnus-treat-display-smileys): Simplify using
3095 gnus-image-type-available-p.
3096
3097 * gnus-ems.el (gnus-image-type-available-p): Use display-images-p if
3098 available.
3099
3100 2006-12-22 Katsumi Yamaoka <yamaoka@jpl.org>
3101
3102 * nnrss.el (nnrss-fetch): Replace buffer's contents with the decoded
3103 one after turning on the buffer's multibyteness instead of decoding
3104 them directly in the unibyte buffer that causes unexpected conversion
3105 in Emacs 23 (unicode).
3106
3107 2006-12-21 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
3108
3109 * message.el (message-generate-hashcash): Fix custom type.
3110
3111 2006-12-20 Reiner Steib <Reiner.Steib@gmx.de>
3112
3113 * gnus-sum.el (gnus-summary-recenter): Remove debug messages.
3114
3115 2006-12-20 Reiner Steib <Reiner.Steib@gmx.de>
3116
3117 * gnus-group.el (gnus-group-tool-bar-gnome): Exchange connect and
3118 disconnect icons. Add help text.
3119
3120 2006-12-20 Teodor Zlatanov <tzz@lifelogs.com>
3121
3122 * spam.el (spam-extra-header-to-number): CRM114 spam score is
3123 negated to be consistent with the others we handle.
3124
3125 2006-12-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
3126
3127 * gnus-art.el (gnus-article-setup-buffer): Actually set the local
3128 version of gnus-summary-buffer to something, so that we can use two
3129 article buffers at the same time.
3130
3131 2006-12-18 Teodor Zlatanov <tzz@lifelogs.com>
3132
3133 * spam.el (spam-necessary-extra-headers): Make spam-use-regex-headers
3134 trigger all the extra headers.
3135 (spam-extra-header-to-number): Don't require spam-use-crm114 for header
3136 sorting.
3137
3138 2006-12-14 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
3139
3140 * nnweb.el (nnweb-gmane-create-mapping): Keep the mapping stable for
3141 solid groups.
3142
3143 2006-12-13 Reiner Steib <Reiner.Steib@gmx.de>
3144
3145 * legacy-gnus-agent.el: Add Copyright notice.
3146
3147 2006-12-12 Chong Yidong <cyd@stupidchicken.com>
3148
3149 * gnus-sum.el (gnus-make-thread-indent-array): Fix last change.
3150
3151 2006-12-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
3152
3153 * nnweb.el (nnweb-gmane-search): Placeholder TOPDOC setting.
3154
3155 * gnus-sum.el (gnus-summary-recenter): Force setting the window start
3156 to make it work reliably in CVS Emacs.
3157 (gnus-summary-limit-strange-charsets-predicate)
3158 (gnus-summary-limit-to-predicate): New functions.
3159
3160 2006-12-08 Chong Yidong <cyd@stupidchicken.com>
3161
3162 * gnus-sum.el (gnus-make-thread-indent-array): New optional arg
3163 specifying array size.
3164 (gnus-summary-insert-line, gnus-summary-prepare-threads): Regrow indent
3165 array if it is too small.
3166 (gnus-sort-threads-recursive): Renamed from gnus-sort-thread-1.
3167 (gnus-sort-threads-loop): New function.
3168
3169 2006-12-06 Chris Moore <dooglus@gmail.com>
3170
3171 * gnus-sum.el (gnus-sort-threads, gnus-summary-limit-children):
3172 Use `max' to avoid the value of `max-lisp-eval-depth' decreasing.
3173
3174 2006-12-04 Jouni K. Seppänen <jks@iki.fi>
3175
3176 * mm-url.el (mm-url-predefined-programs): Call curl with correct
3177 options.
3178
3179 2006-12-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
3180
3181 * spam-report.el (spam-report-url-ping-plain): Wait for output to avoid
3182 DOS-ing the recipient.
3183
3184 * nnweb.el (nnweb-gmane-create-mapping): Use the article number from
3185 the headers when creating the mapping to avoid mismappings.
3186 (nnweb-gmane-create-mapping): Always nix out old mapping.
3187
3188 2006-11-30 Katsumi Yamaoka <yamaoka@jpl.org>
3189
3190 * message.el (message-signed-or-encrypted-p): Bind mm-decrypt-option
3191 and mm-verify-option to never.
3192
3193 2006-11-30 Katsumi Yamaoka <yamaoka@jpl.org>
3194
3195 * message.el (message-signed-or-encrypted-p): New function.
3196 (message-forward-make-body): Use it.
3197
3198 * mml2015.el (mml2015-pgg-clear-verify, mml2015-epg-clear-verify):
3199 Replace encode-coding-string with mm-encode-coding-string.
3200
3201 2006-11-29 Katsumi Yamaoka <yamaoka@jpl.org>
3202
3203 * nneething.el (nneething-decode-file-name): Replace
3204 decode-coding-string with mm-decode-coding-string.
3205
3206 * gnus-int.el (gnus-open-server): Say failed server's name.
3207
3208 2006-11-24 Juanma Barranquero <lekktu@gmail.com>
3209
3210 * gnus-agent.el (gnus-agent-expire-unagentized-dirs)
3211 (gnus-agent-regenerate-group): Fix space/tab mixup in messages.
3212
3213 * gnus-art.el (gnus-article-x-face-command, gnus-numeric-save-name):
3214 * gnus-group.el (gnus-group-sort-function, gnus-group-line-format)
3215 (gnus-group-mode, gnus-group-read-group, gnus-group-delete-group)
3216 (gnus-group-make-directory-group, gnus-group-transpose-groups):
3217 * gnus-start.el (gnus-options-subscribe, gnus-options-not-subscribe)
3218 (gnus-subscribe-newsgroup, gnus-1):
3219 * gnus-sum.el (gnus-summary-make-false-root, gnus-make-threads):
3220 * gnus.el (gnus-nntp-server, gnus-use-cross-reference)
3221 (gnus-valid-select-methods, total-expire, gnus-summary-line-format)
3222 (gnus-group-read-only-p): Fix space/tab mixup in docstrings.
3223
3224 2006-11-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
3225
3226 * gnus-sum.el (gnus-summary-limit-to-headers): New command and
3227 keystroke.
3228 (gnus-summary-limit-to-bodies): Implement headersp.
3229
3230 2006-11-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
3231
3232 * dns.el (query-dns): Protect against "Process dns deleted" strings.
3233
3234 2006-11-21 Katsumi Yamaoka <yamaoka@jpl.org>
3235
3236 * mm-util.el (mm-string-to-multibyte): Alias to identity in XEmacs.
3237
3238 2006-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
3239
3240 * message.el (message-generate-hashcash): Expand range of values to
3241 include `opportunistic'.
3242 (message-send-mail): Use it.
3243
3244 2006-11-18 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
3245
3246 * mm-uu.el (mm-uu-pgp-signed-extract-1): Make last fix more thorough
3247 and comment it.
3248
3249 * nnslashdot.el (nnslashdot-retrieve-headers-1): Update regexp.
3250
3251 2006-11-15 Reiner Steib <Reiner.Steib@gmx.de>
3252
3253 * gnus-util.el (gnus-extract-address-components): Improve comment.
3254
3255 2006-11-14 Katsumi Yamaoka <yamaoka@jpl.org>
3256
3257 * gnus-util.el (gnus-extract-address-components): Work with address in
3258 which the name portion contains @.
3259
3260 2006-11-14 Reiner Steib <Reiner.Steib@gmx.de>
3261
3262 * gnus.el (gnus-start): Move custom group up.
3263 (gnus-select-method): Don't autoload, but make it available for
3264 `customize-variable'.
3265 (gnus-getenv-nntpserver): Don't autoload.
3266
3267 2006-11-14 Teodor Zlatanov <tzz@lifelogs.com>
3268
3269 * spam.el: Revert to 7.82 (removed changes since 2006-10-16).
3270
3271 2006-11-14 Reiner Steib <Reiner.Steib@gmx.de>
3272
3273 * message.el (message-sendmail-extra-arguments): New variable.
3274 (message-send-mail-with-sendmail): Use it.
3275
3276 2006-11-14 Katsumi Yamaoka <yamaoka@jpl.org>
3277
3278 * mml.el (mml-generate-mime-1): Use mm-string-as-unibyte instead of
3279 mm-with-unibyte-current-buffer to make string unibyte.
3280
3281 * mm-decode.el (mm-insert-part): Use mm-string-to-multibyte instead of
3282 mm-string-as-multibyte.
3283
3284 2006-11-14 Daiki Ueno <ueno@unixuser.org>
3285
3286 * mml2015.el (mml2015-epg-sign): Prefix "pgp-" to a micalg value.
3287 Reported by Werner Koch <wk@gnupg.org>.
3288
3289 2006-11-14 Daiki Ueno <ueno@p360>
3290
3291 * mml2015.el: Autoload epa-select-keys when compiling.
3292
3293 2006-11-13 Daiki Ueno <ueno@unixuser.org>
3294
3295 * mml2015.el (mml2015-epg-sign): Save the signing keys in
3296 message-options.
3297 (mml2015-epg-encrypt): Save the recipient keys in message-options.
3298
3299 2006-11-13 Daiki Ueno <ueno@unixuser.org>
3300
3301 * mml2015.el (mml2015-epg-encrypt): Removed backward compatibility for
3302 EasyPG (< 0.0.6).
3303 (mml2015-always-trust): New user option.
3304 (mml2015-epg-passphrase-callback): Display key ID on the passphrase
3305 prompt.
3306
3307 2006-11-10 Katsumi Yamaoka <yamaoka@jpl.org>
3308
3309 * nntp.el (nntp-authinfo-force): New variable.
3310 (nntp-send-authinfo): Use it.
3311
3312 2006-11-09 Reiner Steib <Reiner.Steib@gmx.de>
3313
3314 * message.el (message-strip-subject-encoded-words): Allow _not_ to
3315 decode encoded words. Improve prompt. Add comment about forwarding.
3316 (message-replacement-char): Move up.
3317
3318 2006-11-08 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
3319
3320 * gnus-sum.el (gnus-summary-catchup): Use gnus-sorted-intersection
3321 instead of gnus-intersection because arguments of gnus-sorted-nunion
3322 must be sorted. This avoids corruption of gnus-newsgroup-unreads.
3323
3324 2006-11-07 Reiner Steib <Reiner.Steib@gmx.de>
3325
3326 * message.el (message-strip-subject-encoded-words): Reformat prompt.
3327 (message-simplify-subject-functions): Enable
3328 message-strip-subject-encoded-words by default.
3329
3330 2006-11-06 Reiner Steib <Reiner.Steib@gmx.de>
3331
3332 * message.el (message-strip-subject-encoded-words): New function
3333 (message-simplify-subject-functions): New variable.
3334 (message-simplify-subject): Use it. Fix typo in doc string.
3335 Support message-strip-subject-encoded-words.
3336
3337 2006-11-03 Juanma Barranquero <lekktu@gmail.com>
3338
3339 * gnus-diary.el (gnus-diary-delay-format-function):
3340 * nndiary.el (nndiary-reminders):
3341 * nnsoup.el (nnsoup-always-save): Use "non-nil" in docstrings.
3342
3343 2006-11-01 Reiner Steib <Reiner.Steib@gmx.de>
3344
3345 * gnus-art.el (article-hide-boring-headers): Fetch date from
3346 gnus-original-article-buffer to avoid problems with localized date
3347 strings.
3348
3349 2006-10-30 Katsumi Yamaoka <yamaoka@jpl.org>
3350
3351 * html2text.el (html2text-format-tags): Avoid infloop on open tags.
3352
3353 2006-10-29 Reiner Steib <Reiner.Steib@gmx.de>
3354
3355 * mm-util.el (mm-codepage-iso-8859-list, mm-codepage-ibm-list):
3356 New variables.
3357 (mm-setup-codepage-iso-8859, mm-setup-codepage-ibm): New functions.
3358 (mm-charset-synonym-alist): Move some entries to
3359 mm-codepage-iso-8859-list.
3360 (mm-charset-synonym-alist, mm-charset-override-alist): Add
3361 iso-8859-8/windows-1255 and iso-8859-9/windows-1254.
3362
3363 2006-10-29 Katsumi Yamaoka <yamaoka@jpl.org>
3364
3365 * gnus-sum.el (gnus-set-mode-line): Quote % in group name.
3366
3367 2006-10-28 Reiner Steib <Reiner.Steib@gmx.de>
3368
3369 * gnus-agent.el (gnus-agent-make-mode-line-string): Make it compatible
3370 with Emacs 21 and XEmacs.
3371
3372 2006-10-27 Teodor Zlatanov <tzz@lifelogs.com>
3373
3374 * spam.el (spam-parse-address): New function for better parsing,
3375 catching errors, etc.
3376 (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list): Use it.
3377
3378 2006-10-26 Reiner Steib <Reiner.Steib@gmx.de>
3379
3380 * mm-view.el: Add interactive arg to html2text autoload.
3381
3382 2006-10-25 Katsumi Yamaoka <yamaoka@jpl.org>
3383
3384 * gnus-sum.el (gnus-summary-move-article): Use no-encode for `B B'.
3385
3386 2006-10-24 Reiner Steib <Reiner.Steib@gmx.de>
3387
3388 * mm-util.el (mm-codepage-iso-8859-list, mm-codepage-ibm-list): New
3389 variables.
3390 (mm-setup-codepage-iso-8859, mm-setup-codepage-ibm): New functions.
3391 (mm-charset-synonym-alist): Move some entries to
3392 mm-codepage-iso-8859-list.
3393
3394 * gnus.el (gnus-getenv-nntpserver, gnus-select-method): Autoload.
3395
3396 2006-10-23 Reiner Steib <Reiner.Steib@gmx.de>
3397
3398 * message.el (message-citation-line-format)
3399 (message-insert-formated-citation-line): Fix implementation of %E, %N
3400 and %n according to the doc string.
3401
3402 2006-10-20 Teodor Zlatanov <tzz@lifelogs.com>
3403
3404 * spam.el (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list): Use
3405 car-safe to avoid bad parses.
3406
3407 2006-10-20 Katsumi Yamaoka <yamaoka@jpl.org>
3408
3409 * gnus-group.el (gnus-group-make-doc-group): Work for non-ASCII group
3410 names.
3411
3412 * gnus-sum.el (gnus-select-newsgroup): Decode group name.
3413
3414 2006-10-19 Katsumi Yamaoka <yamaoka@jpl.org>
3415
3416 * gnus-draft.el (gnus-draft-edit-message): Make sure to remove Date
3417 header.
3418
3419 * message.el (message-draft-headers): Add Date.
3420 (message-headers-to-generate): Fix typo in docstring.
3421
3422 * nndraft.el (nndraft-required-headers): New variable.
3423 (nndraft-generate-headers): Use it.
3424
3425 * gnus-registry.el (gnus-registry-wash-for-keywords): Bind `word'.
3426
3427 2006-10-16 Teodor Zlatanov <tzz@lifelogs.com>
3428
3429 * gnus-registry.el (gnus-registry-wash-for-keywords)
3430 (gnus-registry-find-keywords): New functions to allow easy searching of
3431 articles that are in the registry.
3432
3433 2006-10-16 Teodor Zlatanov <tzz@lifelogs.com>
3434
3435 * spam.el (spam-check-BBDB, spam-enter-ham-BBDB, spam-parse-list): Use
3436 ietf-drums-parse-address instead of gnus-extract-address-components.
3437 Reported by Damien Elmes <damien@repose.cx>.
3438
3439 2006-10-19 Reiner Steib <Reiner.Steib@gmx.de>
3440
3441 * gnus.el (gnus-mime): Remove unused custom group.
3442
3443 2006-10-13 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
3444
3445 * mm-uu.el (mm-uu-pgp-signed-extract-1): Use RFC 2440 definition of
3446 "blank line" when searching for end of armor headers.
3447
3448 2006-10-11 Katsumi Yamaoka <yamaoka@jpl.org>
3449
3450 * gmm-utils.el (gmm-write-region): Fix variable name.
3451
3452 2006-10-10 Reiner Steib <Reiner.Steib@gmx.de>
3453
3454 * gmm-utils.el (gmm-write-region): New function based on compatibility
3455 code from `mm-make-temp-file'.
3456
3457 * mm-util.el (mm-make-temp-file): Use `gmm-write-region'.
3458
3459 * nnmaildir.el (nnmaildir--update-nov)
3460 (nnmaildir-request-replace-article, nnmaildir-request-accept-article):
3461 Use `gmm-write-region'.
3462
3463 2006-10-04 Reiner Steib <Reiner.Steib@gmx.de>
3464
3465 * mm-util.el (mm-charset-synonym-alist, mm-charset-override-alist): Add
3466 iso-8859-8/windows-1255 and iso-8859-9/windows-1254.
3467
3468 * nnheader.el (nnheader-find-file-noselect): Inhibit version-control.
3469
3470 * message.el (message-replacement-char): New variable.
3471 (message-fix-before-sending): Use it.
3472 (message-simplify-subject): New function to remove duplicate code.
3473 (message-reply, message-followup): Use it.
3474
3475 * gnus-sum.el (gnus-summary-make-menu-bar): Clarify
3476 gnus-summary-limit-to-articles.
3477
3478 2006-10-03 Katsumi Yamaoka <yamaoka@jpl.org>
3479
3480 * gnus-util.el (gnus-with-local-quit): New macro.
3481
3482 * gnus-demon.el (gnus-demon): Replace with-local-quit with it.
3483
3484 2006-10-02 Teodor Zlatanov <tzz@lifelogs.com>
3485
3486 * gnus-util.el (gnus-string-remove-all-properties): Another fix to
3487 ignore non-string data.
3488
3489 2006-09-29 Teodor Zlatanov <tzz@lifelogs.com>
3490
3491 * gnus-util.el (gnus-string-remove-all-properties): Fix to ignore
3492 non-string data (needs to be done in the registry too).
3493
3494 2006-09-28 Teodor Zlatanov <tzz@lifelogs.com>
3495
3496 * gnus-registry.el (gnus-registry-save, gnus-registry-cache-save)
3497 (gnus-registry-remove-alist-text-properties, gnus-registry-action)
3498 (gnus-registry-split-fancy-with-parent)
3499 (gnus-registry-fetch-simplified-message-subject-fast)
3500 (gnus-registry-fetch-sender-fast, gnus-registry-store-extra-entry):
3501 Remove text properties on ingress into the registry and when it's saved.
3502 (gnus-registry-clean-empty-function): Fix bug with cleaning the
3503 registry from entries with no groups.
3504
3505 2006-09-28 Teodor Zlatanov <tzz@lifelogs.com>
3506
3507 * gnus-util.el (gnus-string-remove-all-properties): Add utility
3508 function to remove string properties.
3509
3510 2006-09-28 Reiner Steib <Reiner.Steib@gmx.de>
3511
3512 * gmm-utils.el (gmm): Adjust custom version.
3513
3514 * mm-util.el (mm-charset-override-alist, mm-charset-eval-alist): Adjust
3515 custom version.
3516
3517 * gnus-draft.el (gnus-draft-mode): Don't call `mml-mode'.
3518
3519 2006-09-27 Reiner Steib <Reiner.Steib@gmx.de>
3520
3521 * gnus-art.el (gnus-insert-prev-page-button)
3522 (gnus-insert-next-page-button): Simplify. Reformat.
3523
3524 2006-09-27 Maxime Edouard Robert Froumentin <max@lapin-bleu.net>
3525
3526 * gnus-art.el (gnus-insert-prev-page-button)
3527 (gnus-insert-next-page-button): Apply gnus-article-button-face.
3528
3529 2006-09-25 Chong Yidong <cyd@stupidchicken.com>
3530
3531 * gnus-demon.el (gnus-demon): Use with-local-quit to avoid hangs.
3532
3533 2006-09-20 Maxime Edouard Robert Froumentin <max@lapin-bleu.net>
3534
3535 (gnus-insert-mime-button, gnus-insert-mime-security-button): Apply
3536 gnus-article-button-face to MIME and security buttons.
3537
3538 2006-09-20 Reiner Steib <Reiner.Steib@gmx.de>
3539
3540 * gnus-art.el (gnus-button-url-regexp): Try to make the value more
3541 readable.
3542
3543 2006-09-20 Steve Youngs <steve@sxemacs.org>
3544
3545 * gnus-art.el (gnus-article-browse-html-parts): They're files, so use
3546 `browse-url-of-file' instead of `browse-url'.
3547
3548 2006-09-19 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
3549
3550 * nnslashdot.el (nnslashdot-request-article): Update end-of-article
3551 regexp. Articles containing quotation were cut prematurely.
3552
3553 2006-09-16 Katsumi Yamaoka <yamaoka@jpl.org>
3554
3555 * message.el (message-cite-original-1): Use nobody by default for the
3556 value of From header.
3557 (message-reply): Ditto.
3558
3559 2006-09-11 Daiki Ueno <ueno@unixuser.org>
3560
3561 * mml2015.el (mml2015-epg-clear-decrypt): Don't append verify results
3562 to the gnus-info. This fixes a bug of inline-PGP message verification.
3563 Reported by Michael Piotrowski <mxp@dynalabs.de>.
3564
3565 2006-09-09 Reiner Steib <Reiner.Steib@gmx.de>
3566
3567 * pop3.el (pop3-leave-mail-on-server): Mention problem of duplicate
3568 mails in the doc string. Add some URLs in comment.
3569 (pop3-movemail): Warn about pop3-leave-mail-on-server.
3570
3571 2006-09-07 Katsumi Yamaoka <yamaoka@jpl.org>
3572
3573 * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings): Fix
3574 backslashes handling and the way to find boundaries of quoted strings.
3575
3576 2006-09-07 Daiki Ueno <ueno@unixuser.org>
3577
3578 * mml1991.el (mml1991-epg-encrypt): Simply throw an error if
3579 mml1991-encrypt-to-self is set and mml1991-signers is not set.
3580 * mml2015.el (mml2015-epg-encrypt): Simply throw an error if
3581 mml2015-encrypt-to-self is set and mml2015-signers is not set.
3582
3583 2006-09-06 Reiner Steib <Reiner.Steib@gmx.de>
3584
3585 * gnus-art.el (gnus-button-marker-list): Move up. Convert comment into
3586 doc string.
3587 (gnus-button-regexp, gnus-button-last): Remove unused variables.
3588
3589 2006-09-06 Simon Josefsson <jas@extundo.com>
3590
3591 * mml2015.el (mml2015-use): Doc fix, mention epg.
3592
3593 2006-09-06 Daiki Ueno <ueno@unixuser.org>
3594
3595 * mml2015.el (mml2015-use): Default to epg, if available.
3596
3597 2006-09-06 Daiki Ueno <ueno@unixuser.org>
3598
3599 * mml1991.el (mml1991-epg-sign): Don't lookup a private key by
3600 message-sender.
3601 (mml1991-epg-encrypt): Ditto.
3602 * mml2015.el (mml2015-epg-sign): Don't lookup a private key by
3603 message-sender.
3604 (mml2015-epg-encrypt): Ditto.
3605
3606 2006-09-04 Chong Yidong <cyd@stupidchicken.com>
3607
3608 * message.el (message-send-mail-with-sendmail): Look for sendmail in
3609 several common directories.
3610
3611 2006-09-05 Daiki Ueno <ueno@unixuser.org>
3612
3613 * mml2015.el (mml2015-epg-encrypt): Expand group configuration.
3614 * mml1991.el (mml1991-epg-encrypt): Expand group configuration.
3615
3616 2006-09-04 Katsumi Yamaoka <yamaoka@jpl.org>
3617
3618 * gnus-art.el (article-decode-encoded-words): Make it fast.
3619
3620 2006-09-04 Katsumi Yamaoka <yamaoka@jpl.org>
3621
3622 * gnus-art.el (article-decode-encoded-words): Don't infloop in XEmacs.
3623
3624 * rfc2047.el (rfc2047-strip-backslashes-in-quoted-strings): Decode `\\'
3625 in quoted string into `\'.
3626
3627 2006-09-01 Katsumi Yamaoka <yamaoka@jpl.org>
3628
3629 * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
3630 Use standard-syntax-table.
3631
3632 2006-09-01 Katsumi Yamaoka <yamaoka@jpl.org>
3633
3634 * gnus-art.el (gnus-decode-address-function): New variable.
3635 (article-decode-encoded-words): Use it to decode headers which are
3636 assumed to contain addresses.
3637 (gnus-mime-delete-part): Remove useless `or'.
3638
3639 * gnus-sum.el (gnus-decode-encoded-address-function): New variable.
3640 (gnus-summary-from-or-to-or-newsgroups): Use it to decode To header.
3641 (gnus-nov-parse-line): Use it to decode From header.
3642 (gnus-get-newsgroup-headers): Ditto.
3643 (gnus-summary-enter-digest-group): Use it to decode `to-address'.
3644
3645 * mail-parse.el (mail-decode-encoded-address-region): New alias.
3646 (mail-decode-encoded-address-string): New alias.
3647
3648 * rfc2047.el (rfc2047-quote-special-characters-in-quoted-strings):
3649 New function.
3650 (rfc2047-encode-message-header, rfc2047-encode-region): Use it.
3651 (rfc2047-strip-backslashes-in-quoted-strings): New fnction.
3652 (rfc2047-decode-region): Use it; add optional argument `address-mime'.
3653 (rfc2047-decode-string): Ditto.
3654 (rfc2047-decode-address-region): New function.
3655 (rfc2047-decode-address-string): New function.
3656
3657 2006-08-31 Reiner Steib <Reiner.Steib@gmx.de>
3658
3659 * message.el (message-caesar-buffer-body): Allow rotating headers.
3660
3661 * gnus-sum.el (gnus-summary-caesar-message): Allow rotating headers.
3662
3663 * message.el (message-insert-formated-citation-line): Fix %f.
3664 Reported by Torsten Bronger <bronger@physik.rwth-aachen.de> .
3665
3666 2006-08-18 Katsumi Yamaoka <yamaoka@jpl.org>
3667
3668 * gnus-bookmark.el (gnus-bookmark-file-coding-system): New variable.
3669 (gnus-bookmark-mouse-available-p): New macro.
3670 (gnus-bookmark-bmenu-list): Use it; use gnus-mouse-2.
3671 (gnus-bookmark-bmenu-show-infos): Use it.
3672 (gnus-bookmark-insert-details): Use it; use gnus-mouse-2.
3673 (gnus-bookmark-bmenu-hide-infos): Ditto.
3674 (gnus-bookmark-remove-properties): New function.
3675 (gnus-bookmark-set, gnus-bookmark-make-cell): Use it.
3676 (gnus-bookmark-set-bookmark-name): Don't use 2nd arg of split-string.
3677 (gnus-bookmark-write-file): Bind coding-system-for-write.
3678 (gnus-bookmark-insert-file-format-version-stamp): Add coding cookie.
3679 (gnus-bookmark-jump): Make completing-read work with XEmacs; activate
3680 group before selecting it.
3681 (gnus-bookmark-get-bookmark): Use assoc instead of assoc-string.
3682 (gnus-bookmark-bmenu-mode-map): Bind `q' to bury-buffer instead of
3683 quit-window if it is not available; use gnus-mouse-2 and bind it to
3684 gnus-bookmark-bmenu-select-by-mouse.
3685 (gnus-bookmark-show-details): Remove unused variable `details-list'.
3686 (gnus-bookmark-bmenu-select-by-mouse): New function.
3687
3688 2006-08-13 Romain Francoise <romain@orebokech.com>
3689
3690 * mm-extern.el (mm-extern-mail-server): End `y-or-n-p' prompt with a
3691 space.
3692
3693 2006-08-09 Katsumi Yamaoka <yamaoka@jpl.org>
3694
3695 * compface.el (uncompface): Use binary rather than raw-text-unix.
3696
3697 2006-08-09 Katsumi Yamaoka <yamaoka@jpl.org>
3698
3699 * compface.el (uncompface): Make sure the eol conversion doesn't take
3700 place when communicating with the external programs. Reported by
3701 ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
3702
3703 2006-07-31 Katsumi Yamaoka <yamaoka@jpl.org>
3704
3705 * nnheader.el (nnheader-insert-head): Fix typo in comment.
3706
3707 2006-07-31 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
3708
3709 * nnweb.el (nnweb-google-parse-1): Update regexp for author and date.
3710 Make it more robust by parsing author and date independently.
3711
3712 2006-07-28 Katsumi Yamaoka <yamaoka@jpl.org>
3713
3714 * nnheader.el (nnheader-insert-head): Make it work with Mac as well.
3715
3716 2006-07-28 Daiki Ueno <ueno@unixuser.org>
3717
3718 * mml2015.el (mml2015-epg-sign): If mml2015-signers is not set, use the
3719 first matching secret key.
3720 (mml2015-epg-encrypt): Ditto.
3721
3722 * mml1991.el (mml1991-epg-sign): If mml1991-signers is not set, use the
3723 first matching secret key.
3724 (mml1991-epg-encrypt): Ditto.
3725
3726 * mml2015.el (mml2015-encrypt-to-self): New user option.
3727 (mml2015-epg-encrypt): Append mml2015-signers to recipients list if
3728 mml2015-epg-encrypt-to-self is set.
3729
3730 * mml1991.el (mml1991-encrypt-to-self): New variable.
3731 (mml1991-epg-encrypt): Append mml1991-signers to recipients list if
3732 mml1991-epg-encrypt-to-self is set.
3733
3734 * mml2015.el (mml2015-signers): New user option.
3735 (mml2015-epg-sign): Reflect the value of mml2015-signers.
3736 (mml2015-epg-encrypt): Allow to select signing keys.
3737
3738 * mml1991.el (mml1991-signers): New variable.
3739 (mml1991-epg-sign): Reflect the value of mml1991-signers.
3740 (mml1991-epg-encrypt): Allow to select signing keys.
3741
3742 2006-07-27 Katsumi Yamaoka <yamaoka@jpl.org>
3743
3744 * nnheader.el (nnheader-insert-head): Make it work even if the file
3745 uses CRLF for the line-break code.
3746
3747 2006-07-25 Daiki Ueno <ueno@unixuser.org>
3748
3749 * mml2015.el: Require mml-sec instead of password.
3750 (mml2015-verbose): Inherit the default value from mml-secure-verbose.
3751 (mml2015-cache-passphrase): Inherit the default value from
3752 mml-secure-cache-passphrase.
3753 (mml2015-passphrase-cache-expiry): Inherit the default value from
3754 mml-secure-passphrase-cache-expiry.
3755
3756 * mml1991.el: Require mml-sec instead of password.
3757 (mml1991-verbose): Inherit the default value from mml-secure-verbose.
3758 (mml1991-cache-passphrase): Inherit the default value from
3759 mml-secure-cache-passphrase.
3760 (mml1991-passphrase-cache-expiry): Inherit the default value from
3761 mml-secure-passphrase-cache-expiry.
3762
3763 * mml-sec.el: Require password.
3764 (mml-secure-verbose): New user option.
3765 (mml-secure-cache-passphrase): New user option.
3766 (mml-secure-passphrase-cache-expiry): New user option.
3767
3768 2006-07-24 Daiki Ueno <ueno@unixuser.org>
3769
3770 * pgg-def.el (pgg-truncate-key-identifier): Truncate the key ID to 8
3771 letters from the end. Thanks to "David Smith" <davidsmith@acm.org> and
3772 andreas@altroot.de (Andreas Vögele).
3773
3774 FIXME: Use `tiny change'?
3775
3776 2006-07-19 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
3777
3778 * mm-url.el (mm-url-insert-file-contents): Inhibit Connection: close
3779 workaround for the url package included with Emacs.
3780
3781 * nnweb.el (nnweb-google-create-mapping): Update regexp.
3782
3783 2006-07-19 Katsumi Yamaoka <yamaoka@jpl.org>
3784
3785 * gnus-sum.el (gnus-select-newsgroup): Setup the article buffer
3786 correctly. This fixes a bug caused by the 2006-05-12 change.
3787
3788 2006-07-18 Karl Fogel <kfogel@red-bean.com>
3789
3790 * nnmail.el (nnmail-article-group): If splitting raises an error, give
3791 some information about the error when saying that the `bogus' mail
3792 group will be used.
3793
3794 2006-07-17 Reiner Steib <Reiner.Steib@gmx.de>
3795
3796 * gnus-sum.el (gnus-summary-delete-article): Don't use TAB in doc
3797 string.
3798
3799 2006-07-16 NAKAJI Hiroyuki <nakaji@heimat.jp> (tiny change)
3800
3801 * mm-util.el (mm-charset-synonym-alist): Map windows-31j to cp932.
3802
3803 2006-07-14 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
3804
3805 * gnus-start.el (gnus-subscribe-options-newsgroup-method): Doc fix.
3806
3807 2006-07-10 Daiki Ueno <ueno@unixuser.org>
3808
3809 * mml1991.el (mml1991-function-alist): Add epg.
3810 (mml1991-epg-passphrase-callback, mml1991-epg-sign)
3811 (mml1991-epg-encrypt): New functions.
3812
3813 2006-07-10 Daiki Ueno <ueno@unixuser.org>
3814
3815 * mml2015.el (mml2015-verbose): New variable.
3816 (mml2015-cache-passphrase): Ditto.
3817 (mml2015-passphrase-cache-expiry): Ditto.
3818 (mml2015-function-alist): Add epg.
3819 (mml2015-epg-passphrase-callback, mml2015-epg-decrypt)
3820 (mml2015-epg-clear-decrypt, mml2015-epg-verify)
3821 (mml2015-epg-clear-verify, mml2015-epg-sign, mml2015-epg-encrypt): New
3822 functions.
3823
3824 2006-07-08 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
3825
3826 * message.el (message-cite-original-1): Preserve region when removing
3827 quoted text due to X-No-Archive in order to avoid bogus attribution
3828 when citing multiple messages.
3829
3830 2006-06-27 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
3831
3832 * gnus-group.el (gnus-group-sort-by-unread): Fix typo. Reported by
3833 Kenneth Jacker <khj@be.cs.appstate.edu>.
3834
3835 2006-06-26 Reiner Steib <Reiner.Steib@gmx.de>
3836
3837 * gnus-diary.el (gnus-user-format-function-d)
3838 (gnus-user-format-function-D): Autoload.
3839
3840 * imap.el (Commentary): Fix typo.
3841
3842 * gnus-util.el (kill-empty-logs, gnus-byte-compile): Remove anonymous
3843 2006-04-22 contribution.
3844
3845 2006-06-26 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
3846
3847 * gnus.el (gnus-valid-select-methods): Revert last change for nnweb.
3848 It didn't really fix the bogosity I'm seeing with solid web groups.
3849
3850 2006-06-26 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
3851
3852 * gnus.el (gnus-valid-select-methods): Declare nnweb with 'address.
3853 Since revision 6.95 (2003-01-05) of gnus-group.el, solid web groups are
3854 created using server names. If we use the feature without declaring
3855 it, Gnus does not properly manage server and group state.
3856
3857 * nnweb.el (nnweb-google-search): Respect nnweb-max-hits as upper
3858 bound.
3859
3860 2006-06-25 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
3861
3862 * gnus.el (gnus-find-method-for-group): On killed/unknown groups, try
3863 looking up the method using GROUP's prefix before inventing a new one.
3864 It is used on killed/unknown groups in various places where returning
3865 an all-new method isn't expected by the caller.
3866
3867 * gnus-util.el (gnus-group-server): Fix for empty virtual server names
3868 and match semantics of gnus-group-real-prefix.
3869
3870 2006-06-22 Reiner Steib <Reiner.Steib@gmx.de>
3871
3872 * nnmail.el (nnmail-broken-references-mailers): New variable.
3873 (nnmail-ignore-broken-references): New function generalizing
3874 nnmail-fix-eudora-headers.
3875 (nnmail-fix-eudora-headers): Now obsolete.
3876
3877 * gnus-art.el (gnus-button-handle-custom): Support
3878 `customize-apropos*'.
3879
3880 2006-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
3881
3882 * gnus-art.el (article-hide-headers): Inhibit read-only stuff.
3883
3884 * gnus-group.el (gnus-fetch-group): Document ARTICLES and select those
3885 articles.
3886
3887 2006-06-21 Reiner Steib <Reiner.Steib@gmx.de>
3888
3889 * message.el (message-cite-reply-above): New variable.
3890 (message-yank-original): Use it.
3891
3892 2006-06-20 Katsumi Yamaoka <yamaoka@jpl.org>
3893
3894 * rfc2231.el (rfc2231-parse-string): Allow `*'s in parameter values.
3895
3896 2006-06-20 Reiner Steib <Reiner.Steib@gmx.de>
3897
3898 * gnus-bookmark.el (gnus-bookmark-jump): Don't mark unrelated articles
3899 as read.
3900
3901 * gnus-group.el (gnus-group-quick-select-group): Add GROUP argument.
3902
3903 2006-06-19 Reiner Steib <Reiner.Steib@gmx.de>
3904
3905 * gnus-bookmark.el: Fix Copyright, keywords, whitespace, etc.
3906 (gnus-bookmark-default-file): Use gnus-directory.
3907 (gnus-bookmark-bmenu-file-column, gnus-bookmark-use-annotations):
3908 Remove "*" in doc string.
3909 (gnus-bookmark-write-file): Simplify.
3910 (gnus-bookmark-maybe-sort-alist): Use `when'.
3911 (gnus-bookmark-get-bookmark): Fix typo in doc string.
3912 (gnus-bookmark-set-bookmark-name, gnus-bookmark-get-bookmark): Add
3913 FIXME about Emacs 21 and XEmacs compatibility.
3914 (gnus-bookmark-set-bookmark-name): Use `gnus-replace-in-string' for
3915 compatibility.
3916 (gnus-bookmark-bmenu-mode): Use `gnus-run-mode-hooks' for
3917 compatibility.
3918 (gnus-bookmark-menu-heading): Fix version.
3919
3920 2006-06-19 Bastien Guerry <bzg@altern.org>
3921
3922 * gnus-bookmark.el: New file.
3923
3924 2006-06-19 Katsumi Yamaoka <yamaoka@jpl.org>
3925
3926 * message.el (message-syntax-checks): Doc fix.
3927
3928 2006-06-17 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
3929
3930 * gnus-srvr.el (gnus-browse-unsubscribe-group): Don't subscribe
3931 unsubscribed groups as if they were killed ones. It causes duplicate
3932 entries in gnus-newsrc-alist.
3933
3934 2006-06-16 Katsumi Yamaoka <yamaoka@jpl.org>
3935
3936 * message.el (message-syntax-checks): Doc fix.
3937 (message-send-mail): Add check for continuation headers.
3938 (message-check-news-header-syntax): Fix regexp used to check for
3939 continuation headers.
3940
3941 2006-06-14 Katsumi Yamaoka <yamaoka@jpl.org>
3942
3943 * gnus-art.el (gnus-display-mime): Make sure body ends with newline.
3944
3945 2006-06-11 Reiner Steib <Reiner.Steib@gmx.de>
3946
3947 * gnus-art.el (gnus-article-toggle-truncate-lines): Fix code.
3948
3949 2006-06-11 Katsumi Yamaoka <yamaoka@jpl.org>
3950
3951 * gnus-art.el (gnus-article-truncate-lines): Default to the value of
3952 default-truncate-lines.
3953
3954 2006-06-06 Katsumi Yamaoka <yamaoka@jpl.org>
3955
3956 * mm-util.el (mm-mime-mule-charset-alist): Use unicode-precedence-list
3957 to fill the utf-8 entry.
3958
3959 2006-06-01 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
3960
3961 * nnweb.el (nnweb-google-parse-1): Update regexp for author and date.
3962
3963 2006-05-30 Kevin Greiner <kevin.greiner@compsol.cc>
3964
3965 * gnus-agent.el (directory-files-and-attributes): Move all the way
3966 forward (the third and final move).
3967 (gnus-agent-read-agentview): Trap reconstruction errors due to
3968 nonexistant directory. Handle by returning nil.
3969
3970 2006-05-30 Didier Verna <didier@xemacs.org>
3971
3972 * message.el (message-dont-reply-to-names): Update the custom type.
3973 * message.el (message-dont-reply-to-names): New defsubst: potentially
3974 convert a list of regexps into a single one.
3975 * message.el (message-get-reply-headers): Use it.
3976 * nnmail.el (nnmail-fancy-expiry-target): Ditto.
3977
3978 2006-05-30 Katsumi Yamaoka <yamaoka@jpl.org>
3979
3980 * gnus-agent.el (directory-files-and-attributes): Move forward.
3981
3982 2006-05-29 Reiner Steib <Reiner.Steib@gmx.de>
3983
3984 * gnus-ml.el (gnus-mailing-list-subscribe)
3985 (gnus-mailing-list-unsubscribe, gnus-mailing-list-owner)
3986 (gnus-mailing-list-message): Fix doc strings.
3987
3988 2006-05-29 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
3989
3990 * gnus-ml.el (gnus-mailing-list-message): Use gnus-url-mailto instead
3991 of doing it manually.
3992
3993 2006-05-29 Reiner Steib <Reiner.Steib@gmx.de>
3994
3995 * gnus-art.el (gnus-article-toggle-truncate-lines): Fix typo in
3996 comment.
3997
3998 2006-05-29 Kevin Greiner <kevin.greiner@compsol.cc>
3999
4000 * gnus-agent.el: Added gnus-agent-flush* to purge agent info.
4001 (gnus-agent-read-agentview): Fixed handling of end-of-file error.
4002 (gnus-agent-read-local): All symbols allocated in my-obarray
4003 (gnus-agent-set-local): Skip invalid entries (min and/or max is nil).
4004 (gnus-agent-regenerate-group): Check numeric names to see if they are
4005 messages or groups.
4006 (gnus-agent-total-fetched-for): Ignore 'dummy.group' (there should be a
4007 better way of do this...)
4008
4009 * gnus-cache.el (gnus-agent-total-fetched-for): Ignore
4010 'dummy.group' (there should be a better way of do this...)
4011
4012 2006-05-29 Katsumi Yamaoka <yamaoka@jpl.org>
4013
4014 * gnus-art.el (gnus-save-all-headers): Mention it might be overridden.
4015 (gnus-saved-headers): Ditto.
4016 (gnus-default-article-saver): Mention functions may have properties.
4017 (gnus-article-save): Override gnus-save-all-headers and
4018 gnus-saved-headers by :headers property which saver function may have.
4019 (gnus-summary-save-in-file): Add :headers property.
4020 (gnus-summary-write-to-file): Ditto.
4021
4022 * gnus-sum.el (gnus-summary-save-article): Bind
4023 gnus-prompt-before-saving to t when saving many articles in a file;
4024 always show all headers.
4025
4026 2006-05-26 Reiner Steib <Reiner.Steib@gmx.de>
4027
4028 * deuglify.el (gnus-outlook-rearrange-article): Add missing citation
4029 marks.
4030
4031 * message.el (message-indent-citation): Add optional arguments to allow
4032 using it outside of message buffers.
4033
4034 * gnus-art.el (gnus-article-unfold-long-headers): New variable.
4035 (gnus-article-treat-unfold-headers): Use it.
4036 (gnus-article-truncate-lines): New variable.
4037 (gnus-article-mode): Use it.
4038 (gnus-article-toggle-truncate-lines): New function.
4039
4040 * gnus-sum.el (gnus-summary-wash-map, gnus-summary-make-menu-bar): Add
4041 gnus-article-toggle-truncate-lines.
4042
4043 * uudecode.el (uudecode-decode-region-external): nil isn't a valid
4044 coding system in XEmacs, use binary.
4045
4046 2006-05-26 Katsumi Yamaoka <yamaoka@jpl.org>
4047
4048 * mm-util.el (mm-enrich-utf-8-by-mule-ucs): Don't edit
4049 after-load-alist.
4050
4051 * gnus-art.el (gnus-summary-save-in-file): Use property to specify
4052 this function should save decoded articles.
4053 (gnus-summary-write-to-file): Use property to specify this function
4054 should save decoded articles and specify gnus-summary-save-in-file
4055 should be used to save articles other than the first one when saving
4056 many articles.
4057 (gnus-summary-save-body-in-file): Use property to specify this
4058 function should save decoded articles.
4059 (gnus-summary-write-body-to-file): Use property to specify this
4060 function should save decoded articles and specify
4061 gnus-summary-save-body-in-file should be used to save articles other
4062 than the first one when saving many articles.
4063
4064 * gnus-sum.el (gnus-summary-save-article): Simplify.
4065
4066 2006-05-25 Katsumi Yamaoka <yamaoka@jpl.org>
4067
4068 * gnus-art.el (gnus-default-article-saver): Add
4069 gnus-summary-write-body-to-file.
4070 (gnus-article-save-coding-system): Don't use coding system object
4071 in XEmacs.
4072 (gnus-read-save-file-name): Add optional `dir-var' argument which
4073 specifies directory in which files are saved; work even if optional
4074 `variable' argument is not specified.
4075 (gnus-summary-write-to-file): Read file name.
4076 (gnus-summary-save-body-in-file): Add optional `overwrite' argument.
4077 (gnus-summary-write-body-to-file): New function.
4078
4079 * gnus-sum.el (gnus-newsgroup-last-directory): New variable.
4080 (gnus-summary-local-variables): Add it.
4081 (gnus-summary-save-map): Add gnus-summary-write-article-body-file.
4082 (gnus-summary-save-article): Remove optional `decode' argument;
4083 determine whether to decode articles by the value of
4084 gnus-default-article-saver; when saving many files using
4085 gnus-summary-write-to-file or gnus-summary-write-body-to-file, use
4086 it first and use gnus-summary-save-in-file or
4087 gnus-summary-save-body-in-file thereafter unless
4088 gnus-prompt-before-saving is always; move point to article which
4089 will be saved.
4090 (gnus-summary-save-article-file): Revert.
4091 (gnus-summary-write-article-file): Revert.
4092 (gnus-summary-save-article-body-file): Revert.
4093 (gnus-summary-write-article-body-file): New function.
4094
4095 2006-05-26 Reiner Steib <Reiner.Steib@gmx.de>
4096
4097 * gnus-art.el (gnus-article-browse-html-article): Remove comment.
4098
4099 2006-05-24 Katsumi Yamaoka <yamaoka@jpl.org>
4100
4101 * gnus-art.el (gnus-default-article-saver): Doc fix.
4102 (gnus-article-save-coding-system): Move from gnus-sum.el, rename
4103 from gnus-summary-save-article-coding-system, and default to a
4104 certain coding system.
4105 (gnus-output-to-file): Add coding cookie and encode text according
4106 to gnus-article-save-coding-system; don't use mm-append-to-file.
4107
4108 * gnus-sum.el (gnus-summary-save-article-coding-system): Move to
4109 gnus-art.el and rename to gnus-article-save-coding-system.
4110 (gnus-summary-save-article): Require gnus-art; don't show all
4111 headers if it decodes articles; don't add coding cookie here;
4112 don't bind mm-text-coding-system-for-write.
4113 (gnus-summary-save-article-file): Save decoded articles.
4114 (gnus-summary-write-article-file): When saving many files, use
4115 gnus-summary-write-to-file first and gnus-summary-save-in-file
4116 thereafter unless gnus-prompt-before-saving is always.
4117 (gnus-summary-save-article-body-file): Save decoded articles.
4118
4119 2006-05-23 Reiner Steib <Reiner.Steib@gmx.de>
4120
4121 * nnrss.el (nnrss-check-group): Bind hash-index.
4122
4123 2006-05-23 Michaël Cadilhac <michael.cadilhac@lrde.org>
4124
4125 * nnrss.el (nnrss-check-group): Use the md5sum of the whole RSS item as
4126 its hash index. Store this hash in `nnrss-group-data'.
4127 (nnrss-read-group-data): Update accordingly.
4128
4129 2006-05-23 Reiner Steib <Reiner.Steib@gmx.de>
4130
4131 * gnus-art.el (gnus-button-alist): Improve gnus-button-handle-symbol
4132 entry.
4133
4134 * gnus-sum.el (gnus-summary-make-menu-bar): Add
4135 gnus-article-browse-html-article.
4136
4137 2006-05-23 Hynek Schlawack <hynek@ularx.de>
4138
4139 * gnus-sum.el (gnus-summary-mime-map): Add
4140 gnus-article-browse-html-article.
4141 2006-05-23 Reiner Steib <Reiner.Steib@gmx.de>
4142
4143 * gnus-sum.el (gnus-summary-save-article-coding-system): Offer some
4144 suitable coding systems in customize.
4145
4146 2006-05-22 Reiner Steib <Reiner.Steib@gmx.de>
4147
4148 * mail-source.el (mail-sources): Fix custom type.
4149
4150 2006-05-18 Reiner Steib <Reiner.Steib@gmx.de>
4151
4152 * gnus-sum.el (gnus-summary-save-article-mail): Clarify doc string.
4153 (gnus-summary-expire-articles-now): Shorten prompt.
4154
4155 * gmm-utils.el (wid-edit): Require.
4156 (defun-gmm): Renamed from `gmm-defun-compat'.
4157 (gmm-image-search-load-path): Use it.
4158 (gmm-image-load-path-for-library): Use it. Sync with `mh-compat.el'.
4159
4160 2006-05-17 Katsumi Yamaoka <yamaoka@jpl.org>
4161
4162 * gnus-sum.el (gnus-summary-save-article-coding-system): New
4163 variable.
4164 (gnus-summary-save-article): Add optional `decode' argument. If
4165 it is set and gnus-summary-save-article-coding-system is non-nil,
4166 save decoded article.
4167 (gnus-summary-write-article-file): Save decoded article if
4168 gnus-summary-save-article-coding-system is non-nil.
4169
4170 * ecomplete.el (ecomplete-database-file-coding-system): Fix custom
4171 type.
4172
4173 2006-05-16 Katsumi Yamaoka <yamaoka@jpl.org>
4174
4175 * gnus-art.el (easy-menu-define): Use :active instead of :enable.
4176
4177 2006-05-12 Katsumi Yamaoka <yamaoka@jpl.org>
4178
4179 * gnus-art.el (gnus-article-setup-buffer): Go to summary buffer
4180 first to test gnus-single-article-buffer which may be buffer-local.
4181
4182 * gnus-sum.el (gnus-summary-setup-buffer): Make
4183 gnus-single-article-buffer buffer-local and nil in ephemeral
4184 group; make gnus-article-buffer, gnus-article-current, and
4185 gnus-original-article-buffer always buffer-local.
4186 (gnus-summary-exit): Kill article buffer belonging to ephemeral
4187 group.
4188 (gnus-handle-ephemeral-exit): Don't move to next summary line.
4189
4190 2006-05-08 Reiner Steib <Reiner.Steib@gmx.de>
4191
4192 * nnml.el (nnml-request-compact-group): Compressed files might not
4193 have .gz extension.
4194
4195 2006-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
4196
4197 * mm-decode.el (mm-dissect-buffer): Remove spurious double assignment.
4198 (mm-copy-to-buffer): Use with-current-buffer.
4199 (mm-display-part): Simplify.
4200 (mm-inlinable-p): Add optional arg `type'.
4201
4202 2006-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
4203
4204 * gnus-art.el (gnus-mime-view-part-as-type): Add optional PRED arg.
4205 (gnus-mime-view-part-externally, gnus-mime-view-part-internally):
4206 Try harder to show the attachment internally or externally using
4207 gnus-mime-view-part-as-type.
4208
4209 2006-05-02 Reiner Steib <Reiner.Steib@gmx.de>
4210
4211 * message.el (message-from-style, message-signature-separator)
4212 (message-user-organization-file, message-send-mail-function)
4213 (message-citation-line-function, message-yank-prefix)
4214 (message-indent-citation-function, message-signature)
4215 (message-signature-file, message-signature-insert-empty-line):
4216 Remove autoloads.
4217
4218 * gnus-art.el (gnus-buttonized-mime-types): Remove
4219 "multipart/signed". Revert 2006-04-26 change.
4220
4221 2006-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
4222
4223 * gnus.el (gnus-version-number): Bump version.
4224
4225 2006-05-01 Lars Magne Ingebrigtsen <lars@ingebrigtsen.no>
4226
4227 * gnus.el: No Gnus v0.5 is released.
4228
4229 2006-04-30 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
4230
4231 * nnweb.el (nnweb-request-article): Do proper xwfu encoding when
4232 fetching articles by message-id.
4233
4234 2006-04-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
4235
4236 * message.el (hashcash): Require hashcash as normal.
4237
4238 * ecomplete.el (ecomplete-highlight-match-line): Use
4239 point-at-eol.
4240 (ecomplete-highlight-match-line): Use `highlight', because that
4241 face exists in both Emacs and XEmacs.
4242
4243 * message.el (message-display-abbrev): Use point-at-bol.
4244
4245 * mail-source.el: Don't require timer/timer-funcs.
4246
4247 * gnus-async.el: Ditto.
4248
4249 * password.el: Ditto.
4250
4251 * mm-url.el: Ditto.
4252
4253 * mm-util.el: Require timer/timer-funcs.
4254
4255 2006-04-23 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
4256
4257 * mm-url.el (mm-url-insert-file-contents): Don't set Connection:
4258 Close.
4259
4260 2006-04-28 Katsumi Yamaoka <yamaoka@jpl.org>
4261
4262 * mm-uu.el (mm-uu-pgp-encrypted-extract-1): Assume buffer is made
4263 unibyte after clear-decrypt function runs.
4264
4265 * mml2015.el (mml2015-pgg-clear-decrypt): Treat data which pgg
4266 returns as a unibyte string.
4267
4268 2006-04-27 Katsumi Yamaoka <yamaoka@jpl.org>
4269
4270 * mml1991.el (mml1991-pgg-sign): No need to load pgg.el, which is
4271 always loaded by way of gnus-art.el -> mm-uu.el -> mml2015.el.
4272 (mml1991-pgg-encrypt): Ditto.
4273
4274 2006-04-26 Reiner Steib <Reiner.Steib@gmx.de>
4275
4276 * message.el (message-user-organization-file): Check several
4277 locations of the organization file.
4278
4279 * gnus-sum.el (gnus-summary-mime-map, gnus-summary-make-menu-bar):
4280 Add gnus-article-view-part-as-type.
4281
4282 * gnus-art.el (gnus-article-view-part-as-type): New function.
4283
4284 * message.el (message-valid-fqdn-regexp): Add TLDs .cat, jobs,
4285 .mobi and .travel. Remove .nato, .bitnet and .uucp.
4286
4287 * mml.el: Simplify autoload.
4288 (mml-mode): defvar dnd-protocol-alist instead of using
4289 symbol-value.
4290 (mml-default-directory): New variable.
4291 (mml-minibuffer-read-file): Use it.
4292 (mml-dnd-protocol-alist, mml-dnd-attach-options): Adjust :version.
4293
4294 * message.el (message-citation-line-format): New variable.
4295 (message-insert-formated-citation-line): New function.
4296 (message-citation-line-function): Add
4297 `message-insert-formated-citation-line' to custom type.
4298
4299 * mm-decode.el (mm-verify-option): Add gnus-buttonized-mime-types
4300 to doc string.
4301
4302 * gnus-art.el (gnus-buttonized-mime-types): Add "multipart/signed"
4303 depending on mm-verify-option.
4304
4305 2006-04-26 Katsumi Yamaoka <yamaoka@jpl.org>
4306
4307 * mml1991.el (mml1991-pgg-sign): Make sure to load pgg.el before
4308 binding pgg-* variables; reimplement the section which prevents
4309 MIME header from being signed.
4310 (mml1991-pgg-encrypt): Make sure to load pgg.el before binding
4311 pgg-text-mode; remove a blank line at the top of body.
4312
4313 * mm-uu.el (mm-uu-pgp-encrypted-extract-1): Don't remove blank
4314 lines at the top of body; use gnus-newsgroup-charset if there's no
4315 Charset header.
4316
4317 2006-04-25 Katsumi Yamaoka <yamaoka@jpl.org>
4318
4319 * message.el (message-self-insert-commands): Doc fix.
4320
4321 * mm-uu.el (mm-uu-pgp-signed-test): Erase prompt.
4322 (mm-uu-pgp-encrypted-test): Ditto.
4323 (mm-uu-pgp-encrypted-extract-1): Make sure there's a blank line
4324 between header and body; return application/pgp-encrypted handle
4325 if decryption failed; decode decrypted body by charset.
4326
4327 * mm-decode.el (mm-automatic-display): Don't make application/pgp
4328 element match to application/pgp-*.
4329
4330 2006-04-23 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
4331
4332 * nnweb.el (nnweb-google-wash-article): Sync up to new Google
4333 HTML.
4334
4335 2006-04-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
4336
4337 * mail-source.el (mail-source-call-script): Message the error
4338 string.
4339
4340 2006-04-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
4341
4342 * gnus-util.el (gnus-byte-compile): Use it.
4343
4344 2006-04-22 xyblor <fake@invalid.email> (tiny change)
4345
4346 * gnus-util.el (kill-empty-logs): New function.
4347
4348 2006-04-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
4349
4350 * message.el (message-mail-alias-type): Doc fix.
4351 (message-mail-alias-type-p): New function.
4352 (message-send): Use it.
4353 (message-mode): Ditto.
4354 (message-strip-forbidden-properties): Ditto.
4355
4356 * ecomplete.el (ecomplete-database-file-coding-system): New
4357 variable.
4358 (ecomplete-save): Use it.
4359 (ecomplete-setup): Use it.
4360
4361 2006-04-22 Katsumi Yamaoka <yamaoka@jpl.org>
4362
4363 * message.el (message-self-insert-commands): New variable.
4364 (message-strip-forbidden-properties): Use it.
4365
4366 2006-04-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
4367
4368 * message.el (message-put-addresses-in-ecomplete): Use a regexp
4369 that doesn't make XEmacs choke.
4370
4371 2006-04-20 Reiner Steib <Reiner.Steib@gmx.de>
4372
4373 * gnus-util.el (gnus-replace-in-string):
4374 Prefer replace-regexp-in-string over of replace-in-string.
4375
4376 2006-04-20 Katsumi Yamaoka <yamaoka@jpl.org>
4377
4378 * gnus-util.el (gnus-select-frame-set-input-focus):
4379 Use select-frame-set-input-focus if it is available in XEmacs; use
4380 definition defined in Emacs 22 for old Emacsen.
4381
4382 2006-04-19 Katsumi Yamaoka <yamaoka@jpl.org>
4383
4384 * mm-view.el (mm-inline-text): Use equal instead of equalp.
4385
4386 2006-04-18 Teodor Zlatanov <tzz@lifelogs.com>
4387
4388 * gnus-registry.el (gnus-registry-cache-save): Remove text
4389 properties when saving via the temp buffer.
4390
4391 2006-04-18 Reiner Steib <Reiner.Steib@gmx.de>
4392
4393 * message.el (message-generate-hashcash): Honor custom type.
4394
4395 2006-04-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
4396
4397 * message.el (message-generate-hashcash): Default to non-nil when
4398 hashcash is found.
4399
4400 * gnus-sum.el (gnus-summary-expire-articles-now): Clarify prompt.
4401 (gnus-refer-thread-limit): Increase default to 500.
4402
4403 * mm-view.el (mm-inline-text): Supply delsp to flow-fill.
4404
4405 * flow-fill.el (fill-flowed): Allow delete-space.
4406
4407 2006-04-18 Reiner Steib <Reiner.Steib@gmx.de>
4408
4409 * deuglify.el (gnus-outlook-deuglify-unwrap-min)
4410 (gnus-outlook-deuglify-unwrap-max, gnus-outlook-display-hook):
4411 Remove autoloads.
4412
4413 2006-04-18 Simon Josefsson <jas@extundo.com>
4414
4415 * message.el (message-generate-hashcash): Default to.
4416
4417 2006-04-18 Katsumi Yamaoka <yamaoka@jpl.org>
4418
4419 * rfc2231.el (rfc2231-parse-string): Decode encoded value after
4420 concatenating segments rather than before concatenating them.
4421
4422 2006-04-17 Reiner Steib <Reiner.Steib@gmx.de>
4423
4424 * gnus-group.el: Move comment to gnus-group-update-tool-bar.
4425
4426 * imap.el (imap-quote-specials): New function.
4427 (imap-login-auth): Quote specials.
4428
4429 2006-04-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
4430
4431 * rfc2231.el (rfc2231-parse-string): Sort the parameters first.
4432
4433 * message.el (message-forward-make-body-plain): Allow
4434 message-forward-ignored-headers to be a list.
4435 (message-remove-ignored-headers): Factor out into function.
4436 (message-forward-make-body-mml): Use it.
4437 * rfc2231.el (rfc2231-parse-string): Remove dead code.
4438 (rfc2231-parse-string): Allow concatanation of parameters that
4439 aren't contiguous. The test case is
4440 (mail-header-parse-content-type "message/external-body;
4441 name*0*=us-ascii''~%2ffoo%2fbar%2fbaz%2fxyzzy%2f;
4442 access-type=LOCAL-FILE;
4443 name*1*=plugh%2fhello-sailor%2fbing.pdf")
4444
4445 2006-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
4446
4447 * nntp.el (nntp-accept-process-output): Return the value of
4448 `nnheader-accept-process-output'.
4449
4450 2006-04-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
4451
4452 * gnus-art.el (gnus-article-treat-types): Add text/x-patch.
4453 (gnus-button-alist): Recognize more diff formats.
4454 (gnus-button-patch): Strip directory.
4455
4456 2006-04-17 Reiner Steib <Reiner.Steib@gmx.de>
4457
4458 * gnus-util.el (gnus-select-frame-set-input-focus): Check for
4459 Emacs 22 when setting focus.
4460
4461 2006-04-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
4462
4463 * gnus-art.el (gnus-article-treat-types): Do treatment of
4464 text/x-verbatim parts.
4465 (gnus-button-patch): New command.
4466
4467 * ietf-drums.el (ietf-drums-parse-address): Attempt parsing
4468 addresses that contain invalid characters.
4469
4470 2006-04-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
4471
4472 * message.el (message-put-addresses-in-ecomplete): Use
4473 gnus-replace-in-string.
4474 (message-is-yours-p): Use the more correct
4475 mail-header-parse-address instead of
4476 mail-extract-address-components.
4477 (message-put-addresses-in-ecomplete): Fix typo.
4478
4479 * gnus-sum.el (gnus-summary-limit-to-bodies): New command and
4480 keystroke.
4481
4482 * gnus-art.el (gnus-treatment-function-alist): Change order of
4483 newsgroups/generic header folding to avoid double-folding.
4484
4485 * message.el (message-hidden-headers): Add X-Draft-From.
4486
4487 * gnus-sum.el (gnus-summary-repeat-search-article-forward): New
4488 command.
4489 (gnus-summary-repeat-search-article-backward): New command.
4490
4491 * gnus-topic.el (gnus-topic-display-missing-topic): Skip past
4492 groups in the parent topic.
4493
4494 2006-04-16 João Cachopo <joao.cachopo@inesc-id.pt> (tiny change)
4495
4496 * spam.el (spam-necessary-extra-headers): Add X-CRM114-Status.
4497 (spam-extra-header-to-number): Return the CRM114 number as a
4498 number instead of a string.
4499
4500 2006-04-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
4501
4502 * gnus-art.el (gnus-face-properties-alist): Moved here from
4503 gnus-fun.
4504
4505 * gnus-fun.el (gnus-face-properties-alist): Move to gnus-art.
4506
4507 2006-04-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
4508
4509 * message.el (message-strip-forbidden-properties): Only display on
4510 self-insert-command.
4511
4512 * hashcash.el (hashcash-insert-payment-async): Remove dead code;
4513 reindent.
4514 (hashcash-insert-payment-async-2): Make sure the buffer is alive.
4515
4516 2006-04-15 NAKAJI Hiroyuki <nakaji@takamatsu-nct.ac.jp> (tiny change)
4517
4518 * smiley.el (smiley-style): Fix typo.
4519
4520 2006-03-23 Kenichi Handa <handa@m17n.org>
4521
4522 * rfc2231.el (rfc2231-encode-string): Use mm-disable-multibyte
4523 instead of set-buffer-multibyte.
4524
4525 2006-03-23 Kenichi Handa <handa@m17n.org>
4526
4527 * rfc2231.el (rfc2231-decode-encoded-string): Work on unibyte
4528 buffer and then decode the buffer text if necessary.
4529 (rfc2231-encode-string): Be sure to work on multibyte buffer at
4530 first, and after mm-encode-body, change the buffer to unibyte.
4531
4532 2006-04-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
4533
4534 * hashcash.el (hashcash-insert-payment-async-2): Use
4535 message-goto-eoh instead of doing it manually.
4536 (mail-add-payment): Use message-narrow-to-header instead of trying
4537 to do the same itself.
4538
4539 * message.el (message-hidden-headers): Add Face.
4540
4541 * gnus-sum.el (gnus-summary-reparent-thread): Factor out
4542 reparenting code.
4543 (gnus-summary-reparent-children): Refactored out code.
4544 (gnus-summary-thread-map): New keystroke.
4545 (gnus-summary-reparent-children): Make into command.
4546
4547 * smiley.el (smiley-style): Default to `medium' if using a large
4548 font.
4549
4550 * gnus-sum.el (unmorse-region): Remove autoload, because morse.el
4551 does it itself.
4552
4553 * message.el (message-point-in-header-p): Simplify definition.
4554
4555 2006-04-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
4556
4557 * nnagent.el (nnagent-request-set-mark): Silence log file
4558 writing.
4559 (nnagent-request-set-mark): Use write-region instead of
4560 append-to-file.
4561
4562 * gnus-sum.el (gnus-read-header): Fudge article number if using a
4563 strange select method.
4564
4565 * ecomplete.el (ecomplete-display-matches): Get highlightling
4566 right.
4567 (ecomplete-display-matches): Use literals.
4568 (ecomplete-display-matches): Disable message logging.
4569
4570 * message.el (message-display-abbrev): Small optimization.
4571
4572 * ecomplete.el (ecomplete-display-matches): Allow automatic
4573 display.
4574
4575 * message.el (message-strip-forbidden-properties): Display
4576 abbrevs.
4577 (message-display-abbrev): Get automatic display right.
4578
4579 * ecomplete.el (ecomplete-display-matches): Use M-n/M-p
4580 keystrokes.
4581
4582 2006-04-13 Romain Francoise <romain@orebokech.com>
4583
4584 TODO: Backport to v5-10!
4585
4586 * gnus-util.el (gnus-alist-to-hashtable, gnus-hashtable-to-alist):
4587 Moved here (and renamed) from gnus-registry.el.
4588
4589 * gnus-registry.el: Require gnus-util.
4590 Use `gnus-alist-to-hashtable' and `gnus-hashtable-to-alist'.
4591
4592 2006-04-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
4593
4594 * gnus-group.el (gnus-group-catchup-current): Change
4595 if-then-else-if-then-else into cond.
4596 (gnus-group-catchup): Indent.
4597 (group-name-at-point): New function.
4598 (gnus-fetch-group): Provide default from thing at point.
4599
4600 2006-04-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
4601
4602 * message.el (message-display-abbrev): Fix regexp.
4603
4604 * ecomplete.el (ecomplete-highlight-match-line): Reimplement
4605 choosing.
4606 (ecomplete-highlight-match-line): Fix up code rewrite, remove
4607 dead variables.
4608
4609 * message.el (message-newline-and-indent): Remove debugging.
4610 (message-display-abbrev): Use new implementation.
4611
4612 2006-04-12 Reiner Steib <Reiner.Steib@gmx.de>
4613
4614 * gnus-art.el (gnus-article-mode): Set
4615 cursor-in-non-selected-windows to nil.
4616
4617 * smiley.el: Revert previous change.
4618 (smiley-data-directory): defvar it before using it in the
4619 defcustom of `smiley-style'.
4620
4621 2006-04-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
4622
4623 * message.el (message-newline-and-indent): New function.
4624
4625 * ecomplete.el: Implement more bits.
4626
4627 * message.el (message-put-addresses-in-ecomplete): Clean up the
4628 string.
4629
4630 * ecomplete.el (ecomplete-add-item): Chop off decimals.
4631
4632 * gnus-sum.el (gnus-summary-save-parts): Bind
4633 gnus-summary-save-parts-counter and use it to make unique file
4634 names.
4635
4636 * gnus-art.el (gnus-ignored-headers): Add some more headers.
4637
4638 * ietf-drums.el (ietf-drums-parse-addresses): Take a RAWP
4639 parameter to say whether to actually parse the individual
4640 addresses.
4641
4642 * message.el (message-put-addresses-in-ecomplete): New function.
4643 (ecomplete): Require.
4644 (message-mail-alias-type): Add ecomplete as an option.
4645
4646 2006-04-12 Ralf Angeli <angeli@iwi.uni-sb.de>
4647
4648 * flow-fill.el (fill-flowed): Remove trailing space from blank
4649 quoted lines.
4650
4651 2006-04-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
4652
4653 * smiley.el (smiley-style): Move definition later to avoid a
4654 compilation warning.
4655
4656 2006-04-12 Kenichi Handa <handa@m17n.org>
4657
4658 * rfc2231.el (rfc2231-decode-encoded-string): Work on unibyte
4659 buffer and then decode the buffer text if necessary.
4660 (rfc2231-encode-string): Be sure to work on multibyte buffer at
4661 first, and after mm-encode-body, change the buffer to unibyte.
4662 Use mm-disable-multibyte instead of set-buffer-multibyte.
4663
4664 2006-04-12 Katsumi Yamaoka <yamaoka@jpl.org>
4665
4666 * gnus-art.el (gnus-mime-copy-part): Find name parameter in
4667 Content-Type header instead of Content-Disposition header.
4668 (gnus-mime-inline-part): Ditto.
4669 (gnus-mime-view-part-as-charset): Ignore charset that the part
4670 specifies.
4671
4672 * mm-decode.el (mm-display-part): Work with external parts and
4673 usual parts similarly.
4674
4675 * mm-extern.el (mm-inline-external-body): Use mm-display-part
4676 instead of gnus-display-mime.
4677
4678 * mm-util.el (mm-decompress-buffer): Use mm-with-unibyte-buffer
4679 instead of with-temp-buffer.
4680
4681 * gnus-uu.el (gnus-uu-save-article): Put mml tags instead of part
4682 tag to summarized topics part in order to encode non-ASCII text.
4683
4684 2006-04-11 Reiner Steib <Reiner.Steib@gmx.de>
4685
4686 * smiley.el (smiley-style): New variable.
4687 (smiley-directory): New function.
4688 (smiley-data-directory): Derive from `smiley-style' using
4689 `smiley-directory'.
4690 (smiley-regexp-alist): Add new entries.
4691
4692 * gnus-art.el (gnus-button-valid-localpart-regexp): Exclude `@'.
4693 (gnus-article-browse-delete-temp): Add :version.
4694
4695 2006-04-11 Arne Jørgensen <arne@arnested.dk>
4696
4697 * gnus-sieve.el (gnus-sieve-generate): Delete from the start of
4698 the sieve region.
4699
4700 2006-04-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
4701
4702 * gnus.el (gnus-version-number): Bump version.
4703
4704 2006-04-11 Reiner Steib <Reiner.Steib@gmx.de>
4705
4706 * gnus.el: No Gnus v0.4 is released.
4707
4708 2006-04-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
4709
4710 * nnslashdot.el (nnslashdot-retrieve-headers-1): Fix up to new
4711 layout.
4712
4713 * rfc2047.el (rfc2047-decode-encoded-words): Don't message about
4714 unknown charset.
4715
4716 * message.el (message-header-synonyms): Add Original-To to the
4717 default.
4718
4719 * gnus-sum.el (gnus-get-newsgroup-headers-xover): group is an
4720 optional parameter.
4721
4722 2006-04-06 Reiner Steib <Reiner.Steib@gmx.de>
4723
4724 * gnus-fun.el (gnus): Require it for gnus-directory.
4725
4726 2006-04-06 Katsumi Yamaoka <yamaoka@jpl.org>
4727
4728 * gnus-fun.el (gnus-face-properties-alist): Add :version.
4729
4730 2006-04-05 Daiki Ueno <ueno@unixuser.org>
4731
4732 * pgg-gpg.el (pgg-gpg-process-filter): Fix.
4733
4734 2006-04-05 Simon Josefsson <jas@extundo.com>
4735
4736 * password.el (password-reset): New function.
4737
4738 2006-04-05 Daiki Ueno <ueno@unixuser.org>
4739
4740 * pgg-gpg.el (pgg-gpg-encrypt-region, pgg-gpg-sign-region): Wait
4741 for BEGIN_SIGNING too, new in GnuPG 1.4.3.
4742
4743 2006-04-04 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
4744
4745 * nnweb.el (nnweb-google-create-mapping): Update regexp.
4746 Some whitespace was matched into the url, which broke browsing hits
4747 > 100 when mm-url-use-external was nil.
4748
4749 2006-04-04 Reiner Steib <Reiner.Steib@gmx.de>
4750
4751 * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Check
4752 gnus-extra-headers for 'Newsgroups.
4753
4754 * message.el (message-tool-bar-gnome): Check if `flyspell-mode' is
4755 bound.
4756
4757 2006-04-04 Daiki Ueno <ueno@unixuser.org>
4758
4759 * pgg-gpg.el: Clean up process buffers every time gpg processes
4760 complete.
4761
4762 2006-04-03 Reiner Steib <Reiner.Steib@gmx.de>
4763
4764 * gnus-fun.el (gnus-convert-image-to-face-command): Fix typo in
4765 doc string.
4766
4767 2006-04-03 Daiki Ueno <ueno@unixuser.org>
4768
4769 * pgg-gpg.el (pgg-gpg-process-filter)
4770 (pgg-gpg-wait-for-completion): Check if buffer is alive.
4771
4772 * pgg-gpg.el (pgg-gpg-process-sentinel): Don't remove GNUPG:
4773 lines, temporary fix.
4774
4775 2006-03-31 Reiner Steib <Reiner.Steib@gmx.de>
4776
4777 * gnus-group.el (gnus-group-update-tool-bar): Add :initialize and :set.
4778
4779 2006-03-29 Daiki Ueno <ueno@unixuser.org>
4780
4781 * pgg-gpg.el (pgg-gpg-start-process): Don't bind
4782 default-enable-multibyte-characters. This reverts the change from
4783 revision 6.17 which is no longer necessary because the passphrase
4784 is sent separately now. GnuPG messages are unreadable under
4785 multibyte locales with default-enable-multibyte-characters set to
4786 nil.
4787
4788 2006-03-28 Reiner Steib <Reiner.Steib@gmx.de>
4789
4790 * message.el (message-tool-bar-gnome): Move "spell".
4791
4792 2006-03-27 Reiner Steib <Reiner.Steib@gmx.de>
4793
4794 * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Don't use
4795 XEmacs-only `replace-in-string'. Use `gnus-group-real-name'
4796 instead.
4797
4798 2006-03-27 Karl Kleinpaste <karl@charcoal.com>
4799
4800 * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Improve
4801 newsgroups handling for NNTP overviews which don't include
4802 Newsgroups.
4803
4804 2006-03-26 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
4805
4806 * message.el (message-resend): Bind message-generate-hashcash to nil.
4807
4808 2006-03-26 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
4809
4810 * hashcash.el (hashcash-already-paid-p): Bind case-fold-search
4811 when searching for already-paid recipients.
4812
4813 2006-03-27 Daiki Ueno <ueno@unixuser.org>
4814
4815 * pgg-gpg.el: Invoke gpg asynchronous, to avoid querying for
4816 passphrases when it is not needed.
4817 (pgg-gpg-use-agent): Add, to hard code that pgg shouldn't wait for
4818 passphrase stuff from gpg, should only be necessary when you use
4819 gpg with a smartcard.
4820
4821 2006-03-23 Katsumi Yamaoka <yamaoka@jpl.org>
4822
4823 * mml.el (mml-insert-mime): Ignore cached contents of
4824 message/external-body part.
4825
4826 * mm-decode.el (mm-get-part): Add optional 'no-cache' argument.
4827 (mm-insert-part): Ditto.
4828
4829 2006-03-23 Simon Josefsson <jas@extundo.com>
4830
4831 * pgg-gpg.el (pgg-gpg-update-agent): Add again, with fixes from
4832 Reiner.
4833 (pgg-gpg-use-agent-p): Use it again.
4834
4835 2006-03-23 Simon Josefsson <jas@extundo.com>
4836
4837 * pgg-gpg.el (pgg-gpg-update-agent): Remove, doesn't work with
4838 older emacsen.
4839 (pgg-gpg-use-agent-p): Don't use it.
4840
4841 2006-03-23 Reiner Steib <Reiner.Steib@gmx.de>
4842
4843 * pgg-gpg.el (pgg-gpg-update-agent): Only use make-network-process
4844 if we can.
4845
4846 2006-03-22 Sascha Wilde <wilde@sha-bang.de>
4847
4848 * pgg-gpg.el (pgg-gpg-use-agent): Disable by default.
4849 (pgg-gpg-update-agent): New function.
4850 (pgg-gpg-use-agent-p): New function.
4851 (pgg-gpg-process-region, pgg-gpg-encrypt-region)
4852 (pgg-gpg-encrypt-symmetric-region, pgg-gpg-decrypt-region)
4853 (pgg-gpg-sign-region): Use it.
4854
4855 2006-03-22 Katsumi Yamaoka <yamaoka@jpl.org>
4856
4857 * gnus-sum.el (gnus-map-articles): Don't funcall symbol macro.
4858 Reported by Ralf Wachinger <rwachinger@gmx.de>.
4859
4860 2006-03-21 Simon Josefsson <jas@extundo.com>
4861
4862 * pgg-gpg.el: Ideas below based on patch from Sascha Wilde
4863 <wilde@sha-bang.de>.
4864 (pgg-gpg-use-agent): New variable.
4865 (pgg-gpg-process-region): Use it.
4866 (pgg-gpg-encrypt-region): Likewise.
4867 (pgg-gpg-encrypt-symmetric-region): Likewise.
4868 (pgg-gpg-decrypt-region): Likewise.
4869 (pgg-gpg-sign-region): Likewise.
4870 (pgg-gpg-possibly-cache-passphrase): Don't cache a nil password.
4871
4872 2006-03-21 Reiner Steib <Reiner.Steib@gmx.de>
4873
4874 * gnus-agent.el (gnus-agent-queue-mail): Fix custom tag for `t'.
4875
4876 * spam.el (spam-mark-new-messages-in-spam-group-as-spam):
4877 Add comment on version.
4878
4879 2006-03-20 Reiner Steib <Reiner.Steib@gmx.de>
4880
4881 * smiley.el: Add missing test smiley.
4882
4883 2006-03-17 Katsumi Yamaoka <yamaoka@jpl.org>
4884
4885 * mm-decode.el (mm-with-part): New macro.
4886 (mm-get-part): Use it; work with message/external-body as well.
4887 (mm-save-part): Treat name and filename equally.
4888
4889 * mm-extern.el (mm-extern-cache-contents): New function.
4890 (mm-inline-external-body): Use it; force the part to be displayed;
4891 move undisplayer added to the cached handle to the parent.
4892
4893 * gnus-art.el (gnus-mime-save-part-and-strip): Add name parameter.
4894 (gnus-mime-view-part-as-type): Work with message/external-body.
4895
4896 * gnus-util.el (gnus-tool-bar-update): Bind tool-bar-mode.
4897
4898 2006-03-16 Reiner Steib <Reiner.Steib@gmx.de>
4899
4900 * gmm-utils.el (gmm-image-load-path-for-library): Prefer user's
4901 images in image-load-path. [Sync with image.el at 2006-03-16T16:55:26Z!wohler@newt.com, in
4902 Emacs.]
4903
4904 2006-03-15 Reiner Steib <Reiner.Steib@gmx.de>
4905
4906 * gmm-utils.el (gmm-image-load-path-for-library): Pass value of
4907 path rather than symbol. Always return list of directories.
4908 Guarantee that image directory comes first. [Sync with image.el,
4909 , in Emacs2006-03-15T17:06:16Z!wohler@newt.com.]
4910
4911 * message.el (message-make-tool-bar): Adjust to new API of
4912 `gmm-image-load-path-for-library'.
4913
4914 * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
4915
4916 * gnus-group.el (gnus-group-make-tool-bar): Ditto.
4917
4918 2006-03-15 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
4919
4920 * gnus-art.el (gnus-article-only-boring-p):
4921 Bind inhibit-point-motion-hooks to avoid infinite loop when entering
4922 intangible text.
4923 Reported by Ralf Wachinger <rwnewsmampfer@geekmail.de>.
4924
4925 2006-03-14 Reiner Steib <Reiner.Steib@gmx.de>
4926
4927 * gmm-utils.el (gmm-image-load-path-for-library): Fix typo. Use
4928 `defun' instead of `gmm-defun-compat'.
4929
4930 2006-03-14 Simon Josefsson <jas@extundo.com>
4931
4932 * message.el (message-unique-id): Don't use message-number-base36
4933 if (user-uid) is a float.
4934 Reported by Bjorn Solberg <bjorn_ding1@hekneby.org>.
4935
4936 2006-03-13 Katsumi Yamaoka <yamaoka@jpl.org>
4937
4938 * mm-uu.el (mm-uu-dissect): Dissect all parts correctly.
4939
4940 * gnus-art.el (gnus-mime-display-single): Make sure there is an
4941 empty line between a part and a message part.
4942
4943 2006-03-10 Reiner Steib <Reiner.Steib@gmx.de>
4944
4945 * smiley.el: Add more test smileys.
4946 (smiley-data-directory, smiley-regexp-alist)
4947 (gnus-smiley-file-types): Fix doc strings.
4948 (smiley-update-cache): Clear smiley-cached-regexp-alist before
4949 adding new elements.
4950 (smiley-mouse-map): Unused code. Make it a comment.
4951
4952 2006-03-10 Katsumi Yamaoka <yamaoka@jpl.org>
4953
4954 * gnus-nocem.el (gnus-nocem-scan-groups): Add autoload cookie;
4955 scan latest NoCeM messages instead of old ones.
4956 (gnus-nocem-check-article): Fix regexps so as to match to PGP
4957 delimiters that are recently used.
4958 (gnus-nocem-load-cache): Add autoload cookie.
4959
4960 * gnus.el (gnus-use-nocem): Enable it to be set to also a number.
4961
4962 * gnus-start.el (gnus-setup-news): Scan NoCeM messages if a group
4963 level which is larger than gnus-use-nocem is specified.
4964
4965 * gnus-group.el (gnus-group-get-new-news): Ditto.
4966
4967 2006-03-08 Reiner Steib <Reiner.Steib@gmx.de>
4968
4969 * gnus-util.el (gnus-tool-bar-update): New function.
4970
4971 * gnus-group.el (gnus-group-update-tool-bar): New variable.
4972 (gnus-group-insert-group-line): Add gnus-tool-bar-update.
4973
4974 * gnus-topic.el (gnus-topic-prepare-topic): Add gnus-tool-bar-update.
4975
4976 * gnus-group.el (gnus-group-redraw-when-idle)
4977 (gnus-group-redraw-check): Remove.
4978 (gnus-group-make-tool-bar): Remove gnus-group-redraw-check.
4979
4980 2006-03-08 Katsumi Yamaoka <yamaoka@jpl.org>
4981
4982 * nnmail.el (nnmail-split-it): Invert match-partial-words behavior
4983 if optional last element is specified in splits (FIELD VALUE...).
4984
4985 2006-03-07 Reiner Steib <Reiner.Steib@gmx.de>
4986
4987 * message.el (message-make-tool-bar): Rename gmm-image-load-path
4988 to gmm-image-load-path-for-library. Call with no-error argument.
4989 (message-tool-bar-gnome): Rename "mail/attach" to "attach".
4990
4991 * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
4992
4993 * gnus-group.el (gnus-group-make-tool-bar): Ditto.
4994
4995 * gmm-utils.el (gmm-image-load-path): Remove alias.
4996
4997 2006-03-06 Reiner Steib <Reiner.Steib@gmx.de>
4998
4999 * gmm-utils.el (gmm-image-load-path): Add alias.
5000
5001 * nnml.el (nnml-generate-nov-databases-directory): Rename from
5002 nnml-generate-nov-databases-1.
5003 (nnml-generate-nov-databases): Use it.
5004 (nnml-generate-nov-databases-directory): Document no-active
5005 argument.
5006
5007 * gmm-utils.el (gmm-image-load-path-for-library): Return single
5008 directory if path is t. Add no-error.
5009
5010 * gnus-group.el (gnus-group-make-tool-bar): Use add-hook.
5011 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
5012
5013 * gnus-art.el (gnus-article-browse-delete-temp-files): Simplify
5014 resetting gnus-article-browse-html-temp-list.
5015
5016 * gmm-utils.el (gmm-image-load-path-for-library): Sync with
5017 mh-compat.el at 2006-03-04T21:23:21Z!wohler@newt.com in Emacs. Rename `gmm-image-load-path'.
5018 Add example to docstring. Rename local variables. Move error
5019 checks to default case in cond and simplify.
5020
5021 2006-03-06 Katsumi Yamaoka <yamaoka@jpl.org>
5022
5023 * mm-view.el (mm-w3m-cid-retrieve-1): Check carefully whether
5024 handle is multipart when calling it recursively.
5025 (mm-w3m-cid-retrieve): Display warning if retrieving fails.
5026
5027 2006-03-03 Daniel Pittman <daniel@rimspace.net>
5028
5029 * nnimap.el (nnimap-request-update-info-internal): Optimize.
5030 Don't `gnus-uncompress-range' to avoid excessive memory usage.
5031
5032 2006-03-03 Katsumi Yamaoka <yamaoka@jpl.org>
5033
5034 * gnus-group.el (gnus-group-tool-bar-gnome): Check if gnus-topic.el
5035 is loaded.
5036
5037 * gnus-sum.el (gnus-summary-tool-bar-gnome): Check if spam.el is
5038 loaded.
5039
5040 2006-03-03 Reiner Steib <Reiner.Steib@gmx.de>
5041
5042 * mm-util.el (mm-with-unibyte-current-buffer): Change "Emacs 23"
5043 to "Emacs 23 (unicode)" in doc string.
5044
5045 * gnus-sum.el (gnus-summary-set-display-table): Change "Emacs 23" to
5046 "Emacs 23 (unicode)" in comment.
5047
5048 2006-03-03 Katsumi Yamaoka <yamaoka@jpl.org>
5049
5050 * mm-decode.el (mm-get-part): Don't use mm-with-unibyte-current-buffer.
5051
5052 * gnus-sum.el (gnus-summary-set-display-table): Don't nix out
5053 characters 160 through 255 in Emacs 23.
5054
5055 2006-03-02 Reiner Steib <Reiner.Steib@gmx.de>
5056
5057 * gnus-art.el (gnus-article-browse-html-temp-list): Rename from
5058 gnus-article-browse-html-temp.
5059 (gnus-article-browse-delete-temp): Make it customizable. Add
5060 `file'. Adjust doc string.
5061 (gnus-article-browse-delete-temp-files): Add argument. Allow
5062 query for each file. Adjust doc string.
5063 (gnus-article-browse-html-parts): Add
5064 `gnus-article-browse-delete-temp-files' to
5065 `gnus-summary-prepare-exit-hook' and `gnus-exit-gnus-hook'.
5066
5067 2006-03-02 Hynek Schlawack <hynek@ularx.de>
5068
5069 * gnus-art.el (gnus-article-browse-html-temp)
5070 (gnus-article-browse-delete-temp): New variables.
5071 (gnus-article-browse-delete-temp-files): New function.
5072 (gnus-article-browse-html-parts): Use it.
5073
5074 2006-03-02 Reiner Steib <Reiner.Steib@gmx.de>
5075
5076 * gnus-group.el (gnus-group-redraw-check): Remove redundant tests.
5077
5078 * gmm-utils.el (gmm-image-load-path): Mention ../etc search in doc
5079 string.
5080
5081 * gnus-sum.el (gnus-summary-tool-bar-gnome): Don't use
5082 gnus-summary-insert-new-articles when unplugged. Remove
5083 gnus-summary-search-article-forward.
5084
5085 * gmm-utils.el (gmm-tool-bar-style): Test tool-bar-mode and
5086 display-visual-class instead of display-color-cells.
5087
5088 2006-03-02 Katsumi Yamaoka <yamaoka@jpl.org>
5089
5090 * mml.el (mml-generate-mime-1): Encode parts other than text/* or
5091 message/* containing non-ASCII text properly.
5092
5093 2006-03-01 Reiner Steib <Reiner.Steib@gmx.de>
5094
5095 * message.el: Require gmm-utils, remove autoloads.
5096 (message-tool-bar): Set default based on
5097 gmm-tool-bar-style.
5098 (message-tool-bar-gnome): Add gmm-customize-mode.
5099
5100 * gnus-sum.el (gnus-summary-tool-bar): Set default based on
5101 gmm-tool-bar-style.
5102 (gnus-summary-tool-bar-gnome): Add gmm-customize-mode.
5103
5104 * gnus-group.el (gnus-group-tool-bar): Set default based on
5105 gmm-tool-bar-style.
5106 (gnus-group-tool-bar-gnome): Add gmm-customize-mode.
5107
5108 * gmm-utils.el (gmm-image-directory): Rename variable from
5109 gmm-image-load-path.
5110 (gmm-image-load-path): Use gmm-image-directory.
5111 (gmm-customize-mode): New function.
5112 (gmm-tool-bar-style): New variable.
5113
5114 * gnus-group.el (gnus-group-redraw-when-idle): Rename from
5115 gnus-group-redraw-line-number.
5116 (gnus-group-redraw-check): Simplify.
5117 (gnus-group-tool-bar-update): Remove redraw check.
5118 (gnus-group-make-tool-bar): Add redraw check.
5119
5120 2006-03-01 Michael Piotrowski <mxp@dynalabs.de> (tiny change)
5121
5122 * gnus-art.el (gnus-button): Add missing parentheses.
5123
5124 2006-02-28 Katsumi Yamaoka <yamaoka@jpl.org>
5125
5126 * mm-util.el (mm-with-unibyte-current-buffer): Add note.
5127
5128 2006-02-28 Reiner Steib <Reiner.Steib@gmx.de>
5129
5130 * gnus-art.el (gnus-button): New face.
5131 (gnus-article-button-face): Use it.
5132
5133 * gnus-sum.el (gnus-summary-tool-bar-gnome): Add
5134 gnus-summary-next-page. Re-order.
5135
5136 * gnus-group.el (gnus-group-tool-bar-gnome): prev-node and
5137 next-node are now included.
5138 (gnus-group-redraw-line-number): New internal variable.
5139 (gnus-group-redraw-check): Helper function for updating the tool
5140 bar.
5141 (gnus-group-tool-bar-update): Add gnus-group-redraw-check.
5142
5143 * gmm-utils.el (gmm-tool-bar-item): Add TODO about modifiers.
5144
5145 * spam.el (spam-spamassassin-score-regexp): New internal variable.
5146 (spam-extra-header-to-number, spam-check-spamassassin-headers):
5147 Use it to match format of Spamassassin 3.0 and later. Reported by
5148 IRIE Tetsuya <irie@t.email.ne.jp>.
5149 (spam-check-bogofilter)
5150 (spam-bogofilter-register-with-bogofilter): Fix args of
5151 `gnus-error' calls.
5152
5153 2006-02-28 Reiner Steib <Reiner.Steib@gmx.de>
5154
5155 * gnus-draft.el (gnus-draft-send): Bind message-signature to avoid
5156 unnecessary interaction when sending queued mails. Reported by
5157 TAKAHASHI Yoshio <tkh@jp.fujitsu.com>.
5158
5159 2006-02-27 Reiner Steib <Reiner.Steib@gmx.de>
5160
5161 * gnus-sum.el (gnus-sequence-of-unread-articles): Return nil if
5162 first or last are nil.
5163
5164 2006-02-24 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de>
5165
5166 * nnweb.el (nnweb-gmane-create-mapping): Don't choke on ^M.
5167
5168 2006-02-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
5169
5170 * gnus-int.el (gnus-open-server): Respect gnus-batch-mode.
5171
5172 2006-02-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
5173
5174 * dns.el (query-dns): Protect more against buggy tcp output.
5175
5176 2006-02-24 Reiner Steib <Reiner.Steib@gmx.de>
5177
5178 * nnweb.el (nnweb-type-definition, nnweb-gmane-search): Use new
5179 nov.php.
5180
5181 2006-02-24 Andreas Seltenreich <uwi7@stud.uni-karlsruhe.de>
5182
5183 * nnweb.el (nnweb-type-definition, nnweb-gmane-create-mapping)
5184 (nnweb-gmane-wash-article, nnweb-gmane-search): Fix Gmane web
5185 groups. Kudos to Olly Betts <olly@survex.com> for providing NOV
5186 output on the server side.
5187 (nnweb-google-create-mapping): Update regexps and add some
5188 progress indication.
5189
5190 2006-02-23 Reiner Steib <Reiner.Steib@gmx.de>
5191
5192 * gnus-group.el (gnus-group-tool-bar-gnome): Fix
5193 gnus-agent-toggle-plugged. Re-order icons.
5194 (gnus-group-tool-bar-gnome): Add
5195 gnus-group-{prev,next}-unread-group.
5196 (gnus-group-tool-bar-gnome): Re-order icons.
5197
5198 * gnus-sum.el (gnus-summary-tool-bar-gnome): Move
5199 gnus-summary-insert-new-articles.
5200
5201 * message.el (message-tool-bar-gnome, message-tool-bar-retro): Fix
5202 comments.
5203
5204 * utf7.el (utf7-utf-16-coding-system): Fix comment. utf-16-be is
5205 also available in Emacs 21.3.
5206
5207 * message.el (message-fix-before-sending): Change "Emacs 22" to
5208 "Emacs 23 (unicode)" in comment.
5209
5210 * qp.el (quoted-printable-encode-region): Change "Emacs 22" to
5211 "Emacs 23 (unicode)" in comment.
5212
5213 * mm-util.el: Change "Emacs 22" to "Emacs 23 (unicode)" in
5214 comment.
5215 (mm-coding-system-p): Add comment about no-MULE XEmacs.
5216
5217 * mm-view.el (mm-fill-flowed): Add :version.
5218
5219 2006-02-23 Katsumi Yamaoka <yamaoka@jpl.org>
5220
5221 * gmm-utils.el (gmm-image-load-path): Don't modify image-load-path
5222 and load-path.
5223
5224 2006-02-22 Reiner Steib <Reiner.Steib@gmx.de>
5225
5226 * message.el: Autoload gmm-image-load-path.
5227 (message-tool-bar-retro): Prepend "gnus/" subdirectory to some
5228 icon file names. Use old Emacs 21 "mail_send.xpm" icon for
5229 consitency.
5230
5231 * gmm-utils.el (gmm-image-load-path): Also search in
5232 "../etc/images". Don't set gmm-image-load-path if we don't find
5233 the image.
5234
5235 2006-02-22 Katsumi Yamaoka <yamaoka@jpl.org>
5236
5237 * gmm-utils.el (gmm-image-load-path): Don't make
5238 `gmm-image-load-path' include subdirectories which the second arg
5239 `image' might specify.
5240
5241 * gnus-group.el (gnus-group-tool-bar-retro): Prepend the "gnus/"
5242 subdirectory to icon file names.
5243
5244 * gnus-sum.el (gnus-summary-tool-bar-retro): Ditto.
5245
5246 2006-02-21 Reiner Steib <Reiner.Steib@gmx.de>
5247
5248 * gnus-group.el (gnus-group-make-tool-bar): Add IMAGE argument to
5249 gmm-image-load-path calls.
5250
5251 * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
5252
5253 * message.el (message-make-tool-bar): Ditto.
5254
5255 * mml.el (mml-preview): Added comment concerning tool bar icons.
5256
5257 * gnus-group.el (gnus-group-tool-bar-gnome): Use new icon names.
5258 (gnus-group-make-tool-bar): Use `gmm-image-load-path'.
5259
5260 * gnus-sum.el (gnus-summary-tool-bar-gnome): Use new icon names.
5261 (gnus-summary-make-tool-bar): Use `gmm-image-load-path'.
5262
5263 * message.el (message-tool-bar-gnome): Use new icon names.
5264 (message-make-tool-bar): Use `gmm-image-load-path'.
5265
5266 * gmm-utils.el (gmm-defun-compat, gmm-image-search-load-path): New
5267 functions from MH-E.
5268 (gmm-image-load-path): New variable from MH-E.
5269 (gmm-image-load-path): New function from MH-E. Added arguments
5270 LIBRARY, IMAGE and PATH. Don't modify paths. Don't use
5271 *-image-load-path-called-flag.
5272
5273 2006-02-21 Milan Zamazal <pdm@brailcom.org>
5274
5275 * mm-view.el (mm-view-pkcs7-verify): Implement using smime.el.
5276
5277 2006-02-21 Wolfram Fenske <wolfram.fenske@student.uni-magdeburg.de> (tiny change)
5278
5279 * nnimap.el (nnimap-request-move-article): Change folder back to
5280 source group before deleting.
5281
5282 2006-02-20 Reiner Steib <Reiner.Steib@gmx.de>
5283
5284 * mm-util.el (mm-charset-override-alist): Fix type in doc string.
5285
5286 * gnus-art.el (mm-url-insert-file-contents-external): Autoload
5287 mm-url.
5288
5289 * mm-uu.el (mm-uu-type-alist): Improve `LaTeX'.
5290
5291 2006-02-20 Katsumi Yamaoka <yamaoka@jpl.org>
5292
5293 * rfc2047.el (rfc2047-charset-to-coding-system): Don't check the
5294 coding system which mm-charset-to-coding-system returns for a
5295 given charset is valid.
5296
5297 2006-02-16 Juanma Barranquero <lekktu@gmail.com>
5298
5299 * html2text.el (html2text-remove-tag-list):
5300 * spam-stat.el (spam-stat-buffer-words): Fix typo in docstring.
5301
5302 2006-02-14 Chong Yidong <cyd@stupidchicken.com>
5303
5304 * gnus-cus.el: Revert 2005-10-17 change.
5305
5306 2006-02-17 Katsumi Yamaoka <yamaoka@jpl.org>
5307
5308 * gnus-art.el (article-strip-banner): Call
5309 article-really-strip-banner only when the regexp match is made.
5310
5311 2006-02-16 Katsumi Yamaoka <yamaoka@jpl.org>
5312
5313 * gnus-art.el (article-strip-banner): Use
5314 gnus-extract-address-components instead of
5315 mail-header-parse-addresses to make it work with non-ASCII text;
5316 remove mail-encode-encoded-word-string.
5317
5318 * rfc2231.el (rfc2231-parse-string): Attempt to parse parameter
5319 values which are surrounded with \"...\"; make it never cause a
5320 Lisp error; give up parsing of parameters if it failed in
5321 extracting type.
5322
5323 2006-02-14 Arne Jørgensen <arne@arnested.dk>
5324
5325 * smime.el (smime-cert-by-ldap-1): Fix bug where
5326 `smime-ldap-search' returns results without userCertificates.
5327
5328 2006-02-15 Katsumi Yamaoka <yamaoka@jpl.org>
5329
5330 * mm-util.el (mm-make-temp-file): Don't catch file-error in Emacs.
5331
5332 2006-02-14 Reiner Steib <Reiner.Steib@gmx.de>
5333
5334 * spam.el (spam-check-spamassassin-headers): Adapt format for
5335 Spamassassin 3.0 or later. Reported by ARISAWA Akihiro
5336 <ari@mbf.ocn.ne.jp>.
5337 (spam-list-of-processors): Add spam-use-gmane.
5338
5339 2006-02-14 Katsumi Yamaoka <yamaoka@jpl.org>
5340
5341 * mm-util.el (mm-make-temp-file): Import the Emacs 22 version of
5342 make-temp-file; make it work with XEmacs as well.
5343
5344 * gnus-art.el (gnus-article-browse-html-parts): Use the 3rd arg of
5345 mm-make-temp-file.
5346
5347 * mm-decode.el (mm-display-external): Use the 3rd arg of
5348 mm-make-temp-file.
5349 (mm-create-image-xemacs): Ditto.
5350
5351 2006-02-14 Katsumi Yamaoka <yamaoka@jpl.org>
5352
5353 * gnus-draft.el (gnus-draft-send): Replace message-narrow-to-head
5354 with message-narrow-to-headers.
5355 (gnus-draft-setup): Narrow to header to run message-fetch-field.
5356 (gnus-draft-check-draft-articles): New function.
5357 (gnus-draft-edit-message, gnus-draft-send-message): Use it.
5358
5359 2006-02-13 Reiner Steib <Reiner.Steib@gmx.de>
5360
5361 * gnus-art.el (gnus-article-browse-html-parts):
5362 `hs-show-html-list' should read `gnus-article-browse-html-parts'.
5363 Don't use suffix argument for mm-make-temp-file for Emacs 21
5364 compatibility. Remove useless `format'.
5365
5366 2006-02-13 Andreas Seltenreich <uwi7@stud.uni-karlsruhe.de>
5367
5368 * nnweb.el (nnweb-google-wash-article): Update regexps.
5369 (nnweb-group-alist): Use defvoo instead of defvar.
5370
5371 2006-02-13 Katsumi Yamaoka <yamaoka@jpl.org>
5372
5373 * nnoo.el (nnoo-declare): Don't generate duplicate entries when
5374 re-loading nn* modules.
5375
5376 2006-02-10 Reiner Steib <Reiner.Steib@gmx.de>
5377
5378 * gnus-group.el (gnus-group-make-tool-bar): Remove duplicate check
5379 for `tool-bar-mode' and don't check it's default-value.
5380
5381 * gnus-sum.el (gnus-summary-make-tool-bar): Ditto.
5382
5383 * message.el (message-make-tool-bar): Ditto.
5384
5385 * gnus-art.el (gnus-article-browse-html-parts): Remove useless
5386 `substring'. Shorten tmp-file name.
5387
5388 * gnus.el: Remove bogus comment.
5389
5390 2006-02-10 Hynek Schlawack <hynek@ularx.de>
5391
5392 * gnus-art.el (gnus-article-browse-html-parts): New function.
5393 (gnus-article-browse-html-article): New function for viewing html
5394 articles with a browser.
5395
5396 2006-02-09 Daiki Ueno <ueno@unixuser.org>
5397
5398 * mml2015.el (mml2015-pgg-sign): Enable pgg-text-mode.
5399 (mml2015-pgg-encrypt): Ditto.
5400
5401 * mml1991.el (mml1991-pgg-sign): Enable pgg-text-mode.
5402 (mml1991-pgg-encrypt): Ditto.
5403
5404 2006-02-08 Katsumi Yamaoka <yamaoka@jpl.org>
5405
5406 * nnfolder.el (nnfolder-insert-newsgroup-line): Use
5407 message-make-date instead of current-time-string.
5408
5409 * mm-view.el (mm-inline-message): Don't set gnus-newsgroup-charset
5410 to gnus-decoded which mm-uu might set.
5411
5412 2006-02-08 Katsumi Yamaoka <yamaoka@jpl.org>
5413
5414 * rfc2231.el (rfc2231-parse-string): Sort segmented parameters;
5415 don't decode quoted parameters; remove misimported Emacs code.
5416 Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
5417 (rfc2231-decode-encoded-string): Don't use split-string which
5418 behaves differently according to Emacs version; use
5419 mm-decode-coding-region to convert charset to coding-system.
5420 Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
5421 (rfc2231-encode-string): Remove misimported Emacs code.
5422
5423 2006-02-07 Katsumi Yamaoka <yamaoka@jpl.org>
5424
5425 * gnus-art.el (article-decode-charset): Don't use ignore-errors
5426 when calling mail-header-parse-content-type.
5427 (article-de-quoted-unreadable): Ditto.
5428 (article-de-base64-unreadable): Ditto.
5429 (article-wash-html): Ditto.
5430
5431 * mm-decode.el (mm-dissect-buffer): Don't use ignore-errors when
5432 calling mail-header-parse-content-type and
5433 mail-header-parse-content-disposition.
5434 (mm-find-raw-part-by-type): Don't use ignore-errors when calling
5435 mail-header-parse-content-type.
5436
5437 * mml.el (mml-insert-mime-headers): Use mml-insert-parameter to
5438 insert charset and format parameters; encode description after
5439 inserting it to buffer.
5440 (mml-insert-parameter): Fold lines properly even if a parameter is
5441 segmented into two or more lines; change the max column to 76.
5442
5443 * rfc1843.el (rfc1843-decode-article-body): Don't use
5444 ignore-errors when calling mail-header-parse-content-type.
5445
5446 * rfc2231.el (rfc2231-parse-string): Return at least type if
5447 possible; don't cause an error even if it fails in parsing of
5448 parameters. Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
5449 (rfc2231-encode-string): Don't break lines at the beginning, leave
5450 it to mml-insert-parameter.
5451
5452 * webmail.el (webmail-yahoo-article): Don't use ignore-errors when
5453 calling mail-header-parse-content-type.
5454
5455 2006-02-06 Reiner Steib <Reiner.Steib@gmx.de>
5456
5457 * spam-report.el (spam-report-gmane-use-article-number):
5458 Improve doc string.
5459 (spam-report-gmane-internal): Check if a suitable header was found
5460 in the article.
5461
5462 2006-02-04 Katsumi Yamaoka <yamaoka@jpl.org>
5463
5464 * rfc2231.el (rfc2231-parse-string): Revert 2006-02-03 change.
5465 (rfc2231-encode-string): Make param*=value always begin with LWSP.
5466
5467 2006-02-05 Romain Francoise <romain@orebokech.com>
5468
5469 Update copyright notices of all files in the gnus directory.
5470
5471 2006-02-03 Andreas Seltenreich <uwi7@stud.uni-karlsruhe.de>
5472
5473 * nnweb.el (nnweb-request-group): Avoid growing overview files.
5474
5475 2006-02-03 Katsumi Yamaoka <yamaoka@jpl.org>
5476
5477 * rfc2231.el (rfc2231-parse-string): Add missing semicolons to
5478 segmented lines of parameter value to cope with Thunderbird 1.5
5479 bug (cf. https://bugzilla.mozilla.org/show_bug.cgi?id=323318).
5480 Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
5481 (rfc2231-encode-string): Don't make lines exceeding 76 column.
5482
5483 2006-02-01 Max Froumentin <max@lapin-bleu.net> (tiny change)
5484
5485 * mml.el (mml-generate-mime-1): Correct the order of inline signed
5486 parts.
5487
5488 2006-01-31 Andreas Seltenreich <uwi7@stud.uni-karlsruhe.de>
5489
5490 * nnweb.el (nnweb-group-alist): Use defvar instead of defvoo,
5491 there's only one active file for all servers.
5492 (nnweb-request-scan): Make sure nnweb-articles is initialized on
5493 solid groups. Gnus might have used a FAST request to select the group.
5494 (nnweb-request-group, nnweb-google-parse-1): Don't keep nnweb-type
5495 and nnweb-search redundantly in the active file.
5496 (nnweb-request-list): Don't list bogus groups. There can only be one.
5497 (nnweb-request-create-group): Don't use ARGS.
5498 (nnweb-possibly-change-server, nnweb-request-group): Remove some
5499 initialisations. Let nnoo do the work.
5500
5501 2006-01-31 Katsumi Yamaoka <yamaoka@jpl.org>
5502
5503 * mm-uu.el (mm-uu-emacs-sources-extract, mm-uu-diff-extract):
5504 Say the part has been decoded.
5505
5506 * mm-view.el (mm-display-inline-fontify): Get decoded part rightly.
5507
5508 2006-01-31 Kevin Ryde <user42@zip.com.au>
5509
5510 * mailcap.el (mailcap-viewer-passes-test): Don't put "(nil t)" into
5511 mailcap-viewer-test-cache when there's no 'test clause, since that
5512 will invert the meaning of a "nil" test previously determined by
5513 mailcap-mailcap-entry-passes-test.
5514
5515 2006-01-30 Katsumi Yamaoka <yamaoka@jpl.org>
5516
5517 * gnus-group.el: Bind tool-bar-mode instead of tool-bar-map when
5518 compiling.
5519
5520 * gnus-sum.el: Ditto.
5521
5522 * message.el: Don't bind tool-bar-map when compiling.
5523
5524 2006-01-30 Reiner Steib <Reiner.Steib@gmx.de>
5525
5526 * nnweb.el (nnweb-google-parse-1): Clarify some comments.
5527
5528 2006-01-30 Andreas Seltenreich <uwi7@stud.uni-karlsruhe.de>
5529
5530 * nnweb.el (nnweb-type-definition, nnweb-google-parse-1)
5531 (nnweb-google-create-mapping, nnweb-google-search): Adapt to
5532 current Google Groups.
5533
5534 2006-01-26 Reiner Steib <Reiner.Steib@gmx.de>
5535
5536 * gnus-sum.el (gnus-summary-make-tool-bar): Add checks for XEmacs
5537 and tool-bar-mode.
5538
5539 * gnus-group.el (gnus-group-make-tool-bar): Add checks for XEmacs
5540 and tool-bar-mode.
5541
5542 * message.el (message-tool-bar-update): Simplify.
5543 (message-make-tool-bar): Add checks for XEmacs and tool-bar-mode.
5544
5545 * gnus-sum.el (gnus-summary-tool-bar-update): Check for
5546 gnus-summary-buffer.
5547 (gnus-summary-tool-bar-gnome): Use "reply-author" icon for
5548 gnus-summary-reply.
5549
5550 * gmm-utils.el (gmm): Add :version.
5551
5552 2006-01-26 Katsumi Yamaoka <yamaoka@jpl.org>
5553
5554 * Makefile.in (clean): New rule.
5555 (distclean): Use it.
5556
5557 2006-01-26 Steve Youngs <steve@sxemacs.org>
5558
5559 * gmm-utils.el (gmm-tool-bar-item, gmm-tool-bar-zap-list): Don't
5560 autoload.
5561
5562 2006-01-26 Katsumi Yamaoka <yamaoka@jpl.org>
5563
5564 * gmm-utils.el (gmm-verbose): Add :group.
5565
5566 2006-01-25 Reiner Steib <Reiner.Steib@gmx.de>
5567
5568 * message.el: Change some comments WRT tool-bars.
5569
5570 * gnus-sum.el (gnus-summary-tool-bar)
5571 (gnus-summary-tool-bar-gnome, gnus-summary-tool-bar-retro)
5572 (gnus-summary-tool-bar-zap-list): New variables.
5573 (gnus-summary-make-tool-bar): Complete rewrite using
5574 `gmm-tool-bar-from-list'.
5575
5576 * gnus-group.el (gnus-group-tool-bar, gnus-group-tool-bar-gnome)
5577 (gnus-group-tool-bar-retro, gnus-group-tool-bar-zap-list): New
5578 variables.
5579 (gnus-group-make-tool-bar): Complete rewrite using
5580 `gmm-tool-bar-from-list'.
5581 (gnus-group-tool-bar-update): New function.
5582
5583 * message.el (message-mode-field-menu): Add "Show hidden Headers".
5584
5585 2006-01-25 Katsumi Yamaoka <yamaoka@jpl.org>
5586
5587 * mm-uu.el (mm-uu-dissect-text-parts): Ignore it if a given part
5588 is dissected into a single part of which the type is the same as
5589 the given one; decode charset.
5590
5591 2006-01-21 Kevin Ryde <user42@zip.com.au>
5592
5593 * mailcap.el (mailcap-parse-mailcap-extras): "test" key must go
5594 into alists as symbol not string, since that's what
5595 mailcap-viewer-passes-test and mailcap-mailcap-entry-passes-test
5596 look for.
5597
5598 2006-01-24 Reiner Steib <Reiner.Steib@gmx.de>
5599
5600 * gmm-utils.el (gmm-tool-bar-item): Add "Separator".
5601 (gmm-tool-bar-from-list): Suppress tooltip for `gmm-ignore'.
5602
5603 * message.el (message-tool-bar-gnome): Use gmm-ignore.
5604
5605 2006-01-24 Katsumi Yamaoka <yamaoka@jpl.org>
5606
5607 * gnus-art.el (gnus-mime-security-button-commands): New variable.
5608 (gnus-mime-security-button-menu): New definition.
5609 (gnus-mime-security-button-map): Use them.
5610 (gnus-mime-security-button-menu): New function.
5611 (gnus-insert-mime-security-button): Addition to help echo.
5612 (gnus-mime-security-run-function, gnus-mime-security-save-part)
5613 (gnus-mime-security-pipe-part): New functions.
5614
5615 * mm-uu.el (mm-uu-buttonize-original-text-parts): Remove.
5616 (mm-uu-dissect-text-parts): Revert a part of 2006-01-23 change.
5617
5618 * mm-decode.el (mm-handle-set-disposition): Remove.
5619 (mm-handle-set-description): Remove.
5620
5621 2006-01-24 Katsumi Yamaoka <yamaoka@jpl.org>
5622
5623 * mm-view.el (mm-w3m-standalone-supports-m17n-p): New variable.
5624 (mm-w3m-standalone-supports-m17n-p): New function.
5625 (mm-inline-text-html-render-with-w3m-standalone): Use it to alter
5626 w3m usage.
5627
5628 * gnus-art.el (gnus-article-wash-html-with-w3m-standalone): Use
5629 mm-w3m-standalone-supports-m17n-p to alter w3m usage.
5630
5631 2006-01-23 Reiner Steib <Reiner.Steib@gmx.de>
5632
5633 * message.el (message-tool-bar-zap-list): Use
5634 gmm-tool-bar-zap-list as custom type.
5635 (message-tool-bar-update): New function.
5636 (message-tool-bar, message-tool-bar-gnome)
5637 (message-tool-bar-retro): Add message-tool-bar-update.
5638 (message-tool-bar-gnome): Add flyspell-buffer.
5639
5640 * gnus-util.el (gnus-error): Describe `args'.
5641
5642 * gmm-utils.el (gmm-error): Describe `args'.
5643 (gmm-tool-bar-zap-list): New widget.
5644 (gmm-tool-bar-from-list): Improve description of `zap-list'.
5645
5646 2006-01-23 Katsumi Yamaoka <yamaoka@jpl.org>
5647
5648 * mm-uu.el (mm-uu-buttonize-original-text-parts): New variable.
5649 (mm-uu-dissect-text-parts): Buttonize original text parts; reduce
5650 the number of recursive calls.
5651
5652 * mm-decode.el (mm-handle-set-disposition): New macro.
5653 (mm-handle-set-description): New macro.
5654
5655 2006-01-23 Katsumi Yamaoka <yamaoka@jpl.org>
5656
5657 * mm-uu.el (mm-uu-dissect-text-parts): Decode content transfer
5658 encoding.
5659
5660 2006-01-20 Reiner Steib <Reiner.Steib@gmx.de>
5661
5662 * message.el (message-tool-bar-zap-list, message-tool-bar)
5663 (message-tool-bar-gnome, message-tool-bar-retro): New variables.
5664 (message-tool-bar-local-item-from-menu): Remove.
5665 (message-tool-bar-map): Replace by `message-make-tool-bar'.
5666 (message-make-tool-bar): New function.
5667 (message-mode): Use `message-make-tool-bar'.
5668
5669 * gmm-utils.el: New file.
5670 (gmm-verbose, gmm-message, gmm-error): From gnus-utils.el.
5671 (gmm-lazy): New widget copied from `nnmail.el'.
5672 (gmm-tool-bar-from-list): New function for creating customizable
5673 tool bars.
5674 (gmm-tool-bar-from-list): Fix typos in doc string. Remove debug
5675 output.
5676 (gmm): Add :prefix to defgroup.
5677
5678 2006-01-20 Per Abrahamsen <abraham@dina.kvl.dk>
5679
5680 * gmm-utils.el (gmm-widget-p): New function.
5681
5682 2006-01-20 Reiner Steib <Reiner.Steib@gmx.de>
5683
5684 * mml.el (mml-attach-file): Describe `description' in doc string.
5685 (mml-menu): Add Emacs MIME manual and PGG manual.
5686
5687 2006-01-20 Richard M. Stallman <rms@gnu.org>
5688
5689 * mm-url.el (mm-url-load-url): Require url-parse and url-vars.
5690
5691 2006-01-20 Kevin Greiner <kevin.greiner@compsol.cc>
5692
5693 * nntp.el (nntp-end-of-line): Doc fix.
5694
5695 2006-01-20 Chong Yidong <cyd@stupidchicken.com>
5696
5697 * imap.el (imap-open): Handle case where buffer is a buffer
5698 object.
5699
5700 2005-01-20 Stefan Monnier <monnier@iro.umontreal.ca>
5701
5702 * gnus-delay.el (gnus-delay): Don't autoload.
5703 It's useless and could trigger a bug in cus-dep.el causing ldefs-boot
5704 to be re-loaded when customizing the `gnus-delay' group.
5705
5706 2005-01-20 Chong Yidong <cyd@stupidchicken.com>
5707
5708 * message.el (message-insert-citation-line): Use newlines.
5709
5710 2006-01-19 Katsumi Yamaoka <yamaoka@jpl.org>
5711
5712 * mm-bodies.el (mm-decode-body): Don't decode decoded body.
5713
5714 * mm-uu.el (mm-uu-dissect-text-parts): Dissect dissected parts.
5715
5716 2006-01-19 Mark D. Baushke <mdb@gnu.org>
5717
5718 * pgg-gpg.el (pgg-gpg-encrypt-region): Add --textmode to gpg args.
5719
5720 2006-01-17 Katsumi Yamaoka <yamaoka@jpl.org>
5721
5722 * mm-decode.el (mm-inlined-types): Add application/pgp.
5723 (mm-automatic-display): Ditto.
5724
5725 * mm-uu.el (mm-uu-dissect-text-parts): Recognize application/pgp
5726 part as text.
5727
5728 2006-01-16 Katsumi Yamaoka <yamaoka@jpl.org>
5729
5730 * nnrss.el: Update copyright.
5731 (nnrss-opml-import): Query whether to subscribe to each entry.
5732
5733 * gnus-art.el:
5734 * gnus-sum.el:
5735 * mm-uu.el:
5736 * mm-view.el: Update copyright.
5737
5738 2006-01-16 Reiner Steib <Reiner.Steib@gmx.de>
5739
5740 * message.el (message-info): New function.
5741 (message-mode-menu): Add it.
5742 Update copyright.
5743
5744 * ChangeLog: Fix and update copyright.
5745
5746 2006-01-13 Romain Francoise <romain@orebokech.com>
5747
5748 * message.el (message-forward-subject-name-subject): Prefer the
5749 address to 'nowhere' if the sender has no name.
5750 Fix typo. Update copyright year.
5751
5752 2006-01-13 Katsumi Yamaoka <yamaoka@jpl.org>
5753
5754 * gnus-art.el (article-wash-html): Use
5755 gnus-summary-show-article-charset-alist if a numeric arg is given.
5756 (gnus-article-wash-html-with-w3m-standalone): New function.
5757
5758 * mm-view.el (mm-text-html-renderer-alist): Map w3m-standalone to
5759 mm-inline-text-html-render-with-w3m-standalone.
5760 (mm-text-html-washer-alist): Map w3m-standalone to
5761 gnus-article-wash-html-with-w3m-standalone.
5762 (mm-inline-text-html-render-with-w3m-standalone): New function.
5763
5764 2006-01-12 Reiner Steib <Reiner.Steib@gmx.de>
5765
5766 * mm-uu.el (mm-uu-type-alist): Fix previous message-marks commit.
5767 Improve LaTeX.
5768
5769 2006-01-10 Katsumi Yamaoka <yamaoka@jpl.org>
5770
5771 * nnrss.el (nnrss-wash-html-in-text-plain-parts): New variable.
5772 (nnrss-request-article): Render text/plain parts as HTML.
5773
5774 * gnus-art.el (gnus-article-wash-html-with-w3m): No need to narrow
5775 the buffer.
5776
5777 2006-01-08 Reiner Steib <Reiner.Steib@gmx.de>
5778
5779 * gnus-cus.el (gnus-group-parameters): Sync posting-style with
5780 custom definition of `gnus-posting-styles'.
5781
5782 * gnus-start.el (gnus-gnus-to-quick-newsrc-format): Bind
5783 print-circle. Suggested by Kalle Olavi Niemitalo <kon@iki.fi>.
5784
5785 2006-01-05 Reiner Steib <Reiner.Steib@gmx.de>
5786
5787 * gnus-group.el (gnus-useful-groups): Use Gmane for ding.
5788 Use nntp for bug archive.
5789
5790 2006-01-05 Katsumi Yamaoka <yamaoka@jpl.org>
5791
5792 * nnrss.el (nnrss-request-article): Fix the way to fill text/plain
5793 parts.
5794 (nnrss-normalize-date): New function converts ISO 8601 date into
5795 RFC822 style. Suggested by Mark Plaksin <happy@mcplaksin.org>.
5796 (nnrss-check-group): Use it.
5797
5798 2006-01-01 Katsumi Yamaoka <yamaoka@jpl.org>
5799
5800 * gnus-sum.el (gnus-summary-work-articles): Remove useless `min'.
5801
5802 * nnrss.el (nnrss-fetch): Make it fail gracefully when it can't
5803 fetch a feed. Suggested by Mark Plaksin <happy@mcplaksin.org>.
5804 (nnrss-insert-w3): Ditto.
5805
5806 2005-12-22 Katsumi Yamaoka <yamaoka@jpl.org>
5807
5808 * gnus-uu.el (gnus-uu-digest-mail-forward): Reverse the order of
5809 the articles to be forwarded including the case where neither a
5810 number of articles nor a region is specified.
5811
5812 2005-12-21 Katsumi Yamaoka <yamaoka@jpl.org>
5813
5814 * nnrss.el (nnrss-request-article): Fix last change; fill
5815 text/plain parts.
5816
5817 2005-12-20 Katsumi Yamaoka <yamaoka@jpl.org>
5818
5819 * nnrss.el (nnrss-request-article): Replace <br />s with newlines
5820 in text/plain part.
5821 (nnrss-check-group): Don't add excessive newline to dc:subject.
5822
5823 2005-12-19 Mark Plaksin <happy@mcplaksin.org> (tiny change)
5824
5825 * nnrss.el (nnrss-check-group): Put the RSS dc:subject in the
5826 article.
5827
5828 2005-12-18 Reiner Steib <Reiner.Steib@gmx.de>
5829
5830 * nnml.el: Don't require gnus-bcklg. Autoload it.
5831 (nnml-use-compressed-files, nnml-save-mail): Support other
5832 comression programs such as bzip2.
5833
5834 2005-12-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
5835
5836 * dns.el (query-dns): Make sure we check the buffer size before
5837 removing tcp headers.
5838
5839 2005-12-16 Katsumi Yamaoka <yamaoka@jpl.org>
5840
5841 * gnus-art.el (gnus-article-delete-text-of-type): Enable it to
5842 remove MIME buttons associated with multipart/alternative parts.
5843 (gnus-mime-display-alternative): Tag buttons using `article-type'
5844 text property.
5845
5846 * gnus-msg.el (gnus-copy-article-buffer): Remove MIME buttons
5847 associated with multipart/alternative parts.
5848
5849 * gnus-art.el (gnus-signature-separator): Fix custom type.
5850
5851 * mm-decode.el (mm-inlined-types): Fix custom type.
5852 (mm-keep-viewer-alive-types): Ditto.
5853 (mm-automatic-display): Ditto.
5854 (mm-attachment-override-types): Ditto.
5855 (mm-inline-override-types): Ditto.
5856 (mm-automatic-external-display): Ditto.
5857
5858 2005-12-15 Reiner Steib <Reiner.Steib@gmx.de>
5859
5860 * spam-report.el (spam-report-user-mail-address)
5861 (spam-report-user-agent): New variables.
5862 (spam-report-url-ping-plain): Use spam-report-user-agent.
5863
5864 2005-12-14 Ralf Angeli <angeli@iwi.uni-sb.de>
5865
5866 * gnus-art.el (gnus-button-handle-custom): Do not just use
5867 `customize-apropos' for any "M-x customize-*" button but the
5868 function called for. Accept both the function name and its
5869 argument in order to achieve this.
5870 (gnus-button-alist): Remove support for "custom:" URL's. Pass
5871 function name to `gnus-button-handle-custom' in case of "M-x
5872 customize-*" buttons.
5873
5874 2005-12-12 Katsumi Yamaoka <yamaoka@jpl.org>
5875
5876 * gnus-art.el (gnus-buttonized-mime-types): Mention addition of
5877 multipart/alternative and add xref to mm-discouraged-alternatives
5878 in doc string.
5879
5880 * mm-decode.el (mm-discouraged-alternatives): Add xref to
5881 gnus-buttonized-mime-types in doc string.
5882
5883 2005-12-08 Reiner Steib <Reiner.Steib@gmx.de>
5884
5885 * mm-decode.el (mm-discouraged-alternatives): Fix custom type.
5886 Suggest image/.* in the doc string.
5887
5888 2005-12-12 Reiner Steib <Reiner.Steib@gmx.de>
5889
5890 * mm-uu.el (mm-uu-type-alist): Don't depend on message.el for
5891 message-marks (Debian bug #342521).
5892
5893 2005-12-12 Simon Josefsson <jas@extundo.com>
5894
5895 * password.el (password-read-from-cache): Add.
5896 (password-read): Use it.
5897
5898 2005-12-12 Katsumi Yamaoka <yamaoka@jpl.org>
5899
5900 * rfc2047.el (rfc2047-charset-to-coding-system): Recognize
5901 us-ascii as a MIME charset.
5902
5903 * mm-bodies.el (mm-decode-content-transfer-encoding): Protect
5904 against the case where the 2nd arg TYPE is nil.
5905
5906 2005-12-09 Reiner Steib <Reiner.Steib@gmx.de>
5907
5908 * pop3.el (pop3-stream-type): Fix custom version.
5909
5910 * mm-uu.el (mm-uu-type-alist): Simplify uu regexp.
5911
5912 2005-12-09 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
5913
5914 * mm-decode.el (mm-display-external): Add missing cdr.
5915
5916 2005-12-07 Katsumi Yamaoka <yamaoka@jpl.org>
5917
5918 * mm-decode.el (mm-display-external): Use nametemplate (defined in
5919 RFC1524) if it is in mailcap or add a suffix according to
5920 mailcap-mime-extensions when generating a temp filename; postpone
5921 deleting a temp file for 2 seconds for some wrappers, shell
5922 scripts, and so on, which might exit right after having started a
5923 viewer command as a background job.
5924
5925 2005-12-06 Reiner Steib <Reiner.Steib@gmx.de>
5926
5927 * nntp.el (nntp-marks-directory): Fix custom group.
5928
5929 * gnus-fun.el (gnus-face-from-file): Decrease quant in smaller
5930 steps when < 10.
5931
5932 * gnus-start.el (gnus-no-server-1): Mention
5933 `gnus-level-default-subscribed' in doc string.
5934
5935 2005-12-02 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
5936
5937 * mm-view.el (mm-inline-text-html-render-with-w3m): Fix misplaced
5938 parens.
5939
5940 2005-11-26 Dave Love <fx@gnu.org>
5941
5942 * tls.el (open-tls-stream): Rename arg SERVICE to PORT.
5943 (tls-program, tls-success): Provide openssl alternative.
5944
5945 * starttls.el: Doc fixes.
5946 (starttls-open-stream-gnutls, starttls-open-stream): Rename arg
5947 SERVICE to PORT.
5948
5949 * pop3.el (pop3-open-server) <ssl>: Clarify a loop. Deal with
5950 port null or service name.
5951 (starttls-negotiate): Autoload.
5952
5953 2005-11-25 Katsumi Yamaoka <yamaoka@jpl.org>
5954
5955 * message.el (message-kill-to-signature): Fix interactive spec.
5956
5957 2005-11-24 Katsumi Yamaoka <yamaoka@jpl.org>
5958
5959 * pop3.el (pop3-open-server): Recognize a string as a service name.
5960
5961 2005-11-24 Pascal Rigaux <pixel@mandriva.com> (tiny change)
5962
5963 * rfc2231.el (rfc2231-parse-string): Support non-ascii chars.
5964
5965 2005-11-23 Dave Love <fx@gnu.org>
5966
5967 Add pop3s, pop3/starttls.
5968
5969 * pop3.el (pop3-authentication-scheme): Clarify doc.
5970 (open-tls-stream, starttls-open-stream): Autoload.
5971 (pop3-stream-type): New.
5972 (pop3-open-server): Use it.
5973
5974 * mail-source.el (mail-sources): Fix some :types. Add stream type
5975 for POP.
5976 (mail-source-keyword-map): Add :stream for POP.
5977 (mail-source-fetch-pop): Use pop3-stream-type.
5978
5979 2005-11-22 Katsumi Yamaoka <yamaoka@jpl.org>
5980
5981 * nnmail.el (nnmail-fancy-expiry-target): Use current-time instead
5982 of current-time-string.
5983
5984 2005-11-20 Stefan Schimanski <schimmi@debian.org> (tiny change)
5985
5986 * nnmail.el (nnmail-fancy-expiry-target): Protect against invalid
5987 date header.
5988
5989 2005-11-19 Kevin Greiner <kevin.greiner@compsol.cc>
5990
5991 * gnus-sum.el (gnus-fetch-old-headers): Updated docs to warn that
5992 it can seriously impact performance as it bypasses the agent's
5993 local caches.
5994
5995 2005-11-19 Kevin Greiner <kevin.greiner@compsol.cc>
5996
5997 * gnus-agent.el (gnus-agent-possibly-synchronize-flags): A server
5998 must be explicitly online rather than "not explicitly offline" for
5999 its flags to be synchronized.
6000
6001 * gnus-sum.el (gnus-summary-remove-process-mark): Always return t so
6002 that gnus-uu-unmark-thread will function correctly.
6003
6004 * gnus-group.el (gnus-total-fetched-for): Reduced cutoff so that
6005 1024K is instead displayed as 1M.
6006
6007 2005-11-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
6008
6009 * flow-fill.el (fill-flowed): Bind adaptive-fill-mode to nil.
6010
6011 2005-11-16 Boris Samorodov <bsam@ipt.ru> (tiny change)
6012
6013 * imap.el (imap-kerberos4-open): Ignore SSL stuff.
6014
6015 2005-11-13 Kevin Greiner <kevin.greiner@compsol.cc>
6016
6017 * gnus-agent.el (gnus-agent-read-local): Trivial fix to format of
6018 error message to display actual error condition.
6019 (gnus-agent-save-local): Avoid saving symbols that are bound to
6020 nil as they simply result in a warning message in
6021 gnus-agent-read-local.
6022
6023 2005-11-13 Katsumi Yamaoka <yamaoka@jpl.org>
6024
6025 * gnus-start.el (gnus-dribble-read-file): Use make-local-variable
6026 rather than make-variable-buffer-local for file-precious-flag.
6027
6028 2005-11-12 Kevin Greiner <kevin.greiner@compsol.cc>
6029
6030 * gnus-agent.el (gnus-agent-braid-nov): Now tests new nov entries
6031 for duplicates which are removed. The invalid sort check then
6032 triggers a rescan after the sort as sorting may have moved
6033 duplicate entries such that they can be cheaply detected.
6034
6035 2005-11-13 Katsumi Yamaoka <yamaoka@jpl.org>
6036
6037 * gnus-start.el (gnus-dribble-read-file): Quote file-precious-flag.
6038
6039 2005-11-12 Kevin Greiner <kevin.greiner@compsol.cc>
6040
6041 * gnus-agent.el (gnus-agent-article-alist-save-format): Changed
6042 internal variable to a custom variable. Changed default value
6043 from compressed(2) to uncompressed(1).
6044 (gnus-agent-read-agentview): Reversed revision 7.8 to restore
6045 support for uncompressed agentview files. Taken together, reading
6046 the agentview file should now be 6-7 times faster.
6047
6048 2005-11-11 Jan Nieuwenhuizen <janneke@gnu.org>
6049
6050 * gnus-start.el (gnus-dribble-read-file): Set file-precious-flag,
6051 as a buffer-local variable. This avoids creating truncated
6052 dribble files as a result of a hang up, eg.
6053
6054 2005-12-09 Reiner Steib <Reiner.Steib@gmx.de>
6055
6056 * gnus-start.el (gnus-start-draft-setup): Enforce
6057 `gnus-draft-mode' for nndraft:drafts at startup.
6058
6059 * gnus.el (gnus-splash): Change custom group.
6060 (gnus-group-get-parameter, gnus-group-parameter-value): Describe
6061 allow-list argument.
6062
6063 * gnus-agent.el (gnus-agent-article-alist-save-format): Format doc
6064 string.
6065
6066 2005-12-06 Reiner Steib <Reiner.Steib@gmx.de>
6067
6068 * gnus-art.el (gnus-default-article-saver): Add user-defined
6069 `function' to custom type.
6070
6071 2005-10-30 Chong Yidong <cyd@stupidchicken.com>
6072
6073 * imap.el (imap-open): Handle case where buffer is a buffer
6074 object.
6075
6076 2005-11-29 Reiner Steib <Reiner.Steib@gmx.de>
6077
6078 * gnus-cache.el (gnus-cache-rename-group): Wrap doc strings and
6079 long lines.
6080 (gnus-cache-delete-group): Wrap doc strings.
6081
6082 * gnus-agent.el (gnus-agent-rename-group)
6083 (gnus-agent-delete-group): Wrap doc strings.
6084
6085 2005-11-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
6086
6087 * gnus-start.el (gnus-1): Add "native" to
6088 gnus-predefined-server-alist.
6089
6090 * gnus.el (gnus-method-to-server): Don't add "native" to the
6091 lists here, because that leads to problems when
6092 gnus-select-method is bound.
6093
6094 2005-11-09 Simon Josefsson <jas@extundo.com>
6095
6096 * gnus-sum.el (gnus-article-sort-by-date-reverse): Remove,
6097 use (not sort-by-date) instead.
6098
6099 2005-11-30 Stefan Monnier <monnier@iro.umontreal.ca>
6100
6101 * gnus-delay.el (gnus-delay-group): Don't autoload.
6102 It's useless and could trigger a bug in cus-dep.el causing ldefs-boot
6103 to be re-loaded when customizing the `gnus-delay' group.
6104
6105 2005-11-19 Chong Yidong <cyd@stupidchicken.com>
6106
6107 * message.el: Revert last changes.
6108 (message-insert-citation-line): Use newlines.
6109
6110 2005-11-17 Chong Yidong <cyd@stupidchicken.com>
6111
6112 * message.el (message-courtesy-message)
6113 (message-mark-insert-begin, message-mark-insert-end)
6114 (message-elide-ellipsis, message-cancel-message)
6115 (message-add-header, message-change-subject)
6116 (message-cross-post-followup-to-header)
6117 (message-cross-post-insert-note, message-reduce-to-to-cc)
6118 (message-widen-reply, message-delete-not-region)
6119 (message-kill-to-signature, message-insert-signature)
6120 (message-insert-importance-high, message-insert-importance-low)
6121 (message-insert-or-toggle-importance)
6122 (message-insert-disposition-notification-to)
6123 (message-indent-citation, message-yank-original)
6124 (message-cite-original-without-signature, message-cite-original)
6125 (message-insert-citation-line, message-position-on-field)
6126 (message-fix-before-sending, message-send-mail-partially)
6127 (message-send-mail, message-send-mail-with-sendmail)
6128 (message-send-mail-with-qmail, message-send-news)
6129 (message-check-news-header-syntax, message-generate-headers)
6130 (message-insert-courtesy-copy, message-fill-address)
6131 (message-fill-header, message-shorten-references)
6132 (message-setup-1, message-cancel-news)
6133 (message-forward-make-body-plain, message-forward-make-body-mime)
6134 (message-forward-make-body-mml, message-encode-message-body)
6135 (message-forward-make-body-digest-plain)
6136 (message-forward-make-body-digest-mime)
6137 (message-use-alternative-email-as-from): Insert `hard-newline'
6138 instead of ordinary newlines.
6139
6140 2005-11-09 Katsumi Yamaoka <yamaoka@jpl.org>
6141
6142 * message.el (message-generate-headers): Downcase the argument
6143 given to message-check-element.
6144
6145 2005-11-08 Kevin Greiner <kevin.greiner@compsol.cc>
6146
6147 * nntp.el (nntp-authinfo-rejected): New error condition.
6148 (nntp-wait-for): Use new error condition to signal authentication
6149 error.
6150 (nntp-retrieve-data): Rethrow new error condition to break out of
6151 recursive call to nntp-send-authinfo.
6152
6153 2005-11-08 Romain Francoise <romain@orebokech.com>
6154
6155 * gnus-sum.el (gnus-summary-catchup-and-goto-prev-group): New function.
6156 (gnus-summary-exit-map): Bind to `Z p'.
6157 (gnus-summary-make-menu-bar): Add menu item.
6158
6159 2005-11-02 Reiner Steib <Reiner.Steib@gmx.de>
6160
6161 * gnus-art.el (gnus-article-treat-custom): Add `first'.
6162 (gnus-treat-*): Add `first' in all doc strings.
6163
6164 * gnus-group.el (gnus-group-compact-group): Fix typo.
6165
6166 2005-11-01 Katsumi Yamaoka <yamaoka@jpl.org>
6167
6168 * gnus.el (gnus-parameters-case-fold-search): New variable.
6169 (gnus-parameters-get-parameter): Use it.
6170
6171 * gnus-score.el (gnus-home-score-file): Doc fix.
6172
6173 2005-11-01 Xavier Maillard <zedek@gnu-rox.org> (tiny change)
6174
6175 * gnus-score.el (gnus-update-score-entry-dates): Doc fix.
6176
6177 2005-10-31 Katsumi Yamaoka <yamaoka@jpl.org>
6178
6179 * mm-util.el (mm-special-display-p): New function.
6180
6181 * mml.el (mml-preview): Use it; doc fix.
6182
6183 2005-10-29 Romain Francoise <romain@orebokech.com>
6184
6185 * message.el (message-fix-before-sending): Fix comment.
6186
6187 2005-10-29 Jari Aalto <jari.aalto@cante.net>
6188
6189 * gnus-sum.el (gnus-article-sort-by-date-reverse): New function.
6190
6191 2005-10-29 Jari Aalto <jari.aalto@cante.net>
6192
6193 * score-mode.el (gnus-score-edit-done-hook): Introduce variable.
6194 Used in gnus-score.el.
6195
6196 2005-10-28 Reiner Steib <Reiner.Steib@gmx.de>
6197
6198 * mm-util.el (mm-codepage-setup): Remove bogus alias test.
6199
6200 2005-10-27 Reiner Steib <Reiner.Steib@gmx.de>
6201
6202 * flow-fill.el (fill-flowed-encode-tests): Restore trailing
6203 whitespace removed in revision 7.8. Use concatenated string to
6204 protect trailing whitespace.
6205
6206 2005-10-27 Jouni K. Seppänen <jks@iki.fi>
6207
6208 * nnimap.el (nnimap-search-uids-not-since-is-evil): Add variable.
6209 (nnimap-request-expire-articles): Use it to avoid sending 'UID
6210 SEARCH UID ... NOT SINCE' queries, for inefficient servers like
6211 Courier IMAP ("some version from 2004"). Mostly based on similar
6212 code in the same function.
6213
6214 2005-10-26 Didier Verna <didier@xemacs.org>
6215
6216 * gnus-group.el (gnus-group-compact-group): Invalidate original
6217 article buffer.
6218 * gnus-srvr.el (gnus-server-compact-server): Ditto.
6219 * nnml.el (nnml-request-compact-group): Handle self Xref: field in
6220 NOV database and in article itself.
6221 Invalidate article backlog.
6222
6223 2005-10-26 Reiner Steib <Reiner.Steib@gmx.de>
6224
6225 * mm-uu.el (mm-uu-hide-markers): Fix XEmacs case.
6226
6227 2005-10-26 Simon Josefsson <jas@extundo.com>
6228
6229 * flow-fill.el (fill-flowed): Flow-fill unquoted lines too, revert
6230 part of 2004-07-25 change.
6231
6232 2005-10-26 Katsumi Yamaoka <yamaoka@jpl.org>
6233
6234 * message.el (message-display-completion-list): New function.
6235 (message-expand-group): Use it; make sure the Completions buffer
6236 is modifiable.
6237
6238 2005-10-30 Chong Yidong <cyd@stupidchicken.com>
6239
6240 * imap.el (imap-open): Handle case where buffer is a buffer object.
6241
6242 2005-10-24 Eli Zaretskii <eliz@gnu.org>
6243
6244 * pgg-def.el:
6245 * pgg-gpg.el:
6246 * pgg-parse.el:
6247 * pgg-pgp.el:
6248 * pgg-pgp5.el:
6249 * pgg.el: Move to the parent lisp directory.
6250
6251 2005-10-23 Chong Yidong <cyd@stupidchicken.com>
6252
6253 * gnus-sum.el (gnus-ignored-from-addresses): Handle case where
6254 user-mail-name is an empty string.
6255
6256 2005-10-25 Reiner Steib <Reiner.Steib@gmx.de>
6257
6258 * gnus-score.el (gnus-default-adaptive-score-alist): Set defaults
6259 depending on gnus-score-decay-constant.
6260
6261 * encrypt.el (encrypt-insert-file-contents)
6262 (encrypt-write-file-contents): Don't use `gnus-message'.
6263
6264 * mm-uu.el (mm-uu-verbatim-marks-extract): Add four start and end
6265 arguments.
6266 (mm-uu-type-alist): Add message-marks and insert-marks. Pass
6267 arguments to mm-uu-verbatim-marks-extract.
6268 (mm-uu-hide-markers): New variable.
6269 (mm-uu-extract): Use face similar to `gnus-cite-3'.
6270
6271 * gnus-fun.el (gnus-convert-image-to-x-face-command)
6272 (gnus-convert-image-to-face-command): Use "convert" by default to
6273 allow other input image formats.
6274 (gnus-x-face-from-file, gnus-face-from-file): Adjust doc strings
6275 accordingly.
6276
6277 2005-10-23 Simon Josefsson <jas@extundo.com>
6278
6279 * imap.el (imap-gssapi-program): Align command line parameters
6280 with latest GNU SASL.
6281 (imap-gssapi-open): Ignore 'Trying ...' messages from GNU SASL.
6282
6283 2005-10-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
6284
6285 * nnslashdot.el (nnslashdot-retrieve-headers-1): Update to new
6286 HTML.
6287 (nnslashdot-request-article): Ditto.
6288
6289 2005-10-20 Hiroshi Fujishima <hiroshi.fujishima@gmail.com> (tiny change)
6290
6291 * mail-source.el (mail-source-fetch-pop): Require pop3.
6292 (mail-source-check-pop): Ditto.
6293
6294 2005-10-20 Katsumi Yamaoka <yamaoka@jpl.org>
6295
6296 * rfc2047.el (rfc2047-decode-encoded-words): Fix the handling of
6297 errors.
6298
6299 2005-10-19 Reiner Steib <Reiner.Steib@gmx.de>
6300
6301 * gnus-art.el (gnus-treat-strip-trailing-blank-lines)
6302 (gnus-treat-strip-leading-blank-lines): Improve doc string.
6303
6304 * message.el (message-tool-bar-local-item-from-menu): Fix comment.
6305
6306 * mm-bodies.el (mm-decode-string): Call
6307 `mm-charset-to-coding-system' with allow-override argument.
6308
6309 2005-10-19 Katsumi Yamaoka <yamaoka@jpl.org>
6310
6311 * rfc2047.el (rfc2047-allow-incomplete-encoded-text): New variable.
6312 (rfc2047-charset-to-coding-system): New function.
6313 (rfc2047-decode-encoded-words): New function.
6314 (rfc2047-decode-region): Use them.
6315 (rfc2047-decode-cte): Remove.
6316 (rfc2047-parse-and-decode): Remove.
6317 (rfc2047-decode): Remove.
6318
6319 2005-10-15 Kenichi Handa <handa@m17n.org>
6320
6321 * rfc2047.el (rfc2047-decode-cte): New function.
6322 (rfc2047-decode-region): Change the way to decode successive
6323 encoded-words: decode B- or Q-encoding in each encoded-word,
6324 concatenate them, and decode it as charset.
6325
6326 2005-10-17 Chong Yidong <cyd@stupidchicken.com>
6327
6328 * gnus-cus.el (gnus-custom-map): New variable. Bind mouse-1 to
6329 widget-move-and-invoke.
6330 (gnus-custom-mode): Use gnus-custom-map.
6331
6332 2005-10-15 Bill Wohler <wohler@newt.com>
6333
6334 * message.el (message-tool-bar-map): Renamed image file from
6335 mail_send to mail/send.
6336
6337 2005-10-16 Masatake YAMATO <jet@gyve.org>
6338
6339 * message.el (message-expand-group): Pass the common
6340 prefix substring of completion to `display-completion-list'.
6341
6342 2005-10-13 Reiner Steib <Reiner.Steib@gmx.de>
6343
6344 * mml-sec.el (mml-secure-method): New internal variable.
6345 (mml-secure-sign, mml-secure-encrypt, mml-secure-message-sign)
6346 (mml-secure-message-sign-encrypt, mml-secure-message-encrypt): New
6347 functions using mml-secure-method.
6348
6349 * mml.el (mml-mode-map): Add key bindings for those functions.
6350 (mml-menu): Simplify security menu entries. Suggested by Jesper
6351 Harder <harder@myrealbox.com>.
6352 (mml-attach-file, mml-attach-buffer, mml-attach-external): Goto
6353 end of message if point is the headers of the message.
6354
6355 * message.el (message-in-body-p): New function.
6356
6357 * assistant.el: Autoload gnus-util and netrc.
6358
6359 * mm-util.el (mm-charset-to-coding-system): Add allow-override.
6360 Use `mm-charset-override-alist' only when decoding.
6361
6362 * mm-bodies.el (mm-decode-body): Call
6363 `mm-charset-to-coding-system' with allow-override argument.
6364
6365 * gnus-art.el (gnus-mime-view-part-as-type-internal): Try to fetch
6366 `filename' from Content-Disposition if Content-Type doesn't
6367 provide `name'.
6368 (gnus-mime-view-part-as-type): Set default instead of
6369 initial-input.
6370
6371 2005-10-09 Daniel Brockman <daniel@brockman.se>
6372
6373 * format-spec.el (format-spec): Propagate text properties of % spec.
6374
6375 2005-10-12 Reiner Steib <Reiner.Steib@gmx.de>
6376
6377 * gnus-art.el (gnus-treat-predicate): Add `first'.
6378
6379 2005-10-11 Reiner Steib <Reiner.Steib@gmx.de>
6380
6381 * mm-util.el (mm-charset-synonym-alist): Improve doc string.
6382 (mm-charset-override-alist): New variable.
6383 (mm-charset-to-coding-system): Use it.
6384 (mm-codepage-setup): New helper function.
6385 (mm-charset-eval-alist): New variable.
6386 (mm-charset-to-coding-system): Use mm-charset-eval-alist. Warn
6387 about unknown charsets.
6388
6389 2005-10-04 David Hansen <david.hansen@gmx.net>
6390
6391 * nnrss.el (nnrss-request-article): Add support for the comments tag.
6392 (nnrss-check-group): Ditto.
6393
6394 2005-10-04 Reiner Steib <Reiner.Steib@gmx.de>
6395
6396 * mm-uu.el (mm-uu-verbatim-marks-extract, mm-uu-latex-extract):
6397 Rename x-gnus-verbatim to x-verbatim.
6398 (mm-uu-type-alist): Fix regexp for verbatim-marks.
6399
6400 * mm-decode.el (mm-automatic-display): Rename x-gnus-verbatim to
6401 x-verbatim.
6402
6403 * mm-url.el (mm-url-predefined-programs): Add switches for curl.
6404
6405 * gnus-util.el (gnus-remove-duplicates): Remove.
6406
6407 * nnmail.el (nnmail-article-group): Use mm-delete-duplicates
6408 instead of gnus-remove-duplicates.
6409
6410 * message.el (message-remove-duplicates): Remove.
6411 (message-idna-to-ascii-rhs-1): Use mm-delete-duplicates instead of
6412 message-remove-duplicates.
6413
6414 * mm-util.el (mm-delete-duplicates): Use `delete-dups' if
6415 available, else use implementation from `delete-dups'.
6416
6417 * message.el (message-insert-expires): New function.
6418 (message-mode-map): Add key binding.
6419 (message-mode-field-menu): Add menu entry.
6420 (message-mode): Document it.
6421 (message-make-expires-date): Use `message-make-date'.
6422
6423 2005-10-04 Josh Huber <huber@alum.wpi.edu>
6424
6425 * message.el (message-make-expires-date): New function.
6426
6427 2005-10-04 Katsumi Yamaoka <yamaoka@jpl.org>
6428
6429 * Makefile.in (list-installed-shadows): New entry.
6430 (install): Use it.
6431 (remove-installed-shadows): New entry.
6432
6433 2005-10-02 Katsumi Yamaoka <yamaoka@jpl.org>
6434
6435 * time-date.el: Autoload parse-time-string, XEmacs needs it.
6436
6437 2005-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
6438
6439 * mm-decode.el (mm-inline-media-tests): Check presence of the diff-mode
6440 function rather than the diff-mode.el package.
6441 (mm-display-external): Use with-current-buffer.
6442 (mm-viewer-completion-map, mm-viewer-completion-map):
6443 Move initialization inside declaration.
6444
6445 2005-09-29 Simon Josefsson <jas@extundo.com>
6446
6447 * spam.el: Load hashcash when compiling, to avoid warnings. Don't
6448 autoload mail-check-payment.
6449 (spam-check-hashcash): Define unconditionally, since hashcash.el
6450 is part of Gnus now. Ignore errors from payment checking.
6451
6452 2005-09-28 Reiner Steib <Reiner.Steib@gmx.de>
6453
6454 * message.el (message-bold-region, message-unbold-region): Rename
6455 from `bold-region' and `unbold-region'.
6456
6457 * message.el: Remove useless autoloads.
6458
6459 2005-09-28 Simon Josefsson <jas@extundo.com>
6460
6461 * message.el (message-use-idna): Default to t.
6462 (message-use-idna): Test whether encoding works too. Doc fix.
6463
6464 2005-09-28 Katsumi Yamaoka <yamaoka@jpl.org>
6465
6466 * nntp.el (nntp-warn-about-losing-connection): Remove.
6467
6468 2005-09-27 Reiner Steib <Reiner.Steib@gmx.de>
6469
6470 * mm-uu.el (mm-uu-emacs-sources-regexp): Make variable
6471 customizable. Change default value.
6472 (mm-uu-diff-groups-regexp): Change default value.
6473 (mm-uu-type-alist): Add doc string.
6474 (mm-uu-configure): Add doc string. Make it interactive.
6475 (mm-uu-tex-groups-regexp): New variable.
6476 (mm-uu-latex-extract, mm-uu-latex-test): New functions.
6477 (mm-uu-type-alist): Add LaTeX documents.
6478 (mm-uu-verbatim-marks-extract): Use "text/x-gnus-verbatim" instead
6479 of "text/verbatim".
6480 (mm-uu-diff-groups-regexp): Fix missing quotes from previous commit.
6481
6482 * mm-decode.el (mm-automatic-display): Use "text/x-gnus-verbatim"
6483 instead of "text/verbatim".
6484
6485 * message.el (message-mark-inserted-region)
6486 (message-mark-insert-file): Use slrn style marks when called with
6487 prefix argument.
6488
6489 2005-09-27 Simon Josefsson <jas@extundo.com>
6490
6491 * message.el (message-idna-to-ascii-rhs-1): Reformat.
6492
6493 2005-09-27 Arne Jørgensen <arne@arnested.dk>
6494
6495 * message.el (message-remove-duplicates): New function.
6496 Implementation borrowed from `gnus-remove-duplicates'.
6497 (message-idna-to-ascii-rhs): Also encode idna addresses in
6498 Reply-To:, Mail-Reply-To: and Mail-Followup-To:.
6499 (message-idna-to-ascii-rhs-1): When `message-use-idna' is 'ask
6500 only ask about the same idna domain once per header and also tell
6501 in what header to replace the idna domain.
6502
6503 * gnus-art.el (article-decode-idna-rhs): Also decode idna
6504 addresses in Reply-To:, Mail-Reply-To: and Mail-Followup-To:.
6505 (article-decode-idna-rhs): Fix regexp so that all idna-address in
6506 a header is decoded and not just the last one.
6507
6508 2005-09-27 Katsumi Yamaoka <yamaoka@jpl.org>
6509
6510 * gnus-art.el (gnus-mime-display-single): Don't modify text if it
6511 has been decoded.
6512
6513 * mm-decode.el (mm-automatic-display): Add text/verbatim.
6514 (mm-insert-part): Don't modify text if it has been decoded.
6515
6516 * mm-uu.el (mm-uu-verbatim-marks-extract): Say text has been
6517 decoded.
6518
6519 * mm-view.el (mm-inline-text): Don't strip text props unless
6520 decoding enriched or richtext parts.
6521
6522 2005-09-25 Romain Francoise <romain@orebokech.com>
6523
6524 * gnus-agent.el (gnus-agent-expire-group, gnus-agent-expire):
6525 * gnus-start.el (gnus-subscribe-interactively):
6526 * gnus-uu.el (gnus-uu-grab-articles):
6527 End `yes-or-no-p' and `y-or-n-p' prompts with question mark and
6528 space.
6529
6530 2005-09-24 Emilio C. Lopes <eclig@gmx.net>
6531
6532 * smime.el (smime-sign-buffer, smime-decrypt-buffer):
6533 * mm-view.el (mm-view-pkcs7-decrypt):
6534 * gnus-sum.el (gnus-summary-limit-to-extra)
6535 (gnus-summary-respool-article, gnus-read-move-group-name):
6536 * gnus-score.el (gnus-summary-increase-score):
6537 * gnus-util.el (gnus-completing-read-with-default):
6538 * gnus-art.el (gnus-read-save-file-name)
6539 (gnus-summary-save-in-rmail, gnus-summary-save-in-mail)
6540 (gnus-summary-save-in-file, gnus-summary-save-body-in-file):
6541 * message.el (message-check-news-header-syntax):
6542 Follow convention for reading with the minibuffer.
6543
6544 2005-09-22 Reiner Steib <Reiner.Steib@gmx.de>
6545
6546 * spam-report.el (spam-report-url-ping-plain):
6547 Use gnus-extended-version as User-Agent.
6548
6549 * gnus-agent.el (gnus-agent-synchronize-flags): Explain why the
6550 default value is nil.
6551
6552 * mm-uu.el (mm-uu-type-alist): Added slrn style verbatim-marks.
6553 (mm-uu-verbatim-marks-extract): New function.
6554 (mm-uu-extract): New face.
6555 (mm-uu-copy-to-buffer): Use it.
6556
6557 * spam-report.el (spam-report-gmane-ham): Renamed from
6558 `spam-report-gmane-unspam'.
6559 (spam-report-gmane-internal): Renamed from `spam-report-gmane'.
6560 Simplify use of UNSPAM argument. Fetch "X-Report-Unspam" header.
6561
6562 * spam.el (spam-report-gmane-spam, spam-report-gmane-ham):
6563 Autoload.
6564 (spam-report-gmane-unregister-routine): Renamed
6565 `spam-report-gmane-unspam' to `spam-report-gmane-ham'.
6566
6567 2005-09-21 Teodor Zlatanov <tzz@lifelogs.com>
6568
6569 * spam.el (spam-use-gmane, spam-report-gmane-register-routine)
6570 (spam-report-gmane-unregister-routine): Add support for gmane
6571 unregistration.
6572
6573 * spam-report.el (spam-report-gmane-unspam)
6574 (spam-report-gmane-spam): Add new wrappers around spam-report-gmane.
6575 (spam-report-gmane): Change to take a single article and do unspam
6576 registration.
6577
6578 2005-09-19 Reiner Steib <Reiner.Steib@gmx.de>
6579
6580 * mm-url.el (mm-url-decode-entities): Fix regexp.
6581
6582 2005-09-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
6583
6584 * gnus-agent.el (gnus-agent-synchronize-flags): Switch the
6585 default to nil, to be able to use Gnus at all. If the default
6586 switches to something else, then the function should be fixed not
6587 be exceedingly slow.
6588
6589 2005-09-20 Teodor Zlatanov <tzz@lifelogs.com>
6590
6591 * gnus-start.el (gnus-activate-group): If the server is nil, don't
6592 fail hard.
6593
6594 * spam-report.el: Add better Keywords line.
6595
6596 * spam.el: Add Maintainer and better Keywords line.
6597
6598 2005-09-19 Reiner Steib <Reiner.Steib@gmx.de>
6599
6600 * gnus-art.el (gnus-article-replace-part)
6601 (gnus-mime-replace-part): New functions.
6602 (gnus-mime-action-alist, gnus-mime-button-commands)
6603 (gnus-mime-save-part-and-strip): Added file argument.
6604 (gnus-article-part-wrapper): Added interactive argument.
6605
6606 * gnus-sum.el (gnus-summary-mime-map): Add
6607 `gnus-article-replace-part'.
6608
6609 2005-09-19 Didier Verna <didier@xemacs.org>
6610
6611 The nnml compaction feature:
6612 * nnml.el (nnml-request-compact-group): New function.
6613 * nnml.el (nnml-request-compact): New function.
6614 * gnus-int.el (gnus-request-compact-group): New function.
6615 * gnus-int.el (gnus-request-compact): New function.
6616 * gnus-group.el (gnus-group-compact-group): New function.
6617 * gnus-group.el (gnus-group-group-map): Bind it to 'G z'.
6618 * gnus-group.el (gnus-group-make-menu-bar): Add an entry for it.
6619 * gnus-srvr.el (gnus-server-compact-server): New function.
6620 * gnus-srvr.el (gnus-server-mode-map): Bind it to 'z'.
6621 * gnus-srvr.el (gnus-server-make-menu-bar): Add an entry for it.
6622
6623 2005-09-18 Deepak Goel <deego@gnufans.org>
6624
6625 * sieve.el (sieve-help): Fix `message' call: first arg should be a
6626 format spec.
6627
6628 2005-09-16 Katsumi Yamaoka <yamaoka@jpl.org>
6629
6630 * gnus.el (gnus-group-startup-message): Bind image-load-path.
6631
6632 2005-09-15 Romain Francoise <romain@orebokech.com>
6633
6634 * message.el (message-fill-paragraph): Clarify docstring.
6635
6636 2005-09-14 Katsumi Yamaoka <yamaoka@jpl.org>
6637
6638 * gnus-art.el (gnus-mime-display-part): Protect against broken
6639 MIME messages.
6640
6641 2005-09-13 Katsumi Yamaoka <yamaoka@jpl.org>
6642
6643 * gnus-sum.el (gnus-summary-edit-article-done): Remove text props
6644 before parsing header.
6645
6646 2005-09-11 Jari Aalto <jari.aalto@cante.net>
6647
6648 * html2text.el (html2text-replace-list): Add new entities.
6649
6650 2005-09-11 Romain Francoise <romain@orebokech.com>
6651
6652 * message.el (message-alternative-emails): Improve docstring.
6653 (message-setup-1): Call `message-use-alternative-email-as-from'
6654 after `message-setup-hook' to give it precedence over posting
6655 styles, etc.
6656 (message-use-alternative-email-as-from): Add docstring. Remove
6657 the original From header if present.
6658
6659 * nnml.el (nnml-compressed-files-size-threshold): New variable.
6660 (nnml-save-mail): Use it.
6661
6662 * gnus-uu.el (gnus-uu-mark-series): Return number of marked
6663 articles. Add new argument `silent'.
6664 (gnus-uu-mark-all): Report the total number of marked articles.
6665
6666 2005-09-10 Romain Francoise <romain@orebokech.com>
6667
6668 * gnus-uu.el (gnus-message-process-mark): Use gnus-message.
6669 (gnus-uu-mark-series): Likewise.
6670
6671 2005-09-10 Reiner Steib <Reiner.Steib@gmx.de>
6672
6673 * spam-report.el (spam-report-gmane): Fix generation of spam
6674 report URL.
6675
6676 2005-09-10 Simon Josefsson <jas@extundo.com>
6677
6678 * gnus-agent.el (gnus-agent-synchronize-flags): Make the default
6679 t, based on discussion on the ding list with Robert Epprecht
6680 <epprecht@solnet.ch>.
6681
6682 2005-09-07 Reiner Steib <Reiner.Steib@gmx.de>
6683
6684 * spam-report.el (spam-report-gmane): Make it work without
6685 X-Report-Spam header. Gmane now only provides Archived-At.
6686 This is only used if `spam-report-gmane-use-article-number' is nil.
6687 (spam-report-gmane-spam-header): Remove. Not used anymore.
6688
6689 * gnus-sum.el (gnus-thread-sort-by-recipient): New function to
6690 make `gnus-summary-sort-by-recipient' work with threading.
6691
6692 * nnweb.el (nnweb-google-wash-article): Print a message if article
6693 is not available.
6694
6695 2005-09-07 TSUCHIYA Masatoshi <tsuchiya@namazu.org>
6696
6697 * gnus-art.el (gnus-mime-display-single): Revert 2004-10-07
6698 change. Decode text/* parts content before displaying.
6699
6700 2005-09-06 Reiner Steib <Reiner.Steib@gmx.de>
6701
6702 * mml-smime.el: Remove defvar of gnus-extract-address-components.
6703
6704 2005-09-06 Katsumi Yamaoka <yamaoka@jpl.org>
6705
6706 * mm-view.el (mm-display-inline-fontify): Disable support modes.
6707
6708 2005-09-05 Reiner Steib <Reiner.Steib@gmx.de>
6709
6710 * message.el (message-tab-body-function): Fix mismatched custom type.
6711
6712 * gnus.el (gnus-group-change-level-function): Ditto.
6713
6714 * gnus-msg.el (gnus-outgoing-message-group): Ditto.
6715
6716 * gnus-art.el (gnus-signature-limit)
6717 (gnus-article-mime-part-function): Ditto.
6718
6719 2005-09-05 Katsumi Yamaoka <yamaoka@jpl.org>
6720
6721 * mml.el (mml-mode): Silence the byte compiler.
6722
6723 * gnus-art.el (gnus-article-jump-to-part): Redisplay the article
6724 using `(sit-for 0)' before moving the point to the specified part;
6725 skip unbuttonized parts.
6726 (gnus-article-part-wrapper): Don't use save-window-excursion; don't
6727 return to the summary window if gnus-auto-select-part is non-nil.
6728
6729 2005-09-04 Reiner Steib <Reiner.Steib@gmx.de>
6730
6731 * mml.el (mml-dnd-protocol-alist, mml-dnd-attach-options): New
6732 variables.
6733 (mml-dnd-attach-file, mml-mode): Use them.
6734
6735 * nnweb.el (nnweb-type-definition, nnweb-google-wash-article):
6736 Make fetching article by MID work again for Google Groups. Added
6737 FIXME concerning gnus-group-make-web-group.
6738
6739 * mml-smime.el (mml-smime-sign-query, mml-smime-get-dns-cert):
6740 Don't depend on Gnus by using mail-extract-address-components if
6741 gnus-extract-address-components is not bound.
6742
6743 2005-09-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
6744
6745 * gnus-art.el (gnus-mime-display-security): Don't display the
6746 signature, but only the signed part.
6747
6748 2005-09-02 Katsumi Yamaoka <yamaoka@jpl.org>
6749
6750 * gnus-sum.el (gnus-thread-hide-subtree): Doc fix.
6751
6752 * gnus-msg.el (gnus-inews-insert-gcc): Fix the mistake of using
6753 list, not listp.
6754
6755 2005-09-02 Hrvoje Niksic <hniksic@xemacs.org>
6756
6757 * mm-encode.el (mm-encode-content-transfer-encoding): Likewise
6758 when encoding.
6759
6760 * mm-bodies.el (mm-decode-content-transfer-encoding):
6761 De-canonicalize CRLF for all text content types, not just
6762 text/plain.
6763
6764 2005-09-01 Katsumi Yamaoka <yamaoka@jpl.org>
6765
6766 * gnus-art.el (gnus-article-part-wrapper): Error if there's no
6767 valid article; point arrow and cursor at the MIME button.
6768
6769 2005-08-30 Katsumi Yamaoka <yamaoka@jpl.org>
6770
6771 * gnus-art.el (gnus-mime-save-part-and-strip): Clarify prompt.
6772 Suggested by Dan Christensen <jdc@uwo.ca>.
6773
6774 * mm-decode.el (mm-save-part): Enable change of prompt.
6775
6776 2005-08-29 Jari Aalto <jari.aalto@cante.net>
6777
6778 * gnus-msg.el (gnus-inews-add-send-actions): Made
6779 `message-post-method' lambda parameter ARG `&optional'.
6780
6781 2005-08-29 Reiner Steib <Reiner.Steib@gmx.de>
6782
6783 * gnus-sum.el (gnus-summary-mime-map): Added
6784 gnus-article-save-part-and-strip, gnus-article-delete-part and
6785 gnus-article-jump-to-part.
6786
6787 * gnus-art.el (gnus-article-edit-article): Added quiet argument.
6788 (gnus-article-edit-part): Use it.
6789 (gnus-article-part-wrapper): Added no-handle argument.
6790 (gnus-article-save-part-and-strip, gnus-article-delete-part): New
6791 functions.
6792
6793 2005-08-29 Romain Francoise <romain@orebokech.com>
6794
6795 * gnus-fun.el (gnus-convert-image-to-face-command): Fix typo in
6796 docstring.
6797 (gnus-face-from-file): Likewise.
6798
6799 2005-08-29 Reiner Steib <Reiner.Steib@gmx.de>
6800
6801 * gnus-art.el (gnus-mime-save-part-and-strip): Don't prompt.
6802 (gnus-mime-delete-part): Don't prompt if `gnus-expert-user' is
6803 non-nil.
6804 (gnus-auto-select-part): New variable.
6805 (gnus-article-jump-to-part): New function.
6806 (gnus-article-edit-part, gnus-mime-save-part-and-strip)
6807 (gnus-mime-delete-part): Allow selecting specified part after
6808 deleting or stripping parts.
6809 (gnus-article-jump-to-part): Don't use `read-number'. Use last
6810 part if argument is bogus.
6811
6812 2005-08-31 Juanma Barranquero <lekktu@gmail.com>
6813
6814 * gnus-art.el (w3m-minor-mode-map):
6815 * gnus-spec.el (gnus-newsrc-file-version):
6816 * gnus-util.el (nnmail-active-file-coding-system)
6817 (gnus-original-article-buffer, gnus-user-agent):
6818 * gnus.el (gnus-ham-process-destinations)
6819 (gnus-parameter-ham-marks-alist)
6820 (gnus-parameter-spam-marks-alist, gnus-spam-autodetect)
6821 (gnus-spam-autodetect-methods, gnus-spam-newsgroup-contents)
6822 (gnus-spam-process-destinations, gnus-spam-process-newsgroups):
6823 * mm-decode.el (gnus-current-window-configuration):
6824 * mm-extern.el (gnus-article-mime-handles):
6825 * mm-url.el (url-current-object, url-package-name)
6826 (url-package-version):
6827 * mm-view.el (gnus-article-mime-handles, gnus-newsgroup-charset)
6828 (smime-keys, w3m-cid-retrieve-function-alist)
6829 (w3m-current-buffer, w3m-display-inline-images)
6830 (w3m-minor-mode-map):
6831 * mml-smime.el (gnus-extract-address-components):
6832 * mml.el (gnus-article-mime-handles, gnus-mouse-2)
6833 (gnus-newsrc-hashtb, message-default-charset)
6834 (message-deletable-headers, message-options)
6835 (message-posting-charset, message-required-mail-headers)
6836 (message-required-news-headers):
6837 * mml1991.el (mc-pgp-always-sign):
6838 * mml2015.el (mc-pgp-always-sign):
6839 * nnheader.el (nnmail-extra-headers):
6840 * rfc1843.el (gnus-decode-encoded-word-function)
6841 (gnus-decode-header-function, gnus-newsgroup-name):
6842 * spam-stat.el (gnus-original-article-buffer): Add defvars.
6843
6844 2005-08-22 Karl Chen <quarl@cs.berkeley.edu>
6845
6846 * gnus-art.el (gnus-treatment-function-alist): Move date-lapsed to
6847 the end of the date treatments.
6848
6849 2005-08-15 Simon Josefsson <jas@extundo.com>
6850
6851 * pgg.el (url-insert-file-contents): Don't autoload it, Emacs has
6852 it in url-handlers.el and XEmacs in url.el. Reported by Luca
6853 Capello and Romain Francoise.
6854 (pgg-fetch-key-function): Removed, not used?
6855 (pgg-insert-url-with-w3): Require url, to get
6856 url-insert-file-contents regardless of where it is defined.
6857
6858 2005-08-13 Romain Francoise <romain@orebokech.com>
6859
6860 * message.el (message-cite-original-1): New function.
6861 (message-cite-original): Use it.
6862 (message-cite-original-without-signature): Ditto.
6863
6864 2005-08-08 Romain Francoise <romain@orebokech.com>
6865
6866 * message.el (message-yank-empty-prefix): New variable.
6867 (message-indent-citation): Use it.
6868 (message-cite-original-without-signature): Respect X-No-Archive.
6869
6870 2005-08-08 Simon Josefsson <jas@extundo.com>
6871
6872 * pgg.el: Autoload url-insert-file-contents instead of loading
6873 w3/url.
6874 (pgg-insert-url-with-w3): Don't load url here.
6875
6876 2005-08-07 Jesper Harder <harder@phys.au.dk>
6877
6878 * message.el (message-kill-to-signature): Don't insert newline at
6879 bol.
6880 (message-newline-and-reformat): Bind fill-paragraph-function to nil.
6881
6882 2005-08-06 Romain Francoise <romain@orebokech.com>
6883
6884 * message.el (message-user-fqdn): Fix typo in docstring.
6885
6886 2005-08-05 Daiki Ueno <ueno@unixuser.org>
6887
6888 * mml2015.el (mml2015-pgg-sign): Make sure micalg is correct.
6889
6890 * pgg-parse.el (pgg-parse-hash-algorithm-alist): Add SHA-2.
6891
6892 2005-08-05 Katsumi Yamaoka <yamaoka@jpl.org>
6893
6894 * mm-bodies.el (mm-encode-body): Use coding system rather than
6895 charset to encode text.
6896
6897 * mm-util.el (mm-find-mime-charset-region): Attempt to reduce the
6898 number of charsets if utf-8 is available (XEmacs).
6899
6900 2005-08-04 Reiner Steib <Reiner.Steib@gmx.de>
6901
6902 * gnus-art.el (gnus-button-valid-localpart-regexp): New variable
6903 taken from `gnus-button-mid-or-mail-regexp'.
6904 (gnus-button-mid-or-mail-regexp, gnus-button-alist): Use it.
6905 (gnus-button-alist): Improve regexp for domain part of the MIDs
6906 for news:localpart@domain buttons.
6907 (gnus-button-ctan-directory-regexp): Update.
6908
6909 2005-08-02 Katsumi Yamaoka <yamaoka@jpl.org>
6910
6911 * sieve-manage.el (sieve-manage-interactive-login): Use
6912 make-local-variable rather than make-variable-buffer-local.
6913 (sieve-manage-open): Ditto.
6914 (sieve-manage-authenticate): Ditto.
6915
6916 * mml.el (mml-generate-mime-1): Make the content type default to
6917 text/plain if the filename is not specified.
6918
6919 2005-08-01 Katsumi Yamaoka <yamaoka@jpl.org>
6920
6921 * gnus-uu.el (gnus-uu-save-article): Use insert-buffer-substring
6922 instead of insert-buffer.
6923
6924 * message.el (message-yank-original): Ditto; set the mark at the
6925 end of the yanked message.
6926
6927 2005-07-29 Katsumi Yamaoka <yamaoka@jpl.org>
6928
6929 * gnus-art.el (gnus-article-next-page-1): Reduce the number of
6930 lines to scroll rather than to stop it.
6931
6932 * mml.el (mml-generate-default-type): Add doc string.
6933 (mml-generate-mime-1): Use mm-default-file-encoding or make it
6934 default to application/octet-stream when determining the content
6935 type if it is not specified for the part or the mml contents; add
6936 a comment about mml-generate-default-type.
6937
6938 2005-07-29 Reiner Steib <Reiner.Steib@gmx.de>
6939
6940 * mml.el (mml-generate-mime-1): Use mm-default-file-encoding or
6941 make it default to application/octet-stream when determining the
6942 content type if it is not specified for the external contents.
6943
6944 2005-07-28 Katsumi Yamaoka <yamaoka@jpl.org>
6945
6946 * rfc2231.el (rfc2231-parse-string): Take care that not only a
6947 segmented parameter but also other parameters might be there.
6948
6949 2005-07-27 Katsumi Yamaoka <yamaoka@jpl.org>
6950
6951 * mm-decode.el (mm-display-external): Delete temp file, directory
6952 and buffer immediately if the external process is exited.
6953
6954 2005-07-26 Katsumi Yamaoka <yamaoka@jpl.org>
6955
6956 * gnus-art.el (gnus-article-next-page-1): Don't scroll if there're
6957 fewer lines than that of scroll-margin.
6958 (gnus-article-prev-page): Narrow the range to bind scroll-in-place.
6959
6960 2005-07-25 Katsumi Yamaoka <yamaoka@jpl.org>
6961
6962 * gnus-art.el (gnus-article-next-page): Revert.
6963 (gnus-article-beginning-of-window): New macro.
6964 (gnus-article-next-page-1): Use it.
6965 (gnus-article-prev-page): Ditto.
6966 (gnus-article-edit-part): Use insert-buffer-substring instead of
6967 insert-buffer.
6968 (gnus-article-edit-exit): Ditto.
6969
6970 * gnus-util.el (gnus-beginning-of-window): Remove.
6971 (gnus-end-of-window): Remove.
6972
6973 2005-07-25 Simon Josefsson <jas@extundo.com>
6974
6975 * pgg.el (pgg-insert-url-with-w3): Don't load w3, it is possible
6976 to have the url package without w3. Reported by Daiki Ueno
6977 <ueno@unixuser.org> and Luigi Panzeri <matley@muppetslab.org>.
6978
6979 2005-07-20 Didier Verna <didier@xemacs.org>
6980
6981 * gnus-diary.el: Remove the description comment (nndiary is now
6982 properly documented in the Gnus manual).
6983 Fix the spelling of "Back End".
6984 * nndiary.el: Ditto.
6985 Fix the copyright notice.
6986
6987 2005-07-18 Romain Francoise <romain@orebokech.com>
6988
6989 * gnus-sum.el (gnus-summary-to-prefix)
6990 (gnus-summary-newsgroup-prefix): New variables.
6991 (gnus-summary-from-or-to-or-newsgroups): Use them.
6992
6993 2005-07-17 Romain Francoise <romain@orebokech.com>
6994
6995 * mml2015.el (mml2015-clean-buffer): Prefix buffer name with a
6996 space as it's generally not especially interesting to the user.
6997
6998 2005-07-16 Romain Francoise <romain@orebokech.com>
6999
7000 * nnfolder.el (nnfolder-save-buffer): Bind `copyright-update' to
7001 nil to avoid prompting and file modification if one of the
7002 messages at the top of the nnfolder file contains a copyright
7003 notice.
7004 Update copyright notice.
7005
7006 * gnus-uu.el (gnus-uu-save-article): Use `message-make-date'
7007 instead of `current-time-string' as the latter creates a time
7008 string that is not RFC 2822 compliant (it lacks the zone).
7009 Update copyright notice.
7010
7011 2005-07-21 Stefan Monnier <monnier@iro.umontreal.ca>
7012
7013 * mml.el (mml-minibuffer-read-disposition): Don't use inline by default
7014 for text/rtf. Display default in prompt. Pass default for M-n.
7015
7016 * mm-uu.el (mm-uu-copy-to-buffer): Use with-current-buffer.
7017
7018 2005-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
7019
7020 * gnus-msg.el (gnus-button-mailto): Remove
7021 save-selected-window-window hackery because it relies on
7022 save-selected-window internals.
7023
7024 2005-07-15 Katsumi Yamaoka <yamaoka@jpl.org>
7025
7026 * gnus-art.el (gnus-article-next-page): Use gnus-end-of-window.
7027 (gnus-article-next-page-1): Use gnus-beginning-of-window.
7028 (gnus-article-prev-page): Ditto.
7029
7030 * gnus-util.el (gnus-beginning-of-window): New function.
7031 (gnus-end-of-window): New function.
7032
7033 2005-07-14 Hiroshi Fujishima <hiroshi.fujishima@gmail.com> (tiny change)
7034
7035 * gnus-score.el (gnus-score-edit-all-score): Set
7036 gnus-score-edit-exit-function to gnus-score-edit-done and call
7037 gnus-message.
7038
7039 2005-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
7040
7041 * gnus-msg.el (gnus-button-mailto): Remove
7042 save-selected-window-window hackery because it relies on
7043 save-selected-window internals.
7044
7045 2005-07-13 Katsumi Yamaoka <yamaoka@jpl.org>
7046
7047 * gnus-salt.el (gnus-pick-mode): Remove the 5th arg of
7048 add-minor-mode.
7049 (gnus-binary-mode): Ditto.
7050
7051 * gnus-topic.el (gnus-topic-mode): Ditto.
7052
7053 2005-07-08 Ralf Angeli <angeli@iwi.uni-sb.de>
7054
7055 * gnus-art.el (gnus-article-next-page, gnus-article-next-page-1)
7056 (gnus-article-prev-page): Take scroll-margin into consideration.
7057
7058 2005-07-04 Lute Kamstra <lute@gnu.org>
7059
7060 Update FSF's address in GPL notices.
7061
7062 2005-07-04 Juanma Barranquero <lekktu@gmail.com>
7063
7064 * gnus.el (gnus-exit):
7065 * gnus-group.el (gnus-group-icons):
7066 * nnmail.el (nnmail-prepare): Fix typos in docstrings.
7067
7068 * gnus-nocem.el (gnus-nocem):
7069 * message.el (message-various, message-buffers, message-sending)
7070 (message-interface, message-forwarding, message-insertion)
7071 (message-headers, message-news, message-mail):
7072 * pgg-gpg.el (pgg-gpg):
7073 * pgg-parse.el (pgg-parse):
7074 * pgg-pgp.el (pgg-pgp):
7075 * pgg-pgp5.el (pgg-pgp5):
7076 * pop3.el (pop3): Finish `defgroup' description with period.
7077
7078 2005-07-01 Katsumi Yamaoka <yamaoka@jpl.org>
7079
7080 * gnus-art.el (article-display-face): Improve the efficiency.
7081 (article-display-x-face): Ditto; remove grey x-face stuff.
7082
7083 2005-06-30 Katsumi Yamaoka <yamaoka@jpl.org>
7084
7085 * gnus-art.el (article-display-face): Correct the position in
7086 which Faces are inserted.
7087
7088 2005-06-29 Didier Verna <didier@xemacs.org>
7089
7090 * gnus-art.el (article-display-face): Display faces in correct
7091 order.
7092
7093 2005-06-29 Katsumi Yamaoka <yamaoka@jpl.org>
7094
7095 * gnus-nocem.el (gnus-nocem-verifyer): Default to pgg-verify.
7096 (gnus-fill-real-hashtb): Use hash table instead of obarray.
7097 (gnus-nocem-check-article): Fetch the Type header.
7098 (gnus-nocem-message-wanted-p): Fix the way to examine types.
7099 (gnus-nocem-verify-issuer): Use functionp instead of fboundp.
7100 (gnus-nocem-enter-article): Use hash tables rather than obarrays;
7101 make sure gnus-nocem-hashtb is initialized.
7102 (gnus-nocem-alist-to-hashtb): Use hash table instead of obarray.
7103 (gnus-nocem-unwanted-article-p): Ditto.
7104
7105 * pgg.el (pgg-verify): Return the verification result.
7106
7107 2005-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
7108
7109 * gnus-art.el (gnus-mime-copy-part): Check whether coding-system
7110 is ascii.
7111
7112 2005-06-24 Juanma Barranquero <lekktu@gmail.com>
7113
7114 * gnus-art.el (gnus-article-mode): Set `nobreak-char-display', not
7115 `show-nonbreak-escape'.
7116
7117 2005-06-23 Lute Kamstra <lute@gnu.org>
7118
7119 * gnus-art.el (gnus-article-mode): Use kill-all-local-variables.
7120
7121 * dig.el (dig-mode):
7122 * smime.el (smime-mode): Use gnus-run-mode-hooks.
7123
7124 2005-06-21 Juanma Barranquero <lekktu@gmail.com>
7125
7126 * nnimap.el (nnimap-split-download-body): Fix spellings.
7127
7128 2005-06-16 Juanma Barranquero <lekktu@gmail.com>
7129
7130 * gnus-art.el (gnus-article-encrypt-body):
7131 * gnus-cus.el (gnus-score-customize):
7132 * mm-extern.el (mm-extern-local-file, mm-inline-external-body):
7133 * pop3.el (pop3-user): Don't use `format' on `error' arguments.
7134
7135 2005-06-16 Arne Jørgensen <arne@arnested.dk>
7136
7137 * smime.el (smime-cert-by-ldap-1): Detect PEM format without
7138 header by looking for magic "MII" at the beginnig.
7139
7140 2005-06-16 Miles Bader <miles@gnu.org>
7141
7142 * assistant.el (assistant-field): Remove "-face" suffix from face name.
7143 (assistant-field-face): New backward-compatibility alias for renamed
7144 face.
7145 (assistant-render-text): Use renamed assistant-field face.
7146
7147 * spam.el (spam): Remove "-face" suffix from face name.
7148 (spam-face): New backward-compatibility alias for renamed face.
7149 (spam-face, spam-initialize): Use renamed spam face.
7150
7151 * message.el (message-header-to, message-header-cc)
7152 (message-header-subject, message-header-newsgroups)
7153 (message-header-other, message-header-name)
7154 (message-header-xheader, message-separator, message-cited-text)
7155 (message-mml): Remove "-face" suffix from face names.
7156 (message-header-to-face, message-header-cc-face)
7157 (message-header-subject-face, message-header-newsgroups-face)
7158 (message-header-other-face, message-header-name-face)
7159 (message-header-xheader-face, message-separator-face)
7160 (message-cited-text-face, message-mml-face):
7161 New backward-compatibility aliases for renamed faces.
7162 (message-font-lock-keywords): Use renamed message faces.
7163
7164 * sieve-mode.el (sieve-control-commands, sieve-action-commands)
7165 (sieve-test-commands, sieve-tagged-arguments):
7166 Remove "-face" suffix from face names.
7167 (sieve-control-commands-face, sieve-action-commands-face)
7168 (sieve-test-commands-face, sieve-tagged-arguments-face):
7169 New backward-compatibility aliases for renamed faces.
7170 (sieve-control-commands-face, sieve-action-commands-face)
7171 (sieve-test-commands-face, sieve-tagged-arguments-face):
7172 Use renamed sieve faces.
7173
7174 * gnus.el (gnus-group-news-1, gnus-group-news-1-empty)
7175 (gnus-group-news-2, gnus-group-news-2-empty, gnus-group-news-3)
7176 (gnus-group-news-3-empty, gnus-group-news-4)
7177 (gnus-group-news-4-empty, gnus-group-news-5)
7178 (gnus-group-news-5-empty, gnus-group-news-6)
7179 (gnus-group-news-6-empty, gnus-group-news-low)
7180 (gnus-group-news-low-empty, gnus-group-mail-1)
7181 (gnus-group-mail-1-empty, gnus-group-mail-2)
7182 (gnus-group-mail-2-empty, gnus-group-mail-3)
7183 (gnus-group-mail-3-empty, gnus-group-mail-low)
7184 (gnus-group-mail-low-empty, gnus-summary-selected)
7185 (gnus-summary-cancelled, gnus-summary-high-ticked)
7186 (gnus-summary-low-ticked, gnus-summary-normal-ticked)
7187 (gnus-summary-high-ancient, gnus-summary-low-ancient)
7188 (gnus-summary-normal-ancient, gnus-summary-high-undownloaded)
7189 (gnus-summary-low-undownloaded)
7190 (gnus-summary-normal-undownloaded, gnus-summary-high-unread)
7191 (gnus-summary-low-unread, gnus-summary-normal-unread)
7192 (gnus-summary-high-read, gnus-summary-low-read)
7193 (gnus-summary-normal-read, gnus-splash):
7194 Remove "-face" suffix from face names.
7195 (gnus-group-news-1-face, gnus-group-news-1-empty-face)
7196 (gnus-group-news-2-face, gnus-group-news-2-empty-face)
7197 (gnus-group-news-3-face, gnus-group-news-3-empty-face)
7198 (gnus-group-news-4-face, gnus-group-news-4-empty-face)
7199 (gnus-group-news-5-face, gnus-group-news-5-empty-face)
7200 (gnus-group-news-6-face, gnus-group-news-6-empty-face)
7201 (gnus-group-news-low-face, gnus-group-news-low-empty-face)
7202 (gnus-group-mail-1-face, gnus-group-mail-1-empty-face)
7203 (gnus-group-mail-2-face, gnus-group-mail-2-empty-face)
7204 (gnus-group-mail-3-face, gnus-group-mail-3-empty-face)
7205 (gnus-group-mail-low-face, gnus-group-mail-low-empty-face)
7206 (gnus-summary-selected-face, gnus-summary-cancelled-face)
7207 (gnus-summary-high-ticked-face, gnus-summary-low-ticked-face)
7208 (gnus-summary-normal-ticked-face)
7209 (gnus-summary-high-ancient-face, gnus-summary-low-ancient-face)
7210 (gnus-summary-normal-ancient-face)
7211 (gnus-summary-high-undownloaded-face)
7212 (gnus-summary-low-undownloaded-face)
7213 (gnus-summary-normal-undownloaded-face)
7214 (gnus-summary-high-unread-face, gnus-summary-low-unread-face)
7215 (gnus-summary-normal-unread-face, gnus-summary-high-read-face)
7216 (gnus-summary-low-read-face, gnus-summary-normal-read-face)
7217 (gnus-splash-face):
7218 New backward-compatibility aliases for renamed faces.
7219 (gnus-group-startup-message): Use renamed gnus faces.
7220
7221 * gnus-srvr.el (gnus-server-agent, gnus-server-opened)
7222 (gnus-server-closed, gnus-server-denied, gnus-server-offline)
7223 (gnus-server-agent): Remove "-face" suffix from face names.
7224 (gnus-server-agent-face, gnus-server-opened-face)
7225 (gnus-server-closed-face, gnus-server-denied-face)
7226 (gnus-server-offline-face):
7227 New backward-compatibility aliases for renamed faces.
7228 (gnus-server-agent-face, gnus-server-opened-face)
7229 (gnus-server-closed-face, gnus-server-denied-face)
7230 (gnus-server-offline-face): Use renamed gnus faces.
7231
7232 * gnus-picon.el (gnus-picon-xbm, gnus-picon):
7233 Remove "-face" suffix from face names.
7234 (gnus-picon-xbm-face, gnus-picon-face):
7235 New backward-compatibility aliases for renamed faces.
7236
7237 * gnus-cite.el (gnus-cite-attribution, gnus-cite-1, gnus-cite-2)
7238 (gnus-cite-3, gnus-cite-4, gnus-cite-5, gnus-cite-6)
7239 (gnus-cite-7, gnus-cite-8, gnus-cite-9, gnus-cite-10)
7240 (gnus-cite-11): Remove "-face" suffix from face names.
7241 (gnus-cite-attribution-face, gnus-cite-face-1, gnus-cite-face-2)
7242 (gnus-cite-face-3, gnus-cite-face-4, gnus-cite-face-5)
7243 (gnus-cite-face-6, gnus-cite-face-7, gnus-cite-face-8)
7244 (gnus-cite-face-9, gnus-cite-face-10, gnus-cite-face-11):
7245 New backward-compatibility aliases for renamed faces.
7246 (gnus-cite-attribution-face, gnus-cite-face-list)
7247 (gnus-article-boring-faces): Use renamed gnus faces.
7248
7249 * gnus-art.el (gnus-signature, gnus-header-from)
7250 (gnus-header-subject, gnus-header-newsgroups, gnus-header-name)
7251 (gnus-header-content): Remove "-face" suffix from face names.
7252 (gnus-signature-face, gnus-header-from-face)
7253 (gnus-header-subject-face, gnus-header-newsgroups-face)
7254 (gnus-header-name-face, gnus-header-content-face):
7255 New backward-compatibility aliases for renamed faces.
7256 (gnus-signature-face, gnus-header-face-alist): Use renamed gnus faces.
7257
7258 * gnus-sum.el (gnus-summary-selected-face)
7259 (gnus-summary-highlight): Use renamed gnus faces.
7260 * gnus-group.el (gnus-group-highlight): Likewise.
7261
7262 2005-06-14 Juanma Barranquero <lekktu@gmail.com>
7263
7264 * gnus-sieve.el (gnus-sieve-article-add-rule):
7265 * legacy-gnus-agent.el (gnus-agent-unlist-expire-days):
7266 * spam-stat.el (spam-stat-buffer-change-to-spam)
7267 (spam-stat-buffer-change-to-non-spam): Follow error conventions.
7268
7269 * message.el (message-is-yours-p):
7270 * gnus-sum.el (gnus-auto-select-subject): Fix quoting in docstring.
7271
7272 2005-06-14 Katsumi Yamaoka <yamaoka@jpl.org>
7273
7274 * mm-view.el (mm-inline-text): Withdraw the last change.
7275
7276 2005-06-09 Katsumi Yamaoka <yamaoka@jpl.org>
7277
7278 * mm-view.el (mm-inline-text): Turn off adaptive-fill-mode while
7279 executing enriched-decode.
7280
7281 2005-06-07 Katsumi Yamaoka <yamaoka@jpl.org>
7282
7283 * mm-util.el (mm-find-buffer-file-coding-system): Don't examine
7284 charset of tar files.
7285
7286 2005-06-04 Luc Teirlinck <teirllm@auburn.edu>
7287
7288 * gnus-art.el (article-update-date-lapsed): Use `save-match-data'.
7289
7290 2005-06-04 Lute Kamstra <lute@gnu.org>
7291
7292 * nnfolder.el (nnfolder-read-folder): Make sure that undo
7293 information is never recorded.
7294
7295 2005-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
7296
7297 * gnus-art.el (gnus-emphasis-alist): Disable the strikethru thingy.
7298
7299 2005-06-02 Katsumi Yamaoka <yamaoka@jpl.org>
7300
7301 * pop3.el (pop3-apop): Run md5 in the binary mode.
7302
7303 * starttls.el (starttls-set-process-query-on-exit-flag):
7304 Use eval-and-compile.
7305
7306 2005-05-31 Simon Josefsson <jas@extundo.com>
7307
7308 * smime.el (smime-replace-in-string): Define.
7309 (smime-cert-by-ldap-1): Use it.
7310
7311 2005-05-31 Katsumi Yamaoka <yamaoka@jpl.org>
7312
7313 * gnus-art.el (article-display-x-face): Replace
7314 process-kill-without-query by gnus-set-process-query-on-exit-flag.
7315
7316 * gnus-util.el (gnus-set-process-query-on-exit-flag): Alias to
7317 set-process-query-on-exit-flag or process-kill-without-query.
7318
7319 * html2text.el (html2text-fix-paragraphs): Use `while - re-search'
7320 loop instead of replace-regexp.
7321
7322 * imap.el (imap-ssl-open): Use set-process-query-on-exit-flag
7323 instead of process-kill-without-query if it is available.
7324
7325 * mm-util.el (mm-insert-file-contents): Bind find-file-hook
7326 instead of find-file-hooks if it is available.
7327
7328 * mml1991.el: Bind pgg-default-user-id when compiling.
7329
7330 * mml2015.el: Bind pgg-default-user-id when compiling.
7331
7332 * nndraft.el (nndraft-request-associate-buffer):
7333 Use write-contents-functions instead of write-contents-hooks if it is
7334 available.
7335
7336 * nnheader.el (nnheader-find-file-noselect): Bind find-file-hook
7337 instead of find-file-hooks if it is available.
7338
7339 * nntp.el (nntp-open-connection): Replace
7340 process-kill-without-query by gnus-set-process-query-on-exit-flag.
7341 (nntp-open-ssl-stream): Ditto.
7342 (nntp-open-tls-stream): Ditto.
7343
7344 * starttls.el (starttls-set-process-query-on-exit-flag): Alias to
7345 set-process-query-on-exit-flag or process-kill-without-query.
7346 (starttls-open-stream-gnutls): Use it instead of
7347 process-kill-without-query.
7348 (starttls-open-stream): Ditto.
7349
7350 2005-05-31 Ulf Stegemann <ulf@zeitform.de> (tiny change)
7351
7352 * smime.el (smime-cert-by-ldap-1): Don't use
7353 replace-regexp-in-string.
7354
7355 2005-05-31 Arne Jørgensen <arne@arnested.dk>
7356
7357 * smime-ldap.el (smime-ldap-search): Add compatibility for XEmacs.
7358
7359 * smime.el (smime-cert-by-ldap-1): Handle certificates distributed
7360 in PEM format. Adjust to the XEmacs compability.
7361
7362 2005-05-30 Reiner Steib <Reiner.Steib@gmx.de>
7363
7364 * encrypt.el (encrypt-xor-process-buffer): Replace `string-to-int'
7365 by `string-to-number'.
7366 * gnus-agent.el (gnus-agent-regenerate-group)
7367 (gnus-agent-fetch-articles): Ditto.
7368 * gnus-art.el (gnus-button-fetch-group): Ditto.
7369 * gnus-cache.el (gnus-cache-generate-active)
7370 (gnus-cache-articles-in-group): Ditto.
7371 * gnus-group.el (gnus-group-set-current-level)
7372 (gnus-group-insert-group-line): Ditto.
7373 * gnus-score.el (gnus-score-set-expunge-below)
7374 (gnus-score-set-mark-below, gnus-summary-score-effect)
7375 (gnus-summary-score-entry): Ditto.
7376 * gnus-soup.el (gnus-soup-send-packet, gnus-soup-parse-areas)
7377 (gnus-soup-pack): Ditto.
7378 * gnus-spec.el (gnus-xmas-format): Ditto.
7379 * gnus-start.el (gnus-newsrc-to-gnus-format): Ditto.
7380 * gnus-sum.el (gnus-create-xref-hashtb): Ditto.
7381 * gnus-uu.el (gnus-uu-expand-numbers): Ditto.
7382 * nnbabyl.el (nnbabyl-article-group-number): Ditto.
7383 * nndb.el (nndb-get-remote-expire-response): Ditto.
7384 * nndiary.el (nndiary-parse-schedule-value)
7385 (nndiary-string-to-number, nndiary-request-replace-article)
7386 (nndiary-request-article): Ditto.
7387 * nndoc.el (nndoc-rnews-body-end, nndoc-mbox-body-end): Ditto.
7388 * nndraft.el (nndraft-articles, nndraft-request-group): Ditto.
7389 * nneething.el (nneething-make-head): Ditto.
7390 * nnfolder.el (nnfolder-request-article)
7391 (nnfolder-retrieve-headers): Ditto.
7392 * nnheader.el (nnheader-file-to-number): Ditto.
7393 * nnkiboze.el (nnkiboze-request-article): Ditto.
7394 * nnmail.el (nnmail-process-unix-mail-format)
7395 (nnmail-process-babyl-mail-format): Ditto.
7396 * nnmbox.el (nnmbox-read-mbox, nnmbox-article-group-number): Ditto.
7397 * nnmh.el (nnmh-update-gnus-unreads, nnmh-active-number)
7398 (nnmh-request-create-group, nnmh-request-list-1)
7399 (nnmh-request-group, nnmh-request-article): Ditto.
7400 * nnml.el (nnml-request-replace-article, nnml-request-article): Ditto.
7401 * nnrss.el (nnrss-find-rss-via-syndic8): Ditto.
7402 * nnsoup.el (nnsoup-make-active): Ditto.
7403 * nnspool.el (nnspool-find-id, nnspool-request-group): Ditto.
7404 * nntp.el (nntp-find-group-and-number)
7405 (nntp-retrieve-headers-with-xover): Ditto.
7406 * pgg-gpg.el (pgg-gpg-snarf-keys-region): Ditto.
7407 * pgg-parse.el (pgg-read-body, pgg-read-bytes)
7408 (pgg-format-key-identifier): Ditto.
7409 * pop3.el (pop3-last, pop3-stat): Ditto.
7410 * qp.el (quoted-printable-decode-region): Ditto.
7411
7412 * spam-report.el (spam-report-url-ping-mm-url): Use format instead
7413 of concat.
7414
7415 2005-05-30 Katsumi Yamaoka <yamaoka@jpl.org>
7416
7417 * gnus-agent.el (gnus-category-mode): Use gnus-run-mode-hooks.
7418
7419 * gnus-art.el (gnus-article-mode): Use gnus-run-mode-hooks.
7420
7421 * gnus-cus.el (gnus-custom-mode): Use gnus-run-mode-hooks.
7422
7423 * gnus-eform.el (gnus-edit-form-mode): Use gnus-run-mode-hooks.
7424
7425 * gnus-group.el (gnus-group-mode): Use gnus-run-mode-hooks.
7426
7427 * gnus-kill.el (gnus-kill-file-mode): Use gnus-run-mode-hooks.
7428
7429 * gnus-salt.el (gnus-tree-mode): Use gnus-run-mode-hooks.
7430 (gnus-carpal-mode): Ditto.
7431
7432 * gnus-srvr.el (gnus-server-mode): Use gnus-run-mode-hooks.
7433 (gnus-browse-mode): Ditto.
7434
7435 * gnus-sum.el (gnus-summary-mode): Use gnus-run-mode-hooks.
7436
7437 * gnus-util.el (gnus-run-mode-hooks): Save current buffer.
7438
7439 2005-05-29 Richard M. Stallman <rms@gnu.org>
7440
7441 * gnus-cite.el (gnus-cite-add-face): Set overlay's evaporate property.
7442
7443 2005-05-27 Katsumi Yamaoka <yamaoka@jpl.org>
7444
7445 * gnus-util.el (gnus-run-mode-hooks): New function.
7446
7447 * score-mode.el (gnus-score-mode): Use gnus-run-mode-hooks.
7448
7449 2005-05-26 Luc Teirlinck <teirllm@auburn.edu>
7450
7451 * gnus-agent.el (gnus-agent-make-mode-line-string):
7452 Use mode-line-highlight as mouse-face.
7453
7454 2005-05-17 Katsumi Yamaoka <yamaoka@jpl.org>
7455
7456 * canlock.el (canlock): Change the parent group to news.
7457
7458 * deuglify.el (gnus-outlook-deuglify): Add :group.
7459
7460 * dig.el (dig): Add :group.
7461
7462 * dns-mode.el (dns-mode): Add :group.
7463
7464 * encrypt.el (encrypt): Add :group.
7465
7466 * gnus-cite.el (gnus-cite-attribution-face): Add :group.
7467 (gnus-cite-face-1, gnus-cite-face-2, gnus-cite-face-3): Ditto.
7468 (gnus-cite-face-4, gnus-cite-face-5, gnus-cite-face-6): Ditto.
7469 (gnus-cite-face-7, gnus-cite-face-8, gnus-cite-face-9): Ditto.
7470 (gnus-cite-face-10, gnus-cite-face-11): Ditto.
7471
7472 * gnus-diary.el (gnus-diary): Add :group.
7473
7474 * gnus.el (gnus-group-news-1-face): Add :group.
7475 (gnus-group-news-1-empty-face): Ditto.
7476 (gnus-group-news-2-face, gnus-group-news-2-empty-face): Ditto.
7477 (gnus-group-news-3-face, gnus-group-news-3-empty-face): Ditto.
7478 (gnus-group-news-4-face, gnus-group-news-4-empty-face): Ditto.
7479 (gnus-group-news-5-face, gnus-group-news-5-empty-face): Ditto.
7480 (gnus-group-news-6-face, gnus-group-news-6-empty-face): Ditto.
7481 (gnus-group-news-low-face, gnus-group-news-low-empty-face): Ditto.
7482 (gnus-group-mail-1-face, gnus-group-mail-1-empty-face): Ditto.
7483 (gnus-group-mail-2-face, gnus-group-mail-2-empty-face): Ditto.
7484 (gnus-group-mail-3-face, gnus-group-mail-3-empty-face): Ditto.
7485 (gnus-group-mail-low-face, gnus-group-mail-low-empty-face): Ditto.
7486 (gnus-summary-selected-face, gnus-summary-cancelled-face): Ditto.
7487 (gnus-summary-high-ticked-face): Ditto.
7488 (gnus-summary-low-ticked-face): Ditto.
7489 (gnus-summary-normal-ticked-face): Ditto.
7490 (gnus-summary-high-ancient-face): Ditto.
7491 (gnus-summary-low-ancient-face): Ditto.
7492 (gnus-summary-normal-ancient-face): Ditto.
7493 (gnus-summary-high-undownloaded-face): Ditto.
7494 (gnus-summary-low-undownloaded-face): Ditto.
7495 (gnus-summary-normal-undownloaded-face): Ditto.
7496 (gnus-summary-high-unread-face): Ditto.
7497 (gnus-summary-low-unread-face): Ditto.
7498 (gnus-summary-normal-unread-face): Ditto.
7499 (gnus-summary-high-read-face, gnus-summary-low-read-face): Ditto.
7500 (gnus-summary-normal-read-face, gnus-splash-face): Ditto.
7501
7502 * hashcash.el (hashcash): New custom group.
7503 (hashcash-default-payment): Add :group.
7504 (hashcash-payment-alist): Ditto.
7505 (hashcash-default-accept-payment): Ditto.
7506 (hashcash-accept-resources): Ditto.
7507 (hashcash-path): Ditto.
7508 (hashcash-extra-generate-parameters): Ditto.
7509 (hashcash-double-spend-database): Ditto.
7510 (hashcash-in-news): Ditto.
7511
7512 * message.el (message-minibuffer-local-map): Add :group.
7513
7514 * netrc.el (netrc): Add :group.
7515
7516 * sieve-manage.el (sieve-manage-log): Add :group.
7517 (sieve-manage-default-user): Diito.
7518 (sieve-manage-server-eol, sieve-manage-client-eol): Ditto.
7519 (sieve-manage-streams, sieve-manage-stream-alist): Ditto.
7520 (sieve-manage-authenticators): Ditto.
7521 (sieve-manage-authenticator-alist): Ditto.
7522 (sieve-manage-default-port): Ditto.
7523
7524 * sieve-mode.el (sieve-control-commands-face): Add :group.
7525 (sieve-action-commands-face): Ditto.
7526 (sieve-test-commands-face): Ditto.
7527 (sieve-tagged-arguments-face): Ditto.
7528
7529 * smime.el (smime): Add :group.
7530
7531 * spam-report.el (spam-report): Add :group.
7532
7533 * spam.el (spam, spam-face): Add :group.
7534
7535 2005-05-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
7536
7537 * nntp.el (nntp-next-result-arrived-p): Some news servers may
7538 return \n.\n.\n at the end of articles. Protect against that.
7539 (nntp-with-open-group): Allow debugging.
7540
7541 * nnheader.el (mail-header-set-extra): Make into a function
7542 because I just could't understand how to quote the list properly.
7543
7544 * dns.el (query-dns-cached): New function.
7545
7546 2005-05-26 Lute Kamstra <lute@gnu.org>
7547
7548 * score-mode.el (gnus-score-mode): Use run-mode-hooks.
7549
7550 2005-05-16 Katsumi Yamaoka <yamaoka@jpl.org>
7551
7552 * gnus-art.el: Don't autoload mail-extract-address-components.
7553
7554 * gnus.el: Remove duplicated autoload for message-y-or-n-p; use
7555 eval-and-compile to evaluate it.
7556
7557 * hashcash.el: Don't autoload executable-find.
7558
7559 * nndb.el: Don't declare the nndb back end two or more times; don't
7560 autoload news-reply-mode, news-setup, cancel-timer and telnet.
7561
7562 * nntp.el: Autoload format-spec instead of format; use
7563 eval-and-compile to evaluate autoload forms.
7564
7565 2005-05-09 Georg C. F. Greve <greve@gnu.org> (tiny change)
7566
7567 * pgg-gpg.el (pgg-gpg-possibly-cache-passphrase): Fix PIN caching.
7568
7569 2005-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
7570
7571 * gnus.el (gnus-version-number): Bump version.
7572
7573 2005-05-01 Lars Magne Ingebrigtsen <lars@ingebrigtsen.no>
7574
7575 * gnus.el: No Gnus v0.3 is released.
7576
7577 2005-04-28 Katsumi Yamaoka <yamaoka@jpl.org>
7578
7579 * gnus-art.el (gnus-article-edit-part): Disable undo.
7580
7581 2005-04-25 Katsumi Yamaoka <yamaoka@jpl.org>
7582
7583 * gnus-art.el (article-date-ut): Don't delete X-Sent header when
7584 gnus-article-date-lapsed-new-header is t if date timer is active;
7585 skip headers in which the original date value is empty.
7586 (gnus-article-save-original-date): Redefine it as a macro.
7587 (gnus-display-mime): Use it.
7588
7589 2005-04-22 Katsumi Yamaoka <yamaoka@jpl.org>
7590
7591 * gnus-art.el (article-date-ut): Support converting date in
7592 forwarded parts as well.
7593 (gnus-article-save-original-date): New function.
7594 (gnus-display-mime): Use it.
7595
7596 2005-04-22 David Hansen <david.hansen@physik.fu-berlin.de>
7597
7598 * nnrss.el (nnrss-check-group, nnrss-request-article): Support the
7599 enclosure element of <item>.
7600
7601 2005-04-21 Reiner Steib <Reiner.Steib@gmx.de>
7602
7603 * message.el (message-kill-buffer-query): Renamed from
7604 `message-kill-buffer-query-if-modified'. Added :version.
7605
7606 2005-04-19 Katsumi Yamaoka <yamaoka@jpl.org>
7607
7608 * mml.el (mml-preview): Bind gnus-message-buffer while setting the
7609 window layout.
7610
7611 2005-04-18 Katsumi Yamaoka <yamaoka@jpl.org>
7612
7613 * mml.el: Autoload dnd when compiling.
7614
7615 2005-04-18 Reiner Steib <Reiner.Steib@gmx.de>
7616
7617 * mml.el (mml-mode, mml-dnd-attach-file): Use dnd-* instead of
7618 x-dnd-*.
7619
7620 2005-04-18 Katsumi Yamaoka <yamaoka@jpl.org>
7621
7622 * qp.el (quoted-printable-encode-region): Save excursion.
7623
7624 2005-04-14 Teodor Zlatanov <tzz@lifelogs.com>
7625
7626 * message.el (message-kill-buffer-query-if-modified): Add new variable
7627 so the user can kill a modified message buffer quickly.
7628 (message-kill-buffer): Use it.
7629
7630 2005-04-13 Katsumi Yamaoka <yamaoka@jpl.org>
7631
7632 * gnus-art.el (gnus-mime-inline-part): Use mm-string-to-multibyte.
7633 * qp.el (quoted-printable-encode-region): Use mm-string-to-multibyte.
7634
7635 2005-04-12 Katsumi Yamaoka <yamaoka@jpl.org>
7636
7637 * nnrss.el (nnrss-node-text): Replace CRLFs (which might be
7638 contained in text because xml.el decodes entities) with LFs.
7639
7640 2005-04-11 Lute Kamstra <lute@gnu.org>
7641
7642 * nnimap.el (nnimap-date-days-ago): Handle byte-compiler warnings
7643 differently.
7644
7645 2005-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
7646
7647 * mm-util.el (mm-detect-coding-region): Typo.
7648
7649 2005-04-11 Katsumi Yamaoka <yamaoka@jpl.org>
7650
7651 * gnus-art.el (gnus-article-read-summary-keys): Fix misplaced parens.
7652
7653 2005-04-06 D Goel <deego@gnufans.org>
7654
7655 * spam-stat.el (spam-stat-score-buffer): Add a call to a
7656 user-function allow user modifications of the scores.
7657 (spam-stat-score-buffer-user): New function, to allow
7658 user-computed modifications to the score.
7659 (spam-stat-score-buffer-user-functions): List of additional
7660 scoring functions.
7661 (spam-stat-error-holder): Global temporary error holder.
7662 (spam-stat-split-fancy): Use the new `spam-stat-error-holder'
7663 variable.
7664
7665 2005-04-06 Teodor Zlatanov <tzz@lifelogs.com>
7666
7667 * gnus-registry.el (gnus-registry-clean-empty-function)
7668 (gnus-registry-trim, gnus-registry-fetch-groups)
7669 (gnus-registry-delete-group): Groups that match
7670 `gnus-registry-ignored-groups' are removed from the registry
7671 entries, not just ignored for splitting. This helps clean up the
7672 registry. Also, `gnus-registry-fetch-groups' is a convenient way
7673 to get all the groups a message ID is in.
7674
7675 * spam-stat.el (spam-stat-split-fancy-spam-threshold)
7676 (spam-stat-split-fancy): Change "threshhold" to "threshold"
7677 (spam-stat-score-buffer-user-functions): Add :number custom type.
7678
7679 2005-04-06 Katsumi Yamaoka <yamaoka@jpl.org>
7680
7681 * mm-util.el (mm-coding-system-p): Don't return binary for the nil
7682 argument in XEmacs.
7683
7684 * nnrss.el (nnrss-compatible-encoding-alist): New variable.
7685 (nnrss-request-group): Decode group name first.
7686 (nnrss-request-article): Make a text/plain article if mml-to-mime
7687 failed.
7688 (nnrss-get-encoding): Return a compatible encoding according to
7689 nnrss-compatible-encoding-alist.
7690 (nnrss-find-el): Use consp instead of listp.
7691 (nnrss-opml-export, nnrss-order-hrefs, nnrss-find-el): Use dolist.
7692
7693 2005-04-06 Katsumi Yamaoka <yamaoka@jpl.org>
7694
7695 * time-date.el (time-to-seconds): Don't use the #xhhhh syntax
7696 which Emacs 20 doesn't support.
7697 (seconds-to-time, days-to-time, time-subtract, time-add): Ditto.
7698
7699 2005-04-04 Reiner Steib <Reiner.Steib@gmx.de>
7700
7701 * nnimap.el (nnimap-date-days-ago): Add defvars in order to
7702 silence the byte compiler inside the defun.
7703
7704 * gnus-demon.el (parse-time-string): Add autoload.
7705
7706 * gnus-delay.el (parse-time-string): Add autoload.
7707
7708 * gnus-art.el (parse-time-string): Add autoload.
7709
7710 * nnultimate.el (parse-time): Require for `parse-time-string'.
7711
7712 2005-03-31 Reiner Steib <Reiner.Steib@gmx.de>
7713
7714 * gnus-art.el (gnus-copy-article-ignored-headers): Update :version.
7715
7716 * gnus-score.el (gnus-adaptive-pretty-print): Ditto.
7717
7718 * smime.el (smime-ldap-host-list): Add :version.
7719
7720 2005-03-21 Reiner Steib <Reiner.Steib@gmx.de>
7721
7722 * gnus-srvr.el (gnus-browse-select-group): Add NUMBER argument and
7723 pass it to `gnus-browse-read-group'.
7724 (gnus-browse-read-group): Add NUMBER argument and pass it to
7725 `gnus-group-read-ephemeral-group'.
7726
7727 * gnus-group.el (gnus-group-read-ephemeral-group): Add NUMBER
7728 argument and pass it to `gnus-group-read-group'.
7729
7730 2005-03-19 Aidan Kehoe <kehoea@parhasard.net>
7731
7732 * mm-util.el (mm-xemacs-find-mime-charset): Only call
7733 mm-xemacs-find-mime-charset-1 if we have the mule feature
7734 available at runtime.
7735
7736 2005-03-25 Werner Lemberg <wl@gnu.org>
7737
7738 * nnmaildir.el: Replace `illegal' with `invalid'.
7739
7740 2005-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
7741
7742 * gnus-start.el (gnus-display-time-event-handler):
7743 Check display-time-timer at runtime rather than only at load time
7744 in case display-time-mode is turned off in the mean time.
7745
7746 2005-03-16 Reiner Steib <Reiner.Steib@gmx.de>
7747
7748 * nnimap.el (nnimap-open-connection): Print which authinfo file is
7749 used.
7750
7751 * nneething.el (nneething-map-file-directory): Derive from
7752 `gnus-directory'.
7753
7754 * gnus-art.el (gnus-header-button-alist): Use `gnus-msg-mail' for
7755 the To/Cc button.
7756
7757 2005-03-15 Reiner Steib <Reiner.Steib@gmx.de>
7758
7759 * nnmaildir.el (nnmaildir-request-accept-article):
7760 Use `nnheader-cancel-timer' for compatibility with current XEmacs.
7761
7762 2005-03-13 Andrey Slusar <anrays@gmail.com> (tiny change)
7763
7764 * gnus-async.el: Require timer-funcs at compile time when in
7765 XEmacs for `run-with-idle-timer'.
7766
7767 2005-03-13 Andrey Slusar <anrays@gmail.com> (tiny change)
7768
7769 * gnus.el: Don't try and mark `gnus-agent-save-groups' as an
7770 autoloaded function.
7771
7772 2005-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
7773
7774 * nnimap.el (nnimap-retrieve-headers-from-server): Fix last change.
7775
7776 2005-03-10 Arne Jørgensen <arne@arnested.dk> (tiny change)
7777
7778 * nnimap.el (nnimap-retrieve-headers-from-server): Fix off-by-one flaw.
7779
7780 2005-03-09 Lars Magne Ingebrigtsen <larsi@gnus.org>
7781
7782 * gnus-msg.el (gnus-confirm-mail-reply-to-news): Add
7783 gnus-expert-user to default.
7784
7785 2005-03-08 Juergen Kreileder <jk@blackdown.de> (tiny change)
7786
7787 * nnimap.el (nnimap-open-server): Ditto.
7788
7789 * imap.el (imap-authenticate): Fix typo.
7790
7791 2005-03-08 Bjorn Solberg <bjorn_ding@hekneby.org> (tiny change)
7792
7793 * nnimap.el (nnimap-retrieve-headers-from-server): Sort NOV
7794 buffer (since IMAP server might return FETCH response out of
7795 order, and the nntp buffer must be sorted).
7796
7797 2005-03-06 Kevin Greiner <kevin.greiner@compsol.cc>
7798
7799 * gnus-start.el (gnus-convert-old-newsrc): Fixed numeric
7800 comparison on string.
7801
7802 * gnus-agent.el (gnus-agent-long-article, gnus-agent-short-article)
7803 (gnus-agent-score): Renamed category keywords to match gnus-cus.
7804 (gnus-agent-summary-fetch-series): Modified to protect against
7805 gnus-agent-summary-fetch-group clearing processable flags.
7806 (gnus-agent-synchronize-group-flags): Update live group buffer as
7807 synchronization may occur due to the user toggle the plugged
7808 status.
7809 (gnus-agent-fetch-group-1): Clear downloadable flag when article
7810 successfully downloaded.
7811 (gnus-agent-expire-group-1): Avoid using markers when the overview
7812 is in ascending order; greatly improves performance.
7813 (gnus-agent-regenerate-group): Use
7814 gnus-agent-synchronize-group-flags to reset read status in both
7815 gnus and server.
7816 (gnus-agent-update-files-total-fetched-for): Fixed initial size.
7817
7818 2005-03-04 Reiner Steib <Reiner.Steib@gmx.de>
7819
7820 * message.el: Don't autoload former message-utils variables.
7821 (message-strip-subject-trailing-was): Change doc string.
7822
7823 * nnweb.el: Fixes for `gnus-group-make-web-group'.
7824 (nnweb-type-definition): Don't add "hl=en" in `address'. Add `base'.
7825 (nnweb-google-search): Add "hl=en" here.
7826 (nnweb-google-parse-1, nnweb-google-create-mapping):
7827 Don't hardcode URL.
7828
7829 2005-03-03 Reiner Steib <Reiner.Steib@gmx.de>
7830
7831 * message.el (message-get-reply-headers, message-followup):
7832 Mention related variables `message-use-followup-to' and
7833 `message-use-mail-followup-to', in the information buffer.
7834
7835 * nnweb.el (nnweb-type-definition): Use groups.google.de instead
7836 of broken groups(-beta).google.com.
7837
7838 2005-03-03 Teodor Zlatanov <tzz@lifelogs.com>
7839
7840 * gnus-sum.el (gnus-summary-move-article): Pass move-is-internal
7841 parameter to invoked gnus-request-move-article; remove the
7842 redundant gnus-sum-hint-move-is-internal variable; apply the marks
7843 all at once instead of once per article.
7844 (gnus-summary-remove-process-mark): Accept a list of articles as
7845 well as a single article for processing.
7846
7847 * gnus-int.el (gnus-request-move-article): Add move-is-internal
7848 parameter.
7849
7850 * nnml.el (nnml-request-move-article): Add move-is-internal parameter.
7851
7852 * nnmh.el (nnmh-request-move-article): Add move-is-internal parameter.
7853
7854 * nnmbox.el (nnmbox-request-move-article): Add move-is-internal
7855 parameter.
7856
7857 * nnmaildir.el (nnmaildir-request-move-article): Add move-is-internal
7858 parameter.
7859
7860 * nnimap.el (nnimap-request-move-article): Add move-is-internal
7861 parameter and remove the gnus-sum-hint-move-is-internal variable.
7862
7863 * nnfolder.el (nnfolder-request-move-article): Add move-is-internal
7864 parameter.
7865
7866 * nndraft.el (nndraft-request-move-article): Add move-is-internal
7867 parameter.
7868
7869 * nndiary.el (nndiary-request-move-article): Add move-is-internal
7870 parameter.
7871
7872 * nndb.el (nndb-request-move-article): Add move-is-internal parameter.
7873
7874 * nnbabyl.el (nnbabyl-request-move-article): Add move-is-internal
7875 parameter.
7876
7877 * nnagent.el (nnagent-request-move-article): Add move-is-internal
7878 parameter.
7879
7880 2005-03-01 Stefan Monnier <monnier@iro.umontreal.ca>
7881
7882 * gnus-sum.el (gnus-summary-exit): Undo last change and fix it in
7883 a more conservative way.
7884
7885 2005-02-26 Stefan Monnier <monnier@iro.umontreal.ca>
7886
7887 * gnus-sum.el (gnus-summary-exit): Move point after displaying the
7888 buffer, so it moves the window's cursor.
7889
7890 2005-02-26 Arne Jørgensen <arne@arnested.dk>
7891
7892 * mm-decode.el (mm-dissect-buffer): Pass the from field on to
7893 `mm-dissect-multipart' and receive the from field as an (optional)
7894 argument from `mm-dissect-multipart'.
7895 (mm-dissect-multipart): Receive the from field as an argument and
7896 pass it on when we call `mm-dissect-buffer' on MIME parts.
7897 Fixes verification/decryption of signed/encrypted MIME parts.
7898
7899 2005-02-25 Teodor Zlatanov <tzz@lifelogs.com>
7900
7901 * gnus-sum.el (gnus-summary-move-article): Set
7902 gnus-sum-hint-move-is-internal for gnus-request-move-article and
7903 whatever it calls (right now, only nnimap-request-move article
7904 respects it).
7905
7906 * nnimap.el (nnimap-request-move-article): When
7907 gnus-sum-hint-move-is-internal is set, don't do the extra
7908 nnimap-request-article.
7909
7910 2005-02-24 Reiner Steib <Reiner.Steib@gmx.de>
7911
7912 * nnheader.el (nnheader-find-file-noselect): Add doc string.
7913
7914 * nnfolder.el (nnfolder-read-folder): Use RAWFILE for
7915 `nnheader-find-file-noselect' to avoid `large-file-warning-threshold'.
7916
7917 * gnus-sum.el (gnus-summary-caesar-message):
7918 Apply `gnus-treat-article' after rotation.
7919
7920 * gnus-group.el (gnus-group-clear-data): Mention process/prefix in
7921 doc string.
7922
7923 2005-02-22 Simon Josefsson <jas@extundo.com>
7924
7925 * encrypt.el (encrypt-password-cache-expiry): Remove (use
7926 `password-cache-expiry' instead). Reported by Arne Jørgensen
7927 <arne@arnested.dk>.
7928 (encrypt): Add password-cache and password-cache-expiry as group
7929 members.
7930
7931 2005-02-22 Arne Jørgensen <arne@arnested.dk>
7932
7933 * smime.el (smime-ldap-host-list): Doc fix.
7934 (smime-ask-passphrase): Use `password-read-and-add' to read (and
7935 cache) password.
7936 (smime-sign-region): Use it.
7937 (smime-decrypt-region): Use it.
7938 (smime-sign-buffer): Signal an error if `smime-sign-region' fails.
7939 (smime-encrypt-buffer): Signal an error if `smime-encrypt-region'
7940 fails.
7941 (smime-cert-by-ldap-1): Use `base64-encode-string' to convert
7942 certificate from DER to PEM format rather than calling openssl.
7943
7944 * mml-smime.el (mml-smime-encrypt-query): Remove obsolete comment.
7945
7946 * mml-sec.el (mml-secure-message): Insert keyfile/certfile tags
7947 for signing/encryption.
7948
7949 * mml.el (mml-parse-1): Use them.
7950
7951 2005-02-21 Arne Jørgensen <arne@arnested.dk>
7952
7953 * nnrss.el (nnrss-verbose): Removed.
7954 (nnrss-request-group): Use `nnheader-message' instead.
7955
7956 2005-02-19 Mark Plaksin <happy@usg.edu> (tiny change)
7957
7958 * nnrss.el (nnrss-verbose): New variable.
7959 (nnrss-request-group): Make it say nnrss is requesting a group.
7960
7961 2005-02-21 Reiner Steib <Reiner.Steib@gmx.de>
7962
7963 * gnus-art.el (gnus-parse-news-url, gnus-button-handle-news):
7964 Handle news URL with given port correctly.
7965
7966 2005-02-19 Katsumi Yamaoka <yamaoka@jpl.org>
7967
7968 * gnus-msg.el (gnus-copy-article-buffer): Quote decoded words
7969 containing special characters.
7970
7971 * gnus-sum.el (gnus-summary-edit-article): Ditto.
7972
7973 * mml.el (mime-to-mml): Ditto.
7974
7975 * rfc2047.el (rfc2047-encode-parameter): Use ietf-drums-tspecials.
7976 (rfc2047-quote-decoded-words-containing-tspecials): New variable.
7977 (rfc2047-decode-region): Quote decoded words containing special
7978 characters when rfc2047-quote-decoded-words-containing-tspecials
7979 is non-nil.
7980
7981 2005-02-16 Teodor Zlatanov <tzz@lifelogs.com>
7982
7983 * gnus-registry.el (gnus-registry-delete-group): Add minor bug fix.
7984
7985 * gnus.el (gnus-install-group-spam-parameters): Add minor doc fix.
7986
7987 2005-02-15 Simon Josefsson <jas@extundo.com>
7988
7989 * nnimap.el (nnimap-debug): Doc fix.
7990
7991 * imap.el (imap-debug): Doc fix.
7992
7993 2005-02-15 Katsumi Yamaoka <yamaoka@jpl.org>
7994
7995 * gnus-art.el: Avoid "Recursive load suspected" error in Emacs 21.1.
7996
7997 2005-02-14 Teodor Zlatanov <tzz@lifelogs.com>
7998
7999 * gnus.el (spam-contents): Improve docs for spam-contents
8000 parameter in its variable incarnation.
8001
8002 2005-02-14 Simon Josefsson <jas@extundo.com>
8003
8004 * smime-ldap.el: Use require instead of load-library for ldap.
8005 (smime-ldap-search): Indent.
8006 (smime-ldap-search-internal): Shorten line.
8007
8008 * smime.el (smime-cert-by-dns): Add doc-string.
8009 (smime-cert-by-ldap-1): Indent.
8010
8011 * mml-smime.el (mml-smime-get-ldap-cert): Renamed from
8012 mml-smime-get-dns-ldap.
8013 (mml-smime-encrypt-query): Use new function. Default to ldap.
8014
8015 2005-02-14 Arne Jørgensen <arne@arnested.dk>
8016
8017 * smime.el: Require smime-ldap.
8018 (smime-ldap-host-list): New variable.
8019 (smime-cert-by-ldap, smime-cert-by-ldap-1): New functions.
8020
8021 * mml-smime.el (mml-smime-encrypt-query): New function.
8022 (mml-smime-encrypt-query): Use it.
8023
8024 * smime-ldap.el: New file.
8025
8026 2005-02-13 Katsumi Yamaoka <yamaoka@jpl.org>
8027
8028 * gnus-agent.el: Remove garbage made while merging the Emacs trunk.
8029
8030 2005-02-14 Reiner Steib <Reiner.Steib@gmx.de>
8031
8032 * gnus-group.el (gnus-group-make-doc-group): Mention prefix
8033 argument in doc string. Make query for type more clear.
8034
8035 2005-02-13 Reiner Steib <Reiner.Steib@gmx.de>
8036
8037 * gnus.el (gnus-group-startup-message): Search for gnus images in
8038 etc/images/gnus.
8039 * mm-util.el (mm-image-load-path): Likewise.
8040 * smiley.el (smiley-data-directory): Search for smilies in
8041 etc/images/smilies.
8042
8043 2005-02-09 Kim F. Storm <storm@cua.dk>
8044
8045 Change Emacs release version from 21.4 to 22.1 throughout.
8046 Change Emacs development version from 21.3.50 to 22.0.50.
8047
8048 2005-02-12 Katsumi Yamaoka <yamaoka@jpl.org>
8049
8050 * gnus-art.el (gnus-mime-copy-part): Don't decode compressed parts.
8051
8052 * mm-util.el (mm-coding-system-to-mime-charset): Make it work with
8053 non-Mule XEmacs as well.
8054 (mm-decompress-buffer): Signal an error intentionally if it does
8055 not decompress compressed data because auto-compression-mode is
8056 disabled.
8057
8058 2005-02-11 Teodor Zlatanov <tzz@lifelogs.com>
8059
8060 * gnus-registry.el (gnus-registry-delete-group): Fix bug: leaves
8061 an ID in the registry even if it has no groups.
8062
8063 2005-02-10 Katsumi Yamaoka <yamaoka@jpl.org>
8064
8065 * gnus-art.el (gnus-mime-jka-compr-maybe-uncompress): Remove;
8066 merge it into mm-decompress-buffer.
8067 (gnus-mime-copy-part): Use the MIME part charset, the value which
8068 a user specified or gnus-newsgroup-charset for decoding, like
8069 gnus-mime-inline-part does; set buffer-file-coding-system to tell
8070 save-buffer what was used. Suggested by Kevin Ryde
8071 <user42@zip.com.au>.
8072 (gnus-mime-inline-part): Allow the name parameter as well as the
8073 filename parameter; force decompressing of compressed data; always
8074 display contents being not decoded as unibyte.
8075
8076 * mm-view.el (mm-display-inline-fontify): Allow the name parameter
8077 as well as the filename parameter.
8078
8079 * mm-util.el (mm-decompress-buffer): Merge
8080 gnus-mime-jka-compr-maybe-uncompress.
8081 (mm-find-buffer-file-coding-system): Doc fix; force decompressing
8082 of compressed data.
8083
8084 2005-02-08 Simon Josefsson <jas@extundo.com>
8085
8086 * imap.el (imap-log): Doc fix.
8087
8088 2005-02-07 Katsumi Yamaoka <yamaoka@jpl.org>
8089
8090 * gnus-art.el (gnus-mime-inline-part): Decode parts according to
8091 the coding cookies; decompress compressed parts.
8092
8093 * mml.el (mml-generate-mime-1): Add the charaset parameter according
8094 to the value which a user specified manually or the coding cookie.
8095
8096 * mm-util.el (mm-string-to-multibyte): New function.
8097 (mm-detect-mime-charset-region): Work with Emacs 22 as well.
8098 (mm-coding-system-to-mime-charset): New function.
8099 (mm-decompress-buffer): New function.
8100 (mm-find-buffer-file-coding-system): New function.
8101
8102 * mm-view.el (mm-insert-inline): Make sure a part ends with a newline.
8103 (mm-display-inline-fontify): Rewrite for decoding and decompressing
8104 parts.
8105
8106 2005-02-07 TSUCHIYA Masatoshi <tsuchiya@namazu.org>
8107
8108 * mm-view.el (mm-display-inline-fontify): Decode a part according
8109 to the charset parameter.
8110
8111 2005-02-03 Katsumi Yamaoka <yamaoka@jpl.org>
8112
8113 * gnus-art.el (gnus-mime-inline-part): Show the raw contents if a
8114 prefix arg is neither nil nor a number, as info specifies.
8115
8116 2005-02-02 Katsumi Yamaoka <yamaoka@jpl.org>
8117
8118 * nntp.el (nntp-marks-changed-p): Use time-less-p to compare the
8119 timestamps.
8120
8121 2005-02-02 Jari Aalto <jari.aalto@cante.net>
8122
8123 * gnus-sum.el (gnus-list-of-unread-articles): Improve active
8124 groups error checking and notify user.
8125
8126 2005-02-02 Jari Aalto <jari.aalto@poboxes.com>
8127
8128 * message.el (message-send-mail-function): Check existence of
8129 sendmail-program first before using default value
8130 `message-send-mail-with-sendmail'. Otherwise use more generic
8131 `smtpmail-send-it'.
8132
8133 2005-02-01 Katsumi Yamaoka <yamaoka@jpl.org>
8134
8135 * nntp.el (nntp-request-update-info): Always return nil.
8136
8137 2005-01-30 Stefan Monnier <monnier@iro.umontreal.ca>
8138
8139 * gnus-art.el (gnus-article-mode): Turn off the "\ " non-break space.
8140
8141 2005-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
8142
8143 * message.el (message-beginning-of-line): Change the behavior when
8144 invoked between BOL and : so that it first moves backward.
8145
8146 2005-01-28 Katsumi Yamaoka <yamaoka@jpl.org>
8147
8148 * gnus-art.el (gnus-article-setup-buffer): Kill and re-create the
8149 article buffer when editing of the article is discarded.
8150 (gnus-article-prepare): Revert.
8151
8152 2005-01-28 Katsumi Yamaoka <yamaoka@jpl.org>
8153
8154 * gnus-art.el (gnus-article-prepare):
8155 Remove message-strip-forbidden-properties from the local hook.
8156
8157 2005-01-27 Simon Josefsson <jas@extundo.com>
8158
8159 * password.el (password-cache-add): Only start one timer per key.
8160 Reported by Derek Atkins <warlord@MIT.EDU>.
8161
8162 2005-01-26 Steve Youngs <steve@sxemacs.org>
8163
8164 * run-at-time.el: Removed. It is no longer needed as
8165 timer-funcs.el in the xemacs-base package has a working version of
8166 `run-at-time'.
8167
8168 * password.el: Require timer-funcs instead of run-at-time in
8169 XEmacs.
8170 Remove `password-run-at-time' macro.
8171 (password-cache-add): Use `run-at-time' instead of
8172 `password-run-at-time'.
8173
8174 * mail-source.el: Require timer-funcs instead of itimer in XEmacs
8175 for `run-with-idle-timer'.
8176
8177 * gnus-demon.el: Require timer-funcs instead of itimer in XEmacs
8178 for `run-at-time'.
8179
8180 * mm-url.el: Require timer-funcs at compile time when in XEmacs
8181 for `with-timeout'.
8182
8183 2005-01-24 Katsumi Yamaoka <yamaoka@jpl.org>
8184
8185 * mml.el (mml-generate-mime-1): Convert string into unibyte when
8186 inserting " *mml*" buffer's contents into a unibyte temp buffer.
8187
8188 2005-01-24 Harald Meland <harald.meland@usit.uio.no> (tiny change)
8189
8190 * mail-source.el (mail-source-fetch-imap): Search for ^From case
8191 sensitively.
8192
8193 2005-01-21 Derek Atkins <warlord@MIT.EDU> (tiny change)
8194
8195 * pgg-pgp.el (pgg-pgp-decrypt-region): Use passphrase cache.
8196
8197 2005-01-20 Katsumi Yamaoka <yamaoka@jpl.org>
8198
8199 * mm-decode.el (mm-insert-part): Switch the multibyteness of data
8200 which will be inserted according to the multibyteness of a buffer
8201 rather than the type of contents. Suggested by ARISAWA Akihiro
8202 <ari@mbf.ocn.ne.jp>.
8203
8204 * nnrss.el (nnrss-find-el): Check carefully whether there's a list
8205 of string which old xml.el may return rather than a string.
8206
8207 2005-01-17 Katsumi Yamaoka <yamaoka@jpl.org>
8208
8209 * gnus-sum.el (gnus-summary-idna-message): Silence byte compiler.
8210
8211 2005-01-16 Simon Josefsson <jas@extundo.com>
8212
8213 * gnus-sum.el (gnus-summary-idna-message): Fail gracefully if
8214 idn/idna.el isn't available.
8215 (gnus-summary-idna-message): Doc fix. Suggested by Michael Cook
8216 <michael@waxrat.com>.
8217
8218 * hashcash.el: Remove non-FSF copyright header.
8219
8220 * hashcash.el (hashcash-extra-generate-parameters): New variable.
8221 (hashcash-generate-payment): Use it.
8222 (hashcash-generate-payment-async): Use it.
8223
8224 2005-01-15 Simon Josefsson <jas@extundo.com>
8225
8226 * message.el (message-idna-to-ascii-rhs): Decode Reply-To too.
8227 Suggested by Raymond Scholz <ray-2005@zonix.de>.
8228
8229 * gnus-sum.el (gnus-summary-wash-map): Bind "W i" to
8230 gnus-summary-idna-message.
8231 (gnus-summary-make-menu-bar): Add De-IDNA menu entry.
8232 (gnus-summary-idna-message): New function.
8233
8234 2005-01-13 Reiner Steib <Reiner.Steib@gmx.de>
8235
8236 * gnus-msg.el (gnus-confirm-mail-reply-to-news): Change default to
8237 gnus-novice-user.
8238
8239 2005-01-12 Katsumi Yamaoka <yamaoka@jpl.org>
8240
8241 * nnrss.el (nnrss-request-delete-group): Delete entries in
8242 nnrss-group-alist as well.
8243 (nnrss-save-server-data): Insert newline.
8244
8245 2005-01-10 Reiner Steib <Reiner.Steib@gmx.de>
8246
8247 * gnus.el (gnus-user-agent): Use list of symbols instead of
8248 symbols. Display full version number for (S)XEmacs. Optionally
8249 display (S)XEmacs codename.
8250
8251 * gnus-util.el (gnus-emacs-version): Update for new
8252 `gnus-user-agent'.
8253
8254 * gnus-msg.el (gnus-extended-version): Make it possible to omit
8255 Gnus version.
8256
8257 2005-01-05 Reiner Steib <Reiner.Steib@gmx.de>
8258
8259 * spam.el (spam-face): New face. Don't use `gnus-splash-face'
8260 which is unreadable in some setups.
8261
8262 2005-01-06 Katsumi Yamaoka <yamaoka@jpl.org>
8263
8264 * gnus-spec.el (gnus-update-format-specifications): Flush the
8265 group format spec cache if it doesn't support decoded group names.
8266
8267 2005-01-03 Reiner Steib <Reiner.Steib@gmx.de>
8268
8269 * gnus-score.el (gnus-decay-scores, gnus-score-load-file):
8270 Allow to apply decay on score files matching a regexp.
8271
8272 2004-12-30 Katsumi Yamaoka <yamaoka@jpl.org>
8273
8274 * gnus-group.el (gnus-group-line-format-alist): Keep the forward
8275 compatibility in %g and %c.
8276
8277 2004-12-29 Katsumi Yamaoka <yamaoka@jpl.org>
8278
8279 * gnus-group.el (gnus-group-line-format-alist): Use decoded group
8280 name for only %g and %c.
8281 (gnus-group-insert-group-line): Bind gnus-tmp-decoded-group instead
8282 of gnus-tmp-group to decoded group name.
8283 (gnus-group-make-rss-group): Exclude `/'s from group names.
8284
8285 2004-12-28 Katsumi Yamaoka <yamaoka@jpl.org>
8286
8287 * nnrss.el (nnrss-get-encoding): Fix regexp.
8288
8289 2004-12-27 Simon Josefsson <jas@extundo.com>
8290
8291 * mm-bodies.el (mm-body-encoding): Don't permit 7-bit to be used when
8292 mm-use-ultra-safe-encoding is enabled (e.g., for PGP/MIME) and we have
8293 trailing white space. Reported by Werner Koch <wk@gnupg.org>.
8294
8295 2004-12-17 Kim F. Storm <storm@cua.dk>
8296
8297 * gnus-group.el (gnus-group-mode-map): Map follow-link to mouse-face.
8298
8299 * gnus-sum.el (gnus-summary-mode-map): Likewise.
8300
8301 2004-12-26 Tsuyoshi AKIHO <akiho@kawachi.zaq.ne.jp>
8302
8303 * gnus-sum.el (gnus-summary-walk-group-buffer): Decode group name.
8304
8305 2004-12-26 Katsumi Yamaoka <yamaoka@jpl.org>
8306
8307 * nnrss.el: Require rfc2047 and mml.
8308 (nnrss-file-coding-system): New variable.
8309 (nnrss-format-string): Redefine it as an inline function.
8310 (nnrss-decode-group-name): New function.
8311 (nnrss-string-as-multibyte): Remove.
8312 (nnrss-retrieve-headers): Decode group name; don't use
8313 nnrss-format-string.
8314 (nnrss-request-group): Decode group name.
8315 (nnrss-request-article): Decode group name; allow a Message-ID as
8316 well as an article number; don't use nnrss-format-string; encode a
8317 Message-ID string which may contain non-ASCII characters; use
8318 mml-to-mime to compose a MIME article.
8319 (nnrss-request-expire-articles): Decode group name.
8320 (nnrss-request-delete-group): Decode group name.
8321 (nnrss-fetch): Clarify error message.
8322 (nnrss-read-server-data): Use insert-file-contents instead of load;
8323 bind file-name-coding-system; use multibyte buffer.
8324 (nnrss-save-server-data): Bind coding-system-for-write to the
8325 value of nnrss-file-coding-system; bind file-name-coding-system;
8326 add coding cookie.
8327 (nnrss-read-group-data): Use insert-file-contents instead of load;
8328 bind file-name-coding-system; use multibyte buffer.
8329 (nnrss-save-group-data): Bind coding-system-for-write to the
8330 value of nnrss-file-coding-system; bind file-name-coding-system.
8331 (nnrss-decode-entities-string): Rename from n-d-e-unibyte-string;
8332 make it work with non-ASCII text.
8333 (nnrss-find-el): Make it work with old xml.el as well.
8334
8335 2004-12-26 Tsuyoshi AKIHO <akiho@kawachi.zaq.ne.jp>
8336
8337 * nnrss.el (nnrss-get-encoding): New function.
8338 (nnrss-fetch): Use unibyte buffer initially; bind
8339 coding-system-for-read while performing mm-url-insert; remove ^Ms;
8340 decode contents according to the encoding attribute.
8341 (nnrss-save-group-data): Add coding cookie.
8342 (nnrss-mime-encode-string): New function.
8343 (nnrss-check-group): Use it to encode subject and author.
8344
8345 2004-12-23 Teodor Zlatanov <tzz@lifelogs.com>
8346
8347 * spam.el (spam-check-BBDB): Don't get the symbol-value of an
8348 imaginary variable.
8349
8350 2004-12-22 Katsumi Yamaoka <yamaoka@jpl.org>
8351
8352 * gnus-spec.el (gnus-spec-tab): Make a Lisp form which works
8353 correctly even if there are wide characters.
8354
8355 2004-12-21 Teodor Zlatanov <tzz@lifelogs.com>
8356
8357 * spam.el (spam-check-BBDB): Fix the BBDB caching code to use
8358 downcased symbol names; make a new cache instead of reusing
8359 bbdb-hashtable.
8360
8361 2004-12-21 Katsumi Yamaoka <yamaoka@jpl.org>
8362
8363 * rfc2231.el (rfc2231-parse-string): Decode encoded value after
8364 concatenating segments rather than before concatenating them.
8365 Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
8366
8367 * message.el (message-get-reply-headers): Bind `extra'.
8368
8369 2004-12-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
8370
8371 * message.el (message-extra-wide-headers): New variable.
8372 (message-get-reply-headers): Use it.
8373
8374 2004-12-20 Katsumi Yamaoka <yamaoka@jpl.org>
8375
8376 * gnus-agent.el (gnus-agent-group-path): Decode group name.
8377 (gnus-agent-group-pathname): Ditto.
8378
8379 * gnus-cache.el (gnus-cache-file-name): Decode group name.
8380
8381 * gnus-group.el (gnus-group-make-group): Decode group name.
8382 (gnus-group-make-rss-group): Register the group data after opening
8383 the nnrss group.
8384
8385 2004-12-17 Paul Jarc <prj@po.cwru.edu>
8386
8387 * nnmaildir.el (nnmaildir-request-expire-articles): Articles moved
8388 by expiry now get marked as read.
8389
8390 2004-12-17 Katsumi Yamaoka <yamaoka@jpl.org>
8391
8392 * mm-util.el (mm-xemacs-find-mime-charset): New macro.
8393
8394 2004-12-17 Aidan Kehoe <kehoea@parhasard.net>
8395
8396 * mm-util.el (mm-xemacs-find-mime-charset-1): New function used to
8397 unify Latin characters in XEmacs.
8398 (mm-find-mime-charset-region): Use it.
8399
8400 2004-12-17 Katsumi Yamaoka <yamaoka@jpl.org>
8401
8402 * gnus-util.el (gnus-delete-directory): New function.
8403
8404 * gnus-agent.el (gnus-agent-delete-group): Use it.
8405
8406 * gnus-cache.el (gnus-cache-delete-group): Use it.
8407
8408 2004-12-16 Katsumi Yamaoka <yamaoka@jpl.org>
8409
8410 * gnus-group.el (gnus-group-make-rss-group): Unify non-ASCII group
8411 names.
8412
8413 2004-12-16 Simon Josefsson <jas@extundo.com>
8414
8415 * hashcash.el (hashcash-payment-alist): Fix custom :type.
8416
8417 2004-12-15 Katsumi Yamaoka <yamaoka@jpl.org>
8418
8419 * mm-url.el (mm-url-predefined-programs): Add --silent arg to curl.
8420
8421 * gnus-group.el (gnus-group-expire-articles-1): Decode group name.
8422 (gnus-group-set-current-level): Decode group name.
8423
8424 2004-12-15 Maciek Pasternacki <maciekp@japhy.fnord.org> (tiny change)
8425
8426 * nnrss.el (nnrss-fetch): Signal an error if w3-parse-buffer also
8427 failed.
8428
8429 2004-12-14 Katsumi Yamaoka <yamaoka@jpl.org>
8430
8431 * gnus-group.el (gnus-group-delete-group): Decode group name.
8432 (gnus-group-make-rss-group): Encode group name.
8433 (gnus-group-catchup-current): Decode group name.
8434 (gnus-group-kill-group): Decode group name.
8435
8436 2004-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
8437
8438 * gnus-art.el (gnus-narrow-to-page): Don't hardcode point-min.
8439
8440 2004-12-13 Katsumi Yamaoka <yamaoka@jpl.org>
8441
8442 * gnus-group.el (gnus-group-make-rss-group):
8443 Use gnus-group-make-group instead of gnus-group-unsubscribe-group.
8444
8445 * gnus-start.el (gnus-setup-news): Honor user's setting to
8446 gnus-message-archive-method. Suggested by Lute Kamstra
8447 <lute@gnu.org>.
8448
8449 2004-12-10 Arnaud Giersch <arnaud.giersch@free.fr> (tiny change)
8450
8451 * gnus-sum.el (gnus-summary-exit-no-update): Don't clear the
8452 global counterparts of the buffer-local variables.
8453
8454 2004-11-16 Romain Francoise <romain@orebokech.com>
8455
8456 * gnus-sum.el (gnus-summary-exit): Don't clear the global
8457 counterparts of the buffer-local variables.
8458
8459 2004-11-25 Reiner Steib <Reiner.Steib@gmx.de>
8460
8461 * message.el (message-forbidden-properties): Fixed typo in doc
8462 string.
8463
8464 2004-11-25 Reiner Steib <Reiner.Steib@gmx.de>
8465
8466 * gnus-util.el (gnus-replace-in-string): Added doc string.
8467
8468 * nnmail.el (nnmail-split-header-length-limit): Increase to 2048
8469 to avoid problems when splitting mails with many recipients.
8470
8471 2004-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
8472
8473 * gnus-sum.el (gnus-summary-exit): Remove redundant and harmful
8474 pop-to-buffer, covered by the subsequent gnus-configure-windows.
8475
8476 2004-12-05 Nelson Ferreira <nelson.ferreira@ieee.org>
8477
8478 * spam-stat.el (spam-stat-save): Load the hashtable from disk only
8479 if there is no hashtable in memory or file modification time is
8480 newer than cached timestamp.
8481
8482 2004-12-03 Reiner Steib <Reiner.Steib@gmx.de>
8483
8484 * gnus-sum.el (gnus-summary-limit-to-recipient): Implement
8485 not-matching option.
8486
8487 2004-12-02 Reiner Steib <Reiner.Steib@gmx.de>
8488
8489 * gnus-sum.el (gnus-summary-limit-to-recipient): New function.
8490 Suggested David Mazieres in analogy to rmail-summary-by-recipients.
8491 (gnus-summary-limit-map, gnus-summary-make-menu-bar): Add it.
8492 (gnus-article-sort-by-recipient, gnus-summary-sort-by-recipient):
8493 New functions. Suggested by Uwe Brauer <oub@mat.ucm.es>.
8494 (gnus-summary-mode-map, gnus-summary-make-menu-bar): Add it.
8495
8496 2004-12-02 Katsumi Yamaoka <yamaoka@jpl.org>
8497
8498 * message.el (message-forward-make-body-mml): Remove headers
8499 according to message-forward-ignored-headers if a message is decoded.
8500
8501 2004-12-02 Romain Francoise <romain@orebokech.com>
8502
8503 * message.el (message-forward-make-body-plain): Always remove
8504 headers according to message-forward-ignored-headers.
8505
8506 2004-12-01 Teodor Zlatanov <tzz@lifelogs.com>
8507
8508 * spam.el (spam-summary-prepare-exit): Remove the
8509 gnus-summary-limit pop for now, it has problems with ham marks for
8510 me.
8511
8512 2004-11-29 Teodor Zlatanov <tzz@lifelogs.com>
8513
8514 * spam.el (spam-summary-prepare-exit): Use gnus-summary-limit
8515 correctly.
8516
8517 2004-11-28 Carl Henrik Lunde <chlunde+bugs+@ping.uio.no> (tiny change)
8518
8519 * format-spec.el (format-spec): Message the char.
8520
8521 2004-11-26 Teodor Zlatanov <tzz@lifelogs.com>
8522
8523 * gnus-art.el (gnus-split-methods): Reformat comments.
8524
8525 * spam.el (spam-summary-prepare-exit): Remove article limits
8526 before exiting the summary buffer.
8527
8528 2004-11-26 Katsumi Yamaoka <yamaoka@jpl.org>
8529
8530 * nnrss.el (nnrss-string-as-multibyte): Redefine it as a macro in
8531 order to silence the byte compiler.
8532
8533 * spam.el: Fix the way to silence the byte compiler, which
8534 complained about bbdb-buffer, bbdb-create-internal, bbdb-records,
8535 bbdb-search-simple, spam-BBDB-register-routine,
8536 spam-enter-ham-BBDB, spam-stat-buffer-change-to-non-spam,
8537 spam-stat-buffer-change-to-spam, spam-stat-buffer-is-non-spam,
8538 spam-stat-buffer-is-spam, spam-stat-load,
8539 spam-stat-register-ham-routine, spam-stat-register-spam-routine,
8540 spam-stat-save and spam-stat-split-fancy.
8541
8542 2004-11-26 Katsumi Yamaoka <yamaoka@jpl.org>
8543
8544 * canlock.el (canlock-password): Remove `:size 0' or `:size 1'
8545 which may confuse users.
8546 (canlock-password-for-verify): Ditto.
8547
8548 * deuglify.el (gnus-outlook-deuglify-unwrap-stop-chars): Ditto.
8549
8550 * gnus-art.el (gnus-emphasis-alist): Ditto.
8551
8552 * gnus-registry.el (gnus-registry-max-entries): Ditto.
8553
8554 * gnus-score.el (gnus-adaptive-word-length-limit): Ditto.
8555
8556 * gnus-start.el (gnus-save-killed-list): Ditto.
8557
8558 * gnus-sum.el (gnus-thread-hide-subtree): Ditto.
8559 (gnus-sum-thread-tree-root): Ditto.
8560 (gnus-sum-thread-tree-false-root): Ditto.
8561 (gnus-sum-thread-tree-single-indent): Ditto.
8562
8563 * message.el (message-courtesy-message): Ditto.
8564 (message-archive-note): Ditto.
8565 (message-subscribed-address-file): Ditto.
8566 (message-user-fqdn): Ditto.
8567
8568 * spam-report.el (spam-report-gmane-regex): Ditto.
8569
8570 * spam.el (spam-blackhole-good-server-regex): Ditto.
8571
8572 2004-11-25 Katsumi Yamaoka <yamaoka@jpl.org>
8573
8574 * mml.el (mml-preview): Widen the message buffer before copying
8575 the contents to the preview buffer; sort headers before previewing.
8576
8577 * message.el (message-hidden-headers): Fix the way to avoid a bug
8578 in the `repeat' widget in Emacs 21.3 or earlier.
8579
8580 2004-11-25 Katsumi Yamaoka <yamaoka@jpl.org>
8581
8582 * message.el (message-hidden-headers): Default to "^References:".
8583 Improve customization type. Suggested by Reiner Steib
8584 <Reiner.Steib@gmx.de>.
8585
8586 2004-11-25 Romain Francoise <romain@orebokech.com>
8587
8588 * message.el (message-strip-forbidden-properties): Remove check for
8589 obsolete `message-hidden' text property, hidden headers are not
8590 accessible in the buffer anymore.
8591
8592 2004-11-22 Romain Francoise <romain@orebokech.com>
8593
8594 * message.el (message-header-format-alist): Add `From' in list
8595 so that it can be sorted.
8596 (message-fix-before-sending): Widen and sort headers before
8597 sending.
8598 (message-hide-headers): Use narrowing to hide headers by moving
8599 them to the top of the buffer and narrowing to the region
8600 underneath.
8601
8602 2004-11-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
8603
8604 * message.el (message-strip-forbidden-properties): Bind
8605 buffer-read-only (etc) to nil.
8606
8607 2004-11-23 Katsumi Yamaoka <yamaoka@jpl.org>
8608
8609 * rfc2047.el (rfc2047-header-encoding-alist): Add In-Reply-To to
8610 address-mime. Suggested by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>.
8611
8612 2004-11-22 Marek Martin <marek.martin@mum.pri.ee> (tiny change)
8613
8614 * nnfolder.el (nnfolder-request-create-group): Save current buffer.
8615
8616 2004-11-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
8617
8618 * dns.el (query-dns): Use sit-for to time instead of
8619 accept-process-output, since that doesn't seem to work on udp
8620 sockets.
8621
8622 2004-11-17 Katsumi Yamaoka <yamaoka@jpl.org>
8623
8624 * rfc2047.el (rfc2047-encode-region): Encode bogus delimiters.
8625
8626 2004-11-15 Jesper Harder <harder@ifa.au.dk>
8627
8628 * pop3.el (pop3-leave-mail-on-server): Don't quote nil in
8629 doc string. Improve doc string.
8630
8631 2004-11-15 Katsumi Yamaoka <yamaoka@jpl.org>
8632
8633 * nntp.el (nntp-request-update-info): Return nil if
8634 nntp-marks-is-evil is true so that gnus-get-unread-articles-in-group
8635 may not call gnus-activate-group which uselessly issues the GROUP
8636 commands for all nntp groups and wastes time. Reported by Romain
8637 Francoise <romain@orebokech.com>.
8638
8639 * gnus-start.el (gnus-get-unread-articles): Remove redundant test.
8640
8641 2004-11-15 Simon Josefsson <jas@extundo.com>
8642
8643 * gnus-art.el (gnus-header-button-alist): Handle URLs in OpenPGP:
8644 headers separately.
8645 (gnus-button-openpgp): New function, inspired by Jochen Küpper
8646 <jochen-+It19tn3Rl9sbm7dSapR3bNAH6kLmebB@public.gmane.org>.
8647
8648 2004-11-14 Reiner Steib <Reiner.Steib@gmx.de>
8649
8650 * gnus-start.el (gnus-convert-old-newsrc):
8651 Assign legacy-gnus-agent to 5.10.7.
8652
8653 2004-11-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
8654
8655 * gnus-art.el (article-unsplit-urls): Don't anchor urls to the
8656 start of the lines.
8657
8658 2004-11-14 Magnus Henoch <mange@freemail.hu>
8659
8660 * hashcash.el (hashcash-default-payment): Change default to 20
8661 (hashcash-default-accept-payment): Change default to 20
8662 (hashcash-process-alist): New variable
8663 (hashcash-generate-payment-async): Add
8664 (hashcash-already-paid-p): Add
8665 (hashcash-insert-payment): Don't generate payments twice
8666 (hashcash-insert-payment-async): Add
8667 (hashcash-insert-payment-async-2): Add
8668 (hashcash-cancel-async): Add
8669 (hashcash-wait-async): Add
8670 (hashcash-processes-running-p): Add
8671 (hashcash-wait-or-cancel): Add
8672 (mail-add-payment): New optional argument. Conditionally start
8673 asynchronous calculation.
8674 (mail-add-payment-async): Add
8675
8676 * message.el (message-send-mail): Wait for asynchronous hashcash
8677 results. Don't clobber existing X-Hashcash headers.
8678 (message-setup-1): Call mail-add-payment-async when
8679 message-generate-hashcash is non-nil.
8680
8681 2004-11-11 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
8682
8683 * message.el (message-use-alternative-email-as-from): Examine the
8684 From header as well; use message-make-from in order to include a
8685 user's full name.
8686
8687 2004-11-10 Katsumi Yamaoka <yamaoka@jpl.org>
8688
8689 * gnus-art.el (gnus-emphasis-alist): Don't hide asterisks by
8690 default; improve customization type.
8691 (gnus-emphasis-custom-with-format): New macro.
8692 (gnus-emphasis-custom-value-to-external): New function.
8693 (gnus-emphasis-custom-value-to-internal): New function.
8694
8695 2004-11-09 Lars Magne Ingebrigtsen <larsi@gnus.org>
8696
8697 * dns.el (query-dns): Resolve reverse addresses.
8698
8699 2004-10-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
8700
8701 * gnus-group.el (gnus-group-get-new-news): Use it.
8702
8703 * gnus-start.el (gnus-check-reasonable-setup): New function.
8704
8705 2004-11-07 Katsumi Yamaoka <yamaoka@jpl.org>
8706
8707 * gnus-msg.el (gnus-configure-posting-styles): Don't cause the
8708 "Args out of range" error. Reported by Arnaud Giersch
8709 <arnaud.giersch@free.fr>.
8710
8711 2004-11-07 Stefan Wiens <s.wi@gmx.net> (tiny change)
8712
8713 * gnus-sum.el (gnus-summary-clear-local-variables): Use symbolp.
8714
8715 2004-11-04 Richard M. Stallman <rms@gnu.org>
8716
8717 * spam.el (spam group): Add :version.
8718
8719 * pgg-def.el (pgg group): Add :version.
8720
8721 2004-11-04 Katsumi Yamaoka <yamaoka@jpl.org>
8722
8723 * gnus-art.el (gnus-article-edit-article): Don't associate the
8724 article buffer with a draft file. This is a temporary measure
8725 against the 2004-08-22 change to gnus-article-edit-mode.
8726
8727 2004-11-02 Katsumi Yamaoka <yamaoka@jpl.org>
8728
8729 * html2text.el (html2text-get-attr): Remove unused argument `tag'.
8730 (html2text-format-tags): Remove unused variable `attr'.
8731
8732 2004-11-01 Reiner Steib <Reiner.Steib@gmx.de>
8733
8734 * gnus-msg.el (gnus-summary-resend-default-address): Add :version.
8735
8736 * spam-stat.el (spam-stat): Add :version.
8737
8738 * sieve.el (sieve): Add :version.
8739
8740 * sha1.el (sha1): Add :version.
8741 (sha1-use-external): Remove redundant version.
8742
8743 * nnmail.el (nnmail-split-fancy-with-parent-ignore-groups)
8744 (nnmail-cache-ignore-groups, nnmail-spool-hook)
8745 (nnmail-split-fancy-match-partial-words)
8746 (nnmail-split-lowercase-expanded): Add :version.
8747
8748 * nndiary.el (nndiary): Add :version.
8749
8750 * mml2015.el (mml2015-unabbrev-trust-alist): Add :version.
8751
8752 * mml-sec.el (mml-default-sign-method)
8753 (mml-default-encrypt-method, mml-signencrypt-style-alist):
8754 Add :version.
8755
8756 * mm-uu.el (mm-uu-diff-groups-regexp): Add :version.
8757
8758 * mm-url.el (mm-url-use-external, mm-url-program)
8759 (mm-url-arguments): Add :version.
8760
8761 * mm-decode.el (mm-inline-text-html-with-w3m-keymap)
8762 (mm-attachment-file-modes, mm-decrypt-option)
8763 (mm-w3m-safe-url-regexp): Add :version.
8764
8765 * message.el (message-cite-prefix-regexp)
8766 (message-sendmail-envelope-from, message-minibuffer-local-map)
8767 (message-user-fqdn, message-completion-alist): Add :version.
8768
8769 * gnus-win.el (gnus-configure-windows-hook)
8770 (gnus-use-frames-on-any-display): Add :version.
8771
8772 * gnus-art.el (gnus-article-address-banner-alist)
8773 (gnus-treat-unsplit-urls, gnus-treat-unfold-headers)
8774 (gnus-treat-from-picon, gnus-treat-mail-picon)
8775 (gnus-treat-x-pgp-sig): Add :version.
8776
8777 * gnus-sum.el (gnus-spam-mark, gnus-recent-mark)
8778 (gnus-undownloaded-mark, gnus-summary-article-move-hook)
8779 (gnus-summary-article-delete-hook)
8780 (gnus-summary-display-while-building): Add :version.
8781
8782 * gnus-start.el (gnus-subscribe-newsgroup-hooks)
8783 (gnus-get-top-new-news-hook):Add :version.
8784
8785 * gnus-srvr.el (gnus-server-agent-face, gnus-server-opened-face)
8786 (gnus-server-closed-face, gnus-server-denied-face): Add :version.
8787
8788 * gnus-registry.el (gnus-registry): Add :version.
8789
8790 * gnus-spec.el (gnus-use-correct-string-widths)
8791 (gnus-make-format-preserve-properties): Add :version.
8792
8793 * gnus.el (gnus-group-charter-alist)
8794 (gnus-group-fetch-control-use-browse-url)
8795 (gnus-install-group-spam-parameters): Add :version.
8796
8797 * gnus-diary.el (gnus-diary): Add :version.
8798
8799 * gnus-delay.el (gnus-delay): Add :version.
8800
8801 * gnus-cite.el (gnus-cite-unsightly-citation-regexp)
8802 (gnus-cite-ignore-quoted-from, gnus-cite-attribution-face)
8803 (gnus-cite-blank-line-after-header, gnus-article-boring-faces):
8804 Add :version.
8805
8806 * gnus-agent.el (gnus-agent-max-fetch-size)
8807 (gnus-agent-enable-expiration, gnus-agent-queue-mail)
8808 (gnus-agent-prompt-send-queue): Add :version.
8809
8810 * deuglify.el (gnus-outlook-deuglify): Add :version.
8811
8812 * html2text.el: Beautify code. Improve doc strings. Some
8813 checkdoc cleanup.
8814 (html2text-get-attr, html2text-fix-paragraph): Simplify code.
8815
8816 2004-11-01 Alfred M. Szmidt <ams@kemisten.nu> (tiny change)
8817
8818 * html2text.el (html2text-format-tag-list): Add "strong" and "em".
8819
8820 2004-10-29 Teodor Zlatanov <tzz@lifelogs.com>
8821
8822 * gnus-registry.el (gnus-registry-hashtb): Create the registry
8823 when package is loaded.
8824
8825 * spam.el (spam-summary-score-preferred-header): Add global preference
8826 for people who want to override the default SpamAssassin over
8827 Bogofilter preference (when both are set).
8828 (spam-necessary-extra-headers): Add spam-use-bogofilter as an option.
8829 (spam-user-format-function-S): Check
8830 spam-summary-score-preferred-header.
8831 (spam-extra-header-to-number): Add X-Bogosity header parsing.
8832 (spam-user-format-function-S): Format the score correctly.
8833
8834 2004-10-29 Katsumi Yamaoka <yamaoka@jpl.org>
8835
8836 * gnus-msg.el (gnus-configure-posting-styles): Work with empty
8837 signature file. Suggested by Manoj Srivastava
8838 <srivasta@golden-gryphon.com>.
8839
8840 * mm-util.el (mm-coding-system-priorities): Prefer iso-8859-1 than
8841 iso-2022-jp even in the Japanese language environment.
8842 Suggested by Jason Rumney <jasonr@gnu.org>.
8843
8844 2004-10-28 Katsumi Yamaoka <yamaoka@jpl.org>
8845
8846 * gnus-sum.el (gnus-update-summary-mark-positions): Allow users to
8847 use the same characters as the dummy marks; make it free from
8848 getting affected by the language environment.
8849 (gnus-summary-read-group-1): Update mark positions only when the
8850 format spec is updated.
8851
8852 * gnus-spec.el (gnus-update-format-specifications): Return a list
8853 of updated types.
8854
8855 2004-10-27 Katsumi Yamaoka <yamaoka@jpl.org>
8856
8857 * gnus-start.el (gnus-check-reasonable-setup): Use fboundp instead
8858 of boundp to check if display-warning is available.
8859
8860 2004-10-26 Teodor Zlatanov <tzz@lifelogs.com>
8861
8862 * nnimap.el (nnimap-open-connection): Fix prog1/prog2 bug.
8863
8864 2004-10-26 Katsumi Yamaoka <yamaoka@jpl.org>
8865
8866 * nnspool.el (nnspool-spool-directory): Use news-path if the
8867 news-directory variable is not bound.
8868
8869 * gnus-start.el (gnus-check-reasonable-setup): Use an alternative
8870 function instead of display-warning if it is not available.
8871
8872 2004-10-26 Reiner Steib <Reiner.Steib@gmx.de>
8873
8874 * gnus-agent.el (gnus-agent-expire-group-1): Fix last merge from
8875 v5-10: Use `point-at-bol'.
8876
8877 2004-10-26 Simon Josefsson <jas@extundo.com>
8878
8879 * hashcash.el: Fix URL in comment, reported by Cheng Gao
8880 <chenggao@gmail.com>.
8881
8882 2004-10-25 Reiner Steib <Reiner.Steib@gmx.de>
8883
8884 * html2text.el (html2text-buffer-head): Remove. Use `goto-char'
8885 instead.
8886
8887 2004-10-25 Teodor Zlatanov <tzz@lifelogs.com>
8888
8889 * nnimap.el (nnimap-remove-server-from-buffer-alist): Add function
8890 to remove a server from the nnimap-server-buffer-alist.
8891 (nnimap-open-connection, nnimap-close-server): Use it.
8892
8893 * gnus-encrypt.el: Remove file in favor of encrypt.el.
8894
8895 2004-10-21 Katsumi Yamaoka <yamaoka@jpl.org>
8896
8897 * mm-view.el (mm-display-inline-fontify): Inhibit font-lock when
8898 running the major-mode function.
8899
8900 2004-10-19 Katsumi Yamaoka <yamaoka@jpl.org>
8901
8902 * gnus-sum.el (gnus-update-summary-mark-positions): Search for
8903 dummy marks in the right way.
8904
8905 2004-10-18 David Edmondson <dme@dme.org>
8906
8907 * mm-view.el (mm-w3m-cid-retrieve-1): Don't use recursive call
8908 excessively.
8909
8910 2004-10-18 Teodor Zlatanov <tzz@lifelogs.com>
8911
8912 * gnus-util.el (gnus-split-references): Accept a nil references
8913 string and go on blissfully.
8914
8915 * gnus-registry.el (gnus-registry-split-fancy-with-parent): Catch
8916 cases where the references string is non-nil but has no references.
8917
8918 * encrypt.el: Add autoload tags.
8919
8920 * spam.el (spam-resolve-registrations-routine): Remove article
8921 from unregistration list too. Reported by David Hanak
8922 <dhanak@isis.vanderbilt.edu>
8923
8924 2004-10-18 Reiner Steib <Reiner.Steib@gmx.de>
8925
8926 * gnus-art.el (gnus-copy-article-ignored-headers): Default to
8927 nil. Changed custom type.
8928
8929 2004-10-17 Reiner Steib <Reiner.Steib@gmx.de>
8930
8931 * gnus-art.el (gnus-copy-article-ignored-headers): New variable.
8932
8933 * gnus-sum.el (gnus-summary-move-article): Use it.
8934
8935 2004-10-15 Teodor Zlatanov <tzz@lifelogs.com>
8936
8937 * encrypt.el: Add autoload cookies.
8938
8939 * spam.el (spam-backend-article-list-property)
8940 (spam-backend-get-article-todo-list)
8941 (spam-backend-put-article-todo-list, )
8942 (spam-summary-prepare-exit, spam-resolve-registrations-routine):
8943 Resolve registrations separately.
8944 (spam-register-routine): Format comments.
8945 (spam-unregister-routine, spam-register-routine): Always call with
8946 specific-articles, no default list.
8947 (spam-summary-prepare-exit): Use the spam-classifications function.
8948
8949 * netrc.el (autoload, netrc-parse): Use encrypt.el instead of
8950 gnus-encrypt.el.
8951
8952 * encrypt.el: Copied from gnus-encrypt.el.
8953
8954 * gnus-encrypt.el: Commented that it's obsolete.
8955
8956 2004-10-15 Reiner Steib <Reiner.Steib@gmx.de>
8957
8958 * gnus-score.el (gnus-adaptive-pretty-print): New variable.
8959 (gnus-score-save): Use it.
8960
8961 * message.el (message-bury): Use `window-dedicated-p'.
8962
8963 2004-10-15 Simon Josefsson <jas@extundo.com>
8964
8965 * pop3.el (top-level): Don't require nnheader.
8966 (pop3-read-timeout): Add.
8967 (pop3-accept-process-output): Add.
8968 (pop3-read-response, pop3-retr): Use it.
8969
8970 2004-10-14 Teodor Zlatanov <tzz@lifelogs.com>
8971
8972 * spam.el (spam-register-routine): Move comment.
8973 (spam-verify-bogofilter): Use 'unknown for the initial
8974 spam-bogofilter-valid state, not 'never.
8975
8976 * netrc.el (netrc-machine-user-or-password): Add convenience wrapper
8977 for netrc-machine.
8978
8979 * nnimap.el (nnimap-open-connection): Use
8980 netrc-machine-user-or-password.
8981
8982 2004-10-17 Richard M. Stallman <rms@gnu.org>
8983
8984 * gnus-registry.el (gnus-registry-unload-hook):
8985 Set as a variable with add-hook.
8986
8987 * nnspool.el (nnspool-spool-directory): Use news-directory instead
8988 of news-path.
8989
8990 * spam-stat.el (spam-stat-unload-hook): Set as a variable w/ add-hook.
8991
8992 * spam.el: Delete duplicate `provide'.
8993 (spam-unload-hook): Set as a variable with add-hook.
8994
8995 2004-10-15 Reiner Steib <Reiner.Steib@gmx.de>
8996
8997 * pop3.el (pop3-leave-mail-on-server): Describe possible problems
8998 in the doc string.
8999
9000 * message.el (message-ignored-news-headers)
9001 (message-ignored-supersedes-headers)
9002 (message-ignored-resent-headers)
9003 (message-forward-ignored-headers): Improve custom type.
9004
9005 2004-10-13 Katsumi Yamaoka <yamaoka@jpl.org>
9006
9007 * message.el (message-tokenize-header): Fix 2004-09-06 change
9008 which used point-min in the wrong place.
9009
9010 2004-10-12 Simon Josefsson <jas@extundo.com>
9011
9012 * tls.el (tls-certtool-program): New variable.
9013 (tls-certificate-information): New function, based on
9014 ssl-certificate-information.
9015
9016 2004-10-12 Katsumi Yamaoka <yamaoka@jpl.org>
9017
9018 * compface.el: Move the version of ELisp-based uncompface program
9019 to the contrib directory because of the copyright problem.
9020
9021 2004-10-12 Reiner Steib <Reiner.Steib@gmx.de>
9022
9023 * message.el (message-kill-buffer): Raise the current frame.
9024
9025 2004-10-10 Reiner Steib <Reiner.Steib@gmx.de>
9026
9027 * gnus-sum.el: Mention that multibyte characters don't work as marks.
9028
9029 * gnus.el (message-y-or-n-p): Autoload.
9030
9031 * pop3.el (pop3-maildrop, pop3-mailhost, pop3-port)
9032 (pop3-password-required, pop3-authentication-scheme)
9033 (pop3-leave-mail-on-server): Made customizable.
9034 (pop3): New custom group.
9035 (pop3-retr): Remove `sleep-for' statements.
9036 Suggested by Dave Love <fx@gnu.org>.
9037
9038 * nnheader.el (nnheader-read-timeout): Explain 1.0 timeout for
9039 Windows/DOS.
9040
9041 * imap.el (imap-parse-flag-list, imap-parse-body-extension)
9042 (imap-parse-body): Fix incorrect use of `assert'. Suggested by
9043 Dave Love <fx@gnu.org>.
9044
9045 * mml.el (mml-minibuffer-read-disposition): Require match.
9046 Suggested by Dave Love <fx@gnu.org>.
9047
9048 2004-10-11 Reiner Steib <Reiner.Steib@gmx.de>
9049
9050 * gnus-group.el (gnus-group-delete-group): Change "\t." to " " in
9051 doc string.
9052
9053 2004-10-08 Katsumi Yamaoka <yamaoka@jpl.org>
9054
9055 * mm-uu.el (mm-uu-dissect-text-parts): Support all text/* types.
9056
9057 2004-10-07 TSUCHIYA Masatoshi <tsuchiya@namazu.org>
9058
9059 * gnus-art.el (gnus-mime-display-single): Call `mm-display-inline'
9060 instead of calling `mm-insert-inline', to decode text/* parts
9061 before displaying them.
9062
9063 2004-10-07 Katsumi Yamaoka <yamaoka@jpl.org>
9064
9065 * mm-uu.el (mm-uu-text-plain-type): New variable.
9066 (mm-uu-pgp-signed-extract-1): Use it.
9067 (mm-uu-pgp-encrypted-extract-1): Use it.
9068 (mm-uu-dissect): Allow MIME type and parameters as an optional arg;
9069 bind mm-uu-text-plain-type with that value.
9070 (mm-uu-dissect-text-parts): Pass MIME type and parameters to
9071 mm-uu-dissect.
9072
9073 2004-10-06 Katsumi Yamaoka <yamaoka@jpl.org>
9074
9075 * gnus-group.el (gnus-update-group-mark-positions):
9076 * gnus-sum.el (gnus-update-summary-mark-positions):
9077 * message.el (message-check-news-body-syntax):
9078 * gnus-msg.el (gnus-debug): Use mm-string-as-multibyte instead
9079 of string-as-multibyte.
9080
9081 2004-10-05 Juri Linkov <juri@jurta.org>
9082
9083 * gnus-group.el (gnus-update-group-mark-positions):
9084 * gnus-sum.el (gnus-update-summary-mark-positions):
9085 * message.el (message-check-news-body-syntax):
9086 * gnus-msg.el (gnus-debug): Use `string-as-multibyte' to convert
9087 8-bit unibyte values to a multibyte string for search functions.
9088
9089 2004-10-06 Katsumi Yamaoka <yamaoka@jpl.org>
9090
9091 * mm-uu.el (mm-uu-dissect): Allow optional arg.
9092 (mm-uu-dissect-text-parts): New function.
9093
9094 * gnus-art.el (gnus-display-mime): Use mm-uu-dissect-text-parts to
9095 dissect text parts.
9096
9097 * gnus-sum.el (gnus-summary-insert-subject): Remove redundant setq.
9098 (gnus-summary-force-verify-and-decrypt): Revert 2004-08-18 change.
9099
9100 * mm-decode.el (mm-dissect-singlepart): Revert 2004-08-18 change.
9101
9102 * gnus-topic.el (gnus-topic-hierarchical-parameters): Use
9103 gnus-current-topics instead of gnus-current-topic.
9104
9105 2004-10-06 Jesper Harder <harder@ifa.au.dk>
9106
9107 * gnus-sum.el (gnus-summary-show-article): Use with-current-buffer.
9108
9109 2004-10-05 Jesper Harder <harder@ifa.au.dk>
9110
9111 * nnsoup.el (nnsoup-read-active-file): Use dolist, mapc or last
9112 where approriate.
9113
9114 * nnml.el (nnml-generate-active-info): do.
9115
9116 * nndiary.el (nndiary-generate-active-info): do.
9117
9118 * gnus-topic.el (gnus-topic-hierarchical-parameters): do.
9119 (gnus-topic-move): do.
9120
9121 * gnus-sum.el (gnus-data-enter-list, gnus-summary-process-mark-set)
9122 (gnus-summary-set-local-parameters, gnus-summary-read-document): do.
9123
9124 * gnus-srvr.el (gnus-server-prepare)
9125 (gnus-server-open-all-servers): do.
9126
9127 * gnus-msg.el (gnus-summary-cancel-article)
9128 (gnus-summary-resend-message)
9129 (gnus-summary-mail-crosspost-complaint): do.
9130
9131 * gnus-move.el (gnus-change-server): do.
9132
9133 * gnus-group.el (gnus-group-unmark-all-groups)
9134 (gnus-group-set-current-level): do.
9135
9136 2004-10-04 Simon Josefsson <jas@extundo.com>
9137
9138 * message.el (message-generate-hashcash): Doc fix.
9139
9140 2004-10-02 Kevin Greiner <kgreiner@compsol.cc>
9141
9142 * nnagent.el (nnagent-request-type): Bind gnus-agent to nil to
9143 avoid infinite recursion via gnus-get-function.
9144
9145 2004-10-02 Jesper Harder <harder@ifa.au.dk>
9146
9147 * mm-partial.el (mm-partial-find-parts): Use with-current-buffer.
9148
9149 * nnfolder.el (nnfolder-generate-active-file): Use dolist.
9150
9151 * nnmail.el (nnmail-split-history): do.
9152
9153 * nnml.el (nnml-generate-nov-databases-1, nnml-request-rename-group)
9154 (nnml-request-delete-group): do.
9155
9156 * nnslashdot.el (nnslashdot-read-groups): do.
9157
9158 * nnsoup.el (nnsoup-delete-unreferenced-message-files): do.
9159 (nnsoup-unpack-packets, nnsoup-make-active): Simplify.
9160
9161 * nnspool.el (nnspool-find-id): Use with-temp-buffer.
9162 (nnspool-sift-nov-with-sed): Use last
9163 (nnspool-retrieve-headers-with-nov): Use mapc.
9164 (nnspool-request-newgroups): Use dolist.
9165 (nnspool-request-group): Use last.
9166
9167 * nntp.el (nntp-read-server-type): Use dolist.
9168
9169 * nnvirtual.el (nnvirtual-create-mapping)
9170 (nnvirtual-update-read-and-marked): Use dolist.
9171 (nnvirtual-convert-headers): Simplify.
9172
9173 2004-10-01 Kevin Greiner <kgreiner@compsol.cc>
9174
9175 * gnus-agent.el (gnus-agent-synchronize-group-flags): Added
9176 support for sync'ing tick marks.
9177
9178 2004-10-01 Katsumi Yamaoka <yamaoka@jpl.org>
9179
9180 * gnus-sum.el (gnus-summary-toggle-header): Make it work even if
9181 there's no visible header.
9182
9183 2004-10-01 Kevin Greiner <kgreiner@compsol.cc>
9184
9185 * gnus-agent.el (gnus-agent-synchronize-group-flags): When
9186 necessary, pass full group name to gnus-request-set-marks.
9187
9188 2004-10-01 Simon Josefsson <jas@extundo.com>
9189
9190 * mailcap.el (mailcap-mime-data): Add pdf. Remove non-free
9191 acroread.
9192
9193 2004-10-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
9194
9195 * spam-report.el (spam-report-gmane): Fix interactive.
9196
9197 * gnus-art.el (gnus-treat-body-boundary): Only do stuff under X.
9198
9199 * gnus-agent.el (gnus-agent-synchronize-flags-server): Be silent
9200 when writing file.
9201 (gnus-agent-synchronize-flags): Don't default to being
9202 interactive.
9203
9204 2004-09-30 Simon Josefsson <jas@extundo.com>
9205
9206 * message.el (message-generate-hashcash): Add.
9207 (message-send-mail): Use it, call mail-add-payment.
9208
9209 2004-09-29 Teodor Zlatanov <tzz@lifelogs.com>
9210
9211 * spam.el (spam-verify-bogofilter): Use -V, not -sV option.
9212
9213 2004-09-28 Kevin Greiner <kgreiner@compsol.cc>
9214
9215 * gnus-agent.el (gnus-agent-synchronize-group-flags): Replaced
9216 gnus-requst-update-info with explicit code to sync the in-memory
9217 info read flags with the marks being sync'd to the backend.
9218
9219 *gnus-util.el (gnus-pp): Added optional stream to match pp API.
9220
9221 2004-09-28 Teodor Zlatanov <tzz@lifelogs.com>
9222
9223 * spam.el (spam-verify-bogofilter): Add new function.
9224 (spam-check-bogofilter)
9225 (spam-bogofilter-register-with-bogofilter): Use it.
9226 (spam-verify-bogofilter): Add small fixes.
9227
9228 2004-09-28 Simon Josefsson <jas@extundo.com>
9229
9230 * hashcash.el (hashcash-generate-payment): Revert.
9231
9232 2004-09-28 Teodor Zlatanov <tzz@lifelogs.com>
9233
9234 * gnus-registry.el (gnus-registry-split-fancy-with-parent): Use
9235 gnus-extract-references instead of gnus-split-references.
9236
9237 * gnus-util.el (gnus-extract-references): Add new function, analogous
9238 to gnus-split-references but extracts only the message-ID without
9239 anything extra.
9240
9241 * hashcash.el (hashcash-generate-payment)
9242 (hashcash-check-payment): Do the right thing if hashcash-path is
9243 nil (because the hashcash program could not be found).
9244
9245 * spam.el (spam-use-hashcash): Remove comment.
9246
9247 2004-09-27 Jesper Harder <harder@ifa.au.dk>
9248
9249 * gnus-cache.el (gnus-cache-possibly-remove-articles-1)
9250 (gnus-cache-enter-article, gnus-cache-remove-article)
9251 (gnus-cache-braid-heads, gnus-cache-generate-active): Use dolist.
9252
9253 * gnus-async.el (gnus-async-prefetch-remove-group): do.
9254
9255 * gnus-art.el (article-hide-boring-headers)
9256 (article-translate-strings, article-display-face)
9257 (gnus-article-mime-match-handle-first)
9258 (gnus-article-highlight-headers)
9259 (gnus-article-add-buttons-to-head): do.
9260
9261 2004-09-27 Simon Josefsson <jas@extundo.com>
9262
9263 * hashcash.el: New version, from
9264 http://users.actrix.co.nz/mycroft/hashcash.el. Previously in
9265 ../contrib/.
9266
9267 2004-09-27 Katsumi Yamaoka <yamaoka@jpl.org>
9268
9269 * mm-decode.el (mm-copy-to-buffer): Don't use set-buffer-multibyte.
9270
9271 2004-09-26 Jesper Harder <harder@ifa.au.dk>
9272
9273 * gnus-dup.el (gnus-dup-open): Use mapc.
9274 (gnus-dup-enter-articles, gnus-dup-suppress-articles): Use dolist.
9275
9276 (gnus-dup-enter-articles): Remove excess ID's from gnus-dup-hashtb.
9277 Reported by Stefan Wiens <s.wi@gmx.net>.
9278
9279 * gnus.el (gnus-shutdown): Use dolist.
9280
9281 * gnus-undo.el (gnus-undo): Use mapc.
9282
9283 * nnrss.el (nnrss-generate-active): do.
9284
9285 * message.el (message-cite-original-without-signature)
9286 (message-cite-original): Use mapc.
9287 (message-do-actions, message-make-forward-subject): Use dolist.
9288
9289 2004-09-25 Kevin Greiner <kgreiner@compsol.cc>
9290
9291 * gnus-agent.el (gnus-agent-check-overview-buffer): Fixed range of
9292 deletion to remove entire duplicate line. Fixes merged article
9293 number bug.
9294
9295 2004-09-25 Kevin Greiner <kgreiner@compsol.cc>
9296
9297 * gnus-agent.el (gnus-agent-possibly-synchronize-flags): Ignore
9298 servers that are offline. Avoids having gnus-agent-toggle-plugged
9299 first ask if you want to open a server and then, even when you
9300 responded with no, asking if you want to synchronize the server's
9301 flags.
9302 (gnus-agent-synchronize-flags-server): Rewrote read loop to handle
9303 multi-line expressions.
9304 (gnus-agent-synchronize-group-flags): New internal function.
9305 Updates marks in memory (in the info structure) AND in the
9306 backend.
9307
9308 * gnus-util.el (gnus-remassoc): Fixed typo in documentation.
9309
9310 * nnagent.el (nnagent-request-set-mark): Use
9311 gnus-agent-synchronize-group-flags, not backend's request-set-mark
9312 method, to ensure that synchronization updates marks in the
9313 backend and in the info (in memory) structure.
9314
9315 2004-09-24 Katsumi Yamaoka <yamaoka@jpl.org>
9316
9317 * gnus-uu.el (gnus-uu-digest-mail-forward): Obey the process/prefix
9318 convention fully; don't miss the root article of a thread; make
9319 the X-Draft-From header with correct article numbers.
9320
9321 2004-09-23 Kevin Greiner <kgreiner@compsol.cc>
9322
9323 * gnus-agent.el (gnus-agent-synchronize-flags-server): Do nothing
9324 unless plugged. Disable the agent so that an open failure causes
9325 an error.
9326
9327 * gnus-int.el (gnus-request-set-mark, gnus-request-update-mark):
9328 Reverted 2004-09-21 change. The backend must be opened while
9329 synchronizing flags even when the backend stores the flags
9330 locally.
9331
9332 2004-09-23 Reiner Steib <Reiner.Steib@gmx.de>
9333
9334 * gnus-msg.el (gnus-configure-posting-styles): Narrow to headers
9335 in `header' match. Reported by Svend Tollak Munkejord.
9336
9337 * message.el (message-cite-original): Fix use of
9338 `message-cite-articles-with-x-no-archive'.
9339
9340 2004-09-22 Katsumi Yamaoka <yamaoka@jpl.org>
9341
9342 * gnus-win.el (gnus-buffer-configuration): Add mml-preview.
9343 (gnus-window-to-buffer): Ditto.
9344
9345 * mml.el (mml-preview-buffer): New variable.
9346 (mml-preview): Manage window layout with gnus-buffer-configuration.
9347
9348 * gnus-msg.el (gnus-setup-message): Put article numbers into the
9349 X-Draft-From header even if those articles aren't quoted.
9350
9351 2004-09-21 Kevin Greiner <kgreiner@compsol.cc>
9352
9353 * gnus-int.el (gnus-servers-that-use-local-marks): New variable.
9354 (gnus-request-set-mark, gnus-request-update-mark): Use new
9355 g-s-t-u-l-m to decide to use backend even when unplugged.
9356
9357 2004-09-21 Katsumi Yamaoka <yamaoka@jpl.org>
9358
9359 * gnus-msg.el (gnus-inews-make-draft-meta-information): Don't add
9360 a trailing whitespace. Suggested by Cheng Gao <chenggao@gmail.com>.
9361
9362 2004-09-20 Simon Josefsson <jas@extundo.com>
9363
9364 * mm-util.el (mm-charset-synonym-alist): Map "unicode" to
9365 "utf-16-le".
9366
9367 2004-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
9368
9369 * mm-decode.el (mm-copy-to-buffer): Preserve the data's unibyteness.
9370
9371 2004-09-19 Reiner Steib <Reiner.Steib@gmx.de>
9372
9373 * uudecode.el (uudecode-use-external): Add :version.
9374
9375 * smime.el (smime-CA-file, smime-encrypt-cipher)
9376 (smime-dns-server): Add :version.
9377
9378 * smiley.el (gnus-smiley-file-types): Add :version.
9379
9380 * sha1.el (sha1-use-external): Add :version.
9381
9382 * pgg-def.el (pgg-query-keyserver): Add :version.
9383
9384 * nnmail.el (nnmail-fancy-expiry-targets)
9385 (nnmail-mail-splitting-charset, nnmail-mail-splitting-decodes):
9386 Add :version.
9387
9388 * nnimap.el (nnimap-split-download-body, nnimap-dont-close)
9389 (nnimap-retrieve-groups-asynchronous): Add :version.
9390 (nnimap-close-asynchronous): Add :version. Fixed typo in doc string.
9391
9392 * mml.el (mml-content-disposition-parameters)
9393 (mml-insert-mime-headers-always): Add :version.
9394
9395 * mm-util.el (mm-coding-system-priorities): Add :version.
9396
9397 * mm-decode.el (mm-inline-text-html-with-images)
9398 (mm-keep-viewer-alive-types, mm-external-terminal-program)
9399 (mm-verify-option): Add :version.
9400 (mm-text-html-renderer): Change :version.
9401
9402 * message.el (message-fcc-externalize-attachments)
9403 (message-required-headers, message-draft-headers)
9404 (message-subject-trailing-was-query)
9405 (message-subject-trailing-was-ask-regexp)
9406 (message-subject-trailing-was-regexp, message-mark-insert-begin)
9407 (message-mark-insert-end, message-archive-header)
9408 (message-archive-note, message-cross-post-default)
9409 (message-cross-post-note, message-followup-to-note)
9410 (message-cross-post-note-function, message-use-mail-followup-to)
9411 (message-subscribed-address-functions)
9412 (message-subscribed-address-file, message-subscribed-addresses)
9413 (message-subscribed-regexps, message-allow-no-recipients)
9414 (message-yank-cited-prefix, message-signature-insert-empty-line)
9415 (message-hidden-headers, message-hierarchical-addresses)
9416 (message-mail-user-agent, message-use-idna)
9417 (message-valid-fqdn-regexp)
9418 (message-strip-special-text-properties, message-header-synonyms)
9419 (message-beginning-of-line, message-tab-body-function): Add :version.
9420 (message-insert-canlock, message-wide-reply-confirm-recipients):
9421 Change :version.
9422
9423 * mail-source.el (mail-source-ignore-errors): Add :group, :type
9424 and :version.
9425 (mail-source-delete-old-incoming-confirm)
9426 (mail-source-movemail-program): Add :version.
9427
9428 * gnus.el (gnus-parameters, gnus-user-agent): Add :version.
9429 (gnus-agent-cache, gnus-agent): Change :version.
9430
9431 * gnus-util.el (gnus-use-byte-compile): Change :version.
9432
9433 * gnus-sum.el (gnus-summary-make-false-root-always)
9434 (gnus-summary-default-high-score)
9435 (gnus-summary-default-low-score, gnus-auto-goto-ignores)
9436 (gnus-forwarded-mark, gnus-unseen-mark, gnus-no-mark)
9437 (gnus-read-all-available-headers, gnus-article-emulate-mime)
9438 (gnus-sum-thread-tree-root, gnus-sum-thread-tree-false-root)
9439 (gnus-sum-thread-tree-single-indent)
9440 (gnus-sum-thread-tree-vertical, gnus-sum-thread-tree-indent)
9441 (gnus-sum-thread-tree-leaf-with-other)
9442 (gnus-sum-thread-tree-single-leaf): Add :version.
9443 (gnus-summary-display-arrow, gnus-summary-muttprint-program)
9444 (gnus-article-loose-mime): Change :version.
9445
9446 * gnus-start.el (gnus-backup-startup-file)
9447 (gnus-save-startup-file-via-temp-buffer): Add :version.
9448
9449 * gnus-srvr.el (gnus-server-browse-in-group-buffer)
9450 (gnus-server-offline-face): Add :version.
9451
9452 * gnus-score.el (gnus-adaptive-word-length-limit): Add :version.
9453
9454 * gnus-msg.el (gnus-gcc-externalize-attachments)
9455 (gnus-debug-files, gnus-debug-exclude-variables)
9456 (gnus-discouraged-post-methods): Change :version.
9457 (gnus-confirm-mail-reply-to-news)
9458 (gnus-confirm-treat-mail-like-news): Add :version.
9459
9460 * gnus-int.el (gnus-server-unopen-status): Add :version.
9461
9462 * gnus-group.el (gnus-group-jump-to-group-prompt)
9463 (gnus-large-ephemeral-newsgroup)
9464 (gnus-fetch-old-ephemeral-headers): Add :version.
9465
9466 * gnus-fun.el (gnus-x-face-directory)
9467 (gnus-convert-pbm-to-x-face-command)
9468 (gnus-convert-image-to-x-face-command)
9469 (gnus-convert-image-to-face-command): Add :version.
9470
9471 * gnus-delay.el (gnus-delay-default-hour): Add :version.
9472
9473 * gnus-cite.el (gnus-cite-blank-line-after-header)
9474 (gnus-article-boring-faces): Add :version.
9475
9476 * gnus-art.el (gnus-buttonized-mime-types)
9477 (gnus-inhibit-mime-unbuttonizing)
9478 (gnus-treat-display-face)
9479 (gnus-treat-body-boundary): Change :version.
9480 (gnus-body-boundary-delimiter, gnus-picon-databases)
9481 (gnus-treat-strip-cr, gnus-treat-leading-whitespace)
9482 (gnus-treat-date-english, gnus-treat-fold-headers)
9483 (gnus-article-skip-boring, gnus-treat-fold-newsgroups)
9484 (gnus-treat-mail-picon, gnus-treat-wash-html)
9485 (gnus-article-encrypt-protocol)
9486 (gnus-use-idna, gnus-article-over-scroll)
9487 (gnus-mime-display-multipart-alternative-as-mixed)
9488 (gnus-mime-display-multipart-related-as-mixed)
9489 (gnus-button-valid-fqdn-regexp, gnus-button-man-handler)
9490 (gnus-ctan-url, gnus-button-ctan-handler)
9491 (gnus-button-handle-ctan-bogus-regexp)
9492 (gnus-button-ctan-directory-regexp)
9493 (gnus-button-mid-or-mail-regexp, gnus-button-prefer-mid-or-mail)
9494 (gnus-button-mid-or-mail-heuristic-alist, gnus-button-tex-level)
9495 (gnus-button-man-level, gnus-button-emacs-level)
9496 (gnus-button-message-level, gnus-button-browse-level): Add :version.
9497
9498 * gnus-agent.el (gnus-agent-fetched-hook): Add :version.
9499 (gnus-agent-go-online): Change :version.
9500 (gnus-agent-expire-unagentized-dirs)
9501 (gnus-agent-auto-agentize-methods): Add :version.
9502
9503 * flow-fill.el (fill-flowed-display-column)
9504 (fill-flowed-encode-column): Add :version.
9505
9506 * deuglify.el (gnus-outlook-deuglify-unwrap-min)
9507 (gnus-outlook-deuglify-unwrap-max)
9508 (gnus-outlook-deuglify-cite-marks)
9509 (gnus-outlook-deuglify-unwrap-stop-chars)
9510 (gnus-outlook-deuglify-no-wrap-chars)
9511 (gnus-outlook-deuglify-attrib-cut-regexp)
9512 (gnus-outlook-deuglify-attrib-verb-regexp)
9513 (gnus-outlook-deuglify-attrib-end-regexp)
9514 (gnus-outlook-display-hook): Add :version.
9515
9516 * binhex.el (binhex-use-external): Add :version.
9517
9518 2004-09-16 Reiner Steib <Reiner.Steib@gmx.de>
9519
9520 * gnus-sum.el (gnus-fetch-old-headers): Add custom choices `t'
9521 and `invisible'.
9522
9523 2004-09-10 Teodor Zlatanov <tzz@lifelogs.com>
9524
9525 * gnus-registry.el (gnus-registry-trim): Watch out for negatives
9526 in gnus-registry-trim.
9527
9528 2004-09-13 Simon Josefsson <jas@extundo.com>
9529
9530 * dns-mode.el: Add XEmacs auto-mode-alist autoload cookie.
9531
9532 * nnimap.el (nnimap-demule): Revert 2004-08-30 change.
9533
9534 * dns-mode.el (dns-mode): Fix menu for XEmacs, reported by Steve
9535 Youngs <steve@youngs.au.com> and suggested by Katsumi Yamaoka
9536 <yamaoka@jpl.org>.
9537 (dns-mode-font-lock-keywords): Fix faces, reported by Steve Youngs
9538 <steve@youngs.au.com> and suggested by Katsumi Yamaoka
9539 <yamaoka@jpl.org>.
9540
9541 * sieve.el (sieve-manage-mode): Ditto.
9542
9543 2004-09-13 Reiner Steib <Reiner.Steib@gmx.de>
9544
9545 * gnus-sum.el (gnus-summary-copy-article): Fix doc string.
9546
9547 2004-09-11 Simon Josefsson <jas@extundo.com>
9548
9549 * dns-mode.el: Add.
9550
9551 * mm-view.el (mm-display-dns-inline): Add.
9552
9553 * mm-decode.el (mm-inline-media-tests): Add text/dns.
9554 (mm-automatic-display): Ditto.
9555
9556 * mailcap.el (mailcap-mime-data): Add text/dns.
9557 (mailcap-mime-extensions): Map .soa to text/dns.
9558
9559 2004-09-10 Miles Bader <miles@gnu.ai.mit.edu>
9560
9561 * gnus-art.el (article-decode-mime-words, article-babel)
9562 (gnus-article-highlight-signature, gnus-article-add-buttons)
9563 (gnus-signature-toggle): Remove unnecessary bindings of
9564 `inhibit-read-only' inherited from v5.10 merge.
9565
9566 2004-09-08 Reiner Steib <Reiner.Steib@gmx.de>
9567
9568 * nntp.el (nntp): New customization group.
9569 (nntp-authinfo-file): Add customization group.
9570
9571 * mml2015.el (mml2015-unabbrev-trust-alist): Add customization group.
9572
9573 * mml-sec.el (mml-signencrypt-style-alist): Ditto.
9574
9575 * gnus.el (to-address, to-list, subscribed)
9576 (large-newsgroup-initial): Ditto.
9577
9578 * flow-fill.el (fill-flowed-display-column)
9579 (fill-flowed-encode-column): Ditto.
9580
9581 2004-09-06 Stefan <monnier@iro.umontreal.ca>
9582
9583 * message.el (message-tokenize-header, message-send-mail-with-qmail):
9584 Use point-min rather than 1.
9585 (message-send-mail): Use buffer-size rather than point-max.
9586
9587 * gnus-sum.el (gnus-summary-search-article-forward):
9588 Signal a specific `search-failed' rather than a generic `error'.
9589
9590 * gnus-salt.el (gnus-pick-mouse-pick-region): Switch 1 => point-min.
9591 (gnus-generate-vertical-tree): Usue `bobp' rather than compare to 1.
9592 (gnus-highlight-selected-tree): Use point-min rather than 1 and 2.
9593
9594 2004-09-10 Simon Josefsson <jas@extundo.com>
9595
9596 * nndb.el (require): Remove tcp and duplicate cl.
9597
9598 2004-09-10 Katsumi Yamaoka <yamaoka@jpl.org>
9599
9600 * gnus-agent.el (directory-files-and-attributes): Move forward.
9601
9602 2004-09-09 Kevin Greiner <kgreiner@compsol.cc>
9603
9604 * gnus-agent.el (directory-files-and-attributes): Optionally
9605 defined to support XEmacs.
9606
9607 2004-09-09 Kevin Greiner <kgreiner@compsol.cc>
9608
9609 * gnus-agent.el (gnus-agent-cat-groups): Rewrote avoiding defsetf
9610 to avoid run-time CL dependencies.
9611 (gnus-agent-unfetch-articles): New function.
9612 (gnus-agent-fetch-headers): Use gnus-agent-braid-nov to validate
9613 article numbers even when local .overview file is missing.
9614 (gnus-agent-read-article-number): New function. Only accepts
9615 27-bit article numbers.
9616 (gnus-agent-copy-nov-line, gnus-agent-uncached-articles): Use
9617 gnus-agent-read-article-number.
9618 (gnus-agent-braid-nov): Rewrote to validate article numbers coming
9619 from backend while recognizing that article numbers in .overview
9620 must be valid.
9621 (gnus-agent-update-files-total-fetched-for): Use
9622 directory-files-and-attributes to improve performance.
9623 * gnus-int.el (gnus-request-move-article): Use
9624 gnus-agent-unfetch-articles in place of gnus-agent-expire to
9625 improve performance.
9626
9627 * gnus-start.el (gnus-convert-old-newsrc): Changed message text as
9628 some users confused by references to .newsrc when they only have a
9629 .newsrc.eld file.
9630 (gnus-convert-mark-converter-prompt)
9631 (gnus-convert-converter-needs-prompt): Fixed use of property list.
9632 * legacy-gnus-agent.el (gnus-agent-convert-to-compressed-agentview-prompt):
9633 New function. Used internally to only display 'gnus converting
9634 files' message when actually necessary.
9635
9636 * gnus-sum.el (): Removed (require 'gnus-agent) as required
9637 methods now autoloaded.
9638
9639 2004-09-03 Katsumi Yamaoka <yamaoka@jpl.org>
9640
9641 * gnus-sum.el (gnus-summary-insert-subject): Remove list
9642 identifiers.
9643
9644 2004-09-02 Reiner Steib <Reiner.Steib@gmx.de>
9645
9646 * gnus-picon.el: Fix indentation and closing parenthesis.
9647
9648 2004-09-01 Simon Josefsson <jas@extundo.com>
9649
9650 * message.el (message-canlock-generate): Require sha1, not
9651 sha1-el. (Can we get rid of this require alltogheter? It is ugly
9652 to require within a function. Sadly, if sha1.el isn't loaded, the
9653 let binding in m-c-g will hide the defcustom definition, which is
9654 bad.)
9655
9656 * canlock.el: Require sha1, not sha1-el.
9657
9658 * message.el: Don't autoload sha1 (there is a autoload cookie in
9659 sha1.el).
9660
9661 * sha1-el.el: Renamed to sha1.el.
9662
9663 2004-08-30 Juanma Barranquero <lektu@terra.es>
9664
9665 * ietf-drums.el (ietf-drums-remove-whitespace): Fix character constant.
9666
9667 2004-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
9668
9669 * nnimap.el (nnimap-demule): Avoid string-as-multibyte.
9670
9671 2004-08-30 Kim F. Storm <storm@cua.dk>
9672
9673 * nntp.el (nntp-authinfo-file): Add :group 'nntp.
9674
9675 * nnimap.el (nnimap-authinfo-file, nnimap-prune-cache):
9676 Add :group 'nnimap.
9677
9678 2004-08-30 Andreas Schwab <schwab@suse.de>
9679
9680 * rfc2231.el (rfc2231-parse-string): Restore whitespace syntax for
9681 ?* and ?\;.
9682
9683 * ietf-drums.el (ietf-drums-syntax-table): Set syntax of ?* ?\;
9684 and ?\' to symbol instead of whitespace.
9685
9686 2004-08-30 Katsumi Yamaoka <yamaoka@jpl.org>
9687
9688 * gnus-agent.el (gnus-agent-restore-gcc): Use ^ and regexp-quote.
9689
9690 * gnus-sum.el (gnus-summary-morse-message): Use search-forward
9691 instead of re-search-forward.
9692
9693 * gnus-uu.el (gnus-uu-save-article): Ditto.
9694 (gnus-uu-post-encode-uuencode): Ditto.
9695
9696 * html2text.el (html2text-clean-list-items): Ditto.
9697 (html2text-clean-dtdd): Ditto.
9698 (html2text-format-tags): Ditto.
9699
9700 * message.el (message-send-mail-with-sendmail): Fix regexp.
9701 (message-fill-field-general): Use search-forward instead of
9702 re-search-forward.
9703 (unbold-region): Ditto.
9704
9705 * nnrss.el (nnrss-request-article): Ditto.
9706
9707 * nnslashdot.el (nnslashdot-request-article): Ditto.
9708
9709 * nnweb.el (nnweb-gmane-wash-article): Ditto.
9710
9711 * gnus-sum.el (gnus-summary-make-menu-bar): Avoid the
9712 "Unrecognized menu descriptor" error in XEmacs.
9713
9714 2004-08-26 Stefan Wiens <s.wi@gmx.net> (tiny change)
9715
9716 * gnus-sum.el (gnus-read-header): Don't remove a header for the
9717 parent article of a sparse article in the thread hashtb.
9718
9719 2004-08-26 David Hedbor <dhedbor@real.com> (tiny change)
9720
9721 * nnmail.el (nnmail-split-lowercase-expanded): New user option.
9722 (nnmail-expand-newtext): Lowercase expanded entries if
9723 nnmail-split-lowercase-expanded is non-nil.
9724
9725 2004-08-26 Katsumi Yamaoka <yamaoka@jpl.org>
9726
9727 * nndoc.el (nndoc-type-alist): Fix regexp in the rfc822-forward entry.
9728
9729 * gnus-group.el (gnus-group-line-format-alist): Convert the value
9730 of gnus-tmp-news-method into string under XEmacs. It will be
9731 passed to gnus-correct-length which takes only a string argument.
9732
9733 2004-08-24 Katsumi Yamaoka <yamaoka@jpl.org>
9734
9735 * gnus-util.el (gnus-bind-print-variables): New macro.
9736 (gnus-prin1): Use it.
9737 (gnus-prin1-to-string): Use it.
9738 (gnus-pp): New function.
9739 (gnus-pp-to-string): New function.
9740
9741 * gnus-cus.el (gnus-agent-cat-prepare-category-field):
9742 Replace pp-to-string with gnus-pp-to-string.
9743 * gnus-eform.el (gnus-edit-form): Replace pp with gnus-pp.
9744 * gnus-group.el (gnus-group-make-kiboze-group): Ditto.
9745 * gnus-msg.el (gnus-debug): Ditto.
9746 * gnus-score.el (gnus-score-save): Ditto.
9747 * gnus-spec.el (gnus-update-format): Replace pp-to-string with
9748 gnus-pp-to-string.
9749 * legacy-gnus-agent.el (gnus-agent-unlist-expire-days): Replace pp
9750 with gnus-pp.
9751 * score-mode.el (gnus-score-pretty-print): Ditto.
9752 * webmail.el (webmail-debug): Ditto.
9753
9754 2004-08-23 Katsumi Yamaoka <yamaoka@jpl.org>
9755
9756 * gnus-art.el (article-display-face, article-display-x-face):
9757 Use buffer-read-only.
9758
9759 2004-08-22 Katsumi Yamaoka <yamaoka@jpl.org>
9760
9761 * gnus-art.el (article-hide-list-identifiers):
9762 Bind inhibit-read-only as t.
9763
9764 2004-08-22 Reiner Steib <Reiner.Steib@gmx.de>
9765
9766 * gnus-mlspl.el (gnus-group-split-update): Fix docstring.
9767
9768 2004-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
9769
9770 * gnus-art.el: Use inhibit-read-only instead of buffer-read-only.
9771 (gnus-narrow-to-page): Don't assume point-min == 1.
9772 (gnus-article-edit-mode): Derive from message-mode.
9773
9774 * gnus-score.el (gnus-score-find-bnews): Simplify and don't assume
9775 point-min == 1.
9776
9777 * imap.el (imap-parse-address-list, imap-parse-body-ext):
9778 Disable incorrect use of `assert'.
9779
9780 * message.el (message-mode): Set comment-start-skip.
9781
9782
9783 2004-08-22 Sam Steingold <sds@gnu.org>
9784
9785 * pop3.el (pop3-leave-mail-on-server): New user variable.
9786 (pop3-movemail): Delete mail only when it is nil.
9787
9788 2004-08-21 Reiner Steib <Reiner.Steib@gmx.de>
9789
9790 * nntp.el (nntp-marks-is-evil): Fix typo in docstring.
9791
9792 * mml.el (mml-preview): Use `pop-to-buffer'.
9793
9794 * message.el (message-goto-mail-followup-to): Insert after "To".
9795 (message-carefully-insert-headers): Add comment.
9796
9797 * gnus.el: Remove unused variable `gnus-article-check-size'.
9798
9799 * gnus-sum.el (gnus-summary-make-menu-bar): Add help texts.
9800
9801 * gnus-art.el (gnus-button-alist): Improve
9802 `gnus-button-handle-library' entry.
9803
9804 2004-08-19 Sebastian Freundt <hroptatyr@gna.org> (tiny change)
9805
9806 * nnmaildir.el (nnmaildir--emlink-p, nnmaildir--enoent-p): Use
9807 downcase, since XEmacs capitalizes error messages differently.
9808
9809 2004-08-18 Jesper Harder <harder@ifa.au.dk>
9810
9811 * nntp.el: Add (require 'gnus) due to reference to
9812 `gnus-directory'. Reported by Matt Swift <swift@alum.mit.edu>.
9813
9814 2004-08-18 Florian Weimer <fw@deneb.enyo.de>
9815
9816 * gnus-sum.el (gnus-summary-force-verify-and-decrypt): Bind
9817 `mm-fill-flowed'.
9818
9819 * mm-decode.el (mm-dissect-singlepart): Check it.
9820
9821 2004-08-17 Teodor Zlatanov <tzz@lifelogs.com>
9822
9823 * nnimap.el (nnimap-open-connection): Add 'imaps' synonym to
9824 'imap' for netrc parsing.
9825
9826 2004-08-16 Reiner Steib <Reiner.Steib@gmx.de>
9827
9828 * mailcap.el (mailcap-mime-data): Mark as risky.
9829
9830 2004-08-15 Katsumi Yamaoka <yamaoka@jpl.org>
9831
9832 * rfc2047.el (rfc2047-encode-region): Assume the close parenthesis
9833 may be included in the encoded word.
9834 (rfc2047-encode): Don't append a space if the encoded word
9835 includes close parenthesis.
9836
9837 2004-08-12 Katsumi Yamaoka <yamaoka@jpl.org>
9838
9839 * rfc2047.el (rfc2047-encode-1, rfc2047-encode): Improve encoding
9840 of text within parentheses.
9841
9842 2004-08-06 Teodor Zlatanov <tzz@lifelogs.com>
9843
9844 * gnus-encrypt.el (gnus-encrypt-insert-file-contents)
9845 (gnus-encrypt-write-file-contents): Make the password key the file
9846 name PLUS the cipher, not just the cipher. Also remove failed
9847 passwords from the cache.
9848
9849 2004-08-06 Simon Josefsson <jas@extundo.com>
9850
9851 * gnus-sum.el (gnus-article-loose-mime): Change default to t. Doc
9852 fix.
9853
9854 2004-08-05 Katsumi Yamaoka <yamaoka@jpl.org>
9855
9856 * rfc2047.el (rfc2047-fold-region): Use trailing whitespace as
9857 LWSP.
9858
9859 2004-08-04 Teodor Zlatanov <tzz@lifelogs.com>
9860
9861 * gnus-registry.el (gnus-registry-split-fancy-with-parent): Try
9862 to append in-reply-to: data to the references: header.
9863
9864 * netrc.el: Remove old encryption support, autoload gnus-encrypt.el
9865 (netrc-parse): Use gnus-encrypt.el functions.
9866
9867 * gnus-encrypt.el: Add new file for encryption support; currently
9868 does only a few GPG ciphers and an internal XOR cipher.
9869
9870 * password.el: Add comments on using password-read-and-add.
9871 (password-read-and-add): Add function to read and add the
9872 password to the cache at once.
9873
9874 2004-07-28 Simon Josefsson <jas@extundo.com>
9875
9876 * pgg-pgp5.el (pgg-pgp5-encrypt-region): Accept sign
9877 parameter (but don't use it, for now).
9878
9879 * imap.el (imap-ssl-open): Use imap-process-connection-type,
9880 instead of hard coding to nil.
9881
9882 2004-07-28 Katsumi Yamaoka <yamaoka@jpl.org>
9883
9884 * mm-view.el (mm-inline-image-emacs): Open lines under an image
9885 as mm-inline-image-xemacs does.
9886
9887 2004-07-26 Simon Josefsson <jas@extundo.com>
9888
9889 * gnus-group.el (gnus-group-group-map, gnus-group-make-menu-bar):
9890 Revert part of 2004-07-17 change below.
9891
9892 2004-07-25 Katsumi Yamaoka <yamaoka@jpl.org>
9893
9894 * rfc2047.el (rfc2047-encode-region): Don't infloop. Suggested by
9895 Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
9896
9897 2004-07-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
9898
9899 * flow-fill.el (fill-flowed): Remove space stuffing, and only do
9900 quotes that actually start with ">" at the beginning of the
9901 lines.
9902
9903 2004-07-23 Katsumi Yamaoka <yamaoka@jpl.org>
9904
9905 * rfc2047.el (rfc2047-encode-region): Fix last change.
9906 (rfc2047-encode-parameter): Remove useless concat.
9907
9908 2004-07-22 Katsumi Yamaoka <yamaoka@jpl.org>
9909
9910 * rfc2047.el (rfc2047-encode-region): Check carefully whether to
9911 encode special characters; fix some kind of misconfigured headers;
9912 signal a real error if debug-on-quit or debug-on-error is non-nil.
9913 (rfc2047-encode-max-chars): New variable.
9914 (rfc2047-encode-1): Use it.
9915 (rfc2047-encode-parameter): New function.
9916
9917 * mml.el (mml-insert-parameter): Remove an excessive space.
9918
9919 2004-07-17 Simon Josefsson <jas@extundo.com>
9920
9921 * gnus-group.el (gnus-group-make-group-simple): Add, suggested by
9922 Kai Grossjohann <kai@emptydomain.de>.
9923 (gnus-group-group-map): Use it, instead of gnus-group-make-group.
9924 (gnus-group-make-menu-bar): Ditto.
9925
9926 * gnus-util.el (gnus-group-server): Add.
9927
9928 2004-07-16 Jesper Harder <harder@ifa.au.dk>
9929
9930 * message.el (message-clone-locals): Clone sendmail and smtp
9931 variables.
9932
9933 2004-07-12 Katsumi Yamaoka <yamaoka@jpl.org>
9934
9935 * rfc2047.el (rfc2047-encode-region): Fix last change.
9936
9937 2004-07-12 Katsumi Yamaoka <yamaoka@jpl.org>
9938
9939 * rfc2047.el (rfc2047-encode-region): Treat backslash-quoted
9940 characters as non-special.
9941
9942 2004-07-09 Simon Josefsson <jas@extundo.com>
9943
9944 * gnus-agent.el (gnus-agent-synchronize-flags): Revert to ask.
9945 Users will lose all flag changes made while unplugged with
9946 e.g. nntp unless flag synchronization happens, thus `nil' is not a
9947 good default. See numerous reports on ding mailing list.
9948
9949 2004-07-09 Katsumi Yamaoka <yamaoka@jpl.org>
9950
9951 * nndoc.el (nndoc-type-alist): Improve regexp for article-begin,
9952 add generate-head-function and generate-article-function to the
9953 rfc822-forward entry.
9954 (nndoc-rfc822-forward-generate-article): New function.
9955 (nndoc-rfc822-forward-generate-head): New function.
9956
9957 * mm-decode.el (mm-dissect-buffer): Simplify cleaning of CTE.
9958
9959 2004-07-06 Dan Christensen <jdc@uwo.ca>
9960
9961 * gnus-sum.el (gnus-summary-read-group-1): When summary is unthreaded,
9962 respect display group parameter and gnus-summary-expunge-below.
9963 (gnus-articles-to-read): Remove unused reference to display group
9964 parameter.
9965
9966 2004-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
9967
9968 * nnheader.el (nnheader-uniquify-message-id): New experimental
9969 variable.
9970 (nnheader-nov-read-message-id): Use it.
9971
9972 * spam-report.el (spam-report-gmane): Add interactive.
9973
9974 2004-07-02 Katsumi Yamaoka <yamaoka@jpl.org>
9975
9976 * mm-encode.el (mm-content-transfer-encoding-defaults): Use
9977 qp-or-base64 for the application/* types.
9978
9979 2004-07-02 Joakim Verona <joakim@verona.se> (tiny change)
9980
9981 * nnrss.el (nnrss-read-group-data): Fix off-by-one error.
9982
9983 2004-06-30 Teodor Zlatanov <tzz@lifelogs.com>
9984
9985 * gnus-registry.el (gnus-registry-trim): Don't allow a negative
9986 trim value.
9987
9988 2004-01-25 Paul Jarc <prj@po.cwru.edu>
9989
9990 * nnmaildir.el (nnmaildir--condcase, nnmaildir--enoent-p):
9991 New macro and function.
9992 (nnmaildir--new-number, nnmaildir-request-set-mark): Use them.
9993
9994 2004-06-29 Katsumi Yamaoka <yamaoka@jpl.org>
9995
9996 * mm-util.el (mm-enrich-utf-8-by-mule-ucs): Fix cleaning of
9997 after-load-alist.
9998
9999 2004-06-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
10000
10001 * gnus-group.el (gnus-group-get-new-news-this-group): Don't
10002 update info that isn't there.
10003
10004 2004-06-29 Ilya N. Golubev <gin@mo.msk.ru>.
10005
10006 * mm-util.el (mm-mime-mule-charset-alist): Add the windows-1251
10007 entry.
10008
10009 2004-06-29 Katsumi Yamaoka <yamaoka@jpl.org>
10010
10011 * mm-view.el (mm-inline-render-with-function): Use multibyte
10012 buffer; decode html source by charset.
10013
10014 * mm-encode.el (mm-content-transfer-encoding-defaults): Doc fix.
10015
10016 * mm-util.el (mm-enrich-utf-8-by-mule-ucs): New function run when
10017 Mule-UCS is loaded under XEmacs.
10018 (mm-mime-mule-charset-alist): Avoid duplicated entries.
10019
10020 2004-06-28 Jesper Harder <harder@ifa.au.dk>
10021
10022 * nnheader.el (nnheader-max-head-length): Increase to 8192.
10023
10024 2004-06-28 Katsumi Yamaoka <yamaoka@jpl.org>
10025
10026 * mm-util.el (mm-coding-system-p): Return a coding-system.
10027 (mm-mime-mule-charset-alist): Use shift_jis instead of
10028 iso-2022-jp-2 for the katakana-jisx0201 mule charset; add new
10029 entries for the mime charsets iso-2022-jp-3 and shift_jis.
10030 (mm-coding-system-priorities): Use shift_jis and iso-8859-1
10031 instead of japanese-shift-jis and iso-latin-1 respectively in
10032 order to share the default value with both Emacs and XEmacs-mule.
10033 (mm-mule-charset-to-mime-charset): Make
10034 mm-coding-system-priorities effective.
10035 (mm-sort-coding-systems-predicate): Canonicalize coding-systems
10036 while predicating of candidates upon the priorities.
10037
10038 2004-06-27 Jesper Harder <harder@ifa.au.dk>
10039
10040 * gnus-sum.el (gnus-summary-make-menu-bar): Add
10041 gnus-uu-invert-processable.
10042
10043 * gnus.el: Autoload gnus-uu-invert-processable.
10044
10045 2004-06-24 Katsumi Yamaoka <yamaoka@jpl.org>
10046
10047 * mm-util.el (mm-with-multibyte-buffer): New macro.
10048
10049 * rfc2047.el (rfc2047-encode-string): Use it.
10050 (rfc2047-encode-region): Move point to the end of the region after
10051 encoding. Suggested by IRIE Tetsuya <irie@t.email.ne.jp>.
10052
10053 2004-06-23 Katsumi Yamaoka <yamaoka@jpl.org>
10054
10055 * gnus-cite.el (gnus-cite-parse): Don't ignore case when finding
10056 ">From ". Thanks to Reiner Steib <Reiner.Steib@gmx.de>.
10057
10058 2004-06-23 Katsumi Yamaoka <yamaoka@jpl.org>
10059
10060 * gnus-cite.el (gnus-cite-ignore-quoted-from): New user option.
10061 (gnus-cite-parse): Ignore quoted envelope From_. Suggested by
10062 Karl Chen <quarl@nospam.quarl.org>.
10063
10064 2004-06-23 Jesper Harder <harder@ifa.au.dk>
10065
10066 * message.el (message-idna-to-ascii-rhs-1): Don't choke on
10067 invalid addresses.
10068
10069 2004-06-21 Teodor Zlatanov <tzz@lifelogs.com>
10070
10071 * spam.el: Change section markers, revise TODO list.
10072 (spam-backends): Make new master list of all installed backends.
10073 (spam-summary-exit-behavior): Add new variable to determine how
10074 messages moves are done at summary exit.
10075 (spam-move-spam-nonspam-groups-only)
10076 (spam-process-ham-in-nonham-groups)
10077 (spam-process-ham-in-spam-groups): Remove variables, the
10078 spam-summary-exit-behavior variable should be used to manage this
10079 behavior.
10080 (spam-old-ham-articles, spam-old-spam-articles): Remove.
10081 (spam-old-articles): Add variable, replacing spam-old-ham-articles
10082 and spam-old-spam-articles.
10083 (spam-use-copy, spam-use-move, spam-use-gmane, spam-use-resend):
10084 Add empty variables, placeholders for the backends they represent.
10085 (spam-set-difference): Move, unchanged.
10086 (spam-list-of-processors): Declare OBSOLETE, not used anymore
10087 unless the user has a processor variable.
10088 (spam-classifications, spam-classification-valid-p)
10089 (spam-backend-properties, spam-backend-property-valid-p)
10090 (spam-backend-function-type-valid-p)
10091 (spam-process-type-valid-p, spam-list-articles): Add helper functions.
10092 (spam-report-articles-gmane, spam-report-articles-resend):
10093 Remove functions, they are not needed.
10094 (spam-install-backend-super, spam-backend-list)
10095 (spam-backend-check, spam-backend-valid-p, spam-backend-info)
10096 (spam-backend-function, spam-backend-ham-registration-function)
10097 (spam-backend-spam-registration-function)
10098 (spam-backend-ham-unregistration-function)
10099 (spam-backend-spam-unregistration-function)
10100 (spam-backend-statistical-p, spam-backend-mover-p)
10101 (spam-install-backend-alias, spam-install-checkonly-backend)
10102 (spam-install-mover-backend, spam-install-nocheck-backend)
10103 (spam-install-backend, spam-install-statistical-backend)
10104 (spam-install-statistical-checkonly-backend): Add backend installation
10105 support.
10106 (spam-summary-prepare-exit): Rewrite to use the new backend code.
10107 (spam-group-processor-p): Use the new backend code and respect the
10108 summary exit behavior.
10109 (spam-mark-spam-as-expired-and-move-routine): Remove.
10110 (spam-summary-prepare): Change to use the new spam-old-articles
10111 variable.
10112 (spam-copy-or-move-routine, spam-copy-spam-routine)
10113 (spam-move-spam-routine, spam-copy-ham-routine)
10114 (spam-move-ham-routine): Add code to copy/move ham or spam.
10115 (spam-fetch-field-fast): Improve doc and code, plus allow the
10116 'number request.
10117 (spam-list-of-checks, spam-list-of-statistical-checks): Remove
10118 variables.
10119 (spam-split, spam-find-spam): Use the new backend code.
10120 (spam-registration-functions): Remove variable.
10121 (spam-unregister-routine): Add convenience wrapper.
10122 (spam-log-undo-registration, spam-register-routine)
10123 (spam-log-processing-to-registry)
10124 (spam-log-unregistration-needed-p): Rename "check" to "backend"
10125 where possible.
10126 (spam-check-gmane-xref, spam-check-regex-headers)
10127 (spam-check-blackholes, spam-check-stat, spam-check-ifile)
10128 (spam-check-BBDB, spam-check-whitelist, spam-check-blacklist)
10129 (spam-check-bogofilter-headers, spam-check-spamoracle)
10130 (spam-check-spamassassin-headers, spam-check-bsfilter-headers)
10131 (spam-check-crm114-headers): Use the spam-split-group that
10132 spam-split prepares, no need to determine it every time.
10133
10134 * nnimap.el (nnimap-retrieve-headers-progress): Add the message number
10135 to the nnheader-parse-naked-head call.
10136
10137 * nnheader.el (nnheader-generate-fake-message-id): Fix indentation.
10138
10139 * gnus-sum.el (gnus-nov-parse-line): Add the message number to
10140 the nnheader-nov-read-message-id call.
10141
10142 2004-06-21 Katsumi Yamaoka <yamaoka@jpl.org>
10143
10144 * gnus-group.el (gnus-group-get-new-news-this-group): Don't call
10145 gnus-activate-group twice. Suggested by Markus Peter
10146 <warp@spin.de>.
10147
10148 2004-06-18 Katsumi Yamaoka <yamaoka@jpl.org>
10149
10150 * gnus-art.el (gnus-article-time-format): Exchange the order of
10151 day and month in the default value; fix customization type.
10152 (article-date-ut): Use add-text-properties.
10153 (article-make-date-line): Use message-make-date instead of
10154 current-time-string.
10155
10156 * message.el (message-fetch-field): Don't use set-text-properties.
10157 (message-make-date): Simplify.
10158
10159 2004-06-17 Katsumi Yamaoka <yamaoka@jpl.org>
10160
10161 * rfc2047.el (rfc2047-syntax-table): Treat `(' and `)' as is.
10162 (rfc2047-encode-region): Treat text within parentheses as special;
10163 show the original text when error has occurred.
10164
10165 * gnus-group.el (gnus-group-get-new-news-this-group): Pass the
10166 already-computed method to gnus-activate-group.
10167
10168 * gnus-start.el (gnus-make-hashtable-from-newsrc-alist): Make the
10169 same select-methods identical Lisp objects.
10170
10171 * gnus-srvr.el (gnus-server-set-info): Don't make a new Lisp
10172 object when modifying the info.
10173
10174 2004-06-16 Katsumi Yamaoka <yamaoka@jpl.org>
10175
10176 * gnus-srvr.el (gnus-server-set-info): Remove the server from
10177 gnus-opened-servers since it has never been opened with the new
10178 configuration yet.
10179
10180 2004-06-15 Katsumi Yamaoka <yamaoka@jpl.org>
10181
10182 * nnheader.el (nnheader-nov-read-message-id): Pass the optional
10183 arg to nnheader-generate-fake-message-id.
10184
10185 2004-06-14 Teodor Zlatanov <tzz@lifelogs.com>
10186
10187 * nnheader.el (nnheader-generate-fake-message-id): Accept a
10188 number and build a fake message ID localized to a group and
10189 article number (so it's repeatable from that point on).
10190 (nnheader-fake-message-id-p): Change regex to accommodate new fake
10191 ID format.
10192
10193 * gnus-sum.el (gnus-get-newsgroup-headers): Call
10194 nnheader-generate-fake-message-id with the article number.
10195
10196 2004-06-12 YAGI Tatsuya <ynyaaa@ybb.ne.jp> (tiny change)
10197
10198 * gnus-art.el (gnus-article-next-page): Fix the way to find a real
10199 end-of-buffer.
10200
10201 2004-06-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
10202
10203 * message.el (message-ignored-supersedes-headers): Add Approved.
10204
10205 2004-06-11 Katsumi Yamaoka <yamaoka@jpl.org>
10206
10207 * rfc2047.el (rfc2047-encode-message-header): Remove useless
10208 goto-char.
10209 (rfc2047-encode): Fold the line before encoding.
10210
10211 2004-06-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
10212
10213 * rfc2047.el (rfc2047-encode-message-header): Disabled header
10214 folding -- not all headers can be folded, and this should be done
10215 by the message composition mode. Probably. I think.
10216
10217 2004-06-10 Katsumi Yamaoka <yamaoka@jpl.org>
10218
10219 * gnus-util.el (gnus-remove-text-with-property): Make it slightly
10220 fast.
10221
10222 * gnus-ems.el (gnus-remove-image): Don't use
10223 message-text-with-property; remove only the image found first.
10224
10225 2004-06-09 Jesper Harder <harder@ifa.au.dk>
10226
10227 * message.el (message-send-mail-with-sendmail): Use with-current-buffer.
10228
10229 2004-06-09 Katsumi Yamaoka <yamaoka@jpl.org>
10230
10231 * message.el (message-text-with-property): Make it fast and accept
10232 optional arguments.
10233 (message-strip-forbidden-properties): Use it.
10234 (message-fix-before-sending): Follow the m-t-w-p change.
10235
10236 * gnus-ems.el (gnus-remove-image): Follow the m-t-w-p change.
10237
10238 2004-06-08 Katsumi Yamaoka <yamaoka@jpl.org>
10239
10240 * gnus-art.el (article-hide-headers): Don't change the buffer
10241 mistakenly when performing mml-preview even if
10242 gnus-single-article-buffer is nil.
10243
10244 2004-06-08 Kai Grossjohann <kgrossjo@eu.uu.net>
10245
10246 * message.el (message-expand-name-databases): New user option.
10247 (message-expand-name): Use it.
10248
10249 2004-06-07 Teodor Zlatanov <tzz@lifelogs.com>
10250
10251 * spam.el (spam-report-articles-resend)
10252 (spam-report-resend-register-routine): Allow ham reporting.
10253 (spam-report-resend-register-ham-routine): Add wrapper.
10254 (spam-registration-functions): Add ham resending functions.
10255 (spam-list-of-processors): Add ham resend processor.
10256
10257 * gnus.el (ham-resend-to): Add new group parameter.
10258 (spam-process): Add ham resend option.
10259
10260 * spam-report.el (spam-report-resend): Allow reporting ham.
10261 (spam-report-resend-ham): Add wrapper.
10262
10263 2004-06-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
10264
10265 * message.el (message-cite-articles-with-x-no-archive): New
10266 variable.
10267 (message-cite-original): Use it.
10268
10269 2004-06-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
10270
10271 * message.el (message-cite-original): Respect X-No-Archive.
10272
10273 2004-06-04 Katsumi Yamaoka <yamaoka@jpl.org>
10274
10275 * gnus-art.el (article-hide-headers): Refer to the values for
10276 gnus-ignored-headers and gnus-visible-headers in the summary
10277 buffer since a user may have set them as group parameters.
10278
10279 2004-06-03 Teodor Zlatanov <tzz@lifelogs.com>
10280
10281 * assistant.el (assistant-node-name): Add convenience function.
10282 (assistant-render-text, assistant-render-node): Add error handling,
10283 plus handle multiple next nodes.
10284 (assistant-find-next-node): Comment out for now.
10285 (assistant-find-next-nodes): Add function, returns list of next
10286 nodes.
10287
10288 2004-06-02 Reiner Steib <Reiner.Steib@gmx.de>
10289
10290 * mail-source.el (mail-source-directory): Fix doc-string.
10291
10292 2004-05-29 Teodor Zlatanov <tzz@lifelogs.com>
10293
10294 * assistant.el (assistant-render-text, assistant-eval): Add :set
10295 widget type, which is different because it takes and returns a
10296 list. Much hilarity ensues.
10297
10298 2004-05-28 Reiner Steib <Reiner.Steib@gmx.de>
10299
10300 * gnus-art.el (gnus-button-alist): Fixed regexp for manual links.
10301
10302 * gnus-group.el (gnus-group-get-new-news-this-group): Added
10303 doc-string.
10304
10305 * gnus-start.el (gnus-activate-group): Added doc-string.
10306
10307 2004-05-28 Katsumi Yamaoka <yamaoka@jpl.org>
10308
10309 * mm-encode.el (mm-safer-encoding): Consider 7bit is safe.
10310
10311 2004-05-27 Teodor Zlatanov <tzz@lifelogs.com>
10312
10313 * assistant.el (assistant-render-text): Try to add a :set
10314 widget, more to come.
10315
10316 * spam.el (spam-group-spam-contents-p): Handle empty groupname
10317 strings.
10318 (spam-report-articles-resend)
10319 (spam-register-routine): Do registration iff any articles warrant
10320 it.
10321 (spam-summary-prepare-exit): Change log message for nil group
10322 destinations.
10323
10324 2004-05-27 Daniel Pittman <daniel@rimspace.net>
10325
10326 * spam.el (spam-report-resend-register-routine): Allow
10327 spam-report-resend-to to be a group parameter or a global value.
10328
10329 2004-05-26 Simon Josefsson <jas@extundo.com>
10330
10331 * starttls.el: Merge with my GNUTLS based starttls.el.
10332 (starttls-gnutls-program, starttls-use-gnutls)
10333 (starttls-extra-arguments, starttls-process-connection-type)
10334 (starttls-connect, starttls-failure, starttls-success): New
10335 variables.
10336 (starttls-program, starttls-extra-args): Doc fix.
10337 (starttls-negotiate-gnutls, starttls-open-stream-gnutls): New
10338 functions.
10339 (starttls-negotiate, starttls-open-stream): Check
10340 `starttls-use-gnutls' and pass on to corresponding *-gnutls
10341 function if it is set.
10342
10343 2004-05-27 Katsumi Yamaoka <yamaoka@jpl.org>
10344
10345 * rfc2047.el (rfc2047-encode-region): Encode encoded words in
10346 structured fields.
10347
10348 2004-05-26 Katsumi Yamaoka <yamaoka@jpl.org>
10349
10350 * message.el (message-resend): Bind rfc2047-encode-encoded-words.
10351
10352 2004-05-26 Teodor Zlatanov <tzz@lifelogs.com>
10353
10354 * spam.el (spam-mark-new-messages-in-spam-group-as-spam): Add
10355 variable.
10356 (spam-mark-junk-as-spam-routine): Use it. Allow to disable
10357 assigning the spam-mark to new messages.
10358
10359 2004-05-26 Adam Sjøgren <asjo@koldfront.dk> (tiny change)
10360
10361 (spam-ham-copy-or-move-routine): Don't declare `todo' twice.
10362
10363 2004-05-26 Katsumi Yamaoka <yamaoka@jpl.org>
10364
10365 * rfc2047.el (rfc2047-encodable-p): Don't move point.
10366 (rfc2047-decode): Treat the ascii coding-system as raw-text by
10367 default.
10368
10369 2004-05-25 Anand Mitra <mitramc@yahoo.com> (tiny change)
10370
10371 * gnus-sum.el (gnus-summary-delete-article): Invoke hook with
10372 correct data.
10373
10374 2004-05-24 Teodor Zlatanov <tzz@lifelogs.com>
10375
10376 * spam.el (spam-list-of-processors): Use nil for nonexistent processors.
10377 (spam-group-processor-p): Fix function.
10378 (spam-group-processor-multiple-p)
10379 (spam-group-spam-processor-report-gmane-p)
10380 (spam-group-spam-processor-report-resend-p)
10381 (spam-group-spam-processor-bogofilter-p)
10382 (spam-group-spam-processor-blacklist-p)
10383 (spam-group-spam-processor-ifile-p)
10384 (spam-group-ham-processor-ifile-p)
10385 (spam-group-spam-processor-spamoracle-p)
10386 (spam-group-spam-processor-crm114-p)
10387 (spam-group-ham-processor-bogofilter-p)
10388 (spam-group-spam-processor-stat-p)
10389 (spam-group-ham-processor-stat-p)
10390 (spam-group-ham-processor-whitelist-p)
10391 (spam-group-ham-processor-BBDB-p)
10392 (spam-group-ham-processor-spamoracle-p)
10393 (spam-group-ham-processor-copy-p): Remove functions with some
10394 prejudice against unneeded code.
10395 (spam-report-articles-resend)
10396 (spam-report-resend-register-routine): Allow the group/topic
10397 spam-resend-to value to override spam-report-resend-to.
10398 (spam-summary-prepare-exit): Invoke spam-group-processor-p
10399 properly now.
10400
10401 * gnus.el (spam-resend-to): Add group/topic parameter.
10402 (spam-process): Move the OBSOLETE processors to the end of the
10403 choices.
10404
10405 2004-05-24 Daniel Pittman <daniel@rimspace.net>
10406
10407 * spam-report.el (spam-report-resend-to, spam-report-resend): Start
10408 with resend-to set to nil, and then ask the user if necessary.
10409 (spam-report-resend): spam-report-resend takes a list of articles, not
10410 separate article numbers.
10411
10412 2004-05-23 Katsumi Yamaoka <yamaoka@jpl.org>
10413
10414 * mm-decode.el (mm-text-html-renderer): Make sure w3m exists in
10415 addition to emacs-w3m.
10416
10417 2004-05-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
10418
10419 * assistant.el (assistant-authinfo-data): New function.
10420 (assistant-eval): Eval for entire assistant.
10421
10422 * netrc.el (netrc-services-file): New variable.
10423 (netrc-parse-services): New function.
10424 (netrc-find-service-name): New function.
10425 (netrc-find-service-number): New function.
10426 (netrc-port-equal): New function.
10427 (netrc-machine): Use it.
10428
10429 * nnimap.el (nnimap-open-connection): Use netrc.
10430
10431 * gnus-util.el (gnus-netrc-get): Remove aliases.
10432
10433 * gnus-sum.el (gnus-auto-center-summary): Change default to 2.
10434
10435 * assistant.el (wid-edit): Fix compilation.
10436
10437 * gnus-util.el (gnus-set-file-modes): Just ignore errors.
10438
10439 2004-05-23 Paul Stodghill <stodghil@cs.cornell.edu>
10440
10441 * gnus-util.el (gnus-set-file-modes): New function. (small
10442 patch).
10443
10444 2004-05-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
10445
10446 * gnus-topic.el (gnus-topic-jump-to-topic): Goto missing topic.
10447
10448 * assistant.el (assistant-render-node): Fix up rendering and
10449 read-only text.
10450 (assistant-render-node): Reset.
10451 (assistant-make-read-only): Not sticky.
10452
10453 2004-05-20 Danny Siu <dsiu@adobe.com>
10454
10455 * gnus-sum.el (gnus-summary-recenter): Summery buffer was not auto
10456 centered even when gnus-auto-center-summary is t
10457
10458 2004-05-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
10459
10460 * dns.el (dns-get-txt-answer): New function.
10461 (dns-read-txt): Ditto.
10462 (query-dns): Use it.
10463
10464 2004-05-21 Katsumi Yamaoka <yamaoka@jpl.org>
10465
10466 * gnus-start.el (gnus-get-unread-articles): Don't invalidate
10467 active for foreign groups even if the group level is higher than
10468 the specified value.
10469
10470 2004-05-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
10471
10472 * gnus-group.el (gnus-group-jump-to-group): Don't prompt for
10473 non-active groups.
10474
10475 * gnus-art.el (gnus-picon-databases): Add /usr/share/picons.
10476
10477 2004-05-20 Magnus Henoch <mange@freemail.hu>
10478
10479 * dns.el (dns-read-type): Add support for SVR. (small patch)
10480
10481 2004-05-20 Teodor Zlatanov <tzz@lifelogs.com>
10482
10483 * spam.el (spam-use-crm114, spam-crm114, spam-crm114-program)
10484 (spam-crm114-header, spam-crm114-spam-switch)
10485 (spam-crm114-spam-strong-switch, spam-crm114-ham-strong-switch)
10486 (spam-crm114-positive-spam-header)
10487 (spam-crm114-database-directory, spam-list-of-processors)
10488 (spam-group-spam-processor-crm114-p)
10489 (spam-group-ham-processor-crm114-p, spam-extra-header-to-number)
10490 (spam-generic-score, spam-list-of-checks)
10491 (spam-list-of-statistical-checks, spam-registration-functions)
10492 (spam-check-crm114-headers, spam-crm114-score)
10493 (spam-check-crm114, spam-crm114-register-with-crm114)
10494 (spam-crm114-register-spam-routine)
10495 (spam-crm114-unregister-spam-routine)
10496 (spam-crm114-register-ham-routine)
10497 (spam-crm114-unregister-ham-routine): Add CRM114 support. From
10498 asjo@koldfront.dk (Adam Sjøgren).
10499
10500 * gnus.el: Add spam-use-crm114.
10501
10502 * spam.el (spam-list-of-processors, spam-registration-functions):
10503 Add spam-use-resend.
10504 (spam-group-spam-processor-report-resend-p): Add utility wrapper.
10505 (spam-report-articles-gmane): Add doc fix.
10506 (spam-report-articles-resend, spam-report-resend-register-routine):
10507 Add wrappers around spam-report-resend-to.
10508
10509 * spam-report.el (spam-report-resend-to, spam-report-resend):
10510 Add support for resending spam.
10511 (spam-report-gmane): Fix line length >80.
10512
10513 * gnus.el (spam-process): Add spam-use-resend.
10514
10515 2004-05-20 TSUCHIYA Masatoshi <tsuchiya@namazu.org>
10516
10517 * spam.el (spam-mark-spam-as-expired-and-move-routine): Return the
10518 number of processed spam messages.
10519 (spam-ham-copy-or-move-routine): Return the number of processed
10520 ham messages.
10521 (spam-summary-prepare-exit): Use the above values to decide
10522 whether status messages shouled be displayed.
10523
10524 2004-05-20 Katsumi Yamaoka <yamaoka@jpl.org>
10525
10526 * rfc2047.el (rfc2047-encode-function-alist): Renamed from
10527 `rfc2047-encoding-function-alist' in order to avoid conflicting
10528 with the old version.
10529 (rfc2047-encode-region): Concatenate words containing non-ASCII
10530 characters in structured fields; don't encode space-delimited
10531 ASCII words even in unstructured fields; don't break words at
10532 char-category boundaries.
10533 (rfc2047-encode-1): New function.
10534 (rfc2047-encode): Use it; encode text so that it occupies the
10535 maximum width within 76-column; work correctly on Q encoding for
10536 iso-2022-* charsets.
10537 (rfc2047-fold-region): Use existing whitespace for LWSP; make it
10538 sure not to break a line just after the header name.
10539 (rfc2047-b-encode-region): Removed.
10540 (rfc2047-b-encode-string): New function.
10541 (rfc2047-q-encode-region): Removed.
10542 (rfc2047-q-encode-string): New function.
10543
10544 * mm-util.el (mm-replace-in-string): New function.
10545
10546 2004-05-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
10547
10548 * gnus-msg.el (gnus-inews-make-draft-meta-information): Really
10549 get it right.
10550 (gnus-inews-make-draft): Really.
10551
10552 2004-05-19 Ben Menasha <bmenasha@benmenasha.net>
10553
10554 * nnmh.el (nnmh-request-list-1): Don't check the link count
10555 before descending. (small patch)
10556
10557 2004-05-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
10558
10559 * gnus-msg.el (gnus-inews-make-draft-meta-information): Fix quote
10560 stuff.
10561
10562 * gnus-start.el (gnus-subscribe-hierarchical-interactive): Match
10563 on real group name.
10564
10565 * gnus-art.el (gnus-signature-limit): Doc fix.
10566
10567 * gnus-msg.el (gnus-inews-make-draft): Quote list.
10568
10569 2004-05-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
10570
10571 * gnus-draft.el (gnus-draft-send): Bind
10572 rfc2047-encode-encoded-words.
10573
10574 * rfc2047.el (rfc2047-encode-region): Encode =? strings.
10575 (rfc2047-encodable-p): Say that =? needs encoding.
10576 (rfc2047-encode-encoded-words): New variable.
10577
10578 * gnus-group.el (gnus-group-select-group): Doc fix.
10579
10580 * gnus-draft.el (gnus-draft-setup): Mark all replied as replied.
10581
10582 * gnus-group.el (gnus-group-mode): Set show-trailing-whitespace
10583 to nil.
10584
10585 * gnus-cache.el (gnus-cache-possibly-enter-article): Use it.
10586
10587 * nnheader.el (nnheader-get-lines-and-char): New function.
10588
10589 2004-05-19 Reiner Steib <Reiner.Steib@gmx.de>
10590
10591 * gnus-msg.el (gnus-summary-followup-with-original): Document
10592 yanking of region when active.
10593
10594 2004-05-19 Katsumi Yamaoka <yamaoka@jpl.org>
10595
10596 * gnus-start.el (gnus-get-unread-articles): Do nothing for foreign
10597 groups if the group level is higher than the specified value.
10598
10599 2004-05-18 Reiner Steib <Reiner.Steib@gmx.de>
10600
10601 * gnus-group.el (gnus-group-jump-to-group-prompt): Allow an alist.
10602 (gnus-group-jump-to-group): Added prefix argument using
10603 `gnus-group-jump-to-group-prompt'. Query before jumping to
10604 non-active group.
10605
10606 * compface.el (uncompface): Be verbose when changing
10607 `uncompface-use-external'.
10608
10609 * gnus-art.el (gnus-button-handle-man, gnus-button-alist): Try to
10610 handle manual section.
10611
10612 2004-05-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
10613
10614 * gnus-art.el (gnus-button-alist): Revert previous change.
10615
10616 2004-05-18 Reiner Steib <Reiner.Steib@gmx.de>
10617
10618 * message.el (message-idna-to-ascii-rhs-1): Fix typo.
10619
10620 2004-05-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
10621
10622 * gnus-msg.el (gnus-inews-do-gcc): Don't use read-only-p to see
10623 whether backend can accept message.
10624
10625 * message.el (message-idna-to-ascii-rhs-1): Don't use equalp.
10626
10627 2004-05-18 Kai Grossjohann <kgrossjo@eu.uu.net>
10628
10629 * nntp.el (nntp-request-set-mark, nntp-request-update-info):
10630 Avoid creating directory when nntp-marks-is-evil is true.
10631 Reported by Reiner Steib.
10632
10633 2004-05-18 Reiner Steib <Reiner.Steib@gmx.de>
10634
10635 * gnus-picon.el (gnus-picon-style): New variable.
10636 (gnus-picon-insert-glyph): Added optional `nostring' argument.
10637 (gnus-picon-transform-address): Support `gnus-picon-style'. From
10638 Jesper Harder <harder@ifa.au.dk>.
10639
10640 2004-05-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
10641
10642 * message.el (message-fill-field): Return point.
10643 (message-generate-headers): Go to end of field.
10644
10645 * gnus-start.el (gnus-get-unread-articles-in-group): Don't do
10646 stuff for non-living groups.
10647
10648 2004-05-18 Jesper Harder <harder@ifa.au.dk>
10649
10650 * gnus-art.el (gnus-article-followup-with-original)
10651 (gnus-article-reply-with-original): gnus-mark-active-p ->
10652 gnus-region-active-p.
10653
10654 2004-05-17 Teodor Zlatanov <tzz@lifelogs.com>
10655
10656 * spam.el (spam-summary-prepare-exit): Fix messages, so they show
10657 only when there is spam or ham to be processed.
10658
10659 2004-05-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
10660
10661 * mail-source.el (mail-source-delete-crash-box): Refactor.
10662 (mail-source-fetch): Use it.
10663 (mail-source-fetch-file): Ditto.
10664 (mail-source-fetch-directory): Run postscript in loop.
10665 (mail-source-fetch-pop): Delete.
10666 (mail-source-fetch-maildir): Ditto.
10667 (mail-source-fetch-imap): Ditto.
10668
10669 * imap.el (imap-authenticators): Comment out sasl.
10670
10671 * message.el (message-skip-to-next-address): New function.
10672 (message-fill-header-address): Refactor.
10673 (message-fill-address): Use it.
10674 (message-delete-address): Use it.
10675 (message-fill-header-general): Refactor.
10676 (message-fill-field-address): Rename.
10677 (message-narrow-to-field): Find the start of the header.
10678 (message-header-format-alist): Don't pre-fill.
10679 (message-fill-header): Removed.
10680 (message-insert-header): New function.
10681 (message-shorten-references): Use it.
10682
10683 * rfc2047.el (rfc2047-field-value): Strip props.
10684
10685 * mail-parse.el (mail-header-make-address): New alias.
10686
10687 * ietf-drums.el (ietf-drums-make-address): New function.
10688
10689 * imap.el: Add compiler directives.
10690
10691 * gnus-score.el (gnus-score-edit-done): run-hook->run-hooks.
10692
10693 * gnus-art.el (article-decode-idna-rhs): Don't use
10694 message-idna-inside-rhs-p.
10695
10696 2004-05-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
10697
10698 * message.el (message-idna-inside-rhs-p): Removed.
10699 (message-idna-to-ascii-rhs-1): Use proper address parsing.
10700
10701 * gnus-art.el (gnus-emphasis-alist): Removed strikethru; too many
10702 false positives.
10703
10704 2004-05-16 Kim Minh Kaplan <kmkaplan-AwwS6Bc0PDVoiYX5Tdu9fQ@public.gmane.org>
10705
10706 * imap.el (imap-sasl-make-mechanisms): Use sasl.
10707
10708 2004-05-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
10709
10710 * nneething.el (nneething-file-name): Don't create spurions
10711 files.
10712
10713 * gnus-msg.el (gnus-inews-do-gcc): Ignore read-only groups.
10714 (gnus-inews-do-gcc): Remove sleep.
10715
10716 * gnus-art.el (gnus-mime-delete-part): Error message when no MIME
10717 part under point.
10718
10719 * gnus-agent.el (gnus-agent-synchronize-flags): Default to nil.
10720 (gnus-agent-regenerate-group): Using nil messages aren't valid.
10721
10722 2004-05-15 Teodor Zlatanov <tzz@lifelogs.com>
10723
10724 * spam.el (spam-summary-prepare-exit): Fixed (length).
10725
10726 2004-05-14 Teodor Zlatanov <tzz@lifelogs.com>
10727
10728 * spam.el (spam-summary-prepare-exit): Fix to produce "marking spam
10729 as expired without moving it" message when there are spam
10730 messages left.
10731
10732 2004-05-14 Nelson Ferreira <nelson.ferreira@verizon.net> (tiny change)
10733
10734 * gnus-dup.el (gnus-dup-unsuppress-article): Don't assume the mail
10735 header is not nil.
10736
10737 2004-05-14 Kai Grossjohann <kgrossjo@eu.uu.net>
10738
10739 * nntp.el (nntp-request-set-mark, nntp-request-update-info): Call
10740 nntp-possibly-create-directory, not nntp-possibly-change-group.
10741 (nntp-marks-changed-p): New arg SERVER.
10742 (nntp-request-update-info): Adjust caller.
10743
10744 2004-05-14 Kai Grossjohann <kai@emptydomain.de>
10745
10746 * nntp.el (nntp-save-marks): Pass missing arg.
10747
10748 2004-05-13 Kai Grossjohann <kai.grossjohann@gmx.net>
10749
10750 * nntp.el: Support marks.
10751 (nntp-marks-is-evil, nntp-marks-file-name, nntp-marks)
10752 (nntp-marks-modtime, nntp-marks-directory): New variables.
10753 (nntp-request-set-mark, nntp-request-update-info)
10754 (nntp-possibly-create-directory, nntp-marks-changed-p)
10755 (nntp-save-marks, nntp-open-marks, nntp-marks-directory): New
10756 functions.
10757
10758 2004-05-12 Jesper Harder <harder@ifa.au.dk>
10759
10760 * gnus-score.el (gnus-score-insert-help): Use
10761 gnus-select-lowest-window.
10762
10763 * gnus-ems.el (gnus-select-lowest-window): Copy definition of
10764 appt-select-lowest-window and rename to gnus-select-lowest-window.
10765
10766 * gnus.el: do.
10767
10768 2004-05-12 TSUCHIYA Masatoshi <tsuchiya@namazu.org>
10769
10770 * rfc2047.el (rfc2047-encode): Use uppercase letters to specify
10771 encodings of MIME-encoded words, in order to improve
10772 interoperability with several broken MUAs.
10773
10774 2004-05-07 TSUCHIYA Masatoshi <tsuchiya@namazu.org>
10775
10776 * mm-view.el (mm-inline-text-html-render-with-w3): Check META
10777 tags, only when charsets are not specified in headers.
10778 (mm-inline-text-html-render-with-w3m): Ditto.
10779
10780 2004-05-06 TSUCHIYA Masatoshi <tsuchiya@namazu.org>
10781
10782 * gnus-art.el (article-strip-banner): Use MIME-encoded from fields
10783 instead of MIME-decoded from fields when checking
10784 `gnus-article-address-banner-alist'.
10785
10786 2004-05-03 Jesper Harder <harder@ifa.au.dk>
10787
10788 * nnrss.el (nnrss-check-group, nnrss-read-group-data): Hash on
10789 description rather than subject.
10790
10791 2004-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
10792
10793 * gnus.el (gnus-version-number): Bump.
10794
10795 2004-05-01 Lars Magne Ingebrigtsen <lars@ingebrigtsen.no>
10796
10797 * gnus.el: No Gnus v0.2 is released.
10798
10799 2004-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
10800
10801 * gnus-agent.el (gnus-agent-read-agentview): Inline
10802 gnus-uncompress-range.
10803
10804 2004-05-01 TSUCHIYA Masatoshi <tsuchiya@namazu.org>
10805
10806 * spam.el (spam-bsfilter-path): Use `executable-find' instead of
10807 `exec-installed-p'.
10808
10809 2004-04-30 TSUCHIYA Masatoshi <tsuchiya@namazu.org>
10810
10811 * gnus.el (spam-process, spam-autodetect-methods): Add
10812 bsfilter and bsfilter-headers.
10813
10814 * spam.el (spam-bsfilter): New customize group.
10815 (spam-use-bsfilter, spam-use-bsfilter-headers, spam-bsfilter-path)
10816 (spam-bsfilter-header, spam-bsfilter-probability-header)
10817 (spam-bsfilter-spam-switch, spam-bsfilter-ham-switch)
10818 (spam-bsfilter-spam-strong-switch, spam-bsfilter-ham-strong-switch)
10819 (spam-bsfilter-database-directory): New options.
10820 (spam-install-hooks, spam-list-of-processors, spam-list-of-checks)
10821 (spam-list-of-statistical-checks, spam-registration-functions):
10822 Add `spam-use-bsfilter' and `spam-use-bsfilter-headers'.
10823 (spam-bsfilter-score): New command.
10824 (spam-check-bsfilter-headers, spam-check-bsfilter)
10825 (spam-bsfilter-register-with-bsfilter)
10826 (spam-bsfilter-register-spam-routine)
10827 (spam-bsfilter-unregister-spam-routine)
10828 (spam-bsfilter-register-ham-routine)
10829 (spam-bsfilter-unregister-ham-routine): New functions.
10830 (spam-generic-score): Support bsfilter; Accept an optional argument
10831 to recalcurate spam score even if scoring header has already been
10832 added.
10833 (spam-bogofilter-score, spam-spamassassin-score): Accept an
10834 optional argument to recalcurate spam score even if scoring header
10835 has already been added.
10836
10837 2004-04-29 Jesper Harder <harder@ifa.au.dk>
10838
10839 * nnrss.el (nnrss-get-namespace-prefix): Use string= to compare
10840 strings! Reported by David D. Smith <davidsmith@acm.org>.
10841 (nnrss-check-group, nnrss-read-group-data): Hash on Subject if
10842 link is missing.
10843
10844 2004-04-28 Jesper Harder <harder@ifa.au.dk>
10845
10846 * html2text.el (html2text-replace-list): Add &amp; and &apos;.
10847 (html2text-get-attr): Rewrite.
10848
10849 * message.el (message-setup-1): Remove redundant put-text-property
10850 on mail-header-separator.
10851
10852 2004-04-27 Teodor Zlatanov <tzz@lifelogs.com>
10853
10854 * gnus-registry.el (gnus-registry-cache-whitespace)
10855 (gnus-registry-action, gnus-registry-spool-action)
10856 (gnus-registry-split-fancy-with-parent): Change message levels
10857 from 5 to 3 or 7, as needed.
10858
10859 * spam.el (spam-summary-prepare-exit)
10860 (spam-mark-junk-as-spam-routine, spam-fetch-field-fast)
10861 (spam-split, spam-find-spam, spam-log-undo-registration)
10862 (spam-check-blackholes, spam-enter-ham-BBDB): Changed message
10863 level from 5 to 6.
10864
10865 2004-04-26 Katsumi Yamaoka <yamaoka@jpl.org>
10866
10867 * gnus-ems.el: Autoload appt-select-lowest-window (revert
10868 2004-03-04 change).
10869
10870 2004-04-25 Jesper Harder <harder@ifa.au.dk>
10871
10872 * sieve-manage.el (sieve-manage-open):
10873 * nnweb.el (nnweb-insert-html):
10874 * nnvirtual.el (nnvirtual-catchup-group, nnvirtual-partition-sequence)
10875 (nnvirtual-partition-sequence, nnvirtual-create-mapping):
10876 * nnspool.el (nnspool-request-group):
10877 * nnrss.el (nnrss-opml-export, nnrss-find-el, nnrss-order-hrefs):
10878 * nnml.el (nnml-request-update-info):
10879 * nnmh.el (nnmh-request-group, nnmh-request-list-1, nnmh-active-number)
10880 (nnmh-request-create-group, nnmh-update-gnus-unreads):
10881 * nnimap.el (nnimap-request-close, nnimap-acl-edit)
10882 (nnimap-request-set-mark):
10883 * nnfolder.el (nnfolder-request-update-info):
10884 * mm-view.el (mm-pkcs7-signed-magic, mm-pkcs7-enveloped-magic):
10885 * mml.el (mml-destroy-buffers, mml-compute-boundary-1):
10886 * gnus-uu.el (gnus-uu-find-articles-matching):
10887 * gnus-topic.el (gnus-topic-check-topology, gnus-topic-remove-group):
10888 * gnus-sum.el (gnus-summary-fetch-faq, gnus-read-move-group-name):
10889 * gnus-score.el (gnus-score-load-file, gnus-sort-score-files):
10890 * gnus-nocem.el (gnus-nocem-scan-groups):
10891 * gnus-int.el (gnus-start-news-server):
10892 * gnus-group.el (gnus-group-make-kiboze-group)
10893 (gnus-group-browse-foreign-server):
10894 * spam-stat.el (spam-stat-score-buffer): Simplify mapcar usage.
10895 Use mapc when appropriate.
10896
10897 2004-04-22 Teodor Zlatanov <tzz@lifelogs.com>
10898
10899 FIXME: Make separate entries for each person.
10900
10901 From Dan Christensen <jdc@uwo.ca>, asjo@koldfront.dk (Adam
10902 Sjøgren), Wes Hardaker <wes@hardakers.net>, and Michael Shields
10903 <shields@msrl.com>:
10904
10905 * spam.el (spam-necessary-extra-headers): Get the extra headers we
10906 may need for spam sorting and scoring.
10907 (spam-user-format-function-S): Add user format function suitable for
10908 general use.
10909 (spam-article-sort-by-spam-status): Add sorting function for summary
10910 sorting.
10911 (spam-extra-header-to-number): Add function to get a score from a
10912 header.
10913 (spam-summary-score): Add function to get a numeric score from the
10914 headers.
10915 (spam-generic-score): Fix function doc, was in wrong place.
10916 (spam-initialize): Take symbols when it's run, and install the
10917 extra headers that spam-necessary-extra-headers thinks we need.
10918
10919 2004-04-21 Teodor Zlatanov <tzz@lifelogs.com>
10920
10921 * spam.el (spam-summary-prepare-exit): Add logic and message fix.
10922 Reported by bojohan+news@dd.chalmers.se (Johan Bockgård).
10923
10924 2004-04-17 Jesper Harder <harder@ifa.au.dk>
10925
10926 * gnus-sum.el (gnus-set-global-variables)
10927 (gnus-build-all-threads, gnus-get-newsgroup-headers)
10928 (gnus-article-get-xrefs, gnus-summary-best-group)
10929 (gnus-summary-next-article, gnus-summary-enter-digest-group)
10930 (gnus-summary-set-bookmark, gnus-offer-save-summaries)
10931 (gnus-summary-update-info, gnus-kill-or-deaden-summary):
10932 Use with-current-buffer.
10933
10934 2004-04-16 Teodor Zlatanov <tzz@lifelogs.com>
10935
10936 * spam.el (spam-summary-prepare-exit): Simplify logic.
10937 (spam-fetch-article-header): Read the article header if it's not
10938 available.
10939 (spam-list-articles): Simplify logic.
10940 (spam-filelist-register-routine): Fix bug with unregister-list.
10941
10942 * gnus-registry.el: Fix comments at beginning.
10943
10944 2004-04-16 Jesper Harder <harder@ifa.au.dk>
10945
10946 * message.el (message-cater-to-broken-inn): Remove.
10947 (message-shorten-references): Make sure the total folded length of
10948 References is shorter than 998 characters to cater to a bug in INN
10949 2.3. Also, don't pretend that references aren't folded -- this
10950 hasn't worked for a while.
10951
10952 2004-04-15 Kevin Greiner <kgreiner@xpediantsolutions.com>
10953
10954 * gnus-agent.el (gnus-agentize):
10955 gnus-agent-send-mail-real-function no longer set to current value
10956 of message-send-mail-function but rather a lambda that calls
10957 message-send-mail-function. The change makes the agent real-time
10958 responsive to user changes to message-send-mail-function.
10959
10960 2004-04-15 Kevin Greiner <kgreiner@xpediantsolutions.com>
10961
10962 * legacy-gnus-agent.el
10963 (gnus-agent-convert-to-compressed-agentview): Fixed typos with
10964 help from Florian Weimer <fw@deneb.enyo.de>
10965
10966 2004-04-15 Katsumi Yamaoka <yamaoka@jpl.org>
10967
10968 * nnmail.el (nnmail-cache-insert): Revert last change.
10969
10970 2004-04-14 Katsumi Yamaoka <yamaoka@jpl.org>
10971
10972 * nnmail.el (nnmail-cache-insert): Always check whether
10973 nnmail-cache-ignore-groups matches a group name.
10974
10975 2004-04-13 Teodor Zlatanov <tzz@lifelogs.com>
10976
10977 * spam.el (spam-fetch-field-fast, spam-generate-fake-headers)
10978 (spam-find-spam, spam-log-processing-to-registry)
10979 (spam-log-registered-p, spam-log-unregistration-needed-p)
10980 (spam-log-undo-registration): Use gnus-message instead of
10981 gnus-error, none of these errors are fatal.
10982
10983 * gnus-registry.el (gnus-registry-clean-empty-function)
10984 (gnus-registry-clean-empty): Remove only empty entries without
10985 extra data.
10986
10987 2004-04-12 Teodor Zlatanov <tzz@lifelogs.com>
10988
10989 * spam-stat.el (spam-stat-buffer-change-to-spam)
10990 (spam-stat-buffer-change-to-non-spam): Change (error) to
10991 (gnus-message 8) invocation.
10992
10993 2004-04-12 Katsumi Yamaoka <yamaoka@jpl.org>
10994
10995 * nntp.el (nntp-via-netcat-command): New variable.
10996 (nntp-via-netcat-switches): New variable.
10997 (nntp-open-via-rlogin-and-netcat): New function.
10998 (nntp-open-connection-function): Doc fix.
10999 (nntp-telnet-command): Doc fix.
11000 (nntp-end-of-line): Doc fix.
11001 (nntp-via-rlogin-command): Doc fix.
11002 (nntp-via-user-name): Doc fix.
11003 (nntp-via-address): Doc fix.
11004
11005 2004-04-09 Katsumi Yamaoka <yamaoka@jpl.org>
11006
11007 * mml2015.el (mml2015-use): Avoid the "Recursive load suspected"
11008 error in Emacs 21.1.
11009
11010 2004-04-08 Reiner Steib <Reiner.Steib@gmx.de>
11011
11012 * gnus-start.el (gnus-get-unread-articles): Fix last commit.
11013
11014 2004-04-07 Kevin Greiner <kgreiner@xpediantsolutions.com>
11015 * gnus-agent.el (gnus-agent-total-fetched-hashtb): New variable.
11016 (gnus-agent-with-refreshed-group): New macro.
11017 (gnus-agent-rename-group): New function.
11018 (gnus-agent-delete-group): New function.
11019 (gnus-agent-save-group-info): Use gnus-command-method when
11020 `method' parameter is nil. Don't write nil entries into the
11021 active file.
11022 (gnus-agent-get-group-info): New function.
11023 (gnus-agent-fetch-articles): Use
11024 gnus-agent-update-files-total-fetched-for to increment disk space
11025 used.
11026 (gnus-agent-fetch-headers, gnus-agent-save-alist): Use
11027 gnus-agent-update-view-total-fetched-for to increment disk space
11028 used.
11029 (gnus-agent-get-local): Added optional parameters to avoid calling
11030 gnus-group-real-name and gnus-find-method-for-group.
11031 (gnus-agent-set-local): Delete stored entry if either min, or max,
11032 are nil.
11033 (gnus-agent-fetch-session): Reworded error/quit messages. On
11034 quit, use gnus-agent-regenerate-group to record existance of any
11035 articles fetched to disk before the quit occurred.
11036 (gnus-agent-expire-group-1): Use gnus-agent-with-refreshed-group,
11037 gnus-agent-update-view-total-fetched-for, and
11038 gnus-agent-update-files-total-fetched-for to decrement disk space
11039 used.
11040 (gnus-agent-retrieve-headers): Use
11041 gnus-agent-update-view-total-fetched-for to increment disk space
11042 used.
11043 (gnus-agent-regenerate-group): Replace gnus-group-update-group
11044 with gnus-agent-update-files-total-fetched-for to decrement disk
11045 space and fresh group buffer.
11046 (gnus-agent-inhibit-update-total-fetched-for): New variable.
11047 (gnus-agent-need-update-total-fetched-for): New variable.
11048 (gnus-agent-update-files-total-fetched-for): New function.
11049 (gnus-agent-update-view-total-fetched-for): New function.
11050 (gnus-agent-total-fetched-for): New function.
11051
11052 * gnus-cache.el (gnus-cache-save-buffers): Use
11053 gnus-cache-update-overview-total-fetched-for to change disk space
11054 used by this group.
11055 (gnus-cache-possibly-enter-article): Use
11056 gnus-cache-update-file-total-fetched-for to increment disk space
11057 used by this group.
11058 (gnus-cache-possibly-remove-article): Use
11059 gnus-cache-update-file-total-fetched-for to decrement disk space
11060 used by this group.
11061 (gnus-cache-generate-nov-databases): Purge total fetched cache.
11062 (gnus-cache-rename-group): New function.
11063 (gnus-cache-delete-group): New function.
11064 (gnus-cache-inhibit-update-total-fetched-for): New variable.
11065 (gnus-cache-need-update-total-fetched-for): New variable.
11066 (gnus-cache-with-refreshed-group): New macro.
11067 (gnus-cache-update-file-total-fetched-for): New function.
11068 (gnus-cache-update-overview-total-fetched-for): New function.
11069 (gnus-cache-rename-group-total-fetched-for): New function.
11070 (gnus-cache-delete-group-total-fetched-for): New function.
11071 (gnus-cache-total-fetched-for): New function.
11072
11073 * gnus-group.el: Require gnus-sum and autoload functions to
11074 resolve warnings when gnus-group.el compiled alone.
11075 (gnus-group-line-format): Documented new %F
11076 (size of Fetched data) group line format; identifies disk space
11077 used by agent and cache.
11078 (gnus-group-line-format-alist): Defined new F format.
11079 (gnus-total-fetched-for): New function.
11080 (gnus-group-delete-group): No longer update
11081 gnus-cache-active-altered as gnus-request-delete-group now keeps
11082 the cache in sync.
11083 (gnus-group-list-active): Let the agent store a server's active
11084 list if currently plugged.
11085
11086 * gnus-int.el (gnus-request-delete-group):
11087 Use gnus-cache-delete-group and gnus-agent-delete-group to keep the
11088 local disk in sync with the server.
11089 (gnus-request-rename-group):
11090 Use gnus-cache-rename-group and gnus-agent-rename-group to keep the
11091 local disk in sync with the server.
11092
11093 * gnus-start.el (gnus-get-unread-articles):
11094 Cosmetic simplification to logic.
11095
11096 * gnus-util.el (gnus-rename-file): New function.
11097
11098 2004-04-07 Christian Neukirchen <chneukirchen@yahoo.de> (tiny change)
11099
11100 * mm-util.el (mm-image-load-path): Handle nil in load-path.
11101
11102 2004-04-07 Jesper Harder <harder@ifa.au.dk>
11103
11104 * rfc2047.el (rfc2047-encoded-word-regexp): Remove unnecessary
11105 '+'. Reported by Stefan Wiens <s.wi@gmx.net>.
11106
11107 2004-04-06 Jesper Harder <harder@ifa.au.dk>
11108
11109 * gnus-cache.el (gnus-cache-save-buffers): Check if buffer is
11110 alive. Reported by Laurent Martelli <laurent@aopsys.com>.
11111
11112 2004-04-03 Jesper Harder <harder@ifa.au.dk>
11113
11114 * gnus.el (gnus-getenv-nntpserver): Strip whitespace.
11115
11116 2004-04-02 Teodor Zlatanov <tzz@lifelogs.com>
11117
11118 * spam.el (spam-set-difference): Add function to replace
11119 gnus-set-difference in spam.el.
11120 (spam-summary-prepare-exit): Use spam-set-difference.
11121
11122 2004-03-29 Teodor Zlatanov <tzz@lifelogs.com>
11123
11124 * gnus-registry.el (gnus-registry-cache-file): Update to use
11125 gnus-dribble-directory OR gnus-home-directory OR ~.
11126 (gnus-registry-split-fancy-with-parent): Fix doc.
11127
11128 2004-03-27 Katsumi Yamaoka <yamaoka@jpl.org>
11129
11130 * message.el (message-exchange-point-and-mark): Use
11131 message-mark-active-p. Suggested by Jesper Harder
11132 <harder@ifa.au.dk>.
11133
11134 2004-03-26 Katsumi Yamaoka <yamaoka@jpl.org>
11135
11136 * message.el (message-exchange-point-and-mark): Don't activate
11137 region if it was inactive. Suggested by Hiroshi Fujishima
11138 <pooh@nature.tsukuba.ac.jp>.
11139
11140 2004-03-25 Katsumi Yamaoka <yamaoka@jpl.org>
11141
11142 * gnus-art.el (article-display-face): Display Faces in the same
11143 order as X-Faces.
11144
11145 2004-03-24 Katsumi Yamaoka <yamaoka@jpl.org>
11146
11147 * nndoc.el (nndoc-forward-type-p): Recognize envelope From_.
11148
11149 2004-03-23 Katsumi Yamaoka <yamaoka@jpl.org>
11150
11151 * gnus-art.el (gnus-mime-recompute-hierarchical-structure): Remove.
11152 (gnus-mime-multipart-functions): Revert 2004-03-19 change.
11153 (gnus-article-mime-hierarchy): Remove.
11154 (gnus-article-mime-hierarchy-next): Remove.
11155 (gnus-article-mode): Revert 2004-03-19 change.
11156 (gnus-article-setup-buffer): Revert 2004-03-19 change.
11157 (gnus-insert-mime-button): Revert 2004-03-19 change.
11158 (gnus-mime-accumulate-hierarchy): Remove.
11159 (gnus-mime-enter-multipart): Remove.
11160 (gnus-mime-leave-multipart): Remove.
11161 (gnus-mime-display-part): Revert 2004-03-19 change.
11162 (gnus-mime-display-alternative): Revert 2004-03-19 change.
11163
11164 * mml.el (mml-preview): Revert 2004-03-19 change.
11165
11166 2004-03-18 Helmut Waitzmann <Helmut.Waitzmann@web.de> (tiny change)
11167
11168 * gnus-sum.el (gnus-newsgroup-variables): Doc fix.
11169
11170 2004-03-22 Katsumi Yamaoka <yamaoka@jpl.org>
11171
11172 * mm-decode.el (mm-save-part): Bind enable-multibyte-characters to
11173 t while entering a file name using the mm-with-multibyte macro.
11174 Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
11175
11176 * mm-util.el (mm-with-multibyte): New macro.
11177
11178 2004-03-19 Katsumi Yamaoka <yamaoka@jpl.org>
11179
11180 * gnus-art.el (gnus-mime-recompute-hierarchical-structure): New
11181 user option.
11182 (gnus-mime-multipart-functions): Doc and customization fix.
11183 (gnus-article-mime-hierarchy): New variable.
11184 (gnus-article-mime-hierarchy-next): New variable.
11185 (gnus-article-mode): Make gnus-article-mime-hierarchy buffer-local.
11186 (gnus-article-setup-buffer): Set gnus-article-mime-hierarchy and
11187 gnus-article-mime-hierarchy-next to nil.
11188 (gnus-insert-mime-button): Show hierarchy numbers.
11189 (gnus-mime-accumulate-hierarchy): New function.
11190 (gnus-mime-enter-multipart): New function.
11191 (gnus-mime-leave-multipart): New function.
11192 (gnus-mime-display-part): Recompute hierarchical MIME structure.
11193 (gnus-mime-display-alternative): Show hierarchy numbers.
11194
11195 * mml.el (mml-preview): Set gnus-article-mime-hierarchy and
11196 gnus-article-mime-hierarchy-next to nil.
11197
11198 2004-03-19 Steve Youngs <sryoungs@bigpond.net.au>
11199
11200 * dns.el: Don't require gnus-xmas.
11201
11202 2004-03-17 Jesper Harder <harder@ifa.au.dk>
11203
11204 * mml.el (mml-generate-mime-1): Don't use format=flowed with
11205 inline PGP.
11206 (mml-menu): Disable mml-quote-region if mark is inactive.
11207
11208 2004-03-17 Katsumi Yamaoka <yamaoka@jpl.org>
11209
11210 * gnus-agent.el (gnus-agent-regenerate-group): Activate the group
11211 when the group's active is not available.
11212
11213 2004-03-15 Katsumi Yamaoka <yamaoka@jpl.org>
11214
11215 * gnus-agent.el (gnus-agent-read-agentview): Add a missing arg to
11216 error.
11217
11218 2004-03-12 Reiner Steib <Reiner.Steib@gmx.de>
11219
11220 * imap.el (imap-store-password): New variable.
11221 (imap-interactive-login): Use it.
11222 Suggested by Mark Plaksin <happy@mcplaksin.org>.
11223
11224 2004-03-12 Katsumi Yamaoka <yamaoka@jpl.org>
11225
11226 * gnus-art.el (gnus-article-read-summary-keys): Restore new
11227 window-start and hscroll to summary window.
11228
11229 2004-03-12 Kevin Greiner <kgreiner@xpediantsolutions.com>
11230
11231 * gnus-start.el (gnus-convert-old-newsrc): Only write the
11232 conversion message to newsrc-dribble when an actual conversion is
11233 performed.
11234
11235 2004-03-10 Malcolm Purvis <malcolmpurvis@optushome.com.au> (tiny change)
11236
11237 * spam-stat.el (spam-stat-coding-system): Use mm-coding-system-p.
11238
11239 2004-03-10 Katsumi Yamaoka <yamaoka@jpl.org>
11240
11241 * mm-decode.el (mm-complicated-handles): New function reviving
11242 former definition of mm-multiple-handles.
11243
11244 * gnus-art.el (gnus-mime-save-part-and-strip): Use it.
11245 (gnus-mime-delete-part): Use it.
11246
11247 2004-03-09 Kevin Greiner <kgreiner@xpediantsolutions.com>
11248
11249 * gnus-agent.el (gnus-agent-read-local): Bind
11250 nnheader-file-coding-system to gnus-agent-file-coding-system to
11251 avoid the implicit assumption that they will always be equal.
11252 (gnus-agent-save-local): Bind buffer-file-coding-system, not
11253 coding-system-for-write, as the with-temp-file macro first prints
11254 to a buffer then saves the buffer.
11255
11256 2004-03-09 Katsumi Yamaoka <yamaoka@jpl.org>
11257
11258 * gnus-art.el (gnus-article-edit-part): New function.
11259 (gnus-mime-save-part-and-strip): Use it; do query instead of
11260 signaling an error; don't use mm-multiple-handles.
11261 (gnus-mime-delete-part): Ditto.
11262
11263 2004-03-08 Kevin Greiner <kgreiner@xpediantsolutions.com>
11264
11265 * gnus-agent.el (gnus-agent-read-agentview): Removed support for
11266 old file versions.
11267 (gnus-group-prepare-hook): Removed function that converted list
11268 form of gnus-agent-expire-days to group properties.
11269
11270 * gnus-int.el: Autoload gnus-agent-regenerate-group.
11271 (gnus-request-accept-article): Re-indented.
11272
11273 * gnus-start.el (gnus-convert-old-newsrc): Registered new
11274 converters to handle old agent file formats. Added logic for a
11275 "backup before upgrading warning".
11276 (gnus-convert-mark-converter-prompt): Developers can mark
11277 functions as needing (default), or not needing,
11278 gnus-convert-old-newsrc's "backup before upgrading warning".
11279 (gnus-convert-converter-needs-prompt): Tests whether the user
11280 should be protected from potentially irreversable changes by the
11281 function.
11282
11283 * legacy-gnus-agent.el: New. Provides converters that are only
11284 loaded when gnus-convert-old-newsrc needs to call them.
11285
11286 2004-03-08 Katsumi Yamaoka <yamaoka@jpl.org>
11287
11288 * mail-source.el (mail-source-touch-pop): Doc fix.
11289
11290 * message.el (message-smtpmail-send-it): Doc fix.
11291
11292 2004-03-05 Jesper Harder <harder@ifa.au.dk>
11293
11294 * sha1-el.el (sha1-maximum-internal-length): Doc fix.
11295
11296 * nnmail.el (nnmail-split-fancy): do.
11297
11298 * gnus-kill.el (gnus-kill, gnus-execute): do.
11299
11300 2004-03-05 Per Abrahamsen <abraham@dina.kvl.dk>
11301
11302 * gnus-sum.el (gnus-widget-reversible-match)
11303 (gnus-widget-reversible-to-internal)
11304 (gnus-widget-reversible-to-external): New functions.
11305 (gnus-widget-reversible): New widget.
11306 (gnus-article-sort-functions, gnus-thread-sort-functions): Use it.
11307
11308 2004-03-05 Kai Grossjohann <kgrossjo@eu.uu.net>
11309
11310 * gnus-sum.el (gnus-thread-sort-functions)
11311 (gnus-article-sort-functions): Document `(not F)' items.
11312
11313 2004-03-04 Teodor Zlatanov <tzz@lifelogs.com>
11314
11315 * spam.el (spam-use-gmane-xref): Add new backend.
11316 (spam-gmane-xref-spam-group): Add variable to control the name of the
11317 Gmane spam group.
11318 (spam-blackhole-servers, spam-blackhole-good-server-regex)
11319 (spam-regex-headers-spam, spam-regex-headers-ham)
11320 (spam-regex-body-spam, spam-regex-body-ham): Clarify docs.
11321 (spam-list-of-checks): Add spam-use-gmane-xref to list of
11322 backends and checks.
11323 (spam-check-gmane-xref): Add function for spam-use-gmane-xref.
11324
11325 * gnus.el (spam-autodetect-methods): Add spam-use-gmane-xref as
11326 an autodetect method.
11327
11328 2004-03-04 Kevin Greiner <kgreiner@xpediantsolutions.com>
11329
11330 * gnus-int.el (gnus-request-accept-article): Inform the agent that
11331 articles are being added to a group.
11332 (gnus-request-replace-article): Inform the agent that articles
11333 need to be uncached as the cached contents are no longer valid.
11334
11335 2004-03-04 Katsumi Yamaoka <yamaoka@jpl.org>
11336
11337 * binhex.el: Don't autoload executable-find.
11338
11339 * canlock.el: Don't autoload mail-fetch-field.
11340
11341 * gnus-ems.el: Don't autoload appt-select-lowest-window.
11342
11343 * gnus-msg.el: Don't autoload news-reply-mode, news-setup,
11344 rmail-dont-reply-to and rmail-output.
11345
11346 * gnus-score.el: Don't autoload ffap-string-at-point.
11347
11348 * gnus-setup.el: Don't autoload sc-cite-original.
11349
11350 * imap.el: Don't autoload base64-decode-string,
11351 base64-encode-string and md5.
11352
11353 * message.el: Autoload rmail-dont-reply-to, rmail-msg-is-pruned
11354 and rmail-msg-restore-non-pruned-header.
11355
11356 * mm-decode.el: Don't autoload executable-find.
11357
11358 * mm-url.el: Don't autoload executable-find.
11359
11360 * mm-view.el: Don't autoload diff-mode.
11361
11362 * nndb.el: Don't autoload news-reply-mode, news-setup,
11363 cancel-timer and telnet.
11364
11365 * password.el: Don't autoload run-at-time for Emacs.
11366
11367 * sha1-el.el: Don't autoload executable-find.
11368
11369 * sieve-mode.el: Don't autoload c-mode.
11370
11371 * uudecode.el: Don't autoload executable-find.
11372
11373 2004-03-04 Kevin Greiner <kgreiner@xpediantsolutions.com>
11374
11375 * gnus-agent.el (gnus-agent-file-header-cache): Removed.
11376 (gnus-agent-possibly-alter-active): Avoid null in numeric
11377 comparison.
11378 (gnus-agent-set-local): Refuse to save null in local object table.
11379 (gnus-agent-regenerate-group): The REREAD parameter can now be a
11380 list of articles that will be marked as unread.
11381
11382 2004-03-04 Katsumi Yamaoka <yamaoka@jpl.org>
11383
11384 * rfc2047.el (rfc2047-encoded-word-regexp): Mismatched paren.
11385
11386 2004-03-04 Jesper Harder <harder@ifa.au.dk>
11387
11388 * rfc2047.el (rfc2047-encoded-word-regexp): Support RFC 2231
11389 language tags.
11390
11391 2004-03-03 Per Abrahamsen <abraham@dina.kvl.dk>
11392
11393 * gnus-agent.el (gnus-agent-read-local, gnus-agent-save-local):
11394 Don't bind "obarray".
11395
11396 * gnus-sum.el (gnus-thread-sort-functions): Added
11397 `gnus-thread-sort-by-most-recent-number' and
11398 `gnus-thread-sort-by-most-recent-date'.
11399 Reported by Kai Grossjohann <kai@emptydomain.de>.
11400
11401 2004-03-03 Katsumi Yamaoka <yamaoka@jpl.org>
11402
11403 * gnus-cus.el (gnus-agent-customize-category): Mismatched paren.
11404
11405 2004-03-02 Kevin Greiner <kgreiner@xpediantsolutions.com>
11406
11407 * gnus-cus.el (gnus-agent-customize-category): Removed
11408 ignore-errors macro reference that required cl to be loaded at
11409 run-time.
11410
11411 * gnus-range.el (gnus-sorted-range-intersection): Now accepts
11412 single-interval range of the form (min . max). Previously the
11413 range had to look like ((min . max)). Likewise, return
11414 (min . max) rather than ((min . max)).
11415 (gnus-range-map): Use gnus-range-normalize to accept
11416 single-interval range.
11417
11418 * gnus-sum.el (gnus-summary-highlight-line): Articles stored in
11419 the cache, but not the agent, now appear with their usual face.
11420
11421 2004-03-01 Katsumi Yamaoka <yamaoka@jpl.org>
11422
11423 * gnus-art.el (gnus-article-wash-html-with-w3m): Don't make the
11424 w3m-safe-url-regexp variable buffer-local.
11425
11426 * mm-view.el (mm-inline-text-html-render-with-w3m): Ditto.
11427
11428 2004-02-27 Simon Josefsson <jas@extundo.com>
11429
11430 * gnus-sum.el (gnus-move-group-prefix-function): Add, default to
11431 gnus-group-real-prefix.
11432 (gnus-summary-move-article): Use it, instead of
11433 gnus-group-real-prefix.
11434
11435 2004-02-27 Katsumi Yamaoka <yamaoka@jpl.org>
11436
11437 * gnus-art.el (gnus-article-wash-html-with-w3m): Make the
11438 w3m-safe-url-regexp variable buffer-local and set it as the value
11439 of mm-w3m-safe-url-regexp.
11440
11441 * mm-view.el (mm-inline-text-html-render-with-w3m): Ditto.
11442
11443 * gnus-msg.el (gnus-setup-message): Ignore an article copy while
11444 parsing gnus-posting-styles when the message is not for replying.
11445
11446 * nnrss.el (nnrss-opml-export): Use
11447 mm-set-buffer-file-coding-system instead of
11448 set-buffer-file-coding-system.
11449
11450 2004-02-27 Jesper Harder <harder@ifa.au.dk>
11451
11452 * spam-stat.el: Pedantic docstring and whitespace fixes (courtesy
11453 of checkdoc.el).
11454 * nnrss.el: do.
11455 * gnus-mlspl.el: do.
11456 * gnus-ml.el: do.
11457 * gnus-srvr.el: do.
11458
11459 * nnrss.el (nnrss-opml-export): Turn on sgml-mode.
11460
11461 2004-02-27 Kevin Ryde <user42@zip.com.au> (tiny change)
11462
11463 * gnus.el (gnus-group, gnus-summary, gnus-summary-sort):
11464 Corrections to custom-manual links.
11465
11466 * gnus-art.el (gnus-article): Ditto.
11467
11468 * mm-decode.el (mime-display, mime-security): Ditto.
11469
11470 2004-02-26 Jesper Harder <harder@ifa.au.dk>
11471
11472 * flow-fill.el: Typo.
11473
11474 2004-02-26 Andrew Cohen <cohen@andy.bu.edu>
11475
11476 * spam-wash.el: New file.
11477
11478 2004-02-26 Mark A. Hershberger <mah@everybody.org>
11479
11480 * nnrss.el (nnrss-opml-import, nnrss-opml-export): New functions.
11481
11482 2004-02-26 Teodor Zlatanov <tzz@lifelogs.com>
11483
11484 * spam.el (spam-summary-prepare-exit): Fix gnus-set-difference: needs
11485 to be run with new-articles as LIST1, not LIST2.
11486 (spam-registration-functions): Add spam-use-ham-copy as a nil
11487 registration backend.
11488
11489 2004-02-26 Jesper Harder <harder@ifa.au.dk>
11490
11491 * spam-stat.el (spam-stat-washing-hook): New option.
11492 (spam-stat-buffer-words): Use it.
11493 (spam-stat-process-directory, spam-stat-test-directory): Use
11494 insert-file-contents-literally.
11495 (spam-stat-coding-system): New variable.
11496 (spam-stat-load, spam-stat-save): Use it.
11497
11498 2004-02-25 Katsumi Yamaoka <yamaoka@jpl.org>
11499
11500 * spam-report.el (spam-report-plug-agent): Quote
11501 spam-report-url-to-file and spam-report-url-ping-plain.
11502
11503 2004-02-25 Reiner Steib <Reiner.Steib@gmx.de>
11504
11505 * gnus-art.el (gnus-button-alist, gnus-header-button-alist): Allow
11506 / in mailto URLs.
11507
11508 2004-02-24 Reiner Steib <Reiner.Steib@gmx.de>
11509
11510 * spam-report.el (spam-report-process-queue): Fix interactive use.
11511 (spam-report-url-ping-temp-agent-function, spam-report-plug-agent)
11512 (spam-report-unplug-agent): Doc fixes.
11513 (spam-report-url-ping-mm-url, spam-report-url-to-file)
11514 (spam-report-agentize, spam-report-deagentize): Autoload
11515
11516 2004-02-24 Katsumi Yamaoka <yamaoka@jpl.org>
11517
11518 * message.el (message-setup-fill-variables): Add mml tags to
11519 paragraph-start and paragraph-separate. Suggested by Andrew Korty
11520 <ajk@iu.edu>.
11521 (message-mode): Don't modify paragraph-separate there.
11522
11523 2004-02-17 Katsumi Yamaoka <yamaoka@jpl.org>
11524
11525 * compface.el (uncompface-use-external): Default to undecided.
11526 (uncompface-use-external-threshold): New variable.
11527 (uncompface-float-time): New macro.
11528 (uncompface): Determine whether to use the external decoder if
11529 uncompface-use-external is undecided.
11530
11531 2004-02-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
11532
11533 * mm-view.el (mm-inline-image-emacs): Don't insert blank lines
11534 after images.
11535
11536 * gnus-art.el (gnus-mime-display-single): Remove dead code.
11537
11538 2004-02-14 Jesper Harder <harder@ifa.au.dk>
11539
11540 * nnrss.el (nnrss-request-article, nnrss-find-el): Cleanup.
11541
11542 * html2text.el (html2text-get-attr, html2text-fix-paragraph): do.
11543
11544 * gnus-sum.el (gnus-summary-limit-to-age)
11545 (gnus-summary-limit-children): do.
11546
11547 * gnus-int.el (gnus-request-scan): do.
11548
11549 * gnus-group.el (gnus-group-suspend): do.
11550
11551 * gnus-cus.el (gnus-agent-cat-prepare-category-field): do.
11552
11553 * gnus-cite.el (gnus-cite-parse-attributions): do.
11554
11555 * gnus-agent.el (gnus-summary-set-agent-mark)
11556 (gnus-agent-regenerate-group): do.
11557
11558 * deuglify.el (gnus-article-outlook-unwrap-lines): do.
11559
11560 * binhex.el (binhex-decode-region-internal): do.
11561
11562 2004-02-12 Katsumi Yamaoka <yamaoka@jpl.org>
11563
11564 * gnus-fun.el (gnus-face-properties-alist): New user option.
11565 (gnus-display-x-face-in-from): Use it.
11566
11567 * gnus-art.el (article-display-face): Ditto.
11568
11569 * compface.el (uncompface-use-external): Default to nil.
11570
11571 2004-02-12 Jesper Harder <harder@ifa.au.dk>
11572
11573 * nntp.el (nntp-erase-buffer): New function.
11574 (nntp-retrieve-data, nntp-send-command)
11575 (nntp-send-buffer, nntp-retrieve-groups, nntp-handle-authinfo)
11576 (nntp-possibly-change-group): Use it.
11577
11578 * nnnil.el (nnnil-retrieve-headers, nnnil-request-list): Use
11579 with-current-buffer.
11580
11581 2004-02-12 TAKAI Kousuke <tak@kmc.gr.jp>
11582
11583 * compface.el: Merge the ELisp-based uncompface program.
11584 (compface): New customization group.
11585 (uncompface-use-external): New user option.
11586 (uncompface): Call uncompface-internal if uncompface-use-external
11587 is nil.
11588 (uncompface-internal): New function. Note that there are also
11589 some other functions and variables added for this function.
11590
11591 2004-02-10 Jesper Harder <harder@ifa.au.dk>
11592
11593 * nnrss.el (nnrss-read-group-data): Initialize nnrss-group-hashtb
11594 if necessary.
11595
11596 2004-02-09 Teodor Zlatanov <tzz@lifelogs.com>
11597
11598 * spam-report.el (spam-report-unplug-agent)
11599 (spam-report-plug-agent, spam-report-deagentize)
11600 (spam-report-agentize, spam-report-url-ping-temp-agent-function):
11601 Add support for the Agent in spam-report: when unplugged, report to a
11602 file; when plugged, submit all the requests.
11603
11604 * spam.el (spam-register-routine): Fix message about
11605 registration.
11606
11607 2004-02-09 Jesper Harder <harder@ifa.au.dk>
11608
11609 * rfc2047.el (rfc2047-qp-or-base64): New function to reduce
11610 dependencies.
11611 (rfc2047-encode): Use it.
11612
11613 * gnus-art.el (gnus-button-marker-list): Move before first
11614 reference.
11615
11616 * imap.el (imap-parse-flag-list, imap-parse-body-extension)
11617 (imap-parse-body): Fix format string mismatch.
11618
11619 * gnus-score.el (gnus-summary-increase-score): do.
11620
11621 * nnrss.el (nnrss-close): New function.
11622
11623 2004-02-08 Jesper Harder <harder@ifa.au.dk>
11624
11625 * nnrss.el (nnrss-make-filename): New function.
11626 (nnrss-request-delete-group, nnrss-read-server-data)
11627 (nnrss-save-server-data, nnrss-read-group-data)
11628 (nnrss-save-group-data): Use it.
11629 (nnrss-save-server-data, nnrss-save-group-data): Use gnus-prin1.
11630 (nnrss-read-server-data, nnrss-read-group-data): Use load.
11631 (nnrss-group-hashtb): Make it a hash table rather than an obarray.
11632
11633 2004-02-07 Jesper Harder <harder@ifa.au.dk>
11634
11635 * mml.el (mml-compute-boundary-1): Don't uncompress files.
11636
11637 2004-02-06 Jesper Harder <harder@ifa.au.dk>
11638
11639 * mml.el (mml-mode, mml-x-dnd-attach-file): Attach drop and drag
11640 files.
11641
11642 * message.el (message-generate-headers-first): Don't quote nil
11643 and t in docstrings.
11644
11645 * imap.el (imap-id): do.
11646
11647 * gnus-agent.el (gnus-agent-consider-all-articles)
11648 (gnus-agent-queue-mail): do.
11649
11650 2004-02-05 Reiner Steib <Reiner.Steib@gmx.de>
11651
11652 * spam-report.el (spam-report-process-queue): New function.
11653 Process requests from `spam-report-requests-file'.
11654 (spam-report-process-queue): Doc fix.
11655
11656 2004-02-05 Teodor Zlatanov <tzz@lifelogs.com>
11657
11658 * spam.el (spam-register-routine)
11659 (spam-log-processing-to-registry, spam-log-registered-p)
11660 (spam-log-unregistration-needed-p, spam-log-undo-registration):
11661 Change "check" to "spam-check" for semi-clarity.
11662
11663 2004-02-05 Jesper Harder <harder@ifa.au.dk>
11664
11665 * pop3.el: Require nnheader.
11666
11667 * mml-smime.el: Require cl. Autoload message-fetch-field.
11668
11669 * mml-sec.el (mml-signencrypt-style): Don't depend on Gnus.
11670
11671 * gnus-picon.el: Require cl.
11672
11673 * gnus-fun.el: Require gnus-ems and gnus-util.
11674
11675 * gnus.el (gnus-method-to-server): Move defsubst before first use.
11676
11677 * gnus-diary.el (gnus-diary-header-schedule): caddr -> car (cddr
11678
11679 * gnus-art.el (gnus-article-edit-mode): Define before first
11680 reference.
11681
11682 2004-02-04 Jesper Harder <harder@ifa.au.dk>
11683
11684 * gnus-uu.el (gnus-uu-check-correct-stripped-uucode): Simplify.
11685 (gnus-uu-post-encoded): Use point-at-bol.
11686
11687 * gnus-topic.el (gnus-group-active-topic-p): do.
11688
11689 * gnus-start.el (gnus-newsrc-to-gnus-format): do.
11690
11691 * gnus-group.el (gnus-group-kill-region): do.
11692
11693 * gnus-art.el (article-date-ut): do.
11694
11695 * message.el (message-fetch-field): Remove redundant
11696 case-fold-search binding.
11697 (message-narrow-to-field): Simplify.
11698
11699 2004-02-03 Reiner Steib <Reiner.Steib@gmx.de>
11700
11701 * spam.el (spam-directory): Derive from `gnus-directory'.
11702
11703 * spam-report.el (spam-report-url-to-file)
11704 (spam-report-requests-file): New function and variable for offline
11705 reporting.
11706 (spam-report-url-ping-function): Add `spam-report-url-to-file'
11707 and user defined function.
11708 (spam-report-url-ping-mm-url): Remove doubled slash.
11709
11710 2004-02-03 Teodor Zlatanov <tzz@lifelogs.com>
11711
11712 * spam.el (spam-list-of-processors): Fix spamassassin variable names.
11713
11714 2004-02-03 Jesper Harder <harder@ifa.au.dk>
11715
11716 * spam.el (spam-check-spamoracle, spam-spamoracle-learn): Fix
11717 format string mismatch.
11718
11719 * sieve.el (sieve-deactivate-all): do.
11720
11721 * nnfolder.el (nnfolder-request-set-mark, nnfolder-save-marks): do.
11722
11723 * nnlistserv.el (nnlistserv-kk-wash-article): do.
11724
11725 * nnml.el (nnml-request-set-mark, nnml-save-marks): do.
11726
11727 * mm-bodies.el (mm-7bit-chars): Don't include \r.
11728
11729 2004-02-02 Teodor Zlatanov <tzz@lifelogs.com>
11730
11731 * spam.el (spam-list-of-checks): Add spam-use-BBDB-eclusive to
11732 the list of checks.
11733
11734 2004-01-31 Jesper Harder <harder@ifa.au.dk>
11735
11736 * rfc2047.el (rfc2047-pad-base64): Deal with more cases of invalid
11737 padding.
11738
11739 2004-01-27 Ralf Angeli <angeli@iwi.uni-sb.de>
11740
11741 * mm-view.el (mm-fill-flowed): New variable.
11742 (mm-inline-text): Use it.
11743
11744 2004-01-27 Teodor Zlatanov <tzz@lifelogs.com>
11745
11746 * spam.el (spam-spamassassin-register-ham-routine)
11747 (spam-spamassassin-register-spam-routine): Fix function names.
11748
11749 2004-01-27 Katsumi Yamaoka <yamaoka@jpl.org>
11750
11751 * gnus.el (gnus-tmp-grouplens): Remove.
11752 (gnus-summary-line-format): Remove grouplens.
11753
11754 * gnus-group.el (gnus-group-line-format): Ditto.
11755
11756 * gnus-spec.el (gnus-format-specs): Ditto.
11757 (gnus-update-format-specifications): Flush the group format spec
11758 cache if there's the grouplens stuff.
11759 (gnus-parse-simple-format): Replace %l with the empty string.
11760
11761 2004-01-27 Jerry James <james@xemacs.org> (tiny change)
11762
11763 * gnus-spec.el (gnus-parse-simple-format): Fix setq value
11764 omission.
11765
11766 2004-01-26 Katsumi Yamaoka <yamaoka@jpl.org>
11767
11768 * gnus-msg.el (gnus-summary-resend-message-edit): Call mime-to-mml.
11769 Suggested by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.
11770
11771 2004-01-25 Paul Jarc <prj@po.cwru.edu>
11772
11773 * nnmaildir.el (nnmaildir--num-file, nnmaildir--mkfile)
11774 (nnmaildir--emlink-p, nnmaildir--eexist-p, nnmaildir--new-number):
11775 New macros and functions.
11776 * nnmaildir.el (nnmaildir--group-maxnum, nnmaildir--update-nov):
11777 Handle > NLINK_MAX messages.
11778 * nnmaildir.el (nnmaildir-request-set-mark): Use
11779 nnmaildir--emlink-p and nnmaildir--eexist-p.
11780
11781 2004-01-25 Alex Schroeder <alex@gnu.org>
11782
11783 * spam-stat.el (spam-stat-process-directory-age): New option.
11784 (spam-stat-process-directory): Use it.
11785
11786 2004-01-24 Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp> (tiny change)
11787
11788 * spam-stat.el (spam-stat-reduce-size): Set spam-stat-dirty.
11789 (spam-stat-save): Accept prefix argument.
11790
11791 2004-01-23 Paul Jarc <prj@po.cwru.edu>
11792
11793 * nnmaildir.el (nnmaildir-request-set-mark): Handle the "too many
11794 links" error.
11795
11796 2004-01-23 Jesper Harder <harder@ifa.au.dk>
11797
11798 * gnus.el (gnus-tmp-grouplens): Define for the sake of backward
11799 compatibility with old .newsrc.eld files.
11800
11801 * gnus-sum.el (gnus-summary-line-format-alist): Remove grouplens.
11802
11803 * gnus-start.el (gnus-1): do.
11804
11805 * gnus-group.el (gnus-group-line-format-alist): do.
11806
11807 * gnus.el (gnus-use-grouplens, gnus-visual): do.
11808
11809 * gnus-gl.el: Remove.
11810
11811 2004-01-23 Kevin Greiner <kgreiner@xpediantsolutions.com>
11812
11813 * gnus-sum.el (gnus-adjust-marks): Now correctly handles a list of
11814 marks consisting of a single range {for example, (3 . 5)} rather
11815 than a list of a single range { ((3 . 5)) }.
11816
11817 2004-01-23 Jesper Harder <harder@ifa.au.dk>
11818
11819 * spam-stat.el (spam-stat-store-gnus-article-buffer): Use
11820 with-current-buffer.
11821 (spam-stat-store-current-buffer): Use insert-buffer-substring to
11822 avoid consing a string.
11823
11824 * mm-util.el (mm-charset-synonym-alist): Add ks_c_5601-1987.
11825 Remove obsolete entries for big5 and gb2312.
11826
11827 2004-01-22 Kevin Greiner <kgreiner@xpediantsolutions.com>
11828
11829 * gnus-sum.el (gnus-adjust-marks): Avoid splicing null INTO the
11830 uncompressed list.
11831
11832 2004-01-22 Jesper Harder <harder@ifa.au.dk>
11833
11834 * spam-stat.el (spam-stat-strip-xref): New function.
11835 (spam-stat-process-directory): Use it.
11836
11837 * gnus-util.el (gnus-fetch-field): Don't bind case-fold-search
11838 here -- it's done in message-fetch-field.
11839
11840 2004-01-21 Kevin Greiner <kgreiner@xpediantsolutions.com>
11841
11842 * gnus-agent.el (gnus-agent-queue-mail)
11843 (gnus-agent-prompt-send-queue): New variables.
11844 (gnus-agent-send-mail): Use gnus-agent-queue-mail.
11845 * gnus-draft.el (gnus-group-send-queue): Pass the group name
11846 "nndraft:queue" along to gnus-draft-send. Use
11847 gnus-agent-prompt-send-queue.
11848 (gnus-draft-send): Rebind gnus-agent-queue-mail to nil when group
11849 is "nndraft:queue". Suggested by Gaute Strokkenes
11850 <gs234@srcf.ucam.org>
11851
11852 * gnus-agent.el (agent-disable-undownloaded-faces): Removed
11853 (agent-enable-undownloaded-faces): Added
11854 (gnus-agent-cat-groups): Use eval-and-compile, not
11855 eval-when-compile, to define gnus-agent-set-cat-groups as the setf
11856 method of gnus-agent-cat-groups even when the buffer has been
11857 evaled.
11858 (gnus-agent-save-active, gnus-agent-save-active-1): Merged to
11859 delete gnus-agent-save-active-1.
11860 (gnus-agent-save-groups): Deleted. Identical to
11861 gnus-agent-save-active.
11862 (gnus-agent-write-active): No longer adjust agent's copy of active
11863 file as agent's adjustments are now stored in their own
11864 file. Removed optional parameter.
11865 (gnus-agent-possibly-alter-active): Ignore groups of unagentized
11866 servers. Add use of min/max range limits from server's local
11867 file.
11868 (gnus-agent-save-alist): Removed unused optional argument.
11869 (gnus-agent-load-local, gnus-agent-read-and-cache-local)
11870 (gnus-agent-read-local, gnus-agent-save-local, gnus-agent-get-local)
11871 (gnus-agent-set-local): A per-server file that keeps min/max range
11872 limits for articles known to the agent. Provides a fast mechanism
11873 for altering many active ranges.
11874 (gnus-agent-expire-group, gnus-agent-expire): No longer save the
11875 active file (local makes it unnecessary).
11876 (gnus-agent-regenerate-group): Fixed XEmacs compatibility.
11877
11878 * gnus-cus.el (agent-disable-undownloaded-faces): Removed
11879 (agent-enable-undownloaded-faces): Added
11880
11881 * gnus-draft.el (gnus-draft-send): Bind gnus-agent-queue-mail to
11882 disable it when sending to "nndraft:queue".
11883 (gnus-group-send-queue): Add safety check to avoid sending queue
11884 when unplugged.
11885
11886 * gnus-group.el (gnus-group-catchup): Use new
11887 gnus-sequence-of-unread-articles, not
11888 gnus-list-of-unread-articles, to avoid exhausting memory with huge
11889 numbers of articles. Use gnus-range-map to avoid having to
11890 uncompress the unread list.
11891 (gnus-group-archive-directory, gnus-group-recent-archive-directory):
11892 Fixed invalid ange-ftp reference.
11893
11894 * gnus-range.el (gnus-range-map): Iterate over list or sequence.
11895 (gnus-sorted-range-intersection): Intersection of two ranges
11896 without requiring that they first be uncompressed.
11897
11898 * gnus-start.el (gnus-activate-group): Unless blocked by the
11899 caller, possibly expand the active range to include both cached
11900 and agentized articles.
11901 (gnus-convert-old-newsrc): Rewrote in anticipation of having
11902 multiple version-dependent converters.
11903 (gnus-groups-to-gnus-format): Replaced gnus-agent-save-groups with
11904 gnus-agent-save-active.
11905 (gnus-save-newsrc-file): Save dirty agent range limits.
11906
11907 * gnus-sum.el (gnus-select-newgroup): Replaced inline code with
11908 gnus-agent-possibly-alter-active.
11909 (gnus-adjust-marked-articles): Faster handling of simple lists
11910
11911 2004-01-21 Jesper Harder <harder@ifa.au.dk>
11912
11913 * spam-stat.el (spam-stat-test-directory): New optional argument
11914 displays a list of files detected. Suggested by Andrew Cohen
11915 <cohen@andy.bu.edu>.
11916 (spam-stat-buffer-words-with-scores): Don't narrow and change
11917 syntax table here. Reported by Andrew Cohen <cohen@andy.bu.edu>.
11918
11919 2004-01-20 Hubert Chan <hubert@uhoreg.ca>
11920
11921 * spam.el (spam-use-spamassassin, spam-use-spamassassin-headers)
11922 (spam-install-hooks, spam-spamassassin, spam-spamassassin-path)
11923 (spam-spamassassin-arguments)
11924 (spam-spamassassin-spam-flag-header)
11925 (spam-spamassassin-positive-spam-flag-header)
11926 (spam-spamassassin-spam-status-header, spam-sa-learn-path)
11927 (spam-sa-learn-rebuild, spam-sa-learn-spam-switch)
11928 (spam-sa-learn-ham-switch, spam-sa-learn-unregister-switch)
11929 (spam-list-of-processors, spam-list-of-checks)
11930 (spam-list-of-statistical-checks, spam-registration-functions)
11931 (spam-check-spamassassin-headers, spam-check-spamassassin)
11932 (spam-spamassassin-score)
11933 (spam-spamassassin-register-with-sa-learn)
11934 (spam-spamassassin-register-spam-routine)
11935 (spam-spamassassin-register-ham-routine)
11936 (spam-assassin-register-spam-routine)
11937 (spam-assassin-register-ham-routine): Add SpamAssassin support.
11938 (spam-bogofilter-score): Fix to show article before scoring.
11939
11940 2004-01-20 Teodor Zlatanov <tzz@lifelogs.com>
11941
11942 * spam.el (gnus-summary-mode-map): Make spam-generic-score the
11943 default scoring function.
11944 (spam-generic-score): Call spam-spamassassin-score if
11945 spam-use-spamassassin or spam-use-spamassassin-headers is on;
11946 spam-bogofilter-score otherwise.
11947
11948 * gnus.el (spam-process, spam-autodetect-methods): Add
11949 spamassassin and spamassassin-headers.
11950
11951 2004-01-20 Nevin Kapur <nkapur@cs.caltech.edu>
11952
11953 * gnus-registry.el (gnus-registry-split-fancy-with-parent):
11954 Suppress unnecessary messages.
11955
11956 2004-01-20 Jesper Harder <harder@ifa.au.dk>
11957
11958 * spam-stat.el (spam-stat-to-hash-table): Use :size keyword in
11959 make-hash-table.
11960
11961 2004-01-19 Katsumi Yamaoka <yamaoka@jpl.org>
11962
11963 * canlock.el (base64-encode-string): Don't autoload it.
11964
11965 2004-01-16 Katsumi Yamaoka <yamaoka@jpl.org>
11966
11967 * run-at-time.el: Remove useless (require 'itimer),
11968 eval-and-compile and (featurep 'xemacs).
11969
11970 2004-01-16 Jesper Harder <harder@ifa.au.dk>
11971
11972 * gnus-msg.el (gnus-post-news): Use blank Newsgroups line if
11973 GROUP is a virtual group.
11974
11975 2004-01-16 Steve Youngs <sryoungs@bigpond.net.au>
11976
11977 * gnus.el: Autoload `message-y-or-n-p'.
11978
11979 2004-01-15 Jesper Harder <harder@ifa.au.dk>
11980
11981 * pgg-parse.el: Remove unnecessary (require 'custom).
11982
11983 * pgg-def.el: do.
11984
11985 * nnmail.el: do.
11986
11987 * gnus-undo.el: do.
11988
11989 * gnus-picon.el: do.
11990
11991 * gnus-util.el: do.
11992
11993 2004-01-15 Reiner Steib <Reiner.Steib@gmx.de>
11994
11995 * gnus-sum.el (gnus-pick-line-number): Add autoload.
11996
11997 2004-01-15 Katsumi Yamaoka <yamaoka@jpl.org>
11998
11999 * mm-decode.el (mm-multiple-handles): Recognize a string as a mime
12000 handle, as well as a list.
12001
12002 * mm-view.el (mm-w3m-cid-retrieve-1): Call itself recursively.
12003 Suggested by ARISAWA Akihiro <ari@mbf.sphere.ne.jp>.
12004 (mm-w3m-cid-retrieve): Simplify.
12005
12006 2004-01-14 Vasily Korytov <deskpot@myrealbox.com>
12007
12008 * message.el (message-kill-to-signature): Allow prefix arg to
12009 specify number of lines to keep before signature.
12010
12011 2004-01-14 Kai Grossjohann <kai@emptydomain.de>
12012
12013 (message-kill-to-signature): Change docstring.
12014
12015 2004-01-14 Katsumi Yamaoka <yamaoka@jpl.org>
12016
12017 * canlock.el: Always require sha1-el.
12018 (canlock-sha1): Bind sha1-maximum-internal-length to nil.
12019
12020 * message.el: Autoload sha1 only when compiling.
12021
12022 2004-01-13 Katsumi Yamaoka <yamaoka@jpl.org>
12023
12024 * message.el (message-canlock-generate): Require sha1-el.
12025
12026 2004-01-13 Jesper Harder <harder@ifa.au.dk>
12027
12028 * message.el (message-expand-name): Silence the byte compiler.
12029
12030 2004-01-13 Simon Josefsson <jas@extundo.com>
12031
12032 * gnus-score.el (gnus-score-edit-all-score): Fix prototype.
12033 Invoke gnus-score-mode. Reported by
12034 bojohan+news@dd.chalmers.se (Johan Bockgård).
12035
12036 * gnus-range.el (gnus-compress-sequence): Doc fix. Suggested by
12037 Jim Blandy <jimb@redhat.com> (tiny change).
12038
12039 2004-01-12 Jesper Harder <harder@ifa.au.dk>
12040
12041 * gnus-srvr.el (gnus-browse-foreign-server): Reduce consing.
12042
12043 2004-01-12 Teodor Zlatanov <tzz@lifelogs.com>
12044
12045 * spam.el (spam-get-article-as-string): Update to use
12046 gnus-request-article-this-buffer, much simpler.
12047 (spam-get-article-as-buffer): Remove.
12048
12049 2004-01-12 Kai Grossjohann <kai.grossjohann@mci.com>
12050
12051 * message.el (message-expand-name): Use EUDC if the user uses that.
12052
12053 2004-01-12 Jesper Harder <harder@ifa.au.dk>
12054
12055 * rfc2047.el (rfc2047-parse-and-decode, rfc2047-decode): Use a
12056 character for the encoding to avoid consing a string.
12057
12058 * rfc2047.el (rfc2047-decode-string): Don't cons a string
12059 unnecessarily.
12060
12061 * mm-util.el (mm-replace-chars-in-string): Remove.
12062
12063 * rfc2047.el (rfc2047-decode): Use mm-subst-char-in-string instead
12064 of mm-replace-chars-in-string.
12065
12066 2004-01-11 Jesper Harder <harder@ifa.au.dk>
12067
12068 * gnus.sum.el (gnus-remove-odd-characters): Don't cons two new strings.
12069
12070 * mm-util.el (mm-subst-char-in-string): Support inplace.
12071
12072 * gnus-sum.el (gnus-summary-remove-list-identifiers): Don't cons
12073 a new string in every iteration. Use shy groups.
12074
12075 2004-01-10 Jesper Harder <harder@ifa.au.dk>
12076
12077 * gnus-srvr.el (gnus-browse-unsubscribe-group):
12078 * gnus-soup.el (gnus-soup-group-brew):
12079 * gnus-msg.el (gnus-put-message):
12080 * gnus-move.el (gnus-group-move-group-to-server):
12081 * gnus-kill.el (gnus-batch-score):
12082 * gnus-group.el (gnus-group-prepare-flat, gnus-group-delete-group)
12083 (gnus-group-update-group-line, gnus-group-insert-group-line-info)
12084 (gnus-group-update-group, gnus-group-read-group)
12085 (gnus-group-make-group, gnus-group-make-help-group)
12086 (gnus-group-make-archive-group, gnus-group-make-directory-group)
12087 (gnus-group-make-empty-virtual, gnus-group-sort-selected-flat)
12088 (gnus-group-sort-by-unread, gnus-group-catchup)
12089 (gnus-group-unsubscribe-group, gnus-group-kill-group)
12090 (gnus-group-yank-group, gnus-group-set-info)
12091 (gnus-group-list-groups):
12092 * gnus.el (gnus-generate-new-group-name):
12093 * gnus-delay.el (gnus-delay-send-queue):
12094 * nnvirtual.el (nnvirtual-catchup-group):
12095 * nnkiboze.el (nnkiboze-generate-group, nnkiboze-generate-group):
12096 * gnus-topic.el (gnus-topic-find-groups, gnus-topic-clean-alist)
12097 (gnus-group-prepare-topics, gnus-topic-check-topology):
12098 * gnus-sum.el (gnus-update-read-articles, gnus-select-newsgroup)
12099 (gnus-mark-xrefs-as-read, gnus-compute-read-articles)
12100 (gnus-summary-walk-group-buffer, gnus-summary-move-article)
12101 (gnus-group-make-articles-read):
12102 * gnus-start.el (gnus-subscribe-newsgroup, gnus-start-draft-setup)
12103 (gnus-group-change-level, gnus-kill-newsgroup)
12104 (gnus-check-bogus-newsgroups, gnus-get-unread-articles-in-group)
12105 (gnus-get-unread-articles, gnus-make-articles-unread)
12106 (gnus-make-ascending-articles-unread): Use accessor
12107 macros (gnus-group-entry, gnus-group-unread, gnus-info-marks etc.)
12108 to get group information for improved readability.
12109
12110
12111 2004-01-09 Jesper Harder <harder@ifa.au.dk>
12112
12113 * gnus-art.el (article-decode-mime-words, article-babel)
12114 (gnus-article-highlight-signature, gnus-article-add-buttons)
12115 (gnus-signature-toggle): Use gnus-with-article-buffer.
12116
12117 * gnus-art.el (gnus-article-highlight-headers)
12118 (gnus-article-add-buttons-to-head): Use gnus-with-article-headers.
12119
12120 * gnus-art.el (gnus-mm-display-part, gnus-article-wash-status)
12121 (gnus-article-set-globals, gnus-request-article-this-buffer)
12122 (gnus-button-message-id, gnus-article-maybe-hide-headers)
12123 (gnus-mime-view-part-externally, gnus-mime-view-part-internally)
12124 (gnus-mime-display-alternative): Use with-current-buffer.
12125
12126 2004-01-09 Teodor Zlatanov <tzz@lifelogs.com>
12127
12128 * spam.el (spam-generate-fake-headers): Rewrite to be simpler,
12129 also under 80 char limit, and call gnus-error if needed.
12130 (spam-fetch-article-header): Fix - it was a
12131 buffer-local variable (gnus-newsgroup-data).
12132 (spam-find-spam): Use spam-generate-fake-headers, forget about
12133 spam-insert-fake-headers.
12134 (spam-insert-fake-headers): Remove.
12135
12136 2004-01-09 Jesper Harder <harder@ifa.au.dk>
12137
12138 * deuglify.el (gnus-article-outlook-unwrap-lines)
12139 (gnus-outlook-rearrange-article)
12140 (gnus-outlook-repair-attribution-outlook)
12141 (gnus-outlook-repair-attribution-block)
12142 (gnus-outlook-repair-attribution-other): Remove redundant
12143 save-excursion.
12144
12145 2004-01-09 Teodor Zlatanov <tzz@lifelogs.com>
12146
12147 * spam.el (spam-fetch-field-fast, spam-fetch-field-from-fast)
12148 (spam-fetch-field-subject-fast)
12149 (spam-fetch-field-message-id-fast, spam-generate-fake-headers)
12150 (spam-fetch-article-header): Add functions to deal with Gnus
12151 internals for fast retrieval of article header data.
12152 (spam-initialize): Put spam-find-spam in the gnus-summary-prepared-hook.
12153
12154 2004-01-09 Jesper Harder <harder@ifa.au.dk>
12155
12156 * pop3.el (pop3-md5): Remove.
12157 (pop3-apop): Replace pop3-md5 with md5.
12158
12159 * mm-bodies.el: base64 is always built-in.
12160
12161 * gnus-sum.el (gnus-summary-from-or-to-or-newsgroups): Use
12162 with-current-buffer.
12163
12164 2004-01-08 Katsumi Yamaoka <yamaoka@jpl.org>
12165
12166 * canlock.el (canlock-insert-header): Remove excessive grouping in
12167 regexp.
12168
12169 * gnus-sum.el (gnus-summary-read-document): Ditto.
12170
12171 * gnus-uu.el (gnus-uu-part-number): Ditto.
12172
12173 * html2text.el (html2text-remove-tags): Ditto.
12174 (html2text-format-tags): Ditto.
12175 (html2text-format-single-elements): Ditto.
12176
12177 * mml.el (mml-parse-1): Ditto.
12178
12179 2004-01-08 Jesper Harder <harder@ifa.au.dk>
12180
12181 * gnus-sum.el (gnus-summary-update-mark): Revert previous change.
12182
12183 * gnus-group.el (gnus-group-mark-group): Fix for multibyte marks.
12184
12185 * gnus-sum.el (gnus-summary-update-mark): Fix for multibyte marks.
12186
12187 * gnus-util.el (gnus-replace-in-string): Remove Emacs 20 code.
12188
12189 2003-11-15 Simon Josefsson <jas@extundo.com>
12190
12191 * pgg-gpg.el (pgg-gpg-lookup-all-secret-keys)
12192 (pgg-gpg-lookup-key): Use regexp match instead of
12193 split-string (split-string is different between emacs 21.2 and
12194 22.1). Reported by ultrasoul@ultrasoul.com (David D. Smith).
12195
12196 2004-01-08 Jesper Harder <harder@ifa.au.dk>
12197
12198 * gnus-art.el (gnus-mime-view-all-parts)
12199 (gnus-article-part-wrapper, gnus-article-view-part): Use
12200 with-current-buffer.
12201
12202 2004-01-07 Teodor Zlatanov <tzz@lifelogs.com>
12203
12204 * spam.el (spam-disable-spam-split-during-ham-respool)
12205 (spam-spamoracle-database, spam-cache-lookups)
12206 (spam-split-last-successful-check, spam-clear-cache, spam-xor)
12207 (spam-group-ham-mark-p, spam-group-spam-mark-p)
12208 (spam-group-ham-marks, spam-group-spam-marks)
12209 (spam-group-spam-contents-p, spam-group-ham-contents-p)
12210 (spam-list-of-processors, spam-list-of-statistical-checks): Fix doc,
12211 also add spam-use-blackholes to the statistical checks.
12212 (spam-fetch-field-fast): Add interface to fetching fields, may
12213 become a macro.
12214 (spam-fetch-field-from-fast, spam-fetch-field-subject-fast)
12215 (spam-fetch-field-message-id-fast): Use spam-fetch-field-fast.
12216 (spam-insert-fake-headers): Fake an article when needed.
12217 (spam-find-spam): Fake article when possible.
12218 (spam-check-blackholes, spam-check-BBDB, spam-from-listed-p)
12219 (spam-check-bogofilter-headers): Use message-fetch-field instead
12220 of nnmail-fetch-field.
12221
12222 2004-01-07 Reiner Steib <Reiner.Steib@gmx.de>
12223
12224 * gnus-score.el (gnus-score-find-trace): Add `k' (kill-buffer).
12225
12226 2004-01-07 Teodor Zlatanov <tzz@lifelogs.com>
12227
12228 * spam.el (spam-split): Do not require spam-use-CHECK to be
12229 enabled if that check is passed to spam-split explicitly; also
12230 fix so 'spam doesn't get converted to spam-split-group when
12231 spam-split-symbolic-return is t.
12232 (spam-find-spam): Find registrations of the article and use those
12233 instead of re-running spam-split to find the spam/ham
12234 classification of the article.
12235 (spam-log-processing-to-registry, spam-log-registered-p)
12236 (spam-log-unregistration-needed-p, spam-log-undo-registration):
12237 Use gnus-error instead of gnus-message.
12238 (spam-log-registration-type): Add function to determine the
12239 classification of a message based on registry entries; will
12240 return nil if both 'spam and 'ham are found.
12241 (spam-check-BBDB): Expand all the BBDB macros here so we can have
12242 a reasonably fast local cache without the loading errors.
12243 (spam-cache-lookups): Set to t by default.
12244 (spam-find-spam): Don't try to guess spam-cache-lookups.
12245 (spam-enter-whitelist, spam-enter-blacklist): Clear the
12246 spam-caches entry.
12247 (spam-filelist-build-cache, spam-filelist-check-cache): Fix
12248 caching of whitelist/blacklist entries.
12249 (spam-check-whitelist, spam-check-blacklist): Invoke
12250 spam-from-listed-p with a type, not a cache variable.
12251 (spam-from-listed-p): Wrap around spam-filelist-check-cache.
12252
12253 2004-01-07 Jesper Harder <harder@ifa.au.dk>
12254
12255 * message.el (message-cite-prefix-regexp): Use with-syntax-table.
12256
12257 * nnmail.el (nnmail-split-fancy): do.
12258
12259 * mml.el (mml-parse): do.
12260
12261 * gnus-score.el (gnus-enter-score-words-into-hashtb)
12262 (gnus-score-adaptive): do.
12263
12264 2004-01-07 Katsumi Yamaoka <yamaoka@jpl.org>
12265
12266 * gnus-art.el (gnus-treat-emphasize): Ignore Emacs version number.
12267 (gnus-mime-button-map): Don't set keymap parent.
12268 (gnus-button-ctan-directory-regexp): Use shy grouping.
12269 (gnus-prev-page-map): Don't set keymap parent.
12270 (gnus-prev-page-map): Remove duplicated one.
12271 (gnus-next-page-map): Don't set keymap parent.
12272 (gnus-mime-security-button-map): Ditto.
12273
12274 * nnheader.el (nnheader-directory-files-is-safe): Ignore Emacs
12275 version number.
12276
12277 * sha1-el.el (sha1-string-external): Use with-temp-buffer.
12278
12279 2004-01-07 Katsumi Yamaoka <yamaoka@jpl.org>
12280
12281 * canlock.el (canlock-sha1-function): Remove.
12282 (canlock-sha1-function-for-verify): Remove.
12283 (canlock-openssl-program): Remove.
12284 (canlock-openssl-args): Remove.
12285 (canlock-ignore-errors): Remove.
12286 (canlock-sha1-with-openssl): Remove.
12287 (canlock-sha1): Use sha1 instead of to call canlock-sha1-function.
12288 (canlock-verify): Don't use canlock-ignore-errors.
12289
12290 * sha1-el.el (sha1-string-external): Make it can return a string
12291 in binary form.
12292 (sha1-region-external): Ditto.
12293 (sha1-string-internal): Ditto.
12294 (sha1-region-internal): Ditto.
12295 (sha1-region): Ditto.
12296 (sha1-string): Ditto.
12297 (sha1): Ditto.
12298
12299 2004-01-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
12300
12301 * spam.el (spam-report-articles-gmane): New command.
12302
12303 2004-01-07 Katsumi Yamaoka <yamaoka@jpl.org>
12304
12305 * gnus.el: Don't make unnecessary *Group* buffer when loading.
12306
12307 * run-at-time.el (run-at-time-saved): Remove.
12308 (run-at-time): Doc fix.
12309
12310 2004-01-07 Jesper Harder <harder@ifa.au.dk>
12311
12312 * gnus-sum.el (gnus-summary-limit-to-replied): New command.
12313 (gnus-summary-limit-map): Add it.
12314 (gnus-summary-make-menu-bar): do.
12315
12316 2004-01-06 Teodor Zlatanov <tzz@lifelogs.com>
12317
12318 * spam.el (spam-cache-lookups, spam-caches, spam-clear-cache):
12319 Make attempt at some caching support (done for BBDB only now).
12320 (spam-find-spam): Set spam-cache-lookups if there are more than 2
12321 addresses to be checked.
12322 (spam-clear-cache-BBDB): Add function, to be invoked by
12323 bbdb-change-hook, and triggering spam-clear-cache of 'spam-use-BBDB.
12324 (spam-check-BBDB): Check and use the caches, if
12325 spam-cache-lookups is on, remove superfluous (provide).
12326
12327 2004-01-06 Reiner Steib <Reiner.Steib@gmx.de>
12328
12329 * gnus-art.el (gnus-treat-ansi-sequences): Changed default.
12330
12331 2004-01-07 Steve Youngs <sryoungs@bigpond.net.au>
12332
12333 * run-at-time.el (run-at-time-saved): Move to after the definition
12334 of `run-at-time'.
12335
12336 2004-01-06 Katsumi Yamaoka <yamaoka@jpl.org>
12337
12338 * gnus-art.el (gnus-article-wash-html-with-w3m): Don't use
12339 mm-w3m-local-map-property.
12340
12341 * mm-view.el (mm-w3m-mode-map): Remove.
12342 (mm-w3m-local-map-property): Remove.
12343 (mm-inline-text-html-render-with-w3m): Don't use
12344 mm-w3m-local-map-property.
12345
12346 2004-01-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
12347
12348 * run-at-time.el: New file.
12349
12350 * gnus.el ((fboundp 'gnus-set-text-properties)): Remove definition
12351 of gnus-set-text-properties.
12352
12353 * gnus-uu.el (gnus-uu-save-article): Ditto.
12354
12355 * gnus-salt.el (gnus-carpal-setup-buffer): Ditto.
12356
12357 * gnus-cite.el (gnus-cite-parse): Ditto.
12358
12359 * gnus-art.el (gnus-button-push): Use set-text-properties instead
12360 of gnus-.
12361
12362 * gnus.el: Changed calls to nnheader-run-at-time and
12363 password-run-at-time throughout to use run-at-time directly.
12364
12365 * password.el: Removed definition of run-at-time.
12366
12367 2004-01-05 Karl Pflästerer <sigurd@12move.de> (tiny change)
12368
12369 * mml.el (mml-minibuffer-read-disposition): Show attachment type
12370 in prompt.
12371
12372 2004-01-06 Steve Youngs <sryoungs@bigpond.net.au>
12373
12374 * gnus-ems.el (gnus-mode-line-modified): Don't conditionalise on
12375 XEmacs version.
12376
12377 * dns.el (dns-make-network-process): Use `open-network-stream'
12378 instead of `gnus-xmas-open-network-stream'.
12379
12380 * .cvsignore: Add auto-autoloads.el, custom-load.el.
12381
12382 2004-01-06 Jesper Harder <harder@ifa.au.dk>
12383
12384 * gnus-art.el (gnus-mime-display-alternative)
12385 (gnus-insert-mime-button, gnus-insert-mime-security-button)
12386 (gnus-insert-prev-page-button, gnus-insert-next-page-button):
12387 Don't use gnus-local-map-property.
12388
12389 * gnus-util.el (gnus-local-map-property): Remove.
12390
12391 * mm-view.el (mm-view-pkcs7-decrypt): Replace
12392 gnus-completing-read-maybe-default with completing-read.
12393
12394 * gnus-util.el (gnus-completing-read): do.
12395 (gnus-completing-read-maybe-default): Remove.
12396
12397 2004-01-06 Steve Youngs <sryoungs@bigpond.net.au>
12398
12399 * password.el: Only autoload `run-at-time' if not XEmacs.
12400 Only autoload the itimer functions if XEmacs.
12401
12402 2004-01-06 Jesper Harder <harder@ifa.au.dk>
12403
12404 * gnus-art.el (gnus-read-string): Remove.
12405 (gnus-summary-pipe-to-muttprint): Replace gnus-read-string with
12406 read-string.
12407
12408 2004-01-05 Teodor Zlatanov <tzz@lifelogs.com>
12409
12410 * netrc.el: Autoload password-read.
12411 (netrc): Add configuration group.
12412 (netrc-encoding-method, netrc-openssl-path): Add
12413 variables for encoding and decoding of files with symmetric
12414 ciphers.
12415 (netrc-encode): Add assistant function to encode a file with
12416 netrc-encoding-method.
12417 (netrc-parse): Add interactive parameter, added optional
12418 decoding if netrc-encoding-method is non-nil but otherwise
12419 behavior is standard.
12420 (netrc-encrypting-method, netrc-encrypt, netrc-parse):
12421 Do s/encode/encrypt/ everywhere.
12422
12423 * spam.el: Remove executable-find autoload.
12424
12425 2004-01-05 Jesper Harder <harder@ifa.au.dk>
12426
12427 * gnus-registry.el: Remove Emacs 20 hash table compatibility code.
12428
12429 * gnus-uu.el (gnus-uu-post-encoded): bury-buffer is always fbound.
12430
12431 2004-01-05 Reiner Steib <Reiner.Steib@gmx.de>
12432
12433 * gnus-art.el (gnus-treat-ansi-sequences,
12434 (article-treat-ansi-sequences): New variable and function.
12435 Suggested by Dan Jacobson <jidanni@jidanni.org>.
12436
12437 * gnus-sum.el (gnus-summary-wash-map, gnus-summary-make-menu-bar):
12438 Use it.
12439
12440 2004-01-05 Jesper Harder <harder@ifa.au.dk>
12441
12442 * mm-util.el (mm-quote-arg): Remove.
12443
12444 * mm-decode.el (mm-mailcap-command): Replace mm-quote-arg with
12445 shell-quote-argument.
12446
12447 * gnus-uu.el (gnus-uu-command): do.
12448
12449 * gnus-sum.el (gnus-summary-insert-pseudos): do.
12450
12451 * ietf-drums.el (ietf-drums-token-to-list): Replace mm-make-char
12452 with make-char.
12453
12454 * mm-util.el (mm-make-char): Remove.
12455
12456 * mml.el (mml-mode): Replace gnus-add-minor-mode with
12457 add-minor-mode.
12458
12459 * gnus-undo.el (gnus-undo-mode): do.
12460
12461 * gnus-topic.el (gnus-topic-mode): do.
12462
12463 * gnus-sum.el (gnus-dead-summary-mode): do.
12464
12465 * gnus-start.el (gnus-slave-mode): do.
12466
12467 * gnus-salt.el (gnus-binary-mode, gnus-pick-mode): do.
12468
12469 * gnus-ml.el (gnus-mailing-list-mode): do.
12470
12471 * gnus-gl.el (gnus-grouplens-mode): do.
12472
12473 * gnus-draft.el (gnus-draft-mode): do.
12474
12475 * gnus-dired.el (gnus-dired-mode): do.
12476
12477 * gnus-ems.el (gnus-add-minor-mode): Remove.
12478
12479 * gnus-spec.el (gnus-correct-length, gnus-correct-substring):
12480 Replace gnus-char-width with char-width.
12481
12482 * gnus-ems.el (gnus-char-width): Remove.
12483
12484 * gnus-spec.el (gnus-correct-length, gnus-correct-substring):
12485 Replace gnus-char-width with char-width.
12486
12487 * gnus-ems.el (gnus-char-width): Remove.
12488
12489 * spam-stat.el (with-syntax-table): Remove with-syntax-table
12490 definition.
12491 Remove Emacs 20 hash table compatibility code.
12492
12493 * rfc2047.el (with-syntax-table): Remove with-syntax-table Emacs
12494 20 compatibility code.
12495
12496 * spam.el (spam-point-at-eol): Replace with point-at-eol.
12497
12498 * smime.el (smime-point-at-eol): Replace with point-at-eol.
12499
12500 * rfc2047.el (rfc2047-point-at-bol, rfc2047-point-at-eol): Replace
12501 with point-at-{eol,bol}.
12502
12503 * netrc.el (netrc-point-at-eol): Replace with point-at-eol.
12504
12505 * imap.el (imap-point-at-eol): Replace with point-at-eol.
12506
12507 * flow-fill.el (fill-flowed-point-at-bol)
12508 (fill-flowed-point-at-eol): Replace with point-at-{eol,bol}.
12509
12510 * gnus-util.el (gnus-point-at-bol, gnus-point-at-eol): Remove.
12511 Replace with point-at-{eol,bol} throughout all files.
12512
12513 2004-01-05 Katsumi Yamaoka <yamaoka@jpl.org>
12514
12515 * ntlm.el (ntlm-string-as-unibyte): New macro.
12516 (ntlm-build-auth-response): Use it.
12517
12518 Remove Emacs 20 stuff:
12519 * gnus-msg.el (gnus-summary-news-other-window): Use remove instead
12520 of delq and copy-sequence.
12521 * gnus-art.el (popup-menu): Remove the compiler macro.
12522 * nnmail.el (nnmail-split-fancy): Don't support customizing with
12523 Emacs 20.
12524
12525 2004-01-05 Simon Josefsson <jas@extundo.com>
12526
12527 * ntlm.el: Fix namespace. Change smb-passwd-hash into
12528 ntlm-smb-passwd-hash, smb-owf-encrypt into ntlm-smb-owf-encrypt,
12529 smb-passwd-hash into ntlm-smb-passwd-hash, smbdes-e-p16 into
12530 ntlm-smb-des-e-p16, smbdes-e-p24 into ntlm-smb-des-e-p24, smbhash
12531 into ntlm-smb-hash, smb-sp8 into ntlm-smb-sp8, smb-str-to-key into
12532 ntlm-smb-str-to-key, smb-dohash into ntlm-smb-dohash, smb-perm1
12533 into ntlm-smb-perm1, smb-perm2 into ntlm-smb-perm2, smb-perm3 into
12534 ntlm-smb-perm3, smb-perm4 into ntlm-smb-perm4, smb-perm5 into
12535 ntlm-smb-perm5, smb-perm6 into ntlm-smb-perm6, smb-sc into
12536 ntlm-smb-sc, smb-sbox into ntlm-smb-sbox, string-permute into
12537 ntlm-string-permute, string-lshift into ntlm-string-lshift,
12538 string-xor into ntlm-string-xor. Suggested by
12539 Jesper Harder <harder@myrealbox.com>.
12540
12541 * ntlm.el: Don't include poem.
12542
12543 * md4.el (print-int32, print-string-hexa): Remove. Suggested by
12544 Jesper Harder <harder@myrealbox.com>.
12545
12546 * sasl-ntlm.el, ntlm.el, md4.el: New files.
12547
12548 * hmac-md5.el (md5-binary): Fix byte compile warning. (This
12549 probably breaks emacs with DL patch, but do we care? Is anyone
12550 still using the DL stuff?)
12551
12552 * sieve-manage.el: Use the password package.
12553 (sieve-manage-read-passwd): Remove.
12554 (sieve-manage-interactive-login): Use password. Re-add
12555 condition-case around loop.
12556
12557 * pgg.el (pgg-passphrase-cache, pgg-run-at-time): Remove.
12558 (pgg-add-passphrase-cache, pgg-remove-passphrase-cache): Use
12559 the password package.
12560
12561 2003-02-19 Simon Josefsson <jas@extundo.com>
12562
12563 * sieve-manage.el (sieve-sasl-auth): Quote optional initial SASL
12564 token.
12565
12566 2002-08-07 Simon Josefsson <jas@extundo.com>
12567
12568 * sieve-manage.el (require): Use SASL, not RFC2104/MD5.
12569 (sieve-manage-authenticators):
12570 (sieve-manage-authenticator-alist): Add some SASL mechs.
12571 (sieve-sasl-auth): New function.
12572 (sieve-manage-cram-md5-auth):
12573 (sieve-manage-plain-auth): Rewrite using SASL library.
12574 (sieve-manage-digest-md5-p, sieve-manage-digest-md5-auth)
12575 (sieve-manage-scram-md5-p, sieve-manage-scram-md5-auth)
12576 (sieve-manage-ntlm-p, sieve-manage-ntlm-auth)
12577 (sieve-manage-login-p, sieve-manage-login-auth): Add wrappers.
12578
12579 2004-01-05 Simon Josefsson <jas@extundo.com>
12580
12581 * sasl.el, sasl-cram.el, sasl-digest.el, hmac-md5.el, hmac-def.el:
12582 New files.
12583
12584 2004-01-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
12585
12586 * gnus-group.el (gnus-no-groups-message): Update.
12587
12588 * gnus-sum.el (gnus-summary-insert-new-articles): Remove .
12589
12590 2003-11-09 Simon Josefsson <jas@extundo.com>
12591
12592 * imap.el: Support for ID IMAP extension (RFC 2971).
12593 (imap-local-variables): Add imap-id.
12594 (imap-id): New variable.
12595 (imap-id): New function.
12596 (imap-parse-response): Parse untagged ID response.
12597 * nnimap.el (nnimap-id): New variable.
12598 (nnimap-open-connection): Use it.
12599
12600 2003-12-28 Simon Josefsson <jas@extundo.com>
12601
12602 * gnus-score.el (gnus-score-edit-all-score): New.
12603 * gnus-group.el (gnus-group-score-map): Bind it to W e.
12604
12605 2004-01-04 Simon Josefsson <jas@extundo.com>
12606
12607 * password.el: Add.
12608
12609 2004-01-04 Mario Lang <lang@zid.tugraz.at>
12610
12611 * dns.el: Add support for AAAA records (see RFC 3596)
12612
12613 * Fix typo PRT -> PTR
12614
12615 * Parse MX, PTR and SOA replies (see RFC 1035)
12616
12617 2004-01-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
12618
12619 * gnus.el (gnus-logo-color-style): Changed colors to `no'.
12620
12621 * Moved to Changelog.2.
12622
12623 2004-01-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
12624
12625 * gnus.el (gnus-version-number): Bump version.
12626
12627 2004-01-04 Lars Magne Ingebrigtsen <lars@ingebrigtsen.no>
12628
12629 * gnus.el: No Gnus v0.1 is released.
12630
12631 2004-01-04 Lars Magne Ingebrigtsen <lars@ingebrigtsen.no>
12632
12633 * gnus.el: No Gnus v0.0 is released.
12634
12635 2004-01-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
12636
12637 * gnus.el (gnus-version-number): Bump.
12638 (gnus-version): No.
12639
12640 See ChangeLog.2 for earlier changes.
12641
12642 Copyright (C) 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
12643
12644 This file is part of GNU Emacs.
12645
12646 GNU Emacs is free software: you can redistribute it and/or modify
12647 it under the terms of the GNU General Public License as published by
12648 the Free Software Foundation, either version 3 of the License, or
12649 (at your option) any later version.
12650
12651 GNU Emacs is distributed in the hope that it will be useful,
12652 but WITHOUT ANY WARRANTY; without even the implied warranty of
12653 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12654 GNU General Public License for more details.
12655
12656 You should have received a copy of the GNU General Public License
12657 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
12658
12659 ;; Local Variables:
12660 ;; coding: utf-8
12661 ;; fill-column: 79
12662 ;; add-log-time-zone-rule: t
12663 ;; End:
12664
12665 ;;; arch-tag: 3f33a3e7-090d-492b-bedd-02a1417d32b4